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..29e4303fb --- /dev/null +++ b/.build/changelog-image.mjs @@ -0,0 +1,27 @@ +import { generateIconsPreview, getArgvs, getPackageJson, HOME_DIR } from './helpers.mjs' +import * as fs from 'fs' + +const argv = getArgvs(), + p = getPackageJson() + +const version = argv['new-version'] || `${p.version}` + +if (version) { + const icons = JSON.parse(fs.readFileSync(`${HOME_DIR}/tags.json`)) + + const newIcons = Object + .entries(icons) + .filter(([name, value]) => { + return `${value.version}.0` === version + }) + .map(([name, value]) => { + return `./icons/${name}.svg` + }) + + if (newIcons.length > 0) { + generateIconsPreview(newIcons, `.github/tabler-icons-${version}.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..d021db542 --- /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]+)/g, function() { + // return `M` + // }) + .replace(/[\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 new file mode 100644 index 000000000..daea4a412 Binary files /dev/null and b/.github/icons-dark.png differ diff --git a/.github/icons-dark.svg b/.github/icons-dark.svg new file mode 100644 index 000000000..e5e4f1b04 --- /dev/null +++ b/.github/icons-dark.svg @@ -0,0 +1,9616 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/icons-dark@2x.png b/.github/icons-dark@2x.png new file mode 100644 index 000000000..b2cdef4b1 Binary files /dev/null and b/.github/icons-dark@2x.png differ diff --git a/.github/icons-stroke-dark.png b/.github/icons-stroke-dark.png new file mode 100644 index 000000000..950084b40 Binary files /dev/null and b/.github/icons-stroke-dark.png differ diff --git a/.github/icons-stroke-dark.svg b/.github/icons-stroke-dark.svg new file mode 100644 index 000000000..929c33498 --- /dev/null +++ b/.github/icons-stroke-dark.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/icons-stroke-dark@2x.png b/.github/icons-stroke-dark@2x.png new file mode 100644 index 000000000..2c0703e5f Binary files /dev/null and b/.github/icons-stroke-dark@2x.png differ diff --git a/.github/icons-stroke.png b/.github/icons-stroke.png index a0d50a027..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 f3696f2b5..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 new file mode 100644 index 000000000..473865d39 Binary files /dev/null and b/.github/icons-stroke@2x.png differ diff --git a/.github/icons.png b/.github/icons.png index b40574465..4aaccfb34 100644 Binary files a/.github/icons.png and b/.github/icons.png differ diff --git a/.github/icons.svg b/.github/icons.svg index 3fcace8cb..290c5d102 100644 --- a/.github/icons.svg +++ b/.github/icons.svg @@ -1,983 +1,1391 @@ - - + + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + - + - \ No newline at end of file diff --git a/.github/icons@2x.png b/.github/icons@2x.png index 71551b085..a55a51ab7 100644 Binary files a/.github/icons@2x.png and b/.github/icons@2x.png differ diff --git a/.github/packages/og-core.png b/.github/packages/og-core.png new file mode 100644 index 000000000..b0525c433 Binary files /dev/null and b/.github/packages/og-core.png differ diff --git a/.github/packages/og-package-angular.png b/.github/packages/og-package-angular.png new file mode 100644 index 000000000..f988cb6f7 Binary files /dev/null and b/.github/packages/og-package-angular.png differ diff --git a/.github/packages/og-package-e11ty.png b/.github/packages/og-package-e11ty.png new file mode 100644 index 000000000..eaf8f07a4 Binary files /dev/null and b/.github/packages/og-package-e11ty.png differ diff --git a/.github/packages/og-package-eps.png b/.github/packages/og-package-eps.png new file mode 100644 index 000000000..8a45141b1 Binary files /dev/null and b/.github/packages/og-package-eps.png differ diff --git a/.github/packages/og-package-js.png b/.github/packages/og-package-js.png new file mode 100644 index 000000000..56035b410 Binary files /dev/null and b/.github/packages/og-package-js.png differ diff --git a/.github/packages/og-package-pdf.png b/.github/packages/og-package-pdf.png new file mode 100644 index 000000000..01ec8f0d0 Binary files /dev/null and b/.github/packages/og-package-pdf.png differ diff --git a/.github/packages/og-package-png.png b/.github/packages/og-package-png.png new file mode 100644 index 000000000..2abaff9d0 Binary files /dev/null and b/.github/packages/og-package-png.png differ diff --git a/.github/packages/og-package-preact.png b/.github/packages/og-package-preact.png new file mode 100644 index 000000000..6b6acbbbd Binary files /dev/null and b/.github/packages/og-package-preact.png differ diff --git a/.github/packages/og-package-react.png b/.github/packages/og-package-react.png new file mode 100644 index 000000000..a42df3809 Binary files /dev/null and b/.github/packages/og-package-react.png differ diff --git a/.github/packages/og-package-solidjs.png b/.github/packages/og-package-solidjs.png new file mode 100644 index 000000000..a9fee92d8 Binary files /dev/null and b/.github/packages/og-package-solidjs.png differ diff --git a/.github/packages/og-package-svelte.png b/.github/packages/og-package-svelte.png new file mode 100644 index 000000000..268424581 Binary files /dev/null and b/.github/packages/og-package-svelte.png differ diff --git a/.github/packages/og-package-vue.png b/.github/packages/og-package-vue.png new file mode 100644 index 000000000..91749e833 Binary files /dev/null and b/.github/packages/og-package-vue.png differ diff --git a/.github/packages/og-package-webfont.png b/.github/packages/og-package-webfont.png new file mode 100644 index 000000000..603662448 Binary files /dev/null and b/.github/packages/og-package-webfont.png differ diff --git a/.github/tabler-icons-1.100.0.png b/.github/tabler-icons-1.100.0.png new file mode 100644 index 000000000..98ee6e7cc Binary files /dev/null and b/.github/tabler-icons-1.100.0.png differ diff --git a/.github/tabler-icons-1.100.0.svg b/.github/tabler-icons-1.100.0.svg new file mode 100644 index 000000000..0ac6d6c1e --- /dev/null +++ b/.github/tabler-icons-1.100.0.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.100.0@2x.png b/.github/tabler-icons-1.100.0@2x.png new file mode 100644 index 000000000..5360013f7 Binary files /dev/null and b/.github/tabler-icons-1.100.0@2x.png differ diff --git a/.github/tabler-icons-1.101.0.png b/.github/tabler-icons-1.101.0.png new file mode 100644 index 000000000..b9fe21ee1 Binary files /dev/null and b/.github/tabler-icons-1.101.0.png differ diff --git a/.github/tabler-icons-1.101.0.svg b/.github/tabler-icons-1.101.0.svg new file mode 100644 index 000000000..00e121f51 --- /dev/null +++ b/.github/tabler-icons-1.101.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.101.0@2x.png b/.github/tabler-icons-1.101.0@2x.png new file mode 100644 index 000000000..449f86294 Binary files /dev/null and b/.github/tabler-icons-1.101.0@2x.png differ diff --git a/.github/tabler-icons-1.102.0.png b/.github/tabler-icons-1.102.0.png new file mode 100644 index 000000000..1c44452d7 Binary files /dev/null and b/.github/tabler-icons-1.102.0.png differ diff --git a/.github/tabler-icons-1.102.0.svg b/.github/tabler-icons-1.102.0.svg new file mode 100644 index 000000000..68bc0a288 --- /dev/null +++ b/.github/tabler-icons-1.102.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.102.0@2x.png b/.github/tabler-icons-1.102.0@2x.png new file mode 100644 index 000000000..4d7d5ed11 Binary files /dev/null and b/.github/tabler-icons-1.102.0@2x.png differ diff --git a/.github/tabler-icons-1.103.0.png b/.github/tabler-icons-1.103.0.png new file mode 100644 index 000000000..e85260fb7 Binary files /dev/null and b/.github/tabler-icons-1.103.0.png differ diff --git a/.github/tabler-icons-1.103.0.svg b/.github/tabler-icons-1.103.0.svg new file mode 100644 index 000000000..ffec8897c --- /dev/null +++ b/.github/tabler-icons-1.103.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.103.0@2x.png b/.github/tabler-icons-1.103.0@2x.png new file mode 100644 index 000000000..41aac2094 Binary files /dev/null and b/.github/tabler-icons-1.103.0@2x.png differ diff --git a/.github/tabler-icons-1.104.0.png b/.github/tabler-icons-1.104.0.png new file mode 100644 index 000000000..771a5968b Binary files /dev/null and b/.github/tabler-icons-1.104.0.png differ diff --git a/.github/tabler-icons-1.104.0.svg b/.github/tabler-icons-1.104.0.svg new file mode 100644 index 000000000..a4746de1b --- /dev/null +++ b/.github/tabler-icons-1.104.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.104.0@2x.png b/.github/tabler-icons-1.104.0@2x.png new file mode 100644 index 000000000..48b1f1edf Binary files /dev/null and b/.github/tabler-icons-1.104.0@2x.png differ diff --git a/.github/tabler-icons-1.105.0.png b/.github/tabler-icons-1.105.0.png new file mode 100644 index 000000000..8d2910eb1 Binary files /dev/null and b/.github/tabler-icons-1.105.0.png differ diff --git a/.github/tabler-icons-1.105.0.svg b/.github/tabler-icons-1.105.0.svg new file mode 100644 index 000000000..849b3e161 --- /dev/null +++ b/.github/tabler-icons-1.105.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.105.0@2x.png b/.github/tabler-icons-1.105.0@2x.png new file mode 100644 index 000000000..55c9a42b0 Binary files /dev/null and b/.github/tabler-icons-1.105.0@2x.png differ diff --git a/.github/tabler-icons-1.106.0.png b/.github/tabler-icons-1.106.0.png new file mode 100644 index 000000000..fa4953c70 Binary files /dev/null and b/.github/tabler-icons-1.106.0.png differ diff --git a/.github/tabler-icons-1.106.0.svg b/.github/tabler-icons-1.106.0.svg new file mode 100644 index 000000000..e7b35666a --- /dev/null +++ b/.github/tabler-icons-1.106.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.106.0@2x.png b/.github/tabler-icons-1.106.0@2x.png new file mode 100644 index 000000000..4a5c0b54d Binary files /dev/null and b/.github/tabler-icons-1.106.0@2x.png differ diff --git a/.github/tabler-icons-1.107.0.png b/.github/tabler-icons-1.107.0.png new file mode 100644 index 000000000..be03fb474 Binary files /dev/null and b/.github/tabler-icons-1.107.0.png differ diff --git a/.github/tabler-icons-1.107.0.svg b/.github/tabler-icons-1.107.0.svg new file mode 100644 index 000000000..88477d987 --- /dev/null +++ b/.github/tabler-icons-1.107.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.107.0@2x.png b/.github/tabler-icons-1.107.0@2x.png new file mode 100644 index 000000000..c5dd10362 Binary files /dev/null and b/.github/tabler-icons-1.107.0@2x.png differ diff --git a/.github/tabler-icons-1.108.0.png b/.github/tabler-icons-1.108.0.png new file mode 100644 index 000000000..940cd2766 Binary files /dev/null and b/.github/tabler-icons-1.108.0.png differ diff --git a/.github/tabler-icons-1.108.0.svg b/.github/tabler-icons-1.108.0.svg new file mode 100644 index 000000000..a51f1b71d --- /dev/null +++ b/.github/tabler-icons-1.108.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.108.0@2x.png b/.github/tabler-icons-1.108.0@2x.png new file mode 100644 index 000000000..b9bcce4b9 Binary files /dev/null and b/.github/tabler-icons-1.108.0@2x.png differ diff --git a/.github/tabler-icons-1.109.0.png b/.github/tabler-icons-1.109.0.png new file mode 100644 index 000000000..1adafeb9e Binary files /dev/null and b/.github/tabler-icons-1.109.0.png differ diff --git a/.github/tabler-icons-1.109.0.svg b/.github/tabler-icons-1.109.0.svg new file mode 100644 index 000000000..f2e783045 --- /dev/null +++ b/.github/tabler-icons-1.109.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.109.0@2x.png b/.github/tabler-icons-1.109.0@2x.png new file mode 100644 index 000000000..f38bb2277 Binary files /dev/null and b/.github/tabler-icons-1.109.0@2x.png differ diff --git a/.github/tabler-icons-1.110.0.png b/.github/tabler-icons-1.110.0.png new file mode 100644 index 000000000..d95215b17 Binary files /dev/null and b/.github/tabler-icons-1.110.0.png differ diff --git a/.github/tabler-icons-1.110.0.svg b/.github/tabler-icons-1.110.0.svg new file mode 100644 index 000000000..4986d90fe --- /dev/null +++ b/.github/tabler-icons-1.110.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.110.0@2x.png b/.github/tabler-icons-1.110.0@2x.png new file mode 100644 index 000000000..d233bcb54 Binary files /dev/null and b/.github/tabler-icons-1.110.0@2x.png differ diff --git a/.github/tabler-icons-1.111.0.png b/.github/tabler-icons-1.111.0.png new file mode 100644 index 000000000..35aede66f Binary files /dev/null and b/.github/tabler-icons-1.111.0.png differ diff --git a/.github/tabler-icons-1.111.0.svg b/.github/tabler-icons-1.111.0.svg new file mode 100644 index 000000000..283674f56 --- /dev/null +++ b/.github/tabler-icons-1.111.0.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.111.0@2x.png b/.github/tabler-icons-1.111.0@2x.png new file mode 100644 index 000000000..9645cc914 Binary files /dev/null and b/.github/tabler-icons-1.111.0@2x.png differ diff --git a/.github/tabler-icons-1.112.0.png b/.github/tabler-icons-1.112.0.png new file mode 100644 index 000000000..514656c89 Binary files /dev/null and b/.github/tabler-icons-1.112.0.png differ diff --git a/.github/tabler-icons-1.112.0.svg b/.github/tabler-icons-1.112.0.svg new file mode 100644 index 000000000..4e007d51b --- /dev/null +++ b/.github/tabler-icons-1.112.0.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.112.0@2x.png b/.github/tabler-icons-1.112.0@2x.png new file mode 100644 index 000000000..f2fd7146a Binary files /dev/null and b/.github/tabler-icons-1.112.0@2x.png differ diff --git a/.github/tabler-icons-1.113.0.png b/.github/tabler-icons-1.113.0.png new file mode 100644 index 000000000..9988e972a Binary files /dev/null and b/.github/tabler-icons-1.113.0.png differ diff --git a/.github/tabler-icons-1.113.0.svg b/.github/tabler-icons-1.113.0.svg new file mode 100644 index 000000000..732a58bb6 --- /dev/null +++ b/.github/tabler-icons-1.113.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.113.0@2x.png b/.github/tabler-icons-1.113.0@2x.png new file mode 100644 index 000000000..564c33b1b Binary files /dev/null and b/.github/tabler-icons-1.113.0@2x.png differ diff --git a/.github/tabler-icons-1.114.0.png b/.github/tabler-icons-1.114.0.png new file mode 100644 index 000000000..222e1a57c Binary files /dev/null and b/.github/tabler-icons-1.114.0.png differ diff --git a/.github/tabler-icons-1.114.0.svg b/.github/tabler-icons-1.114.0.svg new file mode 100644 index 000000000..ebe500b35 --- /dev/null +++ b/.github/tabler-icons-1.114.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.114.0@2x.png b/.github/tabler-icons-1.114.0@2x.png new file mode 100644 index 000000000..7cdca695b Binary files /dev/null and b/.github/tabler-icons-1.114.0@2x.png differ diff --git a/.github/tabler-icons-1.115.0.png b/.github/tabler-icons-1.115.0.png new file mode 100644 index 000000000..51884602b Binary files /dev/null and b/.github/tabler-icons-1.115.0.png differ diff --git a/.github/tabler-icons-1.115.0.svg b/.github/tabler-icons-1.115.0.svg new file mode 100644 index 000000000..6d715f2b0 --- /dev/null +++ b/.github/tabler-icons-1.115.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.115.0@2x.png b/.github/tabler-icons-1.115.0@2x.png new file mode 100644 index 000000000..a72592789 Binary files /dev/null and b/.github/tabler-icons-1.115.0@2x.png differ diff --git a/.github/tabler-icons-1.116.0.png b/.github/tabler-icons-1.116.0.png new file mode 100644 index 000000000..96536dac8 Binary files /dev/null and b/.github/tabler-icons-1.116.0.png differ diff --git a/.github/tabler-icons-1.116.0.svg b/.github/tabler-icons-1.116.0.svg new file mode 100644 index 000000000..bcb583efd --- /dev/null +++ b/.github/tabler-icons-1.116.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.116.0@2x.png b/.github/tabler-icons-1.116.0@2x.png new file mode 100644 index 000000000..57715829a Binary files /dev/null and b/.github/tabler-icons-1.116.0@2x.png differ diff --git a/.github/tabler-icons-1.117.0.png b/.github/tabler-icons-1.117.0.png new file mode 100644 index 000000000..9283f3bc0 Binary files /dev/null and b/.github/tabler-icons-1.117.0.png differ diff --git a/.github/tabler-icons-1.117.0.svg b/.github/tabler-icons-1.117.0.svg new file mode 100644 index 000000000..80f1600a3 --- /dev/null +++ b/.github/tabler-icons-1.117.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.117.0@2x.png b/.github/tabler-icons-1.117.0@2x.png new file mode 100644 index 000000000..2f2b1f225 Binary files /dev/null and b/.github/tabler-icons-1.117.0@2x.png differ diff --git a/.github/tabler-icons-1.118.0.png b/.github/tabler-icons-1.118.0.png new file mode 100644 index 000000000..a14772ba1 Binary files /dev/null and b/.github/tabler-icons-1.118.0.png differ diff --git a/.github/tabler-icons-1.118.0.svg b/.github/tabler-icons-1.118.0.svg new file mode 100644 index 000000000..a07e303cc --- /dev/null +++ b/.github/tabler-icons-1.118.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.118.0@2x.png b/.github/tabler-icons-1.118.0@2x.png new file mode 100644 index 000000000..f1c125540 Binary files /dev/null and b/.github/tabler-icons-1.118.0@2x.png differ diff --git a/.github/tabler-icons-1.119.0.png b/.github/tabler-icons-1.119.0.png new file mode 100644 index 000000000..9c2dd50fd Binary files /dev/null and b/.github/tabler-icons-1.119.0.png differ diff --git a/.github/tabler-icons-1.119.0.svg b/.github/tabler-icons-1.119.0.svg new file mode 100644 index 000000000..6bf4dae1d --- /dev/null +++ b/.github/tabler-icons-1.119.0.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.119.0@2x.png b/.github/tabler-icons-1.119.0@2x.png new file mode 100644 index 000000000..3905b849e Binary files /dev/null and b/.github/tabler-icons-1.119.0@2x.png differ diff --git a/.github/tabler-icons-1.83.0.png b/.github/tabler-icons-1.83.0.png new file mode 100644 index 000000000..50909e376 Binary files /dev/null and b/.github/tabler-icons-1.83.0.png differ diff --git a/.github/tabler-icons-1.83.0.svg b/.github/tabler-icons-1.83.0.svg new file mode 100644 index 000000000..f730f6a65 --- /dev/null +++ b/.github/tabler-icons-1.83.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.github/tabler-icons-1.83.0@2x.png b/.github/tabler-icons-1.83.0@2x.png new file mode 100644 index 000000000..675227c8d Binary files /dev/null and b/.github/tabler-icons-1.83.0@2x.png differ diff --git a/.github/tabler-icons-1.84.0.png b/.github/tabler-icons-1.84.0.png new file mode 100644 index 000000000..8245b459f Binary files /dev/null and b/.github/tabler-icons-1.84.0.png differ diff --git a/.github/tabler-icons-1.84.0.svg b/.github/tabler-icons-1.84.0.svg new file mode 100644 index 000000000..a8a24472f --- /dev/null +++ b/.github/tabler-icons-1.84.0.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.84.0@2x.png b/.github/tabler-icons-1.84.0@2x.png new file mode 100644 index 000000000..4bf4a3e07 Binary files /dev/null and b/.github/tabler-icons-1.84.0@2x.png differ diff --git a/.github/tabler-icons-1.85.0.png b/.github/tabler-icons-1.85.0.png new file mode 100644 index 000000000..9660d02b7 Binary files /dev/null and b/.github/tabler-icons-1.85.0.png differ diff --git a/.github/tabler-icons-1.85.0.svg b/.github/tabler-icons-1.85.0.svg new file mode 100644 index 000000000..d2fc9bad6 --- /dev/null +++ b/.github/tabler-icons-1.85.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.85.0@2x.png b/.github/tabler-icons-1.85.0@2x.png new file mode 100644 index 000000000..37d00139c Binary files /dev/null and b/.github/tabler-icons-1.85.0@2x.png differ diff --git a/.github/tabler-icons-1.86.0.png b/.github/tabler-icons-1.86.0.png new file mode 100644 index 000000000..6c7e24b50 Binary files /dev/null and b/.github/tabler-icons-1.86.0.png differ diff --git a/.github/tabler-icons-1.86.0.svg b/.github/tabler-icons-1.86.0.svg new file mode 100644 index 000000000..cfbd6cb45 --- /dev/null +++ b/.github/tabler-icons-1.86.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.86.0@2x.png b/.github/tabler-icons-1.86.0@2x.png new file mode 100644 index 000000000..cb0b72d54 Binary files /dev/null and b/.github/tabler-icons-1.86.0@2x.png differ diff --git a/.github/tabler-icons-1.87.0.png b/.github/tabler-icons-1.87.0.png new file mode 100644 index 000000000..590fae283 Binary files /dev/null and b/.github/tabler-icons-1.87.0.png differ diff --git a/.github/tabler-icons-1.87.0.svg b/.github/tabler-icons-1.87.0.svg new file mode 100644 index 000000000..d5bf5ade7 --- /dev/null +++ b/.github/tabler-icons-1.87.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.github/tabler-icons-1.87.0@2x.png b/.github/tabler-icons-1.87.0@2x.png new file mode 100644 index 000000000..fef901a4e Binary files /dev/null and b/.github/tabler-icons-1.87.0@2x.png differ diff --git a/.github/tabler-icons-1.88.0.png b/.github/tabler-icons-1.88.0.png new file mode 100644 index 000000000..23191ca01 Binary files /dev/null and b/.github/tabler-icons-1.88.0.png differ diff --git a/.github/tabler-icons-1.88.0.svg b/.github/tabler-icons-1.88.0.svg new file mode 100644 index 000000000..e14b4e7a5 --- /dev/null +++ b/.github/tabler-icons-1.88.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.88.0@2x.png b/.github/tabler-icons-1.88.0@2x.png new file mode 100644 index 000000000..b2a15caf3 Binary files /dev/null and b/.github/tabler-icons-1.88.0@2x.png differ diff --git a/.github/tabler-icons-1.89.0.png b/.github/tabler-icons-1.89.0.png new file mode 100644 index 000000000..ce2ed8a18 Binary files /dev/null and b/.github/tabler-icons-1.89.0.png differ diff --git a/.github/tabler-icons-1.89.0.svg b/.github/tabler-icons-1.89.0.svg new file mode 100644 index 000000000..c19f6be51 --- /dev/null +++ b/.github/tabler-icons-1.89.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.89.0@2x.png b/.github/tabler-icons-1.89.0@2x.png new file mode 100644 index 000000000..27f4d15e5 Binary files /dev/null and b/.github/tabler-icons-1.89.0@2x.png differ diff --git a/.github/tabler-icons-1.90.0.png b/.github/tabler-icons-1.90.0.png new file mode 100644 index 000000000..1478cac67 Binary files /dev/null and b/.github/tabler-icons-1.90.0.png differ diff --git a/.github/tabler-icons-1.90.0.svg b/.github/tabler-icons-1.90.0.svg new file mode 100644 index 000000000..339fcbf54 --- /dev/null +++ b/.github/tabler-icons-1.90.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.90.0@2x.png b/.github/tabler-icons-1.90.0@2x.png new file mode 100644 index 000000000..a204d756c Binary files /dev/null and b/.github/tabler-icons-1.90.0@2x.png differ diff --git a/.github/tabler-icons-1.91.0.png b/.github/tabler-icons-1.91.0.png new file mode 100644 index 000000000..d25f93f48 Binary files /dev/null and b/.github/tabler-icons-1.91.0.png differ diff --git a/.github/tabler-icons-1.91.0.svg b/.github/tabler-icons-1.91.0.svg new file mode 100644 index 000000000..615b71eab --- /dev/null +++ b/.github/tabler-icons-1.91.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.91.0@2x.png b/.github/tabler-icons-1.91.0@2x.png new file mode 100644 index 000000000..ebb60cabd Binary files /dev/null and b/.github/tabler-icons-1.91.0@2x.png differ diff --git a/.github/tabler-icons-1.92.0.png b/.github/tabler-icons-1.92.0.png new file mode 100644 index 000000000..95e3ec51b Binary files /dev/null and b/.github/tabler-icons-1.92.0.png differ diff --git a/.github/tabler-icons-1.92.0.svg b/.github/tabler-icons-1.92.0.svg new file mode 100644 index 000000000..fbb70e654 --- /dev/null +++ b/.github/tabler-icons-1.92.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.92.0@2x.png b/.github/tabler-icons-1.92.0@2x.png new file mode 100644 index 000000000..382e9f741 Binary files /dev/null and b/.github/tabler-icons-1.92.0@2x.png differ diff --git a/.github/tabler-icons-1.93.0.png b/.github/tabler-icons-1.93.0.png new file mode 100644 index 000000000..63857ddb4 Binary files /dev/null and b/.github/tabler-icons-1.93.0.png differ diff --git a/.github/tabler-icons-1.93.0.svg b/.github/tabler-icons-1.93.0.svg new file mode 100644 index 000000000..53c3d48ef --- /dev/null +++ b/.github/tabler-icons-1.93.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.93.0@2x.png b/.github/tabler-icons-1.93.0@2x.png new file mode 100644 index 000000000..09248e9cf Binary files /dev/null and b/.github/tabler-icons-1.93.0@2x.png differ diff --git a/.github/tabler-icons-1.94.0.png b/.github/tabler-icons-1.94.0.png new file mode 100644 index 000000000..c8dcfc95a Binary files /dev/null and b/.github/tabler-icons-1.94.0.png differ diff --git a/.github/tabler-icons-1.94.0.svg b/.github/tabler-icons-1.94.0.svg new file mode 100644 index 000000000..f164d4039 --- /dev/null +++ b/.github/tabler-icons-1.94.0.svg @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.94.0@2x.png b/.github/tabler-icons-1.94.0@2x.png new file mode 100644 index 000000000..2388b9cc0 Binary files /dev/null and b/.github/tabler-icons-1.94.0@2x.png differ diff --git a/.github/tabler-icons-1.95.0.png b/.github/tabler-icons-1.95.0.png new file mode 100644 index 000000000..a1f170abf Binary files /dev/null and b/.github/tabler-icons-1.95.0.png differ diff --git a/.github/tabler-icons-1.95.0.svg b/.github/tabler-icons-1.95.0.svg new file mode 100644 index 000000000..08e4d59f4 --- /dev/null +++ b/.github/tabler-icons-1.95.0.svg @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.95.0@2x.png b/.github/tabler-icons-1.95.0@2x.png new file mode 100644 index 000000000..2257240d0 Binary files /dev/null and b/.github/tabler-icons-1.95.0@2x.png differ diff --git a/.github/tabler-icons-1.95.1.png b/.github/tabler-icons-1.95.1.png new file mode 100644 index 000000000..0e40e040b Binary files /dev/null and b/.github/tabler-icons-1.95.1.png differ diff --git a/.github/tabler-icons-1.95.1.svg b/.github/tabler-icons-1.95.1.svg new file mode 100644 index 000000000..5200251ed --- /dev/null +++ b/.github/tabler-icons-1.95.1.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.95.1@2x.png b/.github/tabler-icons-1.95.1@2x.png new file mode 100644 index 000000000..7537f936f Binary files /dev/null and b/.github/tabler-icons-1.95.1@2x.png differ diff --git a/.github/tabler-icons-1.96.0.png b/.github/tabler-icons-1.96.0.png new file mode 100644 index 000000000..6e926cf61 Binary files /dev/null and b/.github/tabler-icons-1.96.0.png differ diff --git a/.github/tabler-icons-1.96.0.svg b/.github/tabler-icons-1.96.0.svg new file mode 100644 index 000000000..c2d1ccf7c --- /dev/null +++ b/.github/tabler-icons-1.96.0.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.96.0@2x.png b/.github/tabler-icons-1.96.0@2x.png new file mode 100644 index 000000000..97c9c67d1 Binary files /dev/null and b/.github/tabler-icons-1.96.0@2x.png differ diff --git a/.github/tabler-icons-1.97.0.png b/.github/tabler-icons-1.97.0.png new file mode 100644 index 000000000..6be1f9464 Binary files /dev/null and b/.github/tabler-icons-1.97.0.png differ diff --git a/.github/tabler-icons-1.97.0.svg b/.github/tabler-icons-1.97.0.svg new file mode 100644 index 000000000..6aea47157 --- /dev/null +++ b/.github/tabler-icons-1.97.0.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.97.0@2x.png b/.github/tabler-icons-1.97.0@2x.png new file mode 100644 index 000000000..13af5a072 Binary files /dev/null and b/.github/tabler-icons-1.97.0@2x.png differ diff --git a/.github/tabler-icons-1.98.0.png b/.github/tabler-icons-1.98.0.png new file mode 100644 index 000000000..103306a9f Binary files /dev/null and b/.github/tabler-icons-1.98.0.png differ diff --git a/.github/tabler-icons-1.98.0.svg b/.github/tabler-icons-1.98.0.svg new file mode 100644 index 000000000..9a9f86283 --- /dev/null +++ b/.github/tabler-icons-1.98.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.98.0@2x.png b/.github/tabler-icons-1.98.0@2x.png new file mode 100644 index 000000000..56c6a761f Binary files /dev/null and b/.github/tabler-icons-1.98.0@2x.png differ diff --git a/.github/tabler-icons-1.99.0.png b/.github/tabler-icons-1.99.0.png new file mode 100644 index 000000000..c30e3f6f5 Binary files /dev/null and b/.github/tabler-icons-1.99.0.png differ diff --git a/.github/tabler-icons-1.99.0.svg b/.github/tabler-icons-1.99.0.svg new file mode 100644 index 000000000..5960e736e --- /dev/null +++ b/.github/tabler-icons-1.99.0.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-1.99.0@2x.png b/.github/tabler-icons-1.99.0@2x.png new file mode 100644 index 000000000..7d5d78646 Binary files /dev/null and b/.github/tabler-icons-1.99.0@2x.png differ diff --git a/.github/tabler-icons-2.0.0.png b/.github/tabler-icons-2.0.0.png new file mode 100644 index 000000000..f0e833c12 Binary files /dev/null and b/.github/tabler-icons-2.0.0.png differ diff --git a/.github/tabler-icons-2.0.0.svg b/.github/tabler-icons-2.0.0.svg new file mode 100644 index 000000000..c55daee0e --- /dev/null +++ b/.github/tabler-icons-2.0.0.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/tabler-icons-2.0.0@2x.png b/.github/tabler-icons-2.0.0@2x.png new file mode 100644 index 000000000..477588457 Binary files /dev/null and b/.github/tabler-icons-2.0.0@2x.png differ diff --git a/.gitignore b/.gitignore index 2a11276bd..8fcea9d67 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/ @@ -21,5 +20,16 @@ yarn.lock dist/ _import.csv _import.tsv -*/.turbo/* -turbo-build.log + +.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/LICENSE b/LICENSE index 1f192ee90..fe620551c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2022 Paweł Kuna +Copyright (c) 2020-2023 Paweł Kuna Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index a8e5c1317..945fd8c93 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,15 @@

- Tabler Icons + Tabler Icons

- A set of over 2200 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 @@ -27,13 +22,13 @@ ## Preview

- Tabler Icons preview + + + + Tabler Icons preview +

-## Sponsor Tabler - -Sponsor Tabler - ## Installation @@ -252,7 +247,7 @@ By default the stroke width is 2. You can change the stroke width in the `compil } ``` -To reduce the font file size you can choose to compile a sub set of icons. When you leave the array empty it will compile all the fonts. To compile only two icons you can set for example the folowing option in the `compile-options.json`: +To reduce the font file size you can choose to compile a sub set of icons. When you leave the array empty it will compile all the fonts. To compile only two icons you can set for example the following option in the `compile-options.json`: ```JSON { @@ -260,7 +255,7 @@ To reduce the font file size you can choose to compile a sub set of icons. When } ``` -Optional property `includeCategories` - an array or string of icon categories to include, category names are case-issensetive. +Optional property `includeCategories` - an array or string of icon categories to include, category names are case-insensitive. ```JSON { "includeCategories": ["Devices", "System"] @@ -312,8 +307,17 @@ For Android or Desktop you can use [`compose-icons`](https://github.com/DevSrSou All icons in this repository have been created with the value of the `stroke-width` property, so if you change the value, you can get different icon variants that will fit in well with your design. -![](https://raw.githubusercontent.com/tabler/tabler-icons/master/.github/icons-stroke.png) + + + + Tabler Icons preview + ## License Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). + + +## Sponsor Tabler + +Sponsor Tabler diff --git a/_import.sh b/_import.sh deleted file mode 100755 index 6b7c12473..000000000 --- a/_import.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -rm ./new/Artboard.svg - -for file in ./new/*.svg -do - echo "${file}" - sed -i "" 's/---//g' ${file} - sed -i "" 's/fill="none"//g' ${file} - sed -i "" 's/fill-rule="evenodd"//g' ${file} - sed -i "" 's/stroke-linecap="round"//g' ${file} - sed -i "" 's/stroke-linejoin="round"//g' ${file} - sed -i "" 's/viewBox="0 0 24 24"//g' ${file} - sed -i "" 's/stroke="#000000"//g' ${file} - sed -i "" 's/stroke="#000"//g' ${file} - sed -i "" 's/stroke-width="2"//g' ${file} - sed -i "" 's/width="24"//g' ${file} - sed -i "" 's/width="24px"//g' ${file} - sed -i "" 's/height="24"//g' ${file} - sed -i "" 's/height="24px"//g' ${file} - sed -i "" 's/xmlns="http:\/\/www.w3.org\/2000\/svg"//g' ${file} - sed -i "" 's/"//g' ${file} - sed -i "" 's///g' ${file} - sed -i "" 's///g' ${file} - sed -i "" 's///g' ${file} - sed -i "" 's///g' ${file} -done - -svgo -f ./new/ --pretty --disable mergePaths - -for file in ./new/*.svg -do - echo "${file}" - sed -i "" -e $'s//---\\\n---\\\n/g' ${file} -done - -cp ./new/* ./src/_icons/ -gulp optimize - 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 ff868a674..000000000 --- a/gulpfile.js +++ /dev/null @@ -1,793 +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'), - 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 cp.exec(`rsvg-convert -h 240 ${filePath} > ${destination}`) -} - -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) { - - 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', function(cb) { - cp.exec('mkdir -p icons-outlined/ && rm -fd ./icons-outlined/* && mkdir -p && rm -fd ./iconfont/*', function() { - cb() - }) -}) - -gulp.task('iconfont-clean', function(cb) { - cp.exec('rm -rf ./icons-outlined', function() { - cb() - }) -}) - -gulp.task('iconfont-svg-outline', function(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', function() { - return gulp.src('icons-outlined/*').pipe(svgo()).pipe(gulp.dest('icons-outlined')) -}) - -gulp.task('iconfont-fix-outline', function(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', function() { - 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', function(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', function() { - 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', function(cb) { - const jekyll = cp.spawn('bundle', ['exec', 'jekyll', 'build'], { stdio: 'inherit' }) - jekyll.on('close', function(code) { - console.log(`Jekyll build exited with code ${code}`) - if (!code) { - cb() - } - }) -}) - -gulp.task('build-copy', function(cb) { - cp.exec('mkdir -p icons/ && rm -fd ./icons/* && cp ./_site/icons/* ./icons && cp ./_site/tags.json .', function() { - cb() - }) -}) - -gulp.task('clean-png', function(cb) { - cp.exec('rm -fd ./icons-png/*', function() { - cb() - }) -}) - -gulp.task('icons-sprite', function(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', function(cb) { - glob('icons/*.svg', {}, function(er, files) { - generateIconsPreview(files, '.github/icons.svg', cb) - }) -}) - -gulp.task('icons-stroke', gulp.series('build-jekyll', function(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` - - fs.writeFileSync('.github/icons-stroke.svg', svgContent) - createScreenshot('.github/icons-stroke.svg') - cb() -})) - -gulp.task('optimize', function(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)>/g, '/>'). - replace(/rx="([^"]+)"\s+ry="\1"/g, 'rx="$1"'). - replace(/]+)?\/>/g, ''). - replace(/\s?\/>/g, ' />'). - replace(/\n\s*<(line|circle|path|polyline|rect)/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(/ 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', function(cb) { - const version = argv['latest-tag'] || `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', function(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, 6, 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', function(cb) { - cp.exec('rm -fd ./icons-react/* && mkdir icons-react/icons-js', function() { - cb() - }) -}) - -gulp.task('svg-to-react', gulp.series('clean-react', async function(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\ninterface TablerIconProps extends SVGAttributes { color?: string; size?: string | number; stroke?: string | number; }\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', function(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', function(cb) { - let files = glob.sync('./src/_icons/*-2.svg') - - files.forEach(function(file, i) { - const fileOriginal = file.replace(/\-2.svg$/, '.svg') - - if (fs.existsSync(fileOriginal)) { - const dataOriginal = fs.readFileSync(fileOriginal).toString() - - const categoryOriginal = dataOriginal.match(/category: ([a-zA-Z-]+)/) - - if (categoryOriginal) { - console.log('categoryOriginal', categoryOriginal[1]) - - let data = fs.readFileSync(file).toString() - data = data.replace(/(---[\s\S]+?---)/, function(m, headerContent) { - - headerContent = headerContent.replace(/category: .*\n/, '') - headerContent = headerContent.replace(/---/, `---\ncategory: ${categoryOriginal[1]}`) - - return headerContent - }) - - fs.writeFileSync(file, data) - } - } - }) - - cb() -}) - -gulp.task('import-tags', function(cb) { - fs.createReadStream('./_import.tsv').pipe(csv({ - headers: false, - separator: '\t' - })).on('data', (row) => { - console.log(row[0], row[1]) - - const filename = `src/_icons/${row[0]}.svg` - - let data = fs.readFileSync(filename).toString() - data = data.replace(/(---[\s\S]+?---)/, function(m, headerContent) { - - headerContent = headerContent.replace(/tags: .*\n/, '') - headerContent = headerContent.replace(/---/, `---\ntags: [${row[1]}]`) - - return headerContent - }) - - fs.writeFileSync(filename, data) - - }).on('end', () => { - console.log('CSV file successfully processed') - }) - cb() -}) - -gulp.task('build-react', function(cb) { - cp.exec('npm run build-react', function() { - 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')) diff --git a/iconfont/fonts/tabler-icons.eot b/iconfont/fonts/tabler-icons.eot deleted file mode 100644 index 3add51162..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 3f3ae0a44..000000000 --- a/iconfont/fonts/tabler-icons.svg +++ /dev/null @@ -1,6708 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/iconfont/fonts/tabler-icons.ttf b/iconfont/fonts/tabler-icons.ttf deleted file mode 100644 index db676ffc7..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 03ba305d4..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 a5bdbae96..000000000 Binary files a/iconfont/fonts/tabler-icons.woff2 and /dev/null differ diff --git a/iconfont/tabler-icons.css b/iconfont/tabler-icons.css deleted file mode 100644 index e93f5df13..000000000 --- a/iconfont/tabler-icons.css +++ /dev/null @@ -1,8959 +0,0 @@ -/*! - * Tabler Icons 1.82.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: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - /* Better Font Rendering */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.ti-2fa:before { - content: "\eca0"; -} - -.ti-3d-cube-sphere:before { - content: "\ecd7"; -} - -.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-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-address-book:before { - content: "\f021"; -} - -.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-alarm:before { - content: "\ea04"; -} - -.ti-alarm-off:before { - content: "\f0a9"; -} - -.ti-album:before { - content: "\f022"; -} - -.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-center:before { - content: "\ea07"; -} - -.ti-align-justified:before { - content: "\ea08"; -} - -.ti-align-left:before { - content: "\ea09"; -} - -.ti-align-right:before { - content: "\ea0a"; -} - -.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-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-aperture:before { - content: "\eb58"; -} - -.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-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-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-bottom-bar:before { - content: "\ed98"; -} - -.ti-arrow-bottom-circle:before { - content: "\ed99"; -} - -.ti-arrow-bottom-square:before { - content: "\ed9a"; -} - -.ti-arrow-bottom-tail:before { - content: "\ed9b"; -} - -.ti-arrow-curve-left:before { - content: "\f048"; -} - -.ti-arrow-curve-right:before { - content: "\f049"; -} - -.ti-arrow-down:before { - content: "\ea16"; -} - -.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-right:before { - content: "\ea15"; -} - -.ti-arrow-down-right-circle:before { - content: "\ea14"; -} - -.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-left:before { - content: "\ea19"; -} - -.ti-arrow-left-bar:before { - content: "\ed9c"; -} - -.ti-arrow-left-circle:before { - content: "\ea18"; -} - -.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-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-top-bar:before { - content: "\eda4"; -} - -.ti-arrow-top-circle:before { - content: "\eda5"; -} - -.ti-arrow-top-square:before { - content: "\eda6"; -} - -.ti-arrow-top-tail:before { - content: "\eda7"; -} - -.ti-arrow-up:before { - content: "\ea25"; -} - -.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-right:before { - content: "\ea24"; -} - -.ti-arrow-up-right-circle:before { - content: "\ea23"; -} - -.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-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-aspect-ratio:before { - content: "\ed30"; -} - -.ti-aspect-ratio-off:before { - content: "\f0af"; -} - -.ti-assembly:before { - content: "\f24d"; -} - -.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-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-carriage:before { - content: "\f05d"; -} - -.ti-backhoe:before { - content: "\ed86"; -} - -.ti-backpack:before { - content: "\ef47"; -} - -.ti-backspace:before { - content: "\ea2d"; -} - -.ti-badge:before { - content: "\efc2"; -} - -.ti-badge-off:before { - content: "\f0fb"; -} - -.ti-badges:before { - content: "\efc3"; -} - -.ti-badges-off:before { - content: "\f0fc"; -} - -.ti-ball-american-football:before { - content: "\ee04"; -} - -.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-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-bible:before { - content: "\efc4"; -} - -.ti-bike:before { - content: "\ea36"; -} - -.ti-bike-off:before { - content: "\f0b8"; -} - -.ti-binary:before { - content: "\ee08"; -} - -.ti-biohazard:before { - content: "\ecb8"; -} - -.ti-biohazard-off:before { - content: "\f0b9"; -} - -.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-bold:before { - content: "\eb7b"; -} - -.ti-bold-off:before { - content: "\f0ba"; -} - -.ti-bolt:before { - content: "\ea38"; -} - -.ti-bolt-off:before { - content: "\ecec"; -} - -.ti-bone:before { - content: "\edb8"; -} - -.ti-bone-off:before { - content: "\f0bb"; -} - -.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-bow:before { - content: "\f096"; -} - -.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-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-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-brand-adobe:before { - content: "\f0dc"; -} - -.ti-brand-airbnb:before { - content: "\ed68"; -} - -.ti-brand-airtable:before { - content: "\ef6a"; -} - -.ti-brand-amazon:before { - content: "\f230"; -} - -.ti-brand-amongus:before { - content: "\f205"; -} - -.ti-brand-android:before { - content: "\ec16"; -} - -.ti-brand-angular:before { - content: "\ef6b"; -} - -.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-badoo:before { - content: "\f206"; -} - -.ti-brand-bandcamp:before { - content: "\f207"; -} - -.ti-brand-beats:before { - content: "\f208"; -} - -.ti-brand-behance:before { - content: "\ec6e"; -} - -.ti-brand-bing:before { - content: "\edc6"; -} - -.ti-brand-bitbucket:before { - content: "\edc7"; -} - -.ti-brand-booking:before { - content: "\edc8"; -} - -.ti-brand-bootstrap:before { - content: "\ef3e"; -} - -.ti-brand-chrome:before { - content: "\ec18"; -} - -.ti-brand-codepen:before { - content: "\ec6f"; -} - -.ti-brand-codesandbox:before { - content: "\ed6a"; -} - -.ti-brand-coinbase:before { - content: "\f209"; -} - -.ti-brand-comedy-central:before { - content: "\f217"; -} - -.ti-brand-css3:before { - content: "\ed6b"; -} - -.ti-brand-cucumber:before { - content: "\ef6c"; -} - -.ti-brand-d3:before { - content: "\f24e"; -} - -.ti-brand-debian:before { - content: "\ef57"; -} - -.ti-brand-deno:before { - content: "\f24f"; -} - -.ti-brand-deviantart:before { - content: "\ecfb"; -} - -.ti-brand-discord:before { - content: "\ece3"; -} - -.ti-brand-disney:before { - content: "\f20a"; -} - -.ti-brand-disqus:before { - content: "\edc9"; -} - -.ti-brand-docker:before { - content: "\edca"; -} - -.ti-brand-doctrine:before { - content: "\ef6d"; -} - -.ti-brand-dribbble:before { - content: "\ec19"; -} - -.ti-brand-edge:before { - content: "\ecfc"; -} - -.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-flipboard:before { - content: "\f20b"; -} - -.ti-brand-fortnite:before { - content: "\f260"; -} - -.ti-brand-foursquare:before { - content: "\ecff"; -} - -.ti-brand-framer:before { - content: "\ec1b"; -} - -.ti-brand-git:before { - content: "\ef6f"; -} - -.ti-brand-github:before { - content: "\ec1c"; -} - -.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-drive:before { - content: "\ec1e"; -} - -.ti-brand-google-fit:before { - content: "\f297"; -} - -.ti-brand-google-one:before { - content: "\f232"; -} - -.ti-brand-google-photos:before { - content: "\f20c"; -} - -.ti-brand-google-play:before { - content: "\ed25"; -} - -.ti-brand-gravatar:before { - content: "\edcc"; -} - -.ti-brand-grindr:before { - content: "\f20d"; -} - -.ti-brand-hipchat:before { - content: "\edcd"; -} - -.ti-brand-html5:before { - content: "\ed6c"; -} - -.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-lastfm:before { - content: "\f001"; -} - -.ti-brand-linkedin:before { - content: "\ec8c"; -} - -.ti-brand-linktree:before { - content: "\f1e7"; -} - -.ti-brand-loom:before { - content: "\ef70"; -} - -.ti-brand-mastercard:before { - content: "\ef49"; -} - -.ti-brand-mastodon:before { - content: "\f250"; -} - -.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-monday:before { - content: "\f219"; -} - -.ti-brand-netbeans:before { - content: "\ef71"; -} - -.ti-brand-netflix:before { - content: "\edcf"; -} - -.ti-brand-nextjs:before { - content: "\f0dd"; -} - -.ti-brand-notion:before { - content: "\ef7b"; -} - -.ti-brand-nuxt:before { - content: "\f0de"; -} - -.ti-brand-nytimes:before { - content: "\ef8d"; -} - -.ti-brand-open-source:before { - content: "\edd0"; -} - -.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-pepsi:before { - content: "\f261"; -} - -.ti-brand-php:before { - content: "\ef72"; -} - -.ti-brand-pinterest:before { - content: "\ec8d"; -} - -.ti-brand-pocket:before { - content: "\ed00"; -} - -.ti-brand-producthunt:before { - content: "\edd3"; -} - -.ti-brand-pushover:before { - content: "\f20e"; -} - -.ti-brand-python:before { - content: "\ed01"; -} - -.ti-brand-react-native:before { - content: "\ef73"; -} - -.ti-brand-reddit:before { - content: "\ec8e"; -} - -.ti-brand-safari:before { - content: "\ec23"; -} - -.ti-brand-sass:before { - content: "\edd4"; -} - -.ti-brand-sentry:before { - content: "\edd5"; -} - -.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-soundcloud:before { - content: "\ed6e"; -} - -.ti-brand-spotify:before { - content: "\ed03"; -} - -.ti-brand-stackoverflow:before { - content: "\ef58"; -} - -.ti-brand-steam:before { - content: "\ed6f"; -} - -.ti-brand-strava:before { - content: "\f254"; -} - -.ti-brand-stripe:before { - content: "\edd7"; -} - -.ti-brand-sublime-text:before { - content: "\ef74"; -} - -.ti-brand-surfshark:before { - content: "\f255"; -} - -.ti-brand-svelte:before { - content: "\f0df"; -} - -.ti-brand-tabler:before { - content: "\ec8f"; -} - -.ti-brand-tailwind:before { - content: "\eca1"; -} - -.ti-brand-telegram:before { - content: "\ec26"; -} - -.ti-brand-tidal:before { - content: "\ed70"; -} - -.ti-brand-tiktok:before { - content: "\ec73"; -} - -.ti-brand-tinder:before { - content: "\ed71"; -} - -.ti-brand-toyota:before { - content: "\f262"; -} - -.ti-brand-tripadvisor:before { - content: "\f002"; -} - -.ti-brand-tumblr:before { - content: "\ed04"; -} - -.ti-brand-twitch:before { - content: "\ed05"; -} - -.ti-brand-twitter:before { - content: "\ec27"; -} - -.ti-brand-uber:before { - content: "\ef75"; -} - -.ti-brand-ubuntu:before { - content: "\ef59"; -} - -.ti-brand-unity:before { - content: "\f2ac"; -} - -.ti-brand-unsplash:before { - content: "\edd8"; -} - -.ti-brand-vercel:before { - content: "\ef24"; -} - -.ti-brand-vimeo:before { - content: "\ed06"; -} - -.ti-brand-vinted:before { - content: "\f20f"; -} - -.ti-brand-visual-studio:before { - content: "\ef76"; -} - -.ti-brand-vivaldi:before { - content: "\f210"; -} - -.ti-brand-vk:before { - content: "\ed72"; -} - -.ti-brand-vue:before { - content: "\f0e0"; -} - -.ti-brand-walmart:before { - content: "\f211"; -} - -.ti-brand-webflow:before { - content: "\f2d2"; -} - -.ti-brand-whatsapp:before { - content: "\ec74"; -} - -.ti-brand-windows:before { - content: "\ecd8"; -} - -.ti-brand-wish:before { - content: "\f212"; -} - -.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-zoom:before { - content: "\f215"; -} - -.ti-brand-zwift:before { - content: "\f216"; -} - -.ti-bread:before { - content: "\efa3"; -} - -.ti-briefcase:before { - content: "\ea46"; -} - -.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-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-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-carousel:before { - content: "\ed87"; -} - -.ti-building-castle:before { - content: "\ed88"; -} - -.ti-building-church:before { - content: "\ea4c"; -} - -.ti-building-community:before { - content: "\ebf6"; -} - -.ti-building-cottage:before { - content: "\ee1b"; -} - -.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-store:before { - content: "\ea4e"; -} - -.ti-building-warehouse:before { - content: "\ebe3"; -} - -.ti-bulb:before { - content: "\ea51"; -} - -.ti-bulb-off:before { - content: "\ea50"; -} - -.ti-bulldozer:before { - content: "\ee1d"; -} - -.ti-bus:before { - content: "\ebe4"; -} - -.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-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-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-candle:before { - content: "\efc6"; -} - -.ti-candy:before { - content: "\ef0d"; -} - -.ti-candy-off:before { - content: "\f0c5"; -} - -.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-caravan:before { - content: "\ec7c"; -} - -.ti-cardboards:before { - content: "\ed74"; -} - -.ti-cardboards-off:before { - content: "\f0c8"; -} - -.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-carrot:before { - content: "\f21c"; -} - -.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-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-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-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-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-radar:before { - content: "\ed77"; -} - -.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-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-christmas-tree:before { - content: "\ed78"; -} - -.ti-circle:before { - content: "\ea6b"; -} - -.ti-circle-0:before { - content: "\ee34"; -} - -.ti-circle-1:before { - content: "\ee35"; -} - -.ti-circle-2:before { - content: "\ee36"; -} - -.ti-circle-3:before { - content: "\ee37"; -} - -.ti-circle-4:before { - content: "\ee38"; -} - -.ti-circle-5:before { - content: "\ee39"; -} - -.ti-circle-6:before { - content: "\ee3a"; -} - -.ti-circle-7:before { - content: "\ee3b"; -} - -.ti-circle-8:before { - content: "\ee3c"; -} - -.ti-circle-9:before { - content: "\ee3d"; -} - -.ti-circle-check:before { - content: "\ea67"; -} - -.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-minus:before { - content: "\ea68"; -} - -.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-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-list:before { - content: "\ea6d"; -} - -.ti-clipboard-off:before { - content: "\f0ce"; -} - -.ti-clipboard-plus:before { - content: "\efb2"; -} - -.ti-clipboard-text:before { - content: "\f089"; -} - -.ti-clipboard-x:before { - content: "\ea6e"; -} - -.ti-clock:before { - content: "\ea70"; -} - -.ti-clock-2:before { - content: "\f099"; -} - -.ti-clock-off:before { - content: "\f0cf"; -} - -.ti-clothes-rack:before { - content: "\f285"; -} - -.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-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-coin:before { - content: "\eb82"; -} - -.ti-coin-bitcoin:before { - content: "\f2be"; -} - -.ti-coin-euro:before { - content: "\f2bf"; -} - -.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-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-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-confetti:before { - content: "\ee46"; -} - -.ti-container:before { - content: "\ee47"; -} - -.ti-container-off:before { - content: "\f107"; -} - -.ti-contrast:before { - content: "\ec4e"; -} - -.ti-contrast-2:before { - content: "\efc7"; -} - -.ti-cookie:before { - content: "\ef0f"; -} - -.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-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-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-canadian:before { - content: "\ee57"; -} - -.ti-currency-dollar-singapore:before { - content: "\ee58"; -} - -.ti-currency-ethereum:before { - content: "\ee59"; -} - -.ti-currency-euro:before { - content: "\eb85"; -} - -.ti-currency-forint:before { - content: "\ee5a"; -} - -.ti-currency-frank:before { - content: "\ee5b"; -} - -.ti-currency-krone-czech:before { - content: "\ee5c"; -} - -.ti-currency-krone-danish:before { - content: "\ee5d"; -} - -.ti-currency-krone-swedish:before { - content: "\ee5e"; -} - -.ti-currency-leu:before { - content: "\ee5f"; -} - -.ti-currency-lira:before { - content: "\ee60"; -} - -.ti-currency-litecoin:before { - content: "\ee61"; -} - -.ti-currency-naira:before { - content: "\ee62"; -} - -.ti-currency-pound:before { - content: "\ebac"; -} - -.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-rupee:before { - content: "\ebad"; -} - -.ti-currency-shekel:before { - content: "\ee68"; -} - -.ti-currency-taka:before { - content: "\ee69"; -} - -.ti-currency-tugrik:before { - content: "\ee6a"; -} - -.ti-currency-won:before { - content: "\ee6b"; -} - -.ti-currency-yen:before { - content: "\ebae"; -} - -.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-dashboard:before { - content: "\ea87"; -} - -.ti-database:before { - content: "\ea88"; -} - -.ti-database-export:before { - content: "\ee6e"; -} - -.ti-database-import:before { - content: "\ee6f"; -} - -.ti-database-off:before { - content: "\ee70"; -} - -.ti-dental:before { - content: "\f025"; -} - -.ti-dental-broken:before { - content: "\f286"; -} - -.ti-dental-off:before { - content: "\f110"; -} - -.ti-details:before { - content: "\ee71"; -} - -.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-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-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-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: "\f066"; -} - -.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-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-off:before { - content: "\f118"; -} - -.ti-discount:before { - content: "\ebbd"; -} - -.ti-discount-2:before { - content: "\ee7c"; -} - -.ti-discount-check:before { - content: "\f1f8"; -} - -.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-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-ear:before { - content: "\ebce"; -} - -.ti-ear-off:before { - content: "\ee84"; -} - -.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-off:before { - content: "\f11f"; -} - -.ti-elevator:before { - content: "\efdf"; -} - -.ti-emergency-bed:before { - content: "\ef5d"; -} - -.ti-empathize:before { - content: "\f29b"; -} - -.ti-emphasis:before { - content: "\ebcf"; -} - -.ti-engine:before { - content: "\ef7e"; -} - -.ti-engine-off:before { - content: "\f120"; -} - -.ti-equal:before { - content: "\ee87"; -} - -.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-mark:before { - content: "\efb4"; -} - -.ti-exclamation-mark-off:before { - content: "\f124"; -} - -.ti-explicit:before { - content: "\f256"; -} - -.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-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-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-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-horizontal:before { - content: "\ebb0"; -} - -.ti-file-import:before { - content: "\edea"; -} - -.ti-file-info:before { - content: "\edec"; -} - -.ti-file-invoice:before { - content: "\eb67"; -} - -.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-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-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-firetruck:before { - content: "\ebe8"; -} - -.ti-first-aid-kit:before { - content: "\ef5f"; -} - -.ti-fish:before { - content: "\ef2b"; -} - -.ti-fish-bone:before { - content: "\f287"; -} - -.ti-fish-hook:before { - content: "\f1f9"; -} - -.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-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-friends:before { - content: "\eab0"; -} - -.ti-friends-off:before { - content: "\f136"; -} - -.ti-function:before { - content: "\f225"; -} - -.ti-garden-cart:before { - content: "\f23e"; -} - -.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-gif:before { - content: "\f257"; -} - -.ti-gift:before { - content: "\eb68"; -} - -.ti-git-branch:before { - content: "\eab2"; -} - -.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-golf:before { - content: "\ed8c"; -} - -.ti-golf-off:before { - content: "\f13a"; -} - -.ti-gps:before { - content: "\ed7a"; -} - -.ti-grain:before { - content: "\ee92"; -} - -.ti-graph:before { - content: "\f288"; -} - -.ti-grid-dots:before { - content: "\eaba"; -} - -.ti-grid-pattern:before { - content: "\efc9"; -} - -.ti-grill:before { - content: "\efa9"; -} - -.ti-grill-off:before { - content: "\f13b"; -} - -.ti-grip-horizontal:before { - content: "\ec00"; -} - -.ti-grip-vertical:before { - content: "\ec01"; -} - -.ti-growth:before { - content: "\ee93"; -} - -.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-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-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-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-hexagon:before { - content: "\ec02"; -} - -.ti-hexagon-off:before { - content: "\ee9c"; -} - -.ti-hexagons:before { - content: "\f09d"; -} - -.ti-hierarchy:before { - content: "\ee9e"; -} - -.ti-hierarchy-2:before { - content: "\ee9d"; -} - -.ti-hierarchy-3:before { - content: "\f289"; -} - -.ti-highlight:before { - content: "\ef3f"; -} - -.ti-highlight-off:before { - content: "\f144"; -} - -.ti-history:before { - content: "\ebea"; -} - -.ti-history-toggle:before { - content: "\f1fc"; -} - -.ti-home:before { - content: "\eac1"; -} - -.ti-home-2:before { - content: "\eac0"; -} - -.ti-home-off:before { - content: "\f145"; -} - -.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-id:before { - content: "\eac3"; -} - -.ti-id-badge:before { - content: "\eff7"; -} - -.ti-id-badge-2:before { - content: "\f076"; -} - -.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-info-circle:before { - content: "\eac5"; -} - -.ti-info-square:before { - content: "\eac6"; -} - -.ti-input-search:before { - content: "\f2a2"; -} - -.ti-italic:before { - content: "\eb93"; -} - -.ti-jewish-star:before { - content: "\f1d5"; -} - -.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-ladder:before { - content: "\efe2"; -} - -.ti-ladder-off:before { - content: "\f14c"; -} - -.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-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-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: "\f152"; -} - -.ti-lego:before { - content: "\eadc"; -} - -.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-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-view:before { - content: "\ec6b"; -} - -.ti-loader:before { - content: "\eca3"; -} - -.ti-loader-2:before { - content: "\f226"; -} - -.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-off:before { - content: "\ed1e"; -} - -.ti-lock-open:before { - content: "\eae1"; -} - -.ti-lock-open-off:before { - content: "\f156"; -} - -.ti-lock-square:before { - content: "\ef51"; -} - -.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-macro:before { - content: "\eeab"; -} - -.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-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-massage:before { - content: "\eeb1"; -} - -.ti-math:before { - content: "\ebeb"; -} - -.ti-math-avg:before { - content: "\f0f4"; -} - -.ti-math-function:before { - content: "\eeb2"; -} - -.ti-math-function-off:before { - content: "\f15e"; -} - -.ti-math-max:before { - content: "\f0f5"; -} - -.ti-math-min:before { - content: "\f0f6"; -} - -.ti-math-symbols:before { - content: "\eeb3"; -} - -.ti-maximize:before { - content: "\eaea"; -} - -.ti-maximize-off:before { - content: "\f15f"; -} - -.ti-meat:before { - content: "\ef12"; -} - -.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-menu:before { - content: "\eaeb"; -} - -.ti-menu-2:before { - content: "\ec42"; -} - -.ti-message:before { - content: "\eaef"; -} - -.ti-message-2:before { - content: "\eaec"; -} - -.ti-message-2-code:before { - content: "\f012"; -} - -.ti-message-2-share:before { - content: "\f077"; -} - -.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-mickey:before { - content: "\f2a3"; -} - -.ti-microphone:before { - content: "\eaf0"; -} - -.ti-microphone-2:before { - content: "\ef2c"; -} - -.ti-microphone-off:before { - content: "\ed16"; -} - -.ti-microscope:before { - content: "\ef64"; -} - -.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-minimize:before { - content: "\eaf1"; -} - -.ti-minus:before { - content: "\eaf2"; -} - -.ti-minus-vertical:before { - content: "\eeb4"; -} - -.ti-mist:before { - content: "\ec30"; -} - -.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-nervous:before { - content: "\ef96"; -} - -.ti-mood-neutral:before { - content: "\eaf5"; -} - -.ti-mood-off:before { - content: "\f161"; -} - -.ti-mood-sad:before { - content: "\eaf6"; -} - -.ti-mood-sing:before { - content: "\f2c7"; -} - -.ti-mood-smile:before { - content: "\eaf7"; -} - -.ti-mood-suprised:before { - content: "\ec04"; -} - -.ti-mood-tongue:before { - content: "\eb95"; -} - -.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-mouse:before { - content: "\eaf9"; -} - -.ti-mouse-2:before { - content: "\f1d7"; -} - -.ti-mouse-off:before { - content: "\f163"; -} - -.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-music:before { - content: "\eafc"; -} - -.ti-music-off:before { - content: "\f166"; -} - -.ti-navigation:before { - content: "\f2c8"; -} - -.ti-network:before { - content: "\f09f"; -} - -.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-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-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-vertical:before { - content: "\ed34"; -} - -.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-paw:before { - content: "\eff9"; -} - -.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-pepper:before { - content: "\ef15"; -} - -.ti-pepper-off:before { - content: "\f175"; -} - -.ti-percentage:before { - content: "\ecf4"; -} - -.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-off:before { - content: "\ecf6"; -} - -.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-off:before { - content: "\f177"; -} - -.ti-pill:before { - content: "\ec44"; -} - -.ti-pill-off:before { - content: "\f178"; -} - -.ti-pills:before { - content: "\ef66"; -} - -.ti-pin:before { - content: "\ec9c"; -} - -.ti-pinned:before { - content: "\ed60"; -} - -.ti-pinned-off:before { - content: "\ed5f"; -} - -.ti-pizza:before { - content: "\edbb"; -} - -.ti-pizza-off:before { - content: "\f179"; -} - -.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-podium:before { - content: "\f1d8"; -} - -.ti-point:before { - content: "\eb0c"; -} - -.ti-point-off:before { - content: "\f181"; -} - -.ti-pointer:before { - content: "\f265"; -} - -.ti-pokeball:before { - content: "\eec1"; -} - -.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-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-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-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-radio:before { - content: "\ef2d"; -} - -.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-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-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-repeat:before { - content: "\eb72"; -} - -.ti-repeat-off:before { - content: "\f18e"; -} - -.ti-repeat-once:before { - content: "\eb71"; -} - -.ti-replace:before { - content: "\ebc7"; -} - -.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-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-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-off:before { - content: "\f194"; -} - -.ti-router:before { - content: "\eb18"; -} - -.ti-row-insert-bottom:before { - content: "\eed0"; -} - -.ti-row-insert-top:before { - content: "\eed1"; -} - -.ti-rss:before { - content: "\eb19"; -} - -.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-sailboat:before { - content: "\ec83"; -} - -.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-school:before { - content: "\ecf7"; -} - -.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-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-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-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-off:before { - content: "\f19e"; -} - -.ti-servicemark:before { - content: "\ec09"; -} - -.ti-settings:before { - content: "\eb20"; -} - -.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-lock:before { - content: "\ed58"; -} - -.ti-shield-off:before { - content: "\ecf8"; -} - -.ti-shield-x:before { - content: "\eb23"; -} - -.ti-ship:before { - content: "\ec84"; -} - -.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-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-skull:before { - content: "\f292"; -} - -.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-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-sos:before { - content: "\f24a"; -} - -.ti-soup:before { - content: "\ef2e"; -} - -.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-sport-billard:before { - content: "\eee4"; -} - -.ti-spy:before { - content: "\f227"; -} - -.ti-square:before { - content: "\eb2c"; -} - -.ti-square-0:before { - content: "\eee5"; -} - -.ti-square-1:before { - content: "\eee6"; -} - -.ti-square-2:before { - content: "\eee7"; -} - -.ti-square-3:before { - content: "\eee8"; -} - -.ti-square-4:before { - content: "\eee9"; -} - -.ti-square-5:before { - content: "\eeea"; -} - -.ti-square-6:before { - content: "\eeeb"; -} - -.ti-square-7:before { - content: "\eeec"; -} - -.ti-square-8:before { - content: "\eeed"; -} - -.ti-square-9:before { - content: "\eeee"; -} - -.ti-square-asterisk:before { - content: "\f01a"; -} - -.ti-square-check:before { - content: "\eb28"; -} - -.ti-square-dot:before { - content: "\ed59"; -} - -.ti-square-forbid:before { - content: "\ed5b"; -} - -.ti-square-forbid-2:before { - content: "\ed5a"; -} - -.ti-square-half:before { - content: "\effb"; -} - -.ti-square-minus:before { - content: "\eb29"; -} - -.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-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-steam:before { - content: "\f24b"; -} - -.ti-steering-wheel:before { - content: "\ec7b"; -} - -.ti-step-into:before { - content: "\ece0"; -} - -.ti-step-out:before { - content: "\ece1"; -} - -.ti-stethoscope:before { - content: "\edbe"; -} - -.ti-sticker:before { - content: "\eb2f"; -} - -.ti-storm:before { - content: "\f24c"; -} - -.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-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-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: "\f1ac"; -} - -.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-off:before { - content: "\f1ad"; -} - -.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-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-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-thermometer:before { - content: "\ef67"; -} - -.ti-thumb-down:before { - content: "\eb3b"; -} - -.ti-thumb-up:before { - content: "\eb3c"; -} - -.ti-ticket:before { - content: "\eb3d"; -} - -.ti-ticket-off:before { - content: "\f1b2"; -} - -.ti-tie:before { - content: "\f07e"; -} - -.ti-tilt-shift:before { - content: "\eefe"; -} - -.ti-tilt-shift-off:before { - content: "\f1b3"; -} - -.ti-timeline:before { - content: "\f031"; -} - -.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-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-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-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-trophy:before { - content: "\eb45"; -} - -.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-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-vaccine:before { - content: "\ef04"; -} - -.ti-vaccine-bottle:before { - content: "\ef69"; -} - -.ti-vaccine-off:before { - content: "\f1bc"; -} - -.ti-variable:before { - content: "\ef05"; -} - -.ti-variable-off:before { - content: "\f1bd"; -} - -.ti-vector:before { - content: "\eca9"; -} - -.ti-vector-bezier:before { - content: "\ef1d"; -} - -.ti-vector-bezier-2:before { - content: "\f1a3"; -} - -.ti-vector-off:before { - content: "\f1be"; -} - -.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-virus:before { - content: "\eb74"; -} - -.ti-virus-off:before { - content: "\ed66"; -} - -.ti-virus-search:before { - content: "\ed67"; -} - -.ti-vocabulary:before { - content: "\ef1e"; -} - -.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-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-machine:before { - content: "\f25e"; -} - -.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-wheelchair:before { - content: "\f1db"; -} - -.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-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-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-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"; -} diff --git a/iconfont/tabler-icons.html b/iconfont/tabler-icons.html deleted file mode 100644 index 994b4daf9..000000000 --- a/iconfont/tabler-icons.html +++ /dev/null @@ -1,20235 +0,0 @@ - - - - - - - Tabler Icons - version 1.82.0 - - - - - - - -
-
-

- Tabler Icons -

-

version 1.82.0

-
- - - -
-
- -
- - 2fa -
- ti ti-2fa
- \eca0 -
-
- -
- - 3d-cube-sphere -
- ti ti-3d-cube-sphere
- \ecd7 -
-
- -
- - 3d-rotate -
- ti ti-3d-rotate
- \f020 -
-
- -
- - a-b -
- ti ti-a-b
- \ec36 -
-
- -
- - a-b-2 -
- ti ti-a-b-2
- \f25f -
-
- -
- - a-b-off -
- ti ti-a-b-off
- \f0a6 -
-
- -
- - abacus -
- ti ti-abacus
- \f05c -
-
- -
- - access-point -
- ti ti-access-point
- \ed1b -
-
- -
- - access-point-off -
- ti ti-access-point-off
- \ed1a -
-
- -
- - accessible -
- ti ti-accessible
- \eba9 -
-
- -
- - accessible-off -
- ti ti-accessible-off
- \f0a7 -
-
- -
- - activity -
- ti ti-activity
- \ed23 -
-
- -
- - activity-heartbeat -
- ti ti-activity-heartbeat
- \f0db -
-
- -
- - ad -
- ti ti-ad
- \ea02 -
-
- -
- - ad-2 -
- ti ti-ad-2
- \ef1f -
-
- -
- - address-book -
- ti ti-address-book
- \f021 -
-
- -
- - adjustments -
- ti ti-adjustments
- \ea03 -
-
- -
- - adjustments-alt -
- ti ti-adjustments-alt
- \ec37 -
-
- -
- - adjustments-horizontal -
- ti ti-adjustments-horizontal
- \ec38 -
-
- -
- - adjustments-off -
- ti ti-adjustments-off
- \f0a8 -
-
- -
- - aerial-lift -
- ti ti-aerial-lift
- \edfe -
-
- -
- - affiliate -
- ti ti-affiliate
- \edff -
-
- -
- - alarm -
- ti ti-alarm
- \ea04 -
-
- -
- - alarm-off -
- ti ti-alarm-off
- \f0a9 -
-
- -
- - album -
- ti ti-album
- \f022 -
-
- -
- - alert-circle -
- ti ti-alert-circle
- \ea05 -
-
- -
- - alert-octagon -
- ti ti-alert-octagon
- \ecc6 -
-
- -
- - alert-triangle -
- ti ti-alert-triangle
- \ea06 -
-
- -
- - alien -
- ti ti-alien
- \ebde -
-
- -
- - align-center -
- ti ti-align-center
- \ea07 -
-
- -
- - align-justified -
- ti ti-align-justified
- \ea08 -
-
- -
- - align-left -
- ti ti-align-left
- \ea09 -
-
- -
- - align-right -
- ti ti-align-right
- \ea0a -
-
- -
- - alphabet-cyrillic -
- ti ti-alphabet-cyrillic
- \f1df -
-
- -
- - alphabet-greek -
- ti ti-alphabet-greek
- \f1e0 -
-
- -
- - alphabet-latin -
- ti ti-alphabet-latin
- \f1e1 -
-
- -
- - ambulance -
- ti ti-ambulance
- \ebf5 -
-
- -
- - ampersand -
- ti ti-ampersand
- \f229 -
-
- -
- - anchor -
- ti ti-anchor
- \eb76 -
-
- -
- - anchor-off -
- ti ti-anchor-off
- \f0f7 -
-
- -
- - angle -
- ti ti-angle
- \ef20 -
-
- -
- - ankh -
- ti ti-ankh
- \f1cd -
-
- -
- - antenna -
- ti ti-antenna
- \f094 -
-
- -
- - antenna-bars-1 -
- ti ti-antenna-bars-1
- \ecc7 -
-
- -
- - antenna-bars-2 -
- ti ti-antenna-bars-2
- \ecc8 -
-
- -
- - antenna-bars-3 -
- ti ti-antenna-bars-3
- \ecc9 -
-
- -
- - antenna-bars-4 -
- ti ti-antenna-bars-4
- \ecca -
-
- -
- - antenna-bars-5 -
- ti ti-antenna-bars-5
- \eccb -
-
- -
- - antenna-bars-off -
- ti ti-antenna-bars-off
- \f0aa -
-
- -
- - aperture -
- ti ti-aperture
- \eb58 -
-
- -
- - api -
- ti ti-api
- \effd -
-
- -
- - api-app -
- ti ti-api-app
- \effc -
-
- -
- - api-app-off -
- ti ti-api-app-off
- \f0ab -
-
- -
- - api-off -
- ti ti-api-off
- \f0f8 -
-
- -
- - app-window -
- ti ti-app-window
- \efe6 -
-
- -
- - apple -
- ti ti-apple
- \ef21 -
-
- -
- - apps -
- ti ti-apps
- \ebb6 -
-
- -
- - apps-off -
- ti ti-apps-off
- \f0ac -
-
- -
- - archive -
- ti ti-archive
- \ea0b -
-
- -
- - archive-off -
- ti ti-archive-off
- \f0ad -
-
- -
- - armchair -
- ti ti-armchair
- \ef9e -
-
- -
- - armchair-2 -
- ti ti-armchair-2
- \efe7 -
-
- -
- - arrow-autofit-content -
- ti ti-arrow-autofit-content
- \ef31 -
-
- -
- - arrow-autofit-down -
- ti ti-arrow-autofit-down
- \ef32 -
-
- -
- - arrow-autofit-height -
- ti ti-arrow-autofit-height
- \ef33 -
-
- -
- - arrow-autofit-left -
- ti ti-arrow-autofit-left
- \ef34 -
-
- -
- - arrow-autofit-right -
- ti ti-arrow-autofit-right
- \ef35 -
-
- -
- - arrow-autofit-up -
- ti ti-arrow-autofit-up
- \ef36 -
-
- -
- - arrow-autofit-width -
- ti ti-arrow-autofit-width
- \ef37 -
-
- -
- - arrow-back -
- ti ti-arrow-back
- \ea0c -
-
- -
- - arrow-back-up -
- ti ti-arrow-back-up
- \eb77 -
-
- -
- - arrow-bar-down -
- ti ti-arrow-bar-down
- \ea0d -
-
- -
- - arrow-bar-left -
- ti ti-arrow-bar-left
- \ea0e -
-
- -
- - arrow-bar-right -
- ti ti-arrow-bar-right
- \ea0f -
-
- -
- - arrow-bar-to-down -
- ti ti-arrow-bar-to-down
- \ec88 -
-
- -
- - arrow-bar-to-left -
- ti ti-arrow-bar-to-left
- \ec89 -
-
- -
- - arrow-bar-to-right -
- ti ti-arrow-bar-to-right
- \ec8a -
-
- -
- - arrow-bar-to-up -
- ti ti-arrow-bar-to-up
- \ec8b -
-
- -
- - arrow-bar-up -
- ti ti-arrow-bar-up
- \ea10 -
-
- -
- - arrow-bear-left -
- ti ti-arrow-bear-left
- \f045 -
-
- -
- - arrow-bear-left-2 -
- ti ti-arrow-bear-left-2
- \f044 -
-
- -
- - arrow-bear-right -
- ti ti-arrow-bear-right
- \f047 -
-
- -
- - arrow-bear-right-2 -
- ti ti-arrow-bear-right-2
- \f046 -
-
- -
- - arrow-big-down -
- ti ti-arrow-big-down
- \edda -
-
- -
- - arrow-big-down-line -
- ti ti-arrow-big-down-line
- \efe8 -
-
- -
- - arrow-big-down-lines -
- ti ti-arrow-big-down-lines
- \efe9 -
-
- -
- - arrow-big-left -
- ti ti-arrow-big-left
- \eddb -
-
- -
- - arrow-big-left-line -
- ti ti-arrow-big-left-line
- \efea -
-
- -
- - arrow-big-left-lines -
- ti ti-arrow-big-left-lines
- \efeb -
-
- -
- - arrow-big-right -
- ti ti-arrow-big-right
- \eddc -
-
- -
- - arrow-big-right-line -
- ti ti-arrow-big-right-line
- \efec -
-
- -
- - arrow-big-right-lines -
- ti ti-arrow-big-right-lines
- \efed -
-
- -
- - arrow-big-top -
- ti ti-arrow-big-top
- \eddd -
-
- -
- - arrow-big-up-line -
- ti ti-arrow-big-up-line
- \efee -
-
- -
- - arrow-big-up-lines -
- ti ti-arrow-big-up-lines
- \efef -
-
- -
- - arrow-bottom-bar -
- ti ti-arrow-bottom-bar
- \ed98 -
-
- -
- - arrow-bottom-circle -
- ti ti-arrow-bottom-circle
- \ed99 -
-
- -
- - arrow-bottom-square -
- ti ti-arrow-bottom-square
- \ed9a -
-
- -
- - arrow-bottom-tail -
- ti ti-arrow-bottom-tail
- \ed9b -
-
- -
- - arrow-curve-left -
- ti ti-arrow-curve-left
- \f048 -
-
- -
- - arrow-curve-right -
- ti ti-arrow-curve-right
- \f049 -
-
- -
- - arrow-down -
- ti ti-arrow-down
- \ea16 -
-
- -
- - arrow-down-circle -
- ti ti-arrow-down-circle
- \ea11 -
-
- -
- - arrow-down-left -
- ti ti-arrow-down-left
- \ea13 -
-
- -
- - arrow-down-left-circle -
- ti ti-arrow-down-left-circle
- \ea12 -
-
- -
- - arrow-down-right -
- ti ti-arrow-down-right
- \ea15 -
-
- -
- - arrow-down-right-circle -
- ti ti-arrow-down-right-circle
- \ea14 -
-
- -
- - arrow-fork -
- ti ti-arrow-fork
- \f04a -
-
- -
- - arrow-forward -
- ti ti-arrow-forward
- \ea17 -
-
- -
- - arrow-forward-up -
- ti ti-arrow-forward-up
- \eb78 -
-
- -
- - arrow-guide -
- ti ti-arrow-guide
- \f22a -
-
- -
- - arrow-left -
- ti ti-arrow-left
- \ea19 -
-
- -
- - arrow-left-bar -
- ti ti-arrow-left-bar
- \ed9c -
-
- -
- - arrow-left-circle -
- ti ti-arrow-left-circle
- \ea18 -
-
- -
- - arrow-left-right -
- ti ti-arrow-left-right
- \f04b -
-
- -
- - arrow-left-square -
- ti ti-arrow-left-square
- \ed9d -
-
- -
- - arrow-left-tail -
- ti ti-arrow-left-tail
- \ed9e -
-
- -
- - arrow-loop-left -
- ti ti-arrow-loop-left
- \ed9f -
-
- -
- - arrow-loop-left-2 -
- ti ti-arrow-loop-left-2
- \f04c -
-
- -
- - arrow-loop-right -
- ti ti-arrow-loop-right
- \eda0 -
-
- -
- - arrow-loop-right-2 -
- ti ti-arrow-loop-right-2
- \f04d -
-
- -
- - arrow-merge -
- ti ti-arrow-merge
- \f04e -
-
- -
- - arrow-merge-both -
- ti ti-arrow-merge-both
- \f23b -
-
- -
- - arrow-merge-left -
- ti ti-arrow-merge-left
- \f23c -
-
- -
- - arrow-merge-right -
- ti ti-arrow-merge-right
- \f23d -
-
- -
- - arrow-move-down -
- ti ti-arrow-move-down
- \f2ba -
-
- -
- - arrow-move-left -
- ti ti-arrow-move-left
- \f2bb -
-
- -
- - arrow-move-right -
- ti ti-arrow-move-right
- \f2bc -
-
- -
- - arrow-move-up -
- ti ti-arrow-move-up
- \f2bd -
-
- -
- - arrow-narrow-down -
- ti ti-arrow-narrow-down
- \ea1a -
-
- -
- - arrow-narrow-left -
- ti ti-arrow-narrow-left
- \ea1b -
-
- -
- - arrow-narrow-right -
- ti ti-arrow-narrow-right
- \ea1c -
-
- -
- - arrow-narrow-up -
- ti ti-arrow-narrow-up
- \ea1d -
-
- -
- - arrow-ramp-left -
- ti ti-arrow-ramp-left
- \ed3c -
-
- -
- - arrow-ramp-left-2 -
- ti ti-arrow-ramp-left-2
- \f04f -
-
- -
- - arrow-ramp-left-3 -
- ti ti-arrow-ramp-left-3
- \f050 -
-
- -
- - arrow-ramp-right -
- ti ti-arrow-ramp-right
- \ed3d -
-
- -
- - arrow-ramp-right-2 -
- ti ti-arrow-ramp-right-2
- \f051 -
-
- -
- - arrow-ramp-right-3 -
- ti ti-arrow-ramp-right-3
- \f052 -
-
- -
- - arrow-right -
- ti ti-arrow-right
- \ea1f -
-
- -
- - arrow-right-bar -
- ti ti-arrow-right-bar
- \eda1 -
-
- -
- - arrow-right-circle -
- ti ti-arrow-right-circle
- \ea1e -
-
- -
- - arrow-right-square -
- ti ti-arrow-right-square
- \eda2 -
-
- -
- - arrow-right-tail -
- ti ti-arrow-right-tail
- \eda3 -
-
- -
- - arrow-rotary-first-left -
- ti ti-arrow-rotary-first-left
- \f053 -
-
- -
- - arrow-rotary-first-right -
- ti ti-arrow-rotary-first-right
- \f054 -
-
- -
- - arrow-rotary-last-left -
- ti ti-arrow-rotary-last-left
- \f055 -
-
- -
- - arrow-rotary-last-right -
- ti ti-arrow-rotary-last-right
- \f056 -
-
- -
- - arrow-rotary-left -
- ti ti-arrow-rotary-left
- \f057 -
-
- -
- - arrow-rotary-right -
- ti ti-arrow-rotary-right
- \f058 -
-
- -
- - arrow-rotary-straight -
- ti ti-arrow-rotary-straight
- \f059 -
-
- -
- - arrow-roundabout-left -
- ti ti-arrow-roundabout-left
- \f22b -
-
- -
- - arrow-roundabout-right -
- ti ti-arrow-roundabout-right
- \f22c -
-
- -
- - arrow-sharp-turn-left -
- ti ti-arrow-sharp-turn-left
- \f05a -
-
- -
- - arrow-sharp-turn-right -
- ti ti-arrow-sharp-turn-right
- \f05b -
-
- -
- - arrow-top-bar -
- ti ti-arrow-top-bar
- \eda4 -
-
- -
- - arrow-top-circle -
- ti ti-arrow-top-circle
- \eda5 -
-
- -
- - arrow-top-square -
- ti ti-arrow-top-square
- \eda6 -
-
- -
- - arrow-top-tail -
- ti ti-arrow-top-tail
- \eda7 -
-
- -
- - arrow-up -
- ti ti-arrow-up
- \ea25 -
-
- -
- - arrow-up-circle -
- ti ti-arrow-up-circle
- \ea20 -
-
- -
- - arrow-up-left -
- ti ti-arrow-up-left
- \ea22 -
-
- -
- - arrow-up-left-circle -
- ti ti-arrow-up-left-circle
- \ea21 -
-
- -
- - arrow-up-right -
- ti ti-arrow-up-right
- \ea24 -
-
- -
- - arrow-up-right-circle -
- ti ti-arrow-up-right-circle
- \ea23 -
-
- -
- - arrow-wave-left-down -
- ti ti-arrow-wave-left-down
- \eda8 -
-
- -
- - arrow-wave-left-up -
- ti ti-arrow-wave-left-up
- \eda9 -
-
- -
- - arrow-wave-right-down -
- ti ti-arrow-wave-right-down
- \edaa -
-
- -
- - arrow-wave-right-up -
- ti ti-arrow-wave-right-up
- \edab -
-
- -
- - arrows-cross -
- ti ti-arrows-cross
- \effe -
-
- -
- - arrows-diagonal -
- ti ti-arrows-diagonal
- \ea27 -
-
- -
- - arrows-diagonal-2 -
- ti ti-arrows-diagonal-2
- \ea26 -
-
- -
- - arrows-diagonal-minimize -
- ti ti-arrows-diagonal-minimize
- \ef39 -
-
- -
- - arrows-diagonal-minimize-2 -
- ti ti-arrows-diagonal-minimize-2
- \ef38 -
-
- -
- - arrows-diff -
- ti ti-arrows-diff
- \f296 -
-
- -
- - arrows-double-ne-sw -
- ti ti-arrows-double-ne-sw
- \edde -
-
- -
- - arrows-double-nw-se -
- ti ti-arrows-double-nw-se
- \eddf -
-
- -
- - arrows-double-se-nw -
- ti ti-arrows-double-se-nw
- \ede0 -
-
- -
- - arrows-double-sw-ne -
- ti ti-arrows-double-sw-ne
- \ede1 -
-
- -
- - arrows-down -
- ti ti-arrows-down
- \edad -
-
- -
- - arrows-down-up -
- ti ti-arrows-down-up
- \edac -
-
- -
- - arrows-exchange -
- ti ti-arrows-exchange
- \f1f4 -
-
- -
- - arrows-exchange-2 -
- ti ti-arrows-exchange-2
- \f1f3 -
-
- -
- - arrows-horizontal -
- ti ti-arrows-horizontal
- \eb59 -
-
- -
- - arrows-join -
- ti ti-arrows-join
- \edaf -
-
- -
- - arrows-join-2 -
- ti ti-arrows-join-2
- \edae -
-
- -
- - arrows-left -
- ti ti-arrows-left
- \edb1 -
-
- -
- - arrows-left-down -
- ti ti-arrows-left-down
- \ee00 -
-
- -
- - arrows-left-right -
- ti ti-arrows-left-right
- \edb0 -
-
- -
- - arrows-maximize -
- ti ti-arrows-maximize
- \ea28 -
-
- -
- - arrows-minimize -
- ti ti-arrows-minimize
- \ea29 -
-
- -
- - arrows-move -
- ti ti-arrows-move
- \f22f -
-
- -
- - arrows-move-horizontal -
- ti ti-arrows-move-horizontal
- \f22d -
-
- -
- - arrows-move-vertical -
- ti ti-arrows-move-vertical
- \f22e -
-
- -
- - arrows-random -
- ti ti-arrows-random
- \f095 -
-
- -
- - arrows-right -
- ti ti-arrows-right
- \edb3 -
-
- -
- - arrows-right-down -
- ti ti-arrows-right-down
- \ee01 -
-
- -
- - arrows-right-left -
- ti ti-arrows-right-left
- \edb2 -
-
- -
- - arrows-shuffle -
- ti ti-arrows-shuffle
- \f000 -
-
- -
- - arrows-shuffle-2 -
- ti ti-arrows-shuffle-2
- \efff -
-
- -
- - arrows-sort -
- ti ti-arrows-sort
- \eb5a -
-
- -
- - arrows-split -
- ti ti-arrows-split
- \edb5 -
-
- -
- - arrows-split-2 -
- ti ti-arrows-split-2
- \edb4 -
-
- -
- - arrows-transfer-down -
- ti ti-arrows-transfer-down
- \f2cc -
-
- -
- - arrows-transfer-up -
- ti ti-arrows-transfer-up
- \f2cd -
-
- -
- - arrows-up -
- ti ti-arrows-up
- \edb7 -
-
- -
- - arrows-up-down -
- ti ti-arrows-up-down
- \edb6 -
-
- -
- - arrows-up-left -
- ti ti-arrows-up-left
- \ee02 -
-
- -
- - arrows-up-right -
- ti ti-arrows-up-right
- \ee03 -
-
- -
- - arrows-vertical -
- ti ti-arrows-vertical
- \eb5b -
-
- -
- - artboard -
- ti ti-artboard
- \ea2a -
-
- -
- - artboard-off -
- ti ti-artboard-off
- \f0ae -
-
- -
- - article -
- ti ti-article
- \f1e2 -
-
- -
- - aspect-ratio -
- ti ti-aspect-ratio
- \ed30 -
-
- -
- - aspect-ratio-off -
- ti ti-aspect-ratio-off
- \f0af -
-
- -
- - assembly -
- ti ti-assembly
- \f24d -
-
- -
- - asset -
- ti ti-asset
- \f1ce -
-
- -
- - asterisk -
- ti ti-asterisk
- \efd5 -
-
- -
- - asterisk-simple -
- ti ti-asterisk-simple
- \efd4 -
-
- -
- - at -
- ti ti-at
- \ea2b -
-
- -
- - at-off -
- ti ti-at-off
- \f0b0 -
-
- -
- - atom -
- ti ti-atom
- \eb79 -
-
- -
- - atom-2 -
- ti ti-atom-2
- \ebdf -
-
- -
- - atom-off -
- ti ti-atom-off
- \f0f9 -
-
- -
- - augmented-reality -
- ti ti-augmented-reality
- \f023 -
-
- -
- - award -
- ti ti-award
- \ea2c -
-
- -
- - award-off -
- ti ti-award-off
- \f0fa -
-
- -
- - axe -
- ti ti-axe
- \ef9f -
-
- -
- - axis-x -
- ti ti-axis-x
- \ef45 -
-
- -
- - axis-y -
- ti ti-axis-y
- \ef46 -
-
- -
- - baby-carriage -
- ti ti-baby-carriage
- \f05d -
-
- -
- - backhoe -
- ti ti-backhoe
- \ed86 -
-
- -
- - backpack -
- ti ti-backpack
- \ef47 -
-
- -
- - backspace -
- ti ti-backspace
- \ea2d -
-
- -
- - badge -
- ti ti-badge
- \efc2 -
-
- -
- - badge-off -
- ti ti-badge-off
- \f0fb -
-
- -
- - badges -
- ti ti-badges
- \efc3 -
-
- -
- - badges-off -
- ti ti-badges-off
- \f0fc -
-
- -
- - ball-american-football -
- ti ti-ball-american-football
- \ee04 -
-
- -
- - ball-baseball -
- ti ti-ball-baseball
- \efa0 -
-
- -
- - ball-basketball -
- ti ti-ball-basketball
- \ec28 -
-
- -
- - ball-bowling -
- ti ti-ball-bowling
- \ec29 -
-
- -
- - ball-football -
- ti ti-ball-football
- \ee06 -
-
- -
- - ball-football-off -
- ti ti-ball-football-off
- \ee05 -
-
- -
- - ball-tennis -
- ti ti-ball-tennis
- \ec2a -
-
- -
- - ball-volleyball -
- ti ti-ball-volleyball
- \ec2b -
-
- -
- - ballon -
- ti ti-ballon
- \ef3a -
-
- -
- - ballon-off -
- ti ti-ballon-off
- \f0fd -
-
- -
- - ballpen -
- ti ti-ballpen
- \f06e -
-
- -
- - ballpen-off -
- ti ti-ballpen-off
- \f0b1 -
-
- -
- - ban -
- ti ti-ban
- \ea2e -
-
- -
- - bandage -
- ti ti-bandage
- \eb7a -
-
- -
- - barbell -
- ti ti-barbell
- \eff0 -
-
- -
- - barbell-off -
- ti ti-barbell-off
- \f0b2 -
-
- -
- - barcode -
- ti ti-barcode
- \ebc6 -
-
- -
- - barcode-off -
- ti ti-barcode-off
- \f0b3 -
-
- -
- - barrel -
- ti ti-barrel
- \f0b4 -
-
- -
- - barrel-off -
- ti ti-barrel-off
- \f0fe -
-
- -
- - barrier-block -
- ti ti-barrier-block
- \f00e -
-
- -
- - barrier-block-off -
- ti ti-barrier-block-off
- \f0b5 -
-
- -
- - baseline -
- ti ti-baseline
- \f024 -
-
- -
- - basket -
- ti ti-basket
- \ebe1 -
-
- -
- - basket-off -
- ti ti-basket-off
- \f0b6 -
-
- -
- - bat -
- ti ti-bat
- \f284 -
-
- -
- - bath -
- ti ti-bath
- \ef48 -
-
- -
- - bath-off -
- ti ti-bath-off
- \f0ff -
-
- -
- - battery -
- ti ti-battery
- \ea34 -
-
- -
- - battery-1 -
- ti ti-battery-1
- \ea2f -
-
- -
- - battery-2 -
- ti ti-battery-2
- \ea30 -
-
- -
- - battery-3 -
- ti ti-battery-3
- \ea31 -
-
- -
- - battery-4 -
- ti ti-battery-4
- \ea32 -
-
- -
- - battery-automotive -
- ti ti-battery-automotive
- \ee07 -
-
- -
- - battery-charging -
- ti ti-battery-charging
- \ea33 -
-
- -
- - battery-charging-2 -
- ti ti-battery-charging-2
- \ef3b -
-
- -
- - battery-eco -
- ti ti-battery-eco
- \ef3c -
-
- -
- - battery-off -
- ti ti-battery-off
- \ed1c -
-
- -
- - beach -
- ti ti-beach
- \ef3d -
-
- -
- - beach-off -
- ti ti-beach-off
- \f0b7 -
-
- -
- - bed -
- ti ti-bed
- \eb5c -
-
- -
- - bed-off -
- ti ti-bed-off
- \f100 -
-
- -
- - beer -
- ti ti-beer
- \efa1 -
-
- -
- - beer-off -
- ti ti-beer-off
- \f101 -
-
- -
- - bell -
- ti ti-bell
- \ea35 -
-
- -
- - bell-minus -
- ti ti-bell-minus
- \ede2 -
-
- -
- - bell-off -
- ti ti-bell-off
- \ece9 -
-
- -
- - bell-plus -
- ti ti-bell-plus
- \ede3 -
-
- -
- - bell-ringing -
- ti ti-bell-ringing
- \ed07 -
-
- -
- - bell-ringing-2 -
- ti ti-bell-ringing-2
- \ede4 -
-
- -
- - bell-school -
- ti ti-bell-school
- \f05e -
-
- -
- - bell-x -
- ti ti-bell-x
- \ede5 -
-
- -
- - bell-z -
- ti ti-bell-z
- \eff1 -
-
- -
- - bible -
- ti ti-bible
- \efc4 -
-
- -
- - bike -
- ti ti-bike
- \ea36 -
-
- -
- - bike-off -
- ti ti-bike-off
- \f0b8 -
-
- -
- - binary -
- ti ti-binary
- \ee08 -
-
- -
- - biohazard -
- ti ti-biohazard
- \ecb8 -
-
- -
- - biohazard-off -
- ti ti-biohazard-off
- \f0b9 -
-
- -
- - blockquote -
- ti ti-blockquote
- \ee09 -
-
- -
- - bluetooth -
- ti ti-bluetooth
- \ea37 -
-
- -
- - bluetooth-connected -
- ti ti-bluetooth-connected
- \ecea -
-
- -
- - bluetooth-off -
- ti ti-bluetooth-off
- \eceb -
-
- -
- - bluetooth-x -
- ti ti-bluetooth-x
- \f081 -
-
- -
- - blur -
- ti ti-blur
- \ef8c -
-
- -
- - bold -
- ti ti-bold
- \eb7b -
-
- -
- - bold-off -
- ti ti-bold-off
- \f0ba -
-
- -
- - bolt -
- ti ti-bolt
- \ea38 -
-
- -
- - bolt-off -
- ti ti-bolt-off
- \ecec -
-
- -
- - bone -
- ti ti-bone
- \edb8 -
-
- -
- - bone-off -
- ti ti-bone-off
- \f0bb -
-
- -
- - book -
- ti ti-book
- \ea39 -
-
- -
- - book-2 -
- ti ti-book-2
- \efc5 -
-
- -
- - book-download -
- ti ti-book-download
- \f070 -
-
- -
- - book-off -
- ti ti-book-off
- \f0bc -
-
- -
- - book-upload -
- ti ti-book-upload
- \f071 -
-
- -
- - bookmark -
- ti ti-bookmark
- \ea3a -
-
- -
- - bookmark-off -
- ti ti-bookmark-off
- \eced -
-
- -
- - bookmarks -
- ti ti-bookmarks
- \ed08 -
-
- -
- - bookmarks-off -
- ti ti-bookmarks-off
- \f0bd -
-
- -
- - books -
- ti ti-books
- \eff2 -
-
- -
- - books-off -
- ti ti-books-off
- \f0be -
-
- -
- - border-all -
- ti ti-border-all
- \ea3b -
-
- -
- - border-bottom -
- ti ti-border-bottom
- \ea3c -
-
- -
- - border-horizontal -
- ti ti-border-horizontal
- \ea3d -
-
- -
- - border-inner -
- ti ti-border-inner
- \ea3e -
-
- -
- - border-left -
- ti ti-border-left
- \ea3f -
-
- -
- - border-none -
- ti ti-border-none
- \ea40 -
-
- -
- - border-outer -
- ti ti-border-outer
- \ea41 -
-
- -
- - border-radius -
- ti ti-border-radius
- \eb7c -
-
- -
- - border-right -
- ti ti-border-right
- \ea42 -
-
- -
- - border-style -
- ti ti-border-style
- \ee0a -
-
- -
- - border-style-2 -
- ti ti-border-style-2
- \ef22 -
-
- -
- - border-top -
- ti ti-border-top
- \ea43 -
-
- -
- - border-vertical -
- ti ti-border-vertical
- \ea44 -
-
- -
- - bottle -
- ti ti-bottle
- \ef0b -
-
- -
- - bow -
- ti ti-bow
- \f096 -
-
- -
- - box -
- ti ti-box
- \ea45 -
-
- -
- - box-align-bottom -
- ti ti-box-align-bottom
- \f2a8 -
-
- -
- - box-align-bottom-left -
- ti ti-box-align-bottom-left
- \f2ce -
-
- -
- - box-align-bottom-right -
- ti ti-box-align-bottom-right
- \f2cf -
-
- -
- - box-align-left -
- ti ti-box-align-left
- \f2a9 -
-
- -
- - box-align-right -
- ti ti-box-align-right
- \f2aa -
-
- -
- - box-align-top -
- ti ti-box-align-top
- \f2ab -
-
- -
- - box-align-top-left -
- ti ti-box-align-top-left
- \f2d0 -
-
- -
- - box-align-top-right -
- ti ti-box-align-top-right
- \f2d1 -
-
- -
- - box-margin -
- ti ti-box-margin
- \ee0b -
-
- -
- - box-model -
- ti ti-box-model
- \ee0c -
-
- -
- - box-model-2 -
- ti ti-box-model-2
- \ef23 -
-
- -
- - box-multiple -
- ti ti-box-multiple
- \ee17 -
-
- -
- - box-multiple-0 -
- ti ti-box-multiple-0
- \ee0d -
-
- -
- - box-multiple-1 -
- ti ti-box-multiple-1
- \ee0e -
-
- -
- - box-multiple-2 -
- ti ti-box-multiple-2
- \ee0f -
-
- -
- - box-multiple-3 -
- ti ti-box-multiple-3
- \ee10 -
-
- -
- - box-multiple-4 -
- ti ti-box-multiple-4
- \ee11 -
-
- -
- - box-multiple-5 -
- ti ti-box-multiple-5
- \ee12 -
-
- -
- - box-multiple-6 -
- ti ti-box-multiple-6
- \ee13 -
-
- -
- - box-multiple-7 -
- ti ti-box-multiple-7
- \ee14 -
-
- -
- - box-multiple-8 -
- ti ti-box-multiple-8
- \ee15 -
-
- -
- - box-multiple-9 -
- ti ti-box-multiple-9
- \ee16 -
-
- -
- - box-off -
- ti ti-box-off
- \f102 -
-
- -
- - box-padding -
- ti ti-box-padding
- \ee18 -
-
- -
- - braces -
- ti ti-braces
- \ebcc -
-
- -
- - braces-off -
- ti ti-braces-off
- \f0bf -
-
- -
- - brackets -
- ti ti-brackets
- \ebcd -
-
- -
- - brackets-contain -
- ti ti-brackets-contain
- \f1e5 -
-
- -
- - brackets-contain-end -
- ti ti-brackets-contain-end
- \f1e3 -
-
- -
- - brackets-contain-start -
- ti ti-brackets-contain-start
- \f1e4 -
-
- -
- - brackets-off -
- ti ti-brackets-off
- \f0c0 -
-
- -
- - brand-adobe -
- ti ti-brand-adobe
- \f0dc -
-
- -
- - brand-airbnb -
- ti ti-brand-airbnb
- \ed68 -
-
- -
- - brand-airtable -
- ti ti-brand-airtable
- \ef6a -
-
- -
- - brand-amazon -
- ti ti-brand-amazon
- \f230 -
-
- -
- - brand-amongus -
- ti ti-brand-amongus
- \f205 -
-
- -
- - brand-android -
- ti ti-brand-android
- \ec16 -
-
- -
- - brand-angular -
- ti ti-brand-angular
- \ef6b -
-
- -
- - brand-appgallery -
- ti ti-brand-appgallery
- \f231 -
-
- -
- - brand-apple -
- ti ti-brand-apple
- \ec17 -
-
- -
- - brand-apple-arcade -
- ti ti-brand-apple-arcade
- \ed69 -
-
- -
- - brand-apple-podcast -
- ti ti-brand-apple-podcast
- \f1e6 -
-
- -
- - brand-appstore -
- ti ti-brand-appstore
- \ed24 -
-
- -
- - brand-asana -
- ti ti-brand-asana
- \edc5 -
-
- -
- - brand-badoo -
- ti ti-brand-badoo
- \f206 -
-
- -
- - brand-bandcamp -
- ti ti-brand-bandcamp
- \f207 -
-
- -
- - brand-beats -
- ti ti-brand-beats
- \f208 -
-
- -
- - brand-behance -
- ti ti-brand-behance
- \ec6e -
-
- -
- - brand-bing -
- ti ti-brand-bing
- \edc6 -
-
- -
- - brand-bitbucket -
- ti ti-brand-bitbucket
- \edc7 -
-
- -
- - brand-booking -
- ti ti-brand-booking
- \edc8 -
-
- -
- - brand-bootstrap -
- ti ti-brand-bootstrap
- \ef3e -
-
- -
- - brand-chrome -
- ti ti-brand-chrome
- \ec18 -
-
- -
- - brand-codepen -
- ti ti-brand-codepen
- \ec6f -
-
- -
- - brand-codesandbox -
- ti ti-brand-codesandbox
- \ed6a -
-
- -
- - brand-coinbase -
- ti ti-brand-coinbase
- \f209 -
-
- -
- - brand-comedy-central -
- ti ti-brand-comedy-central
- \f217 -
-
- -
- - brand-css3 -
- ti ti-brand-css3
- \ed6b -
-
- -
- - brand-cucumber -
- ti ti-brand-cucumber
- \ef6c -
-
- -
- - brand-d3 -
- ti ti-brand-d3
- \f24e -
-
- -
- - brand-debian -
- ti ti-brand-debian
- \ef57 -
-
- -
- - brand-deno -
- ti ti-brand-deno
- \f24f -
-
- -
- - brand-deviantart -
- ti ti-brand-deviantart
- \ecfb -
-
- -
- - brand-discord -
- ti ti-brand-discord
- \ece3 -
-
- -
- - brand-disney -
- ti ti-brand-disney
- \f20a -
-
- -
- - brand-disqus -
- ti ti-brand-disqus
- \edc9 -
-
- -
- - brand-docker -
- ti ti-brand-docker
- \edca -
-
- -
- - brand-doctrine -
- ti ti-brand-doctrine
- \ef6d -
-
- -
- - brand-dribbble -
- ti ti-brand-dribbble
- \ec19 -
-
- -
- - brand-edge -
- ti ti-brand-edge
- \ecfc -
-
- -
- - brand-facebook -
- ti ti-brand-facebook
- \ec1a -
-
- -
- - brand-figma -
- ti ti-brand-figma
- \ec93 -
-
- -
- - brand-finder -
- ti ti-brand-finder
- \f218 -
-
- -
- - brand-firebase -
- ti ti-brand-firebase
- \ef6e -
-
- -
- - brand-firefox -
- ti ti-brand-firefox
- \ecfd -
-
- -
- - brand-flickr -
- ti ti-brand-flickr
- \ecfe -
-
- -
- - brand-flipboard -
- ti ti-brand-flipboard
- \f20b -
-
- -
- - brand-fortnite -
- ti ti-brand-fortnite
- \f260 -
-
- -
- - brand-foursquare -
- ti ti-brand-foursquare
- \ecff -
-
- -
- - brand-framer -
- ti ti-brand-framer
- \ec1b -
-
- -
- - brand-git -
- ti ti-brand-git
- \ef6f -
-
- -
- - brand-github -
- ti ti-brand-github
- \ec1c -
-
- -
- - brand-gitlab -
- ti ti-brand-gitlab
- \ec1d -
-
- -
- - brand-gmail -
- ti ti-brand-gmail
- \efa2 -
-
- -
- - brand-google -
- ti ti-brand-google
- \ec1f -
-
- -
- - brand-google-analytics -
- ti ti-brand-google-analytics
- \edcb -
-
- -
- - brand-google-drive -
- ti ti-brand-google-drive
- \ec1e -
-
- -
- - brand-google-fit -
- ti ti-brand-google-fit
- \f297 -
-
- -
- - brand-google-one -
- ti ti-brand-google-one
- \f232 -
-
- -
- - brand-google-photos -
- ti ti-brand-google-photos
- \f20c -
-
- -
- - brand-google-play -
- ti ti-brand-google-play
- \ed25 -
-
- -
- - brand-gravatar -
- ti ti-brand-gravatar
- \edcc -
-
- -
- - brand-grindr -
- ti ti-brand-grindr
- \f20d -
-
- -
- - brand-hipchat -
- ti ti-brand-hipchat
- \edcd -
-
- -
- - brand-html5 -
- ti ti-brand-html5
- \ed6c -
-
- -
- - brand-instagram -
- ti ti-brand-instagram
- \ec20 -
-
- -
- - brand-intercom -
- ti ti-brand-intercom
- \f1cf -
-
- -
- - brand-javascript -
- ti ti-brand-javascript
- \ef0c -
-
- -
- - brand-kickstarter -
- ti ti-brand-kickstarter
- \edce -
-
- -
- - brand-kotlin -
- ti ti-brand-kotlin
- \ed6d -
-
- -
- - brand-lastfm -
- ti ti-brand-lastfm
- \f001 -
-
- -
- - brand-linkedin -
- ti ti-brand-linkedin
- \ec8c -
-
- -
- - brand-linktree -
- ti ti-brand-linktree
- \f1e7 -
-
- -
- - brand-loom -
- ti ti-brand-loom
- \ef70 -
-
- -
- - brand-mastercard -
- ti ti-brand-mastercard
- \ef49 -
-
- -
- - brand-mastodon -
- ti ti-brand-mastodon
- \f250 -
-
- -
- - brand-mcdonalds -
- ti ti-brand-mcdonalds
- \f251 -
-
- -
- - brand-medium -
- ti ti-brand-medium
- \ec70 -
-
- -
- - brand-mercedes -
- ti ti-brand-mercedes
- \f072 -
-
- -
- - brand-messenger -
- ti ti-brand-messenger
- \ec71 -
-
- -
- - brand-meta -
- ti ti-brand-meta
- \efb0 -
-
- -
- - brand-monday -
- ti ti-brand-monday
- \f219 -
-
- -
- - brand-netbeans -
- ti ti-brand-netbeans
- \ef71 -
-
- -
- - brand-netflix -
- ti ti-brand-netflix
- \edcf -
-
- -
- - brand-nextjs -
- ti ti-brand-nextjs
- \f0dd -
-
- -
- - brand-notion -
- ti ti-brand-notion
- \ef7b -
-
- -
- - brand-nuxt -
- ti ti-brand-nuxt
- \f0de -
-
- -
- - brand-nytimes -
- ti ti-brand-nytimes
- \ef8d -
-
- -
- - brand-open-source -
- ti ti-brand-open-source
- \edd0 -
-
- -
- - brand-opera -
- ti ti-brand-opera
- \ec21 -
-
- -
- - brand-pagekit -
- ti ti-brand-pagekit
- \edd1 -
-
- -
- - brand-patreon -
- ti ti-brand-patreon
- \edd2 -
-
- -
- - brand-paypal -
- ti ti-brand-paypal
- \ec22 -
-
- -
- - brand-pepsi -
- ti ti-brand-pepsi
- \f261 -
-
- -
- - brand-php -
- ti ti-brand-php
- \ef72 -
-
- -
- - brand-pinterest -
- ti ti-brand-pinterest
- \ec8d -
-
- -
- - brand-pocket -
- ti ti-brand-pocket
- \ed00 -
-
- -
- - brand-producthunt -
- ti ti-brand-producthunt
- \edd3 -
-
- -
- - brand-pushover -
- ti ti-brand-pushover
- \f20e -
-
- -
- - brand-python -
- ti ti-brand-python
- \ed01 -
-
- -
- - brand-react-native -
- ti ti-brand-react-native
- \ef73 -
-
- -
- - brand-reddit -
- ti ti-brand-reddit
- \ec8e -
-
- -
- - brand-safari -
- ti ti-brand-safari
- \ec23 -
-
- -
- - brand-sass -
- ti ti-brand-sass
- \edd4 -
-
- -
- - brand-sentry -
- ti ti-brand-sentry
- \edd5 -
-
- -
- - brand-shazam -
- ti ti-brand-shazam
- \edd6 -
-
- -
- - brand-shopee -
- ti ti-brand-shopee
- \f252 -
-
- -
- - brand-sketch -
- ti ti-brand-sketch
- \ec24 -
-
- -
- - brand-skype -
- ti ti-brand-skype
- \ed02 -
-
- -
- - brand-slack -
- ti ti-brand-slack
- \ec72 -
-
- -
- - brand-snapchat -
- ti ti-brand-snapchat
- \ec25 -
-
- -
- - brand-snapseed -
- ti ti-brand-snapseed
- \f253 -
-
- -
- - brand-soundcloud -
- ti ti-brand-soundcloud
- \ed6e -
-
- -
- - brand-spotify -
- ti ti-brand-spotify
- \ed03 -
-
- -
- - brand-stackoverflow -
- ti ti-brand-stackoverflow
- \ef58 -
-
- -
- - brand-steam -
- ti ti-brand-steam
- \ed6f -
-
- -
- - brand-strava -
- ti ti-brand-strava
- \f254 -
-
- -
- - brand-stripe -
- ti ti-brand-stripe
- \edd7 -
-
- -
- - brand-sublime-text -
- ti ti-brand-sublime-text
- \ef74 -
-
- -
- - brand-surfshark -
- ti ti-brand-surfshark
- \f255 -
-
- -
- - brand-svelte -
- ti ti-brand-svelte
- \f0df -
-
- -
- - brand-tabler -
- ti ti-brand-tabler
- \ec8f -
-
- -
- - brand-tailwind -
- ti ti-brand-tailwind
- \eca1 -
-
- -
- - brand-telegram -
- ti ti-brand-telegram
- \ec26 -
-
- -
- - brand-tidal -
- ti ti-brand-tidal
- \ed70 -
-
- -
- - brand-tiktok -
- ti ti-brand-tiktok
- \ec73 -
-
- -
- - brand-tinder -
- ti ti-brand-tinder
- \ed71 -
-
- -
- - brand-toyota -
- ti ti-brand-toyota
- \f262 -
-
- -
- - brand-tripadvisor -
- ti ti-brand-tripadvisor
- \f002 -
-
- -
- - brand-tumblr -
- ti ti-brand-tumblr
- \ed04 -
-
- -
- - brand-twitch -
- ti ti-brand-twitch
- \ed05 -
-
- -
- - brand-twitter -
- ti ti-brand-twitter
- \ec27 -
-
- -
- - brand-uber -
- ti ti-brand-uber
- \ef75 -
-
- -
- - brand-ubuntu -
- ti ti-brand-ubuntu
- \ef59 -
-
- -
- - brand-unity -
- ti ti-brand-unity
- \f2ac -
-
- -
- - brand-unsplash -
- ti ti-brand-unsplash
- \edd8 -
-
- -
- - brand-vercel -
- ti ti-brand-vercel
- \ef24 -
-
- -
- - brand-vimeo -
- ti ti-brand-vimeo
- \ed06 -
-
- -
- - brand-vinted -
- ti ti-brand-vinted
- \f20f -
-
- -
- - brand-visual-studio -
- ti ti-brand-visual-studio
- \ef76 -
-
- -
- - brand-vivaldi -
- ti ti-brand-vivaldi
- \f210 -
-
- -
- - brand-vk -
- ti ti-brand-vk
- \ed72 -
-
- -
- - brand-vue -
- ti ti-brand-vue
- \f0e0 -
-
- -
- - brand-walmart -
- ti ti-brand-walmart
- \f211 -
-
- -
- - brand-webflow -
- ti ti-brand-webflow
- \f2d2 -
-
- -
- - brand-whatsapp -
- ti ti-brand-whatsapp
- \ec74 -
-
- -
- - brand-windows -
- ti ti-brand-windows
- \ecd8 -
-
- -
- - brand-wish -
- ti ti-brand-wish
- \f212 -
-
- -
- - brand-wordpress -
- ti ti-brand-wordpress
- \f2d3 -
-
- -
- - brand-xbox -
- ti ti-brand-xbox
- \f298 -
-
- -
- - brand-xing -
- ti ti-brand-xing
- \f21a -
-
- -
- - brand-yahoo -
- ti ti-brand-yahoo
- \ed73 -
-
- -
- - brand-yatse -
- ti ti-brand-yatse
- \f213 -
-
- -
- - brand-ycombinator -
- ti ti-brand-ycombinator
- \edd9 -
-
- -
- - brand-youtube -
- ti ti-brand-youtube
- \ec90 -
-
- -
- - brand-youtube-kids -
- ti ti-brand-youtube-kids
- \f214 -
-
- -
- - brand-zoom -
- ti ti-brand-zoom
- \f215 -
-
- -
- - brand-zwift -
- ti ti-brand-zwift
- \f216 -
-
- -
- - bread -
- ti ti-bread
- \efa3 -
-
- -
- - briefcase -
- ti ti-briefcase
- \ea46 -
-
- -
- - brightness -
- ti ti-brightness
- \eb7f -
-
- -
- - brightness-2 -
- ti ti-brightness-2
- \ee19 -
-
- -
- - brightness-down -
- ti ti-brightness-down
- \eb7d -
-
- -
- - brightness-half -
- ti ti-brightness-half
- \ee1a -
-
- -
- - brightness-up -
- ti ti-brightness-up
- \eb7e -
-
- -
- - broadcast -
- ti ti-broadcast
- \f1e9 -
-
- -
- - broadcast-off -
- ti ti-broadcast-off
- \f1e8 -
-
- -
- - browser -
- ti ti-browser
- \ebb7 -
-
- -
- - browser-check -
- ti ti-browser-check
- \efd6 -
-
- -
- - browser-off -
- ti ti-browser-off
- \f0c1 -
-
- -
- - browser-plus -
- ti ti-browser-plus
- \efd7 -
-
- -
- - browser-x -
- ti ti-browser-x
- \efd8 -
-
- -
- - brush -
- ti ti-brush
- \ebb8 -
-
- -
- - brush-off -
- ti ti-brush-off
- \f0c2 -
-
- -
- - bucket -
- ti ti-bucket
- \ea47 -
-
- -
- - bucket-off -
- ti ti-bucket-off
- \f103 -
-
- -
- - bug -
- ti ti-bug
- \ea48 -
-
- -
- - bug-off -
- ti ti-bug-off
- \f0c3 -
-
- -
- - building -
- ti ti-building
- \ea4f -
-
- -
- - building-arch -
- ti ti-building-arch
- \ea49 -
-
- -
- - building-bank -
- ti ti-building-bank
- \ebe2 -
-
- -
- - building-bridge -
- ti ti-building-bridge
- \ea4b -
-
- -
- - building-bridge-2 -
- ti ti-building-bridge-2
- \ea4a -
-
- -
- - building-carousel -
- ti ti-building-carousel
- \ed87 -
-
- -
- - building-castle -
- ti ti-building-castle
- \ed88 -
-
- -
- - building-church -
- ti ti-building-church
- \ea4c -
-
- -
- - building-community -
- ti ti-building-community
- \ebf6 -
-
- -
- - building-cottage -
- ti ti-building-cottage
- \ee1b -
-
- -
- - building-factory -
- ti ti-building-factory
- \ee1c -
-
- -
- - building-factory-2 -
- ti ti-building-factory-2
- \f082 -
-
- -
- - building-fortress -
- ti ti-building-fortress
- \ed89 -
-
- -
- - building-hospital -
- ti ti-building-hospital
- \ea4d -
-
- -
- - building-lighthouse -
- ti ti-building-lighthouse
- \ed8a -
-
- -
- - building-monument -
- ti ti-building-monument
- \ed26 -
-
- -
- - building-pavilon -
- ti ti-building-pavilon
- \ebf7 -
-
- -
- - building-skyscraper -
- ti ti-building-skyscraper
- \ec39 -
-
- -
- - building-store -
- ti ti-building-store
- \ea4e -
-
- -
- - building-warehouse -
- ti ti-building-warehouse
- \ebe3 -
-
- -
- - bulb -
- ti ti-bulb
- \ea51 -
-
- -
- - bulb-off -
- ti ti-bulb-off
- \ea50 -
-
- -
- - bulldozer -
- ti ti-bulldozer
- \ee1d -
-
- -
- - bus -
- ti ti-bus
- \ebe4 -
-
- -
- - bus-stop -
- ti ti-bus-stop
- \f2d4 -
-
- -
- - businessplan -
- ti ti-businessplan
- \ee1e -
-
- -
- - butterfly -
- ti ti-butterfly
- \efd9 -
-
- -
- - c-sharp -
- ti ti-c-sharp
- \f003 -
-
- -
- - cactus -
- ti ti-cactus
- \f21b -
-
- -
- - cake -
- ti ti-cake
- \f00f -
-
- -
- - cake-off -
- ti ti-cake-off
- \f104 -
-
- -
- - calculator -
- ti ti-calculator
- \eb80 -
-
- -
- - calculator-off -
- ti ti-calculator-off
- \f0c4 -
-
- -
- - calendar -
- ti ti-calendar
- \ea53 -
-
- -
- - calendar-event -
- ti ti-calendar-event
- \ea52 -
-
- -
- - calendar-minus -
- ti ti-calendar-minus
- \ebb9 -
-
- -
- - calendar-off -
- ti ti-calendar-off
- \ee1f -
-
- -
- - calendar-plus -
- ti ti-calendar-plus
- \ebba -
-
- -
- - calendar-stats -
- ti ti-calendar-stats
- \ee20 -
-
- -
- - calendar-time -
- ti ti-calendar-time
- \ee21 -
-
- -
- - camera -
- ti ti-camera
- \ea54 -
-
- -
- - camera-minus -
- ti ti-camera-minus
- \ec3a -
-
- -
- - camera-off -
- ti ti-camera-off
- \ecee -
-
- -
- - camera-plus -
- ti ti-camera-plus
- \ec3b -
-
- -
- - camera-rotate -
- ti ti-camera-rotate
- \ee22 -
-
- -
- - camera-selfie -
- ti ti-camera-selfie
- \ee23 -
-
- -
- - candle -
- ti ti-candle
- \efc6 -
-
- -
- - candy -
- ti ti-candy
- \ef0d -
-
- -
- - candy-off -
- ti ti-candy-off
- \f0c5 -
-
- -
- - capture -
- ti ti-capture
- \ec3c -
-
- -
- - capture-off -
- ti ti-capture-off
- \f0c6 -
-
- -
- - car -
- ti ti-car
- \ebbb -
-
- -
- - car-crane -
- ti ti-car-crane
- \ef25 -
-
- -
- - car-crash -
- ti ti-car-crash
- \efa4 -
-
- -
- - car-off -
- ti ti-car-off
- \f0c7 -
-
- -
- - caravan -
- ti ti-caravan
- \ec7c -
-
- -
- - cardboards -
- ti ti-cardboards
- \ed74 -
-
- -
- - cardboards-off -
- ti ti-cardboards-off
- \f0c8 -
-
- -
- - caret-down -
- ti ti-caret-down
- \eb5d -
-
- -
- - caret-left -
- ti ti-caret-left
- \eb5e -
-
- -
- - caret-right -
- ti ti-caret-right
- \eb5f -
-
- -
- - caret-up -
- ti ti-caret-up
- \eb60 -
-
- -
- - carrot -
- ti ti-carrot
- \f21c -
-
- -
- - cash -
- ti ti-cash
- \ea55 -
-
- -
- - cash-banknote -
- ti ti-cash-banknote
- \ee25 -
-
- -
- - cash-banknote-off -
- ti ti-cash-banknote-off
- \ee24 -
-
- -
- - cash-off -
- ti ti-cash-off
- \f105 -
-
- -
- - cast -
- ti ti-cast
- \ea56 -
-
- -
- - cast-off -
- ti ti-cast-off
- \f0c9 -
-
- -
- - category -
- ti ti-category
- \f1f6 -
-
- -
- - category-2 -
- ti ti-category-2
- \f1f5 -
-
- -
- - ce -
- ti ti-ce
- \ed75 -
-
- -
- - ce-off -
- ti ti-ce-off
- \f0ca -
-
- -
- - cell -
- ti ti-cell
- \f05f -
-
- -
- - cell-signal-1 -
- ti ti-cell-signal-1
- \f083 -
-
- -
- - cell-signal-2 -
- ti ti-cell-signal-2
- \f084 -
-
- -
- - cell-signal-3 -
- ti ti-cell-signal-3
- \f085 -
-
- -
- - cell-signal-4 -
- ti ti-cell-signal-4
- \f086 -
-
- -
- - cell-signal-5 -
- ti ti-cell-signal-5
- \f087 -
-
- -
- - cell-signal-off -
- ti ti-cell-signal-off
- \f088 -
-
- -
- - certificate -
- ti ti-certificate
- \ed76 -
-
- -
- - certificate-2 -
- ti ti-certificate-2
- \f073 -
-
- -
- - certificate-2-off -
- ti ti-certificate-2-off
- \f0cb -
-
- -
- - certificate-off -
- ti ti-certificate-off
- \f0cc -
-
- -
- - chair-director -
- ti ti-chair-director
- \f2d5 -
-
- -
- - charging-pile -
- ti ti-charging-pile
- \ee26 -
-
- -
- - chart-arcs -
- ti ti-chart-arcs
- \ee28 -
-
- -
- - chart-arcs-3 -
- ti ti-chart-arcs-3
- \ee27 -
-
- -
- - chart-area -
- ti ti-chart-area
- \ea58 -
-
- -
- - chart-area-line -
- ti ti-chart-area-line
- \ea57 -
-
- -
- - chart-arrows -
- ti ti-chart-arrows
- \ee2a -
-
- -
- - chart-arrows-vertical -
- ti ti-chart-arrows-vertical
- \ee29 -
-
- -
- - chart-bar -
- ti ti-chart-bar
- \ea59 -
-
- -
- - chart-bubble -
- ti ti-chart-bubble
- \ec75 -
-
- -
- - chart-candle -
- ti ti-chart-candle
- \ea5a -
-
- -
- - chart-circles -
- ti ti-chart-circles
- \ee2b -
-
- -
- - chart-donut -
- ti ti-chart-donut
- \ea5b -
-
- -
- - chart-donut-2 -
- ti ti-chart-donut-2
- \ee2c -
-
- -
- - chart-donut-3 -
- ti ti-chart-donut-3
- \ee2d -
-
- -
- - chart-donut-4 -
- ti ti-chart-donut-4
- \ee2e -
-
- -
- - chart-dots -
- ti ti-chart-dots
- \ee2f -
-
- -
- - chart-dots-2 -
- ti ti-chart-dots-2
- \f097 -
-
- -
- - chart-dots-3 -
- ti ti-chart-dots-3
- \f098 -
-
- -
- - chart-infographic -
- ti ti-chart-infographic
- \ee30 -
-
- -
- - chart-line -
- ti ti-chart-line
- \ea5c -
-
- -
- - chart-pie -
- ti ti-chart-pie
- \ea5d -
-
- -
- - chart-pie-2 -
- ti ti-chart-pie-2
- \ee31 -
-
- -
- - chart-pie-3 -
- ti ti-chart-pie-3
- \ee32 -
-
- -
- - chart-pie-4 -
- ti ti-chart-pie-4
- \ee33 -
-
- -
- - chart-radar -
- ti ti-chart-radar
- \ed77 -
-
- -
- - check -
- ti ti-check
- \ea5e -
-
- -
- - checkbox -
- ti ti-checkbox
- \eba6 -
-
- -
- - checklist -
- ti ti-checklist
- \f074 -
-
- -
- - checks -
- ti ti-checks
- \ebaa -
-
- -
- - checkup-list -
- ti ti-checkup-list
- \ef5a -
-
- -
- - cheese -
- ti ti-cheese
- \ef26 -
-
- -
- - chef-hat -
- ti ti-chef-hat
- \f21d -
-
- -
- - chevron-down -
- ti ti-chevron-down
- \ea5f -
-
- -
- - chevron-down-left -
- ti ti-chevron-down-left
- \ed09 -
-
- -
- - chevron-down-right -
- ti ti-chevron-down-right
- \ed0a -
-
- -
- - chevron-left -
- ti ti-chevron-left
- \ea60 -
-
- -
- - chevron-right -
- ti ti-chevron-right
- \ea61 -
-
- -
- - chevron-up -
- ti ti-chevron-up
- \ea62 -
-
- -
- - chevron-up-left -
- ti ti-chevron-up-left
- \ed0b -
-
- -
- - chevron-up-right -
- ti ti-chevron-up-right
- \ed0c -
-
- -
- - chevrons-down -
- ti ti-chevrons-down
- \ea63 -
-
- -
- - chevrons-down-left -
- ti ti-chevrons-down-left
- \ed0d -
-
- -
- - chevrons-down-right -
- ti ti-chevrons-down-right
- \ed0e -
-
- -
- - chevrons-left -
- ti ti-chevrons-left
- \ea64 -
-
- -
- - chevrons-right -
- ti ti-chevrons-right
- \ea65 -
-
- -
- - chevrons-up -
- ti ti-chevrons-up
- \ea66 -
-
- -
- - chevrons-up-left -
- ti ti-chevrons-up-left
- \ed0f -
-
- -
- - chevrons-up-right -
- ti ti-chevrons-up-right
- \ed10 -
-
- -
- - christmas-tree -
- ti ti-christmas-tree
- \ed78 -
-
- -
- - circle -
- ti ti-circle
- \ea6b -
-
- -
- - circle-0 -
- ti ti-circle-0
- \ee34 -
-
- -
- - circle-1 -
- ti ti-circle-1
- \ee35 -
-
- -
- - circle-2 -
- ti ti-circle-2
- \ee36 -
-
- -
- - circle-3 -
- ti ti-circle-3
- \ee37 -
-
- -
- - circle-4 -
- ti ti-circle-4
- \ee38 -
-
- -
- - circle-5 -
- ti ti-circle-5
- \ee39 -
-
- -
- - circle-6 -
- ti ti-circle-6
- \ee3a -
-
- -
- - circle-7 -
- ti ti-circle-7
- \ee3b -
-
- -
- - circle-8 -
- ti ti-circle-8
- \ee3c -
-
- -
- - circle-9 -
- ti ti-circle-9
- \ee3d -
-
- -
- - circle-check -
- ti ti-circle-check
- \ea67 -
-
- -
- - circle-dashed -
- ti ti-circle-dashed
- \ed27 -
-
- -
- - circle-dot -
- ti ti-circle-dot
- \efb1 -
-
- -
- - circle-dotted -
- ti ti-circle-dotted
- \ed28 -
-
- -
- - circle-half -
- ti ti-circle-half
- \ee3f -
-
- -
- - circle-half-2 -
- ti ti-circle-half-2
- \eff3 -
-
- -
- - circle-half-vertical -
- ti ti-circle-half-vertical
- \ee3e -
-
- -
- - circle-minus -
- ti ti-circle-minus
- \ea68 -
-
- -
- - circle-off -
- ti ti-circle-off
- \ee40 -
-
- -
- - circle-plus -
- ti ti-circle-plus
- \ea69 -
-
- -
- - circle-rectangle -
- ti ti-circle-rectangle
- \f010 -
-
- -
- - circle-rectangle-off -
- ti ti-circle-rectangle-off
- \f0cd -
-
- -
- - circle-square -
- ti ti-circle-square
- \ece4 -
-
- -
- - circle-triangle -
- ti ti-circle-triangle
- \f011 -
-
- -
- - circle-x -
- ti ti-circle-x
- \ea6a -
-
- -
- - circles -
- ti ti-circles
- \ece5 -
-
- -
- - circuit-ammeter -
- ti ti-circuit-ammeter
- \f271 -
-
- -
- - circuit-battery -
- ti ti-circuit-battery
- \f272 -
-
- -
- - circuit-bulb -
- ti ti-circuit-bulb
- \f273 -
-
- -
- - circuit-capacitor -
- ti ti-circuit-capacitor
- \f275 -
-
- -
- - circuit-capacitor-polarized -
- ti ti-circuit-capacitor-polarized
- \f274 -
-
- -
- - circuit-cell -
- ti ti-circuit-cell
- \f277 -
-
- -
- - circuit-cell-plus -
- ti ti-circuit-cell-plus
- \f276 -
-
- -
- - circuit-changeover -
- ti ti-circuit-changeover
- \f278 -
-
- -
- - circuit-diode -
- ti ti-circuit-diode
- \f27a -
-
- -
- - circuit-diode-zener -
- ti ti-circuit-diode-zener
- \f279 -
-
- -
- - circuit-ground -
- ti ti-circuit-ground
- \f27c -
-
- -
- - circuit-ground-digital -
- ti ti-circuit-ground-digital
- \f27b -
-
- -
- - circuit-inductor -
- ti ti-circuit-inductor
- \f27d -
-
- -
- - circuit-motor -
- ti ti-circuit-motor
- \f27e -
-
- -
- - circuit-pushbutton -
- ti ti-circuit-pushbutton
- \f27f -
-
- -
- - circuit-resistor -
- ti ti-circuit-resistor
- \f280 -
-
- -
- - circuit-switch-closed -
- ti ti-circuit-switch-closed
- \f281 -
-
- -
- - circuit-switch-open -
- ti ti-circuit-switch-open
- \f282 -
-
- -
- - circuit-voltmeter -
- ti ti-circuit-voltmeter
- \f283 -
-
- -
- - clear-all -
- ti ti-clear-all
- \ee41 -
-
- -
- - clear-formatting -
- ti ti-clear-formatting
- \ebe5 -
-
- -
- - click -
- ti ti-click
- \ebbc -
-
- -
- - clipboard -
- ti ti-clipboard
- \ea6f -
-
- -
- - clipboard-check -
- ti ti-clipboard-check
- \ea6c -
-
- -
- - clipboard-copy -
- ti ti-clipboard-copy
- \f299 -
-
- -
- - clipboard-list -
- ti ti-clipboard-list
- \ea6d -
-
- -
- - clipboard-off -
- ti ti-clipboard-off
- \f0ce -
-
- -
- - clipboard-plus -
- ti ti-clipboard-plus
- \efb2 -
-
- -
- - clipboard-text -
- ti ti-clipboard-text
- \f089 -
-
- -
- - clipboard-x -
- ti ti-clipboard-x
- \ea6e -
-
- -
- - clock -
- ti ti-clock
- \ea70 -
-
- -
- - clock-2 -
- ti ti-clock-2
- \f099 -
-
- -
- - clock-off -
- ti ti-clock-off
- \f0cf -
-
- -
- - clothes-rack -
- ti ti-clothes-rack
- \f285 -
-
- -
- - cloud -
- ti ti-cloud
- \ea76 -
-
- -
- - cloud-computing -
- ti ti-cloud-computing
- \f1d0 -
-
- -
- - cloud-data-connection -
- ti ti-cloud-data-connection
- \f1d1 -
-
- -
- - cloud-download -
- ti ti-cloud-download
- \ea71 -
-
- -
- - cloud-fog -
- ti ti-cloud-fog
- \ecd9 -
-
- -
- - cloud-lock -
- ti ti-cloud-lock
- \efdb -
-
- -
- - cloud-lock-open -
- ti ti-cloud-lock-open
- \efda -
-
- -
- - cloud-off -
- ti ti-cloud-off
- \ed3e -
-
- -
- - cloud-rain -
- ti ti-cloud-rain
- \ea72 -
-
- -
- - cloud-snow -
- ti ti-cloud-snow
- \ea73 -
-
- -
- - cloud-storm -
- ti ti-cloud-storm
- \ea74 -
-
- -
- - cloud-upload -
- ti ti-cloud-upload
- \ea75 -
-
- -
- - clover -
- ti ti-clover
- \f1ea -
-
- -
- - clover-2 -
- ti ti-clover-2
- \f21e -
-
- -
- - clubs -
- ti ti-clubs
- \eff4 -
-
- -
- - code -
- ti ti-code
- \ea77 -
-
- -
- - code-minus -
- ti ti-code-minus
- \ee42 -
-
- -
- - code-off -
- ti ti-code-off
- \f0d0 -
-
- -
- - code-plus -
- ti ti-code-plus
- \ee43 -
-
- -
- - coffee -
- ti ti-coffee
- \ef0e -
-
- -
- - coffee-off -
- ti ti-coffee-off
- \f106 -
-
- -
- - coin -
- ti ti-coin
- \eb82 -
-
- -
- - coin-bitcoin -
- ti ti-coin-bitcoin
- \f2be -
-
- -
- - coin-euro -
- ti ti-coin-euro
- \f2bf -
-
- -
- - coin-off -
- ti ti-coin-off
- \f0d1 -
-
- -
- - coin-pound -
- ti ti-coin-pound
- \f2c0 -
-
- -
- - coin-rupee -
- ti ti-coin-rupee
- \f2c1 -
-
- -
- - coin-yen -
- ti ti-coin-yen
- \f2c2 -
-
- -
- - coin-yuan -
- ti ti-coin-yuan
- \f2c3 -
-
- -
- - color-picker -
- ti ti-color-picker
- \ebe6 -
-
- -
- - color-picker-off -
- ti ti-color-picker-off
- \f0d2 -
-
- -
- - color-swatch -
- ti ti-color-swatch
- \eb61 -
-
- -
- - color-swatch-off -
- ti ti-color-swatch-off
- \f0d3 -
-
- -
- - column-insert-left -
- ti ti-column-insert-left
- \ee44 -
-
- -
- - column-insert-right -
- ti ti-column-insert-right
- \ee45 -
-
- -
- - columns -
- ti ti-columns
- \eb83 -
-
- -
- - columns-off -
- ti ti-columns-off
- \f0d4 -
-
- -
- - comet -
- ti ti-comet
- \ec76 -
-
- -
- - command -
- ti ti-command
- \ea78 -
-
- -
- - compass -
- ti ti-compass
- \ea79 -
-
- -
- - compass-off -
- ti ti-compass-off
- \f0d5 -
-
- -
- - components -
- ti ti-components
- \efa5 -
-
- -
- - components-off -
- ti ti-components-off
- \f0d6 -
-
- -
- - cone -
- ti ti-cone
- \efdd -
-
- -
- - cone-2 -
- ti ti-cone-2
- \efdc -
-
- -
- - confetti -
- ti ti-confetti
- \ee46 -
-
- -
- - container -
- ti ti-container
- \ee47 -
-
- -
- - container-off -
- ti ti-container-off
- \f107 -
-
- -
- - contrast -
- ti ti-contrast
- \ec4e -
-
- -
- - contrast-2 -
- ti ti-contrast-2
- \efc7 -
-
- -
- - cookie -
- ti ti-cookie
- \ef0f -
-
- -
- - cookie-off -
- ti ti-cookie-off
- \f0d7 -
-
- -
- - copy -
- ti ti-copy
- \ea7a -
-
- -
- - copy-off -
- ti ti-copy-off
- \f0d8 -
-
- -
- - copyleft -
- ti ti-copyleft
- \ec3d -
-
- -
- - copyleft-off -
- ti ti-copyleft-off
- \f0d9 -
-
- -
- - copyright -
- ti ti-copyright
- \ea7b -
-
- -
- - copyright-off -
- ti ti-copyright-off
- \f0da -
-
- -
- - corner-down-left -
- ti ti-corner-down-left
- \ea7c -
-
- -
- - corner-down-left-double -
- ti ti-corner-down-left-double
- \ee48 -
-
- -
- - corner-down-right -
- ti ti-corner-down-right
- \ea7d -
-
- -
- - corner-down-right-double -
- ti ti-corner-down-right-double
- \ee49 -
-
- -
- - corner-left-down -
- ti ti-corner-left-down
- \ea7e -
-
- -
- - corner-left-down-double -
- ti ti-corner-left-down-double
- \ee4a -
-
- -
- - corner-left-up -
- ti ti-corner-left-up
- \ea7f -
-
- -
- - corner-left-up-double -
- ti ti-corner-left-up-double
- \ee4b -
-
- -
- - corner-right-down -
- ti ti-corner-right-down
- \ea80 -
-
- -
- - corner-right-down-double -
- ti ti-corner-right-down-double
- \ee4c -
-
- -
- - corner-right-up -
- ti ti-corner-right-up
- \ea81 -
-
- -
- - corner-right-up-double -
- ti ti-corner-right-up-double
- \ee4d -
-
- -
- - corner-up-left -
- ti ti-corner-up-left
- \ea82 -
-
- -
- - corner-up-left-double -
- ti ti-corner-up-left-double
- \ee4e -
-
- -
- - corner-up-right -
- ti ti-corner-up-right
- \ea83 -
-
- -
- - corner-up-right-double -
- ti ti-corner-up-right-double
- \ee4f -
-
- -
- - cpu -
- ti ti-cpu
- \ef8e -
-
- -
- - cpu-2 -
- ti ti-cpu-2
- \f075 -
-
- -
- - cpu-off -
- ti ti-cpu-off
- \f108 -
-
- -
- - crane -
- ti ti-crane
- \ef27 -
-
- -
- - crane-off -
- ti ti-crane-off
- \f109 -
-
- -
- - creative-commons -
- ti ti-creative-commons
- \efb3 -
-
- -
- - creative-commons-by -
- ti ti-creative-commons-by
- \f21f -
-
- -
- - creative-commons-nc -
- ti ti-creative-commons-nc
- \f220 -
-
- -
- - creative-commons-nd -
- ti ti-creative-commons-nd
- \f221 -
-
- -
- - creative-commons-off -
- ti ti-creative-commons-off
- \f10a -
-
- -
- - creative-commons-sa -
- ti ti-creative-commons-sa
- \f222 -
-
- -
- - creative-commons-zero -
- ti ti-creative-commons-zero
- \f223 -
-
- -
- - credit-card -
- ti ti-credit-card
- \ea84 -
-
- -
- - credit-card-off -
- ti ti-credit-card-off
- \ed11 -
-
- -
- - cricket -
- ti ti-cricket
- \f09a -
-
- -
- - crop -
- ti ti-crop
- \ea85 -
-
- -
- - cross -
- ti ti-cross
- \ef8f -
-
- -
- - cross-off -
- ti ti-cross-off
- \f10b -
-
- -
- - crosshair -
- ti ti-crosshair
- \ec3e -
-
- -
- - crown -
- ti ti-crown
- \ed12 -
-
- -
- - crown-off -
- ti ti-crown-off
- \ee50 -
-
- -
- - crutches -
- ti ti-crutches
- \ef5b -
-
- -
- - crutches-off -
- ti ti-crutches-off
- \f10c -
-
- -
- - cup -
- ti ti-cup
- \ef28 -
-
- -
- - cup-off -
- ti ti-cup-off
- \f10d -
-
- -
- - curling -
- ti ti-curling
- \efc8 -
-
- -
- - curly-loop -
- ti ti-curly-loop
- \ecda -
-
- -
- - currency -
- ti ti-currency
- \efa6 -
-
- -
- - currency-bahraini -
- ti ti-currency-bahraini
- \ee51 -
-
- -
- - currency-baht -
- ti ti-currency-baht
- \f08a -
-
- -
- - currency-bitcoin -
- ti ti-currency-bitcoin
- \ebab -
-
- -
- - currency-cent -
- ti ti-currency-cent
- \ee53 -
-
- -
- - currency-dinar -
- ti ti-currency-dinar
- \ee54 -
-
- -
- - currency-dirham -
- ti ti-currency-dirham
- \ee55 -
-
- -
- - currency-dogecoin -
- ti ti-currency-dogecoin
- \ef4b -
-
- -
- - currency-dollar -
- ti ti-currency-dollar
- \eb84 -
-
- -
- - currency-dollar-australian -
- ti ti-currency-dollar-australian
- \ee56 -
-
- -
- - currency-dollar-canadian -
- ti ti-currency-dollar-canadian
- \ee57 -
-
- -
- - currency-dollar-singapore -
- ti ti-currency-dollar-singapore
- \ee58 -
-
- -
- - currency-ethereum -
- ti ti-currency-ethereum
- \ee59 -
-
- -
- - currency-euro -
- ti ti-currency-euro
- \eb85 -
-
- -
- - currency-forint -
- ti ti-currency-forint
- \ee5a -
-
- -
- - currency-frank -
- ti ti-currency-frank
- \ee5b -
-
- -
- - currency-krone-czech -
- ti ti-currency-krone-czech
- \ee5c -
-
- -
- - currency-krone-danish -
- ti ti-currency-krone-danish
- \ee5d -
-
- -
- - currency-krone-swedish -
- ti ti-currency-krone-swedish
- \ee5e -
-
- -
- - currency-leu -
- ti ti-currency-leu
- \ee5f -
-
- -
- - currency-lira -
- ti ti-currency-lira
- \ee60 -
-
- -
- - currency-litecoin -
- ti ti-currency-litecoin
- \ee61 -
-
- -
- - currency-naira -
- ti ti-currency-naira
- \ee62 -
-
- -
- - currency-pound -
- ti ti-currency-pound
- \ebac -
-
- -
- - currency-real -
- ti ti-currency-real
- \ee63 -
-
- -
- - currency-renminbi -
- ti ti-currency-renminbi
- \ee64 -
-
- -
- - currency-ripple -
- ti ti-currency-ripple
- \ee65 -
-
- -
- - currency-riyal -
- ti ti-currency-riyal
- \ee66 -
-
- -
- - currency-rubel -
- ti ti-currency-rubel
- \ee67 -
-
- -
- - currency-rupee -
- ti ti-currency-rupee
- \ebad -
-
- -
- - currency-shekel -
- ti ti-currency-shekel
- \ee68 -
-
- -
- - currency-taka -
- ti ti-currency-taka
- \ee69 -
-
- -
- - currency-tugrik -
- ti ti-currency-tugrik
- \ee6a -
-
- -
- - currency-won -
- ti ti-currency-won
- \ee6b -
-
- -
- - currency-yen -
- ti ti-currency-yen
- \ebae -
-
- -
- - currency-yuan -
- ti ti-currency-yuan
- \f29a -
-
- -
- - currency-zloty -
- ti ti-currency-zloty
- \ee6c -
-
- -
- - current-location -
- ti ti-current-location
- \ecef -
-
- -
- - current-location-off -
- ti ti-current-location-off
- \f10e -
-
- -
- - cursor-off -
- ti ti-cursor-off
- \f10f -
-
- -
- - cursor-text -
- ti ti-cursor-text
- \ee6d -
-
- -
- - cut -
- ti ti-cut
- \ea86 -
-
- -
- - dashboard -
- ti ti-dashboard
- \ea87 -
-
- -
- - database -
- ti ti-database
- \ea88 -
-
- -
- - database-export -
- ti ti-database-export
- \ee6e -
-
- -
- - database-import -
- ti ti-database-import
- \ee6f -
-
- -
- - database-off -
- ti ti-database-off
- \ee70 -
-
- -
- - dental -
- ti ti-dental
- \f025 -
-
- -
- - dental-broken -
- ti ti-dental-broken
- \f286 -
-
- -
- - dental-off -
- ti ti-dental-off
- \f110 -
-
- -
- - details -
- ti ti-details
- \ee71 -
-
- -
- - device-analytics -
- ti ti-device-analytics
- \ee72 -
-
- -
- - device-audio-tape -
- ti ti-device-audio-tape
- \ee73 -
-
- -
- - device-camera-phone -
- ti ti-device-camera-phone
- \f233 -
-
- -
- - device-cctv -
- ti ti-device-cctv
- \ee74 -
-
- -
- - device-computer-camera -
- ti ti-device-computer-camera
- \ee76 -
-
- -
- - device-computer-camera-off -
- ti ti-device-computer-camera-off
- \ee75 -
-
- -
- - device-desktop -
- ti ti-device-desktop
- \ea89 -
-
- -
- - device-desktop-analytics -
- ti ti-device-desktop-analytics
- \ee77 -
-
- -
- - device-desktop-off -
- ti ti-device-desktop-off
- \ee78 -
-
- -
- - device-floppy -
- ti ti-device-floppy
- \eb62 -
-
- -
- - device-gamepad -
- ti ti-device-gamepad
- \eb63 -
-
- -
- - device-gamepad-2 -
- ti ti-device-gamepad-2
- \f1d2 -
-
- -
- - device-heart-monitor -
- ti ti-device-heart-monitor
- \f060 -
-
- -
- - device-laptop -
- ti ti-device-laptop
- \eb64 -
-
- -
- - device-laptop-off -
- ti ti-device-laptop-off
- \f061 -
-
- -
- - device-mobile -
- ti ti-device-mobile
- \ea8a -
-
- -
- - device-mobile-charging -
- ti ti-device-mobile-charging
- \f224 -
-
- -
- - device-mobile-message -
- ti ti-device-mobile-message
- \ee79 -
-
- -
- - device-mobile-off -
- ti ti-device-mobile-off
- \f062 -
-
- -
- - device-mobile-rotated -
- ti ti-device-mobile-rotated
- \ecdb -
-
- -
- - device-mobile-vibration -
- ti ti-device-mobile-vibration
- \eb86 -
-
- -
- - device-nintendo -
- ti ti-device-nintendo
- \f026 -
-
- -
- - device-nintendo-off -
- ti ti-device-nintendo-off
- \f111 -
-
- -
- - device-speaker -
- ti ti-device-speaker
- \ea8b -
-
- -
- - device-speaker-off -
- ti ti-device-speaker-off
- \f112 -
-
- -
- - device-tablet -
- ti ti-device-tablet
- \ea8c -
-
- -
- - device-tablet-off -
- ti ti-device-tablet-off
- \f063 -
-
- -
- - device-tv -
- ti ti-device-tv
- \ea8d -
-
- -
- - device-tv-off -
- ti ti-device-tv-off
- \f064 -
-
- -
- - device-tv-old -
- ti ti-device-tv-old
- \f1d3 -
-
- -
- - device-watch -
- ti ti-device-watch
- \ebf9 -
-
- -
- - device-watch-off -
- ti ti-device-watch-off
- \f065 -
-
- -
- - device-watch-stats -
- ti ti-device-watch-stats
- \ef7d -
-
- -
- - device-watch-stats-2 -
- ti ti-device-watch-stats-2
- \ef7c -
-
- -
- - devices -
- ti ti-devices
- \eb87 -
-
- -
- - devices-2 -
- ti ti-devices-2
- \ed29 -
-
- -
- - devices-off -
- ti ti-devices-off
- \f066 -
-
- -
- - devices-pc -
- ti ti-devices-pc
- \ee7a -
-
- -
- - devices-pc-off -
- ti ti-devices-pc-off
- \f113 -
-
- -
- - dialpad -
- ti ti-dialpad
- \f067 -
-
- -
- - dialpad-off -
- ti ti-dialpad-off
- \f114 -
-
- -
- - diamond -
- ti ti-diamond
- \eb65 -
-
- -
- - diamond-off -
- ti ti-diamond-off
- \f115 -
-
- -
- - diamonds -
- ti ti-diamonds
- \eff5 -
-
- -
- - dice -
- ti ti-dice
- \eb66 -
-
- -
- - dice-1 -
- ti ti-dice-1
- \f08b -
-
- -
- - dice-2 -
- ti ti-dice-2
- \f08c -
-
- -
- - dice-3 -
- ti ti-dice-3
- \f08d -
-
- -
- - dice-4 -
- ti ti-dice-4
- \f08e -
-
- -
- - dice-5 -
- ti ti-dice-5
- \f08f -
-
- -
- - dice-6 -
- ti ti-dice-6
- \f090 -
-
- -
- - dimensions -
- ti ti-dimensions
- \ee7b -
-
- -
- - direction -
- ti ti-direction
- \ebfb -
-
- -
- - direction-horizontal -
- ti ti-direction-horizontal
- \ebfa -
-
- -
- - direction-sign -
- ti ti-direction-sign
- \f1f7 -
-
- -
- - directions -
- ti ti-directions
- \ea8e -
-
- -
- - directions-off -
- ti ti-directions-off
- \f116 -
-
- -
- - disabled -
- ti ti-disabled
- \ea8f -
-
- -
- - disabled-2 -
- ti ti-disabled-2
- \ebaf -
-
- -
- - disabled-off -
- ti ti-disabled-off
- \f117 -
-
- -
- - disc -
- ti ti-disc
- \ea90 -
-
- -
- - disc-off -
- ti ti-disc-off
- \f118 -
-
- -
- - discount -
- ti ti-discount
- \ebbd -
-
- -
- - discount-2 -
- ti ti-discount-2
- \ee7c -
-
- -
- - discount-check -
- ti ti-discount-check
- \f1f8 -
-
- -
- - divide -
- ti ti-divide
- \ed5c -
-
- -
- - dna -
- ti ti-dna
- \ee7d -
-
- -
- - dna-2 -
- ti ti-dna-2
- \ef5c -
-
- -
- - dna-2-off -
- ti ti-dna-2-off
- \f119 -
-
- -
- - dna-off -
- ti ti-dna-off
- \f11a -
-
- -
- - dog-bowl -
- ti ti-dog-bowl
- \ef29 -
-
- -
- - door -
- ti ti-door
- \ef4e -
-
- -
- - door-enter -
- ti ti-door-enter
- \ef4c -
-
- -
- - door-exit -
- ti ti-door-exit
- \ef4d -
-
- -
- - door-off -
- ti ti-door-off
- \f11b -
-
- -
- - dots -
- ti ti-dots
- \ea95 -
-
- -
- - dots-circle-horizontal -
- ti ti-dots-circle-horizontal
- \ea91 -
-
- -
- - dots-diagonal -
- ti ti-dots-diagonal
- \ea93 -
-
- -
- - dots-diagonal-2 -
- ti ti-dots-diagonal-2
- \ea92 -
-
- -
- - dots-vertical -
- ti ti-dots-vertical
- \ea94 -
-
- -
- - download -
- ti ti-download
- \ea96 -
-
- -
- - download-off -
- ti ti-download-off
- \f11c -
-
- -
- - drag-drop -
- ti ti-drag-drop
- \eb89 -
-
- -
- - drag-drop-2 -
- ti ti-drag-drop-2
- \eb88 -
-
- -
- - drone -
- ti ti-drone
- \ed79 -
-
- -
- - drone-off -
- ti ti-drone-off
- \ee7e -
-
- -
- - drop-circle -
- ti ti-drop-circle
- \efde -
-
- -
- - droplet -
- ti ti-droplet
- \ea97 -
-
- -
- - droplet-filled -
- ti ti-droplet-filled
- \ee80 -
-
- -
- - droplet-filled-2 -
- ti ti-droplet-filled-2
- \ee7f -
-
- -
- - droplet-half -
- ti ti-droplet-half
- \ee82 -
-
- -
- - droplet-half-2 -
- ti ti-droplet-half-2
- \ee81 -
-
- -
- - droplet-off -
- ti ti-droplet-off
- \ee83 -
-
- -
- - ear -
- ti ti-ear
- \ebce -
-
- -
- - ear-off -
- ti ti-ear-off
- \ee84 -
-
- -
- - edit -
- ti ti-edit
- \ea98 -
-
- -
- - edit-circle -
- ti ti-edit-circle
- \ee85 -
-
- -
- - edit-circle-off -
- ti ti-edit-circle-off
- \f11d -
-
- -
- - edit-off -
- ti ti-edit-off
- \f11e -
-
- -
- - egg -
- ti ti-egg
- \eb8a -
-
- -
- - egg-cracked -
- ti ti-egg-cracked
- \f2d6 -
-
- -
- - egg-off -
- ti ti-egg-off
- \f11f -
-
- -
- - elevator -
- ti ti-elevator
- \efdf -
-
- -
- - emergency-bed -
- ti ti-emergency-bed
- \ef5d -
-
- -
- - empathize -
- ti ti-empathize
- \f29b -
-
- -
- - emphasis -
- ti ti-emphasis
- \ebcf -
-
- -
- - engine -
- ti ti-engine
- \ef7e -
-
- -
- - engine-off -
- ti ti-engine-off
- \f120 -
-
- -
- - equal -
- ti ti-equal
- \ee87 -
-
- -
- - equal-not -
- ti ti-equal-not
- \ee86 -
-
- -
- - eraser -
- ti ti-eraser
- \eb8b -
-
- -
- - eraser-off -
- ti ti-eraser-off
- \f121 -
-
- -
- - error-404 -
- ti ti-error-404
- \f027 -
-
- -
- - error-404-off -
- ti ti-error-404-off
- \f122 -
-
- -
- - exchange -
- ti ti-exchange
- \ebe7 -
-
- -
- - exchange-off -
- ti ti-exchange-off
- \f123 -
-
- -
- - exclamation-mark -
- ti ti-exclamation-mark
- \efb4 -
-
- -
- - exclamation-mark-off -
- ti ti-exclamation-mark-off
- \f124 -
-
- -
- - explicit -
- ti ti-explicit
- \f256 -
-
- -
- - exposure -
- ti ti-exposure
- \eb8c -
-
- -
- - exposure-0 -
- ti ti-exposure-0
- \f29c -
-
- -
- - exposure-minus-1 -
- ti ti-exposure-minus-1
- \f29d -
-
- -
- - exposure-minus-2 -
- ti ti-exposure-minus-2
- \f29e -
-
- -
- - exposure-plus-1 -
- ti ti-exposure-plus-1
- \f29f -
-
- -
- - exposure-plus-2 -
- ti ti-exposure-plus-2
- \f2a0 -
-
- -
- - external-link -
- ti ti-external-link
- \ea99 -
-
- -
- - external-link-off -
- ti ti-external-link-off
- \f125 -
-
- -
- - eye -
- ti ti-eye
- \ea9a -
-
- -
- - eye-check -
- ti ti-eye-check
- \ee88 -
-
- -
- - eye-off -
- ti ti-eye-off
- \ecf0 -
-
- -
- - eye-table -
- ti ti-eye-table
- \ef5e -
-
- -
- - eyeglass -
- ti ti-eyeglass
- \ee8a -
-
- -
- - eyeglass-2 -
- ti ti-eyeglass-2
- \ee89 -
-
- -
- - eyeglass-off -
- ti ti-eyeglass-off
- \f126 -
-
- -
- - face-id -
- ti ti-face-id
- \ea9b -
-
- -
- - face-id-error -
- ti ti-face-id-error
- \efa7 -
-
- -
- - face-mask -
- ti ti-face-mask
- \efb5 -
-
- -
- - face-mask-off -
- ti ti-face-mask-off
- \f127 -
-
- -
- - fall -
- ti ti-fall
- \ecb9 -
-
- -
- - feather -
- ti ti-feather
- \ee8b -
-
- -
- - feather-off -
- ti ti-feather-off
- \f128 -
-
- -
- - fence -
- ti ti-fence
- \ef2a -
-
- -
- - fence-off -
- ti ti-fence-off
- \f129 -
-
- -
- - fidget-spinner -
- ti ti-fidget-spinner
- \f068 -
-
- -
- - file -
- ti ti-file
- \eaa4 -
-
- -
- - file-3d -
- ti ti-file-3d
- \f032 -
-
- -
- - file-alert -
- ti ti-file-alert
- \ede6 -
-
- -
- - file-analytics -
- ti ti-file-analytics
- \ede7 -
-
- -
- - file-arrow-left -
- ti ti-file-arrow-left
- \f033 -
-
- -
- - file-arrow-right -
- ti ti-file-arrow-right
- \f034 -
-
- -
- - file-barcode -
- ti ti-file-barcode
- \f035 -
-
- -
- - file-certificate -
- ti ti-file-certificate
- \ed4d -
-
- -
- - file-chart -
- ti ti-file-chart
- \f036 -
-
- -
- - file-check -
- ti ti-file-check
- \ea9c -
-
- -
- - file-code -
- ti ti-file-code
- \ebd0 -
-
- -
- - file-code-2 -
- ti ti-file-code-2
- \ede8 -
-
- -
- - file-database -
- ti ti-file-database
- \f037 -
-
- -
- - file-description -
- ti ti-file-description
- \f028 -
-
- -
- - file-diff -
- ti ti-file-diff
- \ecf1 -
-
- -
- - file-digit -
- ti ti-file-digit
- \efa8 -
-
- -
- - file-dislike -
- ti ti-file-dislike
- \ed2a -
-
- -
- - file-dollar -
- ti ti-file-dollar
- \efe0 -
-
- -
- - file-dots -
- ti ti-file-dots
- \f038 -
-
- -
- - file-download -
- ti ti-file-download
- \ea9d -
-
- -
- - file-euro -
- ti ti-file-euro
- \efe1 -
-
- -
- - file-export -
- ti ti-file-export
- \ede9 -
-
- -
- - file-horizontal -
- ti ti-file-horizontal
- \ebb0 -
-
- -
- - file-import -
- ti ti-file-import
- \edea -
-
- -
- - file-info -
- ti ti-file-info
- \edec -
-
- -
- - file-invoice -
- ti ti-file-invoice
- \eb67 -
-
- -
- - file-like -
- ti ti-file-like
- \ed2b -
-
- -
- - file-minus -
- ti ti-file-minus
- \ea9e -
-
- -
- - file-music -
- ti ti-file-music
- \ea9f -
-
- -
- - file-off -
- ti ti-file-off
- \ecf2 -
-
- -
- - file-orientation -
- ti ti-file-orientation
- \f2a1 -
-
- -
- - file-pencil -
- ti ti-file-pencil
- \f039 -
-
- -
- - file-phone -
- ti ti-file-phone
- \ecdc -
-
- -
- - file-plus -
- ti ti-file-plus
- \eaa0 -
-
- -
- - file-power -
- ti ti-file-power
- \f03a -
-
- -
- - file-report -
- ti ti-file-report
- \eded -
-
- -
- - file-rss -
- ti ti-file-rss
- \f03b -
-
- -
- - file-scissors -
- ti ti-file-scissors
- \f03c -
-
- -
- - file-search -
- ti ti-file-search
- \ed5d -
-
- -
- - file-settings -
- ti ti-file-settings
- \f029 -
-
- -
- - file-shredder -
- ti ti-file-shredder
- \eaa1 -
-
- -
- - file-signal -
- ti ti-file-signal
- \f03d -
-
- -
- - file-spreadsheet -
- ti ti-file-spreadsheet
- \f03e -
-
- -
- - file-star -
- ti ti-file-star
- \f03f -
-
- -
- - file-symlink -
- ti ti-file-symlink
- \ed53 -
-
- -
- - file-text -
- ti ti-file-text
- \eaa2 -
-
- -
- - file-time -
- ti ti-file-time
- \f040 -
-
- -
- - file-typography -
- ti ti-file-typography
- \f041 -
-
- -
- - file-unknown -
- ti ti-file-unknown
- \f042 -
-
- -
- - file-upload -
- ti ti-file-upload
- \ec91 -
-
- -
- - file-vector -
- ti ti-file-vector
- \f043 -
-
- -
- - file-x -
- ti ti-file-x
- \eaa3 -
-
- -
- - file-zip -
- ti ti-file-zip
- \ed4e -
-
- -
- - files -
- ti ti-files
- \edef -
-
- -
- - files-off -
- ti ti-files-off
- \edee -
-
- -
- - filter -
- ti ti-filter
- \eaa5 -
-
- -
- - filter-off -
- ti ti-filter-off
- \ed2c -
-
- -
- - fingerprint -
- ti ti-fingerprint
- \ebd1 -
-
- -
- - fingerprint-off -
- ti ti-fingerprint-off
- \f12a -
-
- -
- - firetruck -
- ti ti-firetruck
- \ebe8 -
-
- -
- - first-aid-kit -
- ti ti-first-aid-kit
- \ef5f -
-
- -
- - fish -
- ti ti-fish
- \ef2b -
-
- -
- - fish-bone -
- ti ti-fish-bone
- \f287 -
-
- -
- - fish-hook -
- ti ti-fish-hook
- \f1f9 -
-
- -
- - fish-off -
- ti ti-fish-off
- \f12b -
-
- -
- - flag -
- ti ti-flag
- \eaa6 -
-
- -
- - flag-2 -
- ti ti-flag-2
- \ee8c -
-
- -
- - flag-2-off -
- ti ti-flag-2-off
- \f12c -
-
- -
- - flag-3 -
- ti ti-flag-3
- \ee8d -
-
- -
- - flag-off -
- ti ti-flag-off
- \f12d -
-
- -
- - flame -
- ti ti-flame
- \ec2c -
-
- -
- - flame-off -
- ti ti-flame-off
- \f12e -
-
- -
- - flare -
- ti ti-flare
- \ee8e -
-
- -
- - flask -
- ti ti-flask
- \ebd2 -
-
- -
- - flask-2 -
- ti ti-flask-2
- \ef60 -
-
- -
- - flask-2-off -
- ti ti-flask-2-off
- \f12f -
-
- -
- - flask-off -
- ti ti-flask-off
- \f130 -
-
- -
- - flip-horizontal -
- ti ti-flip-horizontal
- \eaa7 -
-
- -
- - flip-vertical -
- ti ti-flip-vertical
- \eaa8 -
-
- -
- - float-center -
- ti ti-float-center
- \ebb1 -
-
- -
- - float-left -
- ti ti-float-left
- \ebb2 -
-
- -
- - float-none -
- ti ti-float-none
- \ed13 -
-
- -
- - float-right -
- ti ti-float-right
- \ebb3 -
-
- -
- - flower -
- ti ti-flower
- \eff6 -
-
- -
- - flower-off -
- ti ti-flower-off
- \f131 -
-
- -
- - focus -
- ti ti-focus
- \eb8d -
-
- -
- - focus-2 -
- ti ti-focus-2
- \ebd3 -
-
- -
- - focus-centered -
- ti ti-focus-centered
- \f02a -
-
- -
- - fold -
- ti ti-fold
- \ed56 -
-
- -
- - fold-down -
- ti ti-fold-down
- \ed54 -
-
- -
- - fold-up -
- ti ti-fold-up
- \ed55 -
-
- -
- - folder -
- ti ti-folder
- \eaad -
-
- -
- - folder-minus -
- ti ti-folder-minus
- \eaaa -
-
- -
- - folder-off -
- ti ti-folder-off
- \ed14 -
-
- -
- - folder-plus -
- ti ti-folder-plus
- \eaab -
-
- -
- - folder-x -
- ti ti-folder-x
- \eaac -
-
- -
- - folders -
- ti ti-folders
- \eaae -
-
- -
- - folders-off -
- ti ti-folders-off
- \f133 -
-
- -
- - forbid -
- ti ti-forbid
- \ebd5 -
-
- -
- - forbid-2 -
- ti ti-forbid-2
- \ebd4 -
-
- -
- - forklift -
- ti ti-forklift
- \ebe9 -
-
- -
- - forms -
- ti ti-forms
- \ee8f -
-
- -
- - fountain -
- ti ti-fountain
- \f09b -
-
- -
- - fountain-off -
- ti ti-fountain-off
- \f134 -
-
- -
- - frame -
- ti ti-frame
- \eaaf -
-
- -
- - frame-off -
- ti ti-frame-off
- \f135 -
-
- -
- - free-rights -
- ti ti-free-rights
- \efb6 -
-
- -
- - fridge -
- ti ti-fridge
- \f1fa -
-
- -
- - friends -
- ti ti-friends
- \eab0 -
-
- -
- - friends-off -
- ti ti-friends-off
- \f136 -
-
- -
- - function -
- ti ti-function
- \f225 -
-
- -
- - garden-cart -
- ti ti-garden-cart
- \f23e -
-
- -
- - gas-station -
- ti ti-gas-station
- \ec7d -
-
- -
- - gas-station-off -
- ti ti-gas-station-off
- \f137 -
-
- -
- - gauge -
- ti ti-gauge
- \eab1 -
-
- -
- - gauge-off -
- ti ti-gauge-off
- \f138 -
-
- -
- - gavel -
- ti ti-gavel
- \ef90 -
-
- -
- - gender-agender -
- ti ti-gender-agender
- \f0e1 -
-
- -
- - gender-androgyne -
- ti ti-gender-androgyne
- \f0e2 -
-
- -
- - gender-bigender -
- ti ti-gender-bigender
- \f0e3 -
-
- -
- - gender-demiboy -
- ti ti-gender-demiboy
- \f0e4 -
-
- -
- - gender-demigirl -
- ti ti-gender-demigirl
- \f0e5 -
-
- -
- - gender-epicene -
- ti ti-gender-epicene
- \f0e6 -
-
- -
- - gender-female -
- ti ti-gender-female
- \f0e7 -
-
- -
- - gender-femme -
- ti ti-gender-femme
- \f0e8 -
-
- -
- - gender-genderfluid -
- ti ti-gender-genderfluid
- \f0e9 -
-
- -
- - gender-genderless -
- ti ti-gender-genderless
- \f0ea -
-
- -
- - gender-genderqueer -
- ti ti-gender-genderqueer
- \f0eb -
-
- -
- - gender-hermaphrodite -
- ti ti-gender-hermaphrodite
- \f0ec -
-
- -
- - gender-intergender -
- ti ti-gender-intergender
- \f0ed -
-
- -
- - gender-male -
- ti ti-gender-male
- \f0ee -
-
- -
- - gender-neutrois -
- ti ti-gender-neutrois
- \f0ef -
-
- -
- - gender-third -
- ti ti-gender-third
- \f0f0 -
-
- -
- - gender-transgender -
- ti ti-gender-transgender
- \f0f1 -
-
- -
- - gender-trasvesti -
- ti ti-gender-trasvesti
- \f0f2 -
-
- -
- - geometry -
- ti ti-geometry
- \ee90 -
-
- -
- - ghost -
- ti ti-ghost
- \eb8e -
-
- -
- - gif -
- ti ti-gif
- \f257 -
-
- -
- - gift -
- ti ti-gift
- \eb68 -
-
- -
- - git-branch -
- ti ti-git-branch
- \eab2 -
-
- -
- - git-commit -
- ti ti-git-commit
- \eab3 -
-
- -
- - git-compare -
- ti ti-git-compare
- \eab4 -
-
- -
- - git-fork -
- ti ti-git-fork
- \eb8f -
-
- -
- - git-merge -
- ti ti-git-merge
- \eab5 -
-
- -
- - git-pull-request -
- ti ti-git-pull-request
- \eab6 -
-
- -
- - git-pull-request-closed -
- ti ti-git-pull-request-closed
- \ef7f -
-
- -
- - git-pull-request-draft -
- ti ti-git-pull-request-draft
- \efb7 -
-
- -
- - gizmo -
- ti ti-gizmo
- \f02b -
-
- -
- - glass -
- ti ti-glass
- \eab8 -
-
- -
- - glass-full -
- ti ti-glass-full
- \eab7 -
-
- -
- - glass-off -
- ti ti-glass-off
- \ee91 -
-
- -
- - globe -
- ti ti-globe
- \eab9 -
-
- -
- - globe-off -
- ti ti-globe-off
- \f139 -
-
- -
- - golf -
- ti ti-golf
- \ed8c -
-
- -
- - golf-off -
- ti ti-golf-off
- \f13a -
-
- -
- - gps -
- ti ti-gps
- \ed7a -
-
- -
- - grain -
- ti ti-grain
- \ee92 -
-
- -
- - graph -
- ti ti-graph
- \f288 -
-
- -
- - grid-dots -
- ti ti-grid-dots
- \eaba -
-
- -
- - grid-pattern -
- ti ti-grid-pattern
- \efc9 -
-
- -
- - grill -
- ti ti-grill
- \efa9 -
-
- -
- - grill-off -
- ti ti-grill-off
- \f13b -
-
- -
- - grip-horizontal -
- ti ti-grip-horizontal
- \ec00 -
-
- -
- - grip-vertical -
- ti ti-grip-vertical
- \ec01 -
-
- -
- - growth -
- ti ti-growth
- \ee93 -
-
- -
- - h-1 -
- ti ti-h-1
- \ec94 -
-
- -
- - h-2 -
- ti ti-h-2
- \ec95 -
-
- -
- - h-3 -
- ti ti-h-3
- \ec96 -
-
- -
- - h-4 -
- ti ti-h-4
- \ec97 -
-
- -
- - h-5 -
- ti ti-h-5
- \ec98 -
-
- -
- - h-6 -
- ti ti-h-6
- \ec99 -
-
- -
- - hammer -
- ti ti-hammer
- \ef91 -
-
- -
- - hammer-off -
- ti ti-hammer-off
- \f13c -
-
- -
- - hand-click -
- ti ti-hand-click
- \ef4f -
-
- -
- - hand-finger -
- ti ti-hand-finger
- \ee94 -
-
- -
- - hand-finger-off -
- ti ti-hand-finger-off
- \f13d -
-
- -
- - hand-grab -
- ti ti-hand-grab
- \f091 -
-
- -
- - hand-little-finger -
- ti ti-hand-little-finger
- \ee95 -
-
- -
- - hand-middle-finger -
- ti ti-hand-middle-finger
- \ec2d -
-
- -
- - hand-move -
- ti ti-hand-move
- \ef50 -
-
- -
- - hand-off -
- ti ti-hand-off
- \ed15 -
-
- -
- - hand-ring-finger -
- ti ti-hand-ring-finger
- \ee96 -
-
- -
- - hand-rock -
- ti ti-hand-rock
- \ee97 -
-
- -
- - hand-stop -
- ti ti-hand-stop
- \ec2e -
-
- -
- - hand-three-fingers -
- ti ti-hand-three-fingers
- \ee98 -
-
- -
- - hand-two-fingers -
- ti ti-hand-two-fingers
- \ee99 -
-
- -
- - hanger -
- ti ti-hanger
- \ee9a -
-
- -
- - hanger-2 -
- ti ti-hanger-2
- \f09c -
-
- -
- - hanger-off -
- ti ti-hanger-off
- \f13e -
-
- -
- - hash -
- ti ti-hash
- \eabc -
-
- -
- - haze -
- ti ti-haze
- \efaa -
-
- -
- - heading -
- ti ti-heading
- \ee9b -
-
- -
- - heading-off -
- ti ti-heading-off
- \f13f -
-
- -
- - headphones -
- ti ti-headphones
- \eabd -
-
- -
- - headphones-off -
- ti ti-headphones-off
- \ed1d -
-
- -
- - headset -
- ti ti-headset
- \eb90 -
-
- -
- - health-recognition -
- ti ti-health-recognition
- \f1fb -
-
- -
- - heart -
- ti ti-heart
- \eabe -
-
- -
- - heart-broken -
- ti ti-heart-broken
- \ecba -
-
- -
- - heart-handshake -
- ti ti-heart-handshake
- \f0f3 -
-
- -
- - heart-minus -
- ti ti-heart-minus
- \f140 -
-
- -
- - heart-off -
- ti ti-heart-off
- \f141 -
-
- -
- - heart-plus -
- ti ti-heart-plus
- \f142 -
-
- -
- - heart-rate-monitor -
- ti ti-heart-rate-monitor
- \ef61 -
-
- -
- - heartbeat -
- ti ti-heartbeat
- \ef92 -
-
- -
- - helicopter -
- ti ti-helicopter
- \ed8e -
-
- -
- - helicopter-landing -
- ti ti-helicopter-landing
- \ed8d -
-
- -
- - helmet -
- ti ti-helmet
- \efca -
-
- -
- - helmet-off -
- ti ti-helmet-off
- \f143 -
-
- -
- - help -
- ti ti-help
- \eabf -
-
- -
- - hexagon -
- ti ti-hexagon
- \ec02 -
-
- -
- - hexagon-off -
- ti ti-hexagon-off
- \ee9c -
-
- -
- - hexagons -
- ti ti-hexagons
- \f09d -
-
- -
- - hierarchy -
- ti ti-hierarchy
- \ee9e -
-
- -
- - hierarchy-2 -
- ti ti-hierarchy-2
- \ee9d -
-
- -
- - hierarchy-3 -
- ti ti-hierarchy-3
- \f289 -
-
- -
- - highlight -
- ti ti-highlight
- \ef3f -
-
- -
- - highlight-off -
- ti ti-highlight-off
- \f144 -
-
- -
- - history -
- ti ti-history
- \ebea -
-
- -
- - history-toggle -
- ti ti-history-toggle
- \f1fc -
-
- -
- - home -
- ti ti-home
- \eac1 -
-
- -
- - home-2 -
- ti ti-home-2
- \eac0 -
-
- -
- - home-off -
- ti ti-home-off
- \f145 -
-
- -
- - horse-toy -
- ti ti-horse-toy
- \f28a -
-
- -
- - hotel-service -
- ti ti-hotel-service
- \ef80 -
-
- -
- - hourglass -
- ti ti-hourglass
- \ef93 -
-
- -
- - hourglass-empty -
- ti ti-hourglass-empty
- \f146 -
-
- -
- - hourglass-high -
- ti ti-hourglass-high
- \f092 -
-
- -
- - hourglass-low -
- ti ti-hourglass-low
- \f093 -
-
- -
- - hourglass-off -
- ti ti-hourglass-off
- \f147 -
-
- -
- - ice-cream -
- ti ti-ice-cream
- \eac2 -
-
- -
- - ice-cream-2 -
- ti ti-ice-cream-2
- \ee9f -
-
- -
- - ice-cream-off -
- ti ti-ice-cream-off
- \f148 -
-
- -
- - ice-skating -
- ti ti-ice-skating
- \efcb -
-
- -
- - icons -
- ti ti-icons
- \f1d4 -
-
- -
- - id -
- ti ti-id
- \eac3 -
-
- -
- - id-badge -
- ti ti-id-badge
- \eff7 -
-
- -
- - id-badge-2 -
- ti ti-id-badge-2
- \f076 -
-
- -
- - id-off -
- ti ti-id-off
- \f149 -
-
- -
- - inbox -
- ti ti-inbox
- \eac4 -
-
- -
- - inbox-off -
- ti ti-inbox-off
- \f14a -
-
- -
- - indent-decrease -
- ti ti-indent-decrease
- \eb91 -
-
- -
- - indent-increase -
- ti ti-indent-increase
- \eb92 -
-
- -
- - infinity -
- ti ti-infinity
- \eb69 -
-
- -
- - info-circle -
- ti ti-info-circle
- \eac5 -
-
- -
- - info-square -
- ti ti-info-square
- \eac6 -
-
- -
- - input-search -
- ti ti-input-search
- \f2a2 -
-
- -
- - italic -
- ti ti-italic
- \eb93 -
-
- -
- - jewish-star -
- ti ti-jewish-star
- \f1d5 -
-
- -
- - jump-rope -
- ti ti-jump-rope
- \ed8f -
-
- -
- - karate -
- ti ti-karate
- \ed32 -
-
- -
- - kayak -
- ti ti-kayak
- \f1d6 -
-
- -
- - kering -
- ti ti-kering
- \efb8 -
-
- -
- - key -
- ti ti-key
- \eac7 -
-
- -
- - key-off -
- ti ti-key-off
- \f14b -
-
- -
- - keyboard -
- ti ti-keyboard
- \ebd6 -
-
- -
- - keyboard-hide -
- ti ti-keyboard-hide
- \ec7e -
-
- -
- - keyboard-off -
- ti ti-keyboard-off
- \eea0 -
-
- -
- - keyboard-show -
- ti ti-keyboard-show
- \ec7f -
-
- -
- - ladder -
- ti ti-ladder
- \efe2 -
-
- -
- - ladder-off -
- ti ti-ladder-off
- \f14c -
-
- -
- - lamp -
- ti ti-lamp
- \efab -
-
- -
- - lamp-2 -
- ti ti-lamp-2
- \f09e -
-
- -
- - lamp-off -
- ti ti-lamp-off
- \f14d -
-
- -
- - language -
- ti ti-language
- \ebbe -
-
- -
- - language-hiragana -
- ti ti-language-hiragana
- \ef77 -
-
- -
- - language-katakana -
- ti ti-language-katakana
- \ef78 -
-
- -
- - language-off -
- ti ti-language-off
- \f14e -
-
- -
- - lasso -
- ti ti-lasso
- \efac -
-
- -
- - lasso-off -
- ti ti-lasso-off
- \f14f -
-
- -
- - layers-difference -
- ti ti-layers-difference
- \eac8 -
-
- -
- - layers-intersect -
- ti ti-layers-intersect
- \eac9 -
-
- -
- - layers-intersect-2 -
- ti ti-layers-intersect-2
- \eff8 -
-
- -
- - layers-linked -
- ti ti-layers-linked
- \eea1 -
-
- -
- - layers-off -
- ti ti-layers-off
- \f150 -
-
- -
- - layers-subtract -
- ti ti-layers-subtract
- \eaca -
-
- -
- - layers-union -
- ti ti-layers-union
- \eacb -
-
- -
- - layout -
- ti ti-layout
- \eadb -
-
- -
- - layout-2 -
- ti ti-layout-2
- \eacc -
-
- -
- - layout-align-bottom -
- ti ti-layout-align-bottom
- \eacd -
-
- -
- - layout-align-center -
- ti ti-layout-align-center
- \eace -
-
- -
- - layout-align-left -
- ti ti-layout-align-left
- \eacf -
-
- -
- - layout-align-middle -
- ti ti-layout-align-middle
- \ead0 -
-
- -
- - layout-align-right -
- ti ti-layout-align-right
- \ead1 -
-
- -
- - layout-align-top -
- ti ti-layout-align-top
- \ead2 -
-
- -
- - layout-board -
- ti ti-layout-board
- \ef95 -
-
- -
- - layout-board-split -
- ti ti-layout-board-split
- \ef94 -
-
- -
- - layout-bottombar -
- ti ti-layout-bottombar
- \ead3 -
-
- -
- - layout-bottombar-collapse -
- ti ti-layout-bottombar-collapse
- \f28b -
-
- -
- - layout-bottombar-expand -
- ti ti-layout-bottombar-expand
- \f28c -
-
- -
- - layout-cards -
- ti ti-layout-cards
- \ec13 -
-
- -
- - layout-columns -
- ti ti-layout-columns
- \ead4 -
-
- -
- - layout-dashboard -
- ti ti-layout-dashboard
- \f02c -
-
- -
- - layout-distribute-horizontal -
- ti ti-layout-distribute-horizontal
- \ead5 -
-
- -
- - layout-distribute-vertical -
- ti ti-layout-distribute-vertical
- \ead6 -
-
- -
- - layout-grid -
- ti ti-layout-grid
- \edba -
-
- -
- - layout-grid-add -
- ti ti-layout-grid-add
- \edb9 -
-
- -
- - layout-kanban -
- ti ti-layout-kanban
- \ec3f -
-
- -
- - layout-list -
- ti ti-layout-list
- \ec14 -
-
- -
- - layout-navbar -
- ti ti-layout-navbar
- \ead7 -
-
- -
- - layout-navbar-collapse -
- ti ti-layout-navbar-collapse
- \f28d -
-
- -
- - layout-navbar-expand -
- ti ti-layout-navbar-expand
- \f28e -
-
- -
- - layout-off -
- ti ti-layout-off
- \f151 -
-
- -
- - layout-rows -
- ti ti-layout-rows
- \ead8 -
-
- -
- - layout-sidebar -
- ti ti-layout-sidebar
- \eada -
-
- -
- - layout-sidebar-left-collapse -
- ti ti-layout-sidebar-left-collapse
- \f004 -
-
- -
- - layout-sidebar-left-expand -
- ti ti-layout-sidebar-left-expand
- \f005 -
-
- -
- - layout-sidebar-right -
- ti ti-layout-sidebar-right
- \ead9 -
-
- -
- - layout-sidebar-right-collapse -
- ti ti-layout-sidebar-right-collapse
- \f006 -
-
- -
- - layout-sidebar-right-expand -
- ti ti-layout-sidebar-right-expand
- \f007 -
-
- -
- - leaf -
- ti ti-leaf
- \ed4f -
-
- -
- - leaf-off -
- ti ti-leaf-off
- \f152 -
-
- -
- - lego -
- ti ti-lego
- \eadc -
-
- -
- - lemon -
- ti ti-lemon
- \ef10 -
-
- -
- - lemon-2 -
- ti ti-lemon-2
- \ef81 -
-
- -
- - letter-a -
- ti ti-letter-a
- \ec50 -
-
- -
- - letter-b -
- ti ti-letter-b
- \ec51 -
-
- -
- - letter-c -
- ti ti-letter-c
- \ec52 -
-
- -
- - letter-case -
- ti ti-letter-case
- \eea5 -
-
- -
- - letter-case-lower -
- ti ti-letter-case-lower
- \eea2 -
-
- -
- - letter-case-toggle -
- ti ti-letter-case-toggle
- \eea3 -
-
- -
- - letter-case-upper -
- ti ti-letter-case-upper
- \eea4 -
-
- -
- - letter-d -
- ti ti-letter-d
- \ec53 -
-
- -
- - letter-e -
- ti ti-letter-e
- \ec54 -
-
- -
- - letter-f -
- ti ti-letter-f
- \ec55 -
-
- -
- - letter-g -
- ti ti-letter-g
- \ec56 -
-
- -
- - letter-h -
- ti ti-letter-h
- \ec57 -
-
- -
- - letter-i -
- ti ti-letter-i
- \ec58 -
-
- -
- - letter-j -
- ti ti-letter-j
- \ec59 -
-
- -
- - letter-k -
- ti ti-letter-k
- \ec5a -
-
- -
- - letter-l -
- ti ti-letter-l
- \ec5b -
-
- -
- - letter-m -
- ti ti-letter-m
- \ec5c -
-
- -
- - letter-n -
- ti ti-letter-n
- \ec5d -
-
- -
- - letter-o -
- ti ti-letter-o
- \ec5e -
-
- -
- - letter-p -
- ti ti-letter-p
- \ec5f -
-
- -
- - letter-q -
- ti ti-letter-q
- \ec60 -
-
- -
- - letter-r -
- ti ti-letter-r
- \ec61 -
-
- -
- - letter-s -
- ti ti-letter-s
- \ec62 -
-
- -
- - letter-spacing -
- ti ti-letter-spacing
- \eea6 -
-
- -
- - letter-t -
- ti ti-letter-t
- \ec63 -
-
- -
- - letter-u -
- ti ti-letter-u
- \ec64 -
-
- -
- - letter-v -
- ti ti-letter-v
- \ec65 -
-
- -
- - letter-w -
- ti ti-letter-w
- \ec66 -
-
- -
- - letter-x -
- ti ti-letter-x
- \ec67 -
-
- -
- - letter-y -
- ti ti-letter-y
- \ec68 -
-
- -
- - letter-z -
- ti ti-letter-z
- \ec69 -
-
- -
- - license -
- ti ti-license
- \ebc0 -
-
- -
- - license-off -
- ti ti-license-off
- \f153 -
-
- -
- - lifebuoy -
- ti ti-lifebuoy
- \eadd -
-
- -
- - lifebuoy-off -
- ti ti-lifebuoy-off
- \f154 -
-
- -
- - line -
- ti ti-line
- \ec40 -
-
- -
- - line-dashed -
- ti ti-line-dashed
- \eea7 -
-
- -
- - line-dotted -
- ti ti-line-dotted
- \eea8 -
-
- -
- - line-height -
- ti ti-line-height
- \eb94 -
-
- -
- - link -
- ti ti-link
- \eade -
-
- -
- - list -
- ti ti-list
- \eb6b -
-
- -
- - list-check -
- ti ti-list-check
- \eb6a -
-
- -
- - list-details -
- ti ti-list-details
- \ef40 -
-
- -
- - list-numbers -
- ti ti-list-numbers
- \ef11 -
-
- -
- - list-search -
- ti ti-list-search
- \eea9 -
-
- -
- - live-photo -
- ti ti-live-photo
- \eadf -
-
- -
- - live-view -
- ti ti-live-view
- \ec6b -
-
- -
- - loader -
- ti ti-loader
- \eca3 -
-
- -
- - loader-2 -
- ti ti-loader-2
- \f226 -
-
- -
- - loader-quarter -
- ti ti-loader-quarter
- \eca2 -
-
- -
- - location -
- ti ti-location
- \eae0 -
-
- -
- - location-broken -
- ti ti-location-broken
- \f2c4 -
-
- -
- - location-off -
- ti ti-location-off
- \f155 -
-
- -
- - lock -
- ti ti-lock
- \eae2 -
-
- -
- - lock-access -
- ti ti-lock-access
- \eeaa -
-
- -
- - lock-off -
- ti ti-lock-off
- \ed1e -
-
- -
- - lock-open -
- ti ti-lock-open
- \eae1 -
-
- -
- - lock-open-off -
- ti ti-lock-open-off
- \f156 -
-
- -
- - lock-square -
- ti ti-lock-square
- \ef51 -
-
- -
- - logic-and -
- ti ti-logic-and
- \f240 -
-
- -
- - logic-buffer -
- ti ti-logic-buffer
- \f241 -
-
- -
- - logic-nand -
- ti ti-logic-nand
- \f242 -
-
- -
- - logic-nor -
- ti ti-logic-nor
- \f243 -
-
- -
- - logic-not -
- ti ti-logic-not
- \f244 -
-
- -
- - logic-or -
- ti ti-logic-or
- \f245 -
-
- -
- - logic-xnor -
- ti ti-logic-xnor
- \f246 -
-
- -
- - logic-xor -
- ti ti-logic-xor
- \f247 -
-
- -
- - login -
- ti ti-login
- \eba7 -
-
- -
- - logout -
- ti ti-logout
- \eba8 -
-
- -
- - lollipop -
- ti ti-lollipop
- \efcc -
-
- -
- - lollipop-off -
- ti ti-lollipop-off
- \f157 -
-
- -
- - luggage -
- ti ti-luggage
- \efad -
-
- -
- - luggage-off -
- ti ti-luggage-off
- \f158 -
-
- -
- - lungs -
- ti ti-lungs
- \ef62 -
-
- -
- - macro -
- ti ti-macro
- \eeab -
-
- -
- - magnet -
- ti ti-magnet
- \eae3 -
-
- -
- - magnet-off -
- ti ti-magnet-off
- \f159 -
-
- -
- - mail -
- ti ti-mail
- \eae5 -
-
- -
- - mail-fast -
- ti ti-mail-fast
- \f069 -
-
- -
- - mail-forward -
- ti ti-mail-forward
- \eeac -
-
- -
- - mail-off -
- ti ti-mail-off
- \f15a -
-
- -
- - mail-opened -
- ti ti-mail-opened
- \eae4 -
-
- -
- - mailbox -
- ti ti-mailbox
- \eead -
-
- -
- - mailbox-off -
- ti ti-mailbox-off
- \f15b -
-
- -
- - man -
- ti ti-man
- \eae6 -
-
- -
- - manual-gearbox -
- ti ti-manual-gearbox
- \ed7b -
-
- -
- - map -
- ti ti-map
- \eae9 -
-
- -
- - map-2 -
- ti ti-map-2
- \eae7 -
-
- -
- - map-off -
- ti ti-map-off
- \f15c -
-
- -
- - map-pin -
- ti ti-map-pin
- \eae8 -
-
- -
- - map-pin-off -
- ti ti-map-pin-off
- \ecf3 -
-
- -
- - map-pins -
- ti ti-map-pins
- \ed5e -
-
- -
- - map-search -
- ti ti-map-search
- \ef82 -
-
- -
- - markdown -
- ti ti-markdown
- \ec41 -
-
- -
- - marquee -
- ti ti-marquee
- \ec77 -
-
- -
- - marquee-2 -
- ti ti-marquee-2
- \eeae -
-
- -
- - marquee-off -
- ti ti-marquee-off
- \f15d -
-
- -
- - mars -
- ti ti-mars
- \ec80 -
-
- -
- - mask -
- ti ti-mask
- \eeb0 -
-
- -
- - mask-off -
- ti ti-mask-off
- \eeaf -
-
- -
- - masks-theater -
- ti ti-masks-theater
- \f263 -
-
- -
- - massage -
- ti ti-massage
- \eeb1 -
-
- -
- - math -
- ti ti-math
- \ebeb -
-
- -
- - math-avg -
- ti ti-math-avg
- \f0f4 -
-
- -
- - math-function -
- ti ti-math-function
- \eeb2 -
-
- -
- - math-function-off -
- ti ti-math-function-off
- \f15e -
-
- -
- - math-max -
- ti ti-math-max
- \f0f5 -
-
- -
- - math-min -
- ti ti-math-min
- \f0f6 -
-
- -
- - math-symbols -
- ti ti-math-symbols
- \eeb3 -
-
- -
- - maximize -
- ti ti-maximize
- \eaea -
-
- -
- - maximize-off -
- ti ti-maximize-off
- \f15f -
-
- -
- - meat -
- ti ti-meat
- \ef12 -
-
- -
- - medal -
- ti ti-medal
- \ec78 -
-
- -
- - medal-2 -
- ti ti-medal-2
- \efcd -
-
- -
- - medical-cross -
- ti ti-medical-cross
- \ec2f -
-
- -
- - medical-cross-off -
- ti ti-medical-cross-off
- \f160 -
-
- -
- - medicine-syrup -
- ti ti-medicine-syrup
- \ef63 -
-
- -
- - menu -
- ti ti-menu
- \eaeb -
-
- -
- - menu-2 -
- ti ti-menu-2
- \ec42 -
-
- -
- - message -
- ti ti-message
- \eaef -
-
- -
- - message-2 -
- ti ti-message-2
- \eaec -
-
- -
- - message-2-code -
- ti ti-message-2-code
- \f012 -
-
- -
- - message-2-share -
- ti ti-message-2-share
- \f077 -
-
- -
- - message-circle -
- ti ti-message-circle
- \eaed -
-
- -
- - message-circle-2 -
- ti ti-message-circle-2
- \ed3f -
-
- -
- - message-circle-off -
- ti ti-message-circle-off
- \ed40 -
-
- -
- - message-code -
- ti ti-message-code
- \f013 -
-
- -
- - message-dots -
- ti ti-message-dots
- \eaee -
-
- -
- - message-forward -
- ti ti-message-forward
- \f28f -
-
- -
- - message-language -
- ti ti-message-language
- \efae -
-
- -
- - message-off -
- ti ti-message-off
- \ed41 -
-
- -
- - message-plus -
- ti ti-message-plus
- \ec9a -
-
- -
- - message-report -
- ti ti-message-report
- \ec9b -
-
- -
- - message-share -
- ti ti-message-share
- \f078 -
-
- -
- - messages -
- ti ti-messages
- \eb6c -
-
- -
- - messages-off -
- ti ti-messages-off
- \ed42 -
-
- -
- - meteor -
- ti ti-meteor
- \f1fd -
-
- -
- - mickey -
- ti ti-mickey
- \f2a3 -
-
- -
- - microphone -
- ti ti-microphone
- \eaf0 -
-
- -
- - microphone-2 -
- ti ti-microphone-2
- \ef2c -
-
- -
- - microphone-off -
- ti ti-microphone-off
- \ed16 -
-
- -
- - microscope -
- ti ti-microscope
- \ef64 -
-
- -
- - microwave -
- ti ti-microwave
- \f248 -
-
- -
- - microwave-off -
- ti ti-microwave-off
- \f264 -
-
- -
- - military-award -
- ti ti-military-award
- \f079 -
-
- -
- - military-rank -
- ti ti-military-rank
- \efcf -
-
- -
- - milk -
- ti ti-milk
- \ef13 -
-
- -
- - minimize -
- ti ti-minimize
- \eaf1 -
-
- -
- - minus -
- ti ti-minus
- \eaf2 -
-
- -
- - minus-vertical -
- ti ti-minus-vertical
- \eeb4 -
-
- -
- - mist -
- ti ti-mist
- \ec30 -
-
- -
- - mood-boy -
- ti ti-mood-boy
- \ed2d -
-
- -
- - mood-confuzed -
- ti ti-mood-confuzed
- \eaf3 -
-
- -
- - mood-crazy-happy -
- ti ti-mood-crazy-happy
- \ed90 -
-
- -
- - mood-cry -
- ti ti-mood-cry
- \ecbb -
-
- -
- - mood-empty -
- ti ti-mood-empty
- \eeb5 -
-
- -
- - mood-happy -
- ti ti-mood-happy
- \eaf4 -
-
- -
- - mood-kid -
- ti ti-mood-kid
- \ec03 -
-
- -
- - mood-look-left -
- ti ti-mood-look-left
- \f2c5 -
-
- -
- - mood-look-right -
- ti ti-mood-look-right
- \f2c6 -
-
- -
- - mood-nervous -
- ti ti-mood-nervous
- \ef96 -
-
- -
- - mood-neutral -
- ti ti-mood-neutral
- \eaf5 -
-
- -
- - mood-off -
- ti ti-mood-off
- \f161 -
-
- -
- - mood-sad -
- ti ti-mood-sad
- \eaf6 -
-
- -
- - mood-sing -
- ti ti-mood-sing
- \f2c7 -
-
- -
- - mood-smile -
- ti ti-mood-smile
- \eaf7 -
-
- -
- - mood-suprised -
- ti ti-mood-suprised
- \ec04 -
-
- -
- - mood-tongue -
- ti ti-mood-tongue
- \eb95 -
-
- -
- - moon -
- ti ti-moon
- \eaf8 -
-
- -
- - moon-2 -
- ti ti-moon-2
- \ece6 -
-
- -
- - moon-off -
- ti ti-moon-off
- \f162 -
-
- -
- - moon-stars -
- ti ti-moon-stars
- \ece7 -
-
- -
- - moped -
- ti ti-moped
- \ecbc -
-
- -
- - motorbike -
- ti ti-motorbike
- \eeb6 -
-
- -
- - mountain -
- ti ti-mountain
- \ef97 -
-
- -
- - mouse -
- ti ti-mouse
- \eaf9 -
-
- -
- - mouse-2 -
- ti ti-mouse-2
- \f1d7 -
-
- -
- - mouse-off -
- ti ti-mouse-off
- \f163 -
-
- -
- - movie -
- ti ti-movie
- \eafa -
-
- -
- - movie-off -
- ti ti-movie-off
- \f164 -
-
- -
- - mug -
- ti ti-mug
- \eafb -
-
- -
- - mug-off -
- ti ti-mug-off
- \f165 -
-
- -
- - multiplier-0-5x -
- ti ti-multiplier-0-5x
- \ef41 -
-
- -
- - multiplier-1-5x -
- ti ti-multiplier-1-5x
- \ef42 -
-
- -
- - multiplier-1x -
- ti ti-multiplier-1x
- \ef43 -
-
- -
- - multiplier-2x -
- ti ti-multiplier-2x
- \ef44 -
-
- -
- - mushroom -
- ti ti-mushroom
- \ef14 -
-
- -
- - music -
- ti ti-music
- \eafc -
-
- -
- - music-off -
- ti ti-music-off
- \f166 -
-
- -
- - navigation -
- ti ti-navigation
- \f2c8 -
-
- -
- - network -
- ti ti-network
- \f09f -
-
- -
- - new-section -
- ti ti-new-section
- \ebc1 -
-
- -
- - news -
- ti ti-news
- \eafd -
-
- -
- - news-off -
- ti ti-news-off
- \f167 -
-
- -
- - nfc -
- ti ti-nfc
- \eeb7 -
-
- -
- - nfc-off -
- ti ti-nfc-off
- \f168 -
-
- -
- - no-copyright -
- ti ti-no-copyright
- \efb9 -
-
- -
- - no-creative-commons -
- ti ti-no-creative-commons
- \efba -
-
- -
- - no-derivatives -
- ti ti-no-derivatives
- \efbb -
-
- -
- - north-star -
- ti ti-north-star
- \f014 -
-
- -
- - note -
- ti ti-note
- \eb6d -
-
- -
- - note-off -
- ti ti-note-off
- \f169 -
-
- -
- - notebook -
- ti ti-notebook
- \eb96 -
-
- -
- - notes -
- ti ti-notes
- \eb6e -
-
- -
- - notes-off -
- ti ti-notes-off
- \f16a -
-
- -
- - notification -
- ti ti-notification
- \eafe -
-
- -
- - notification-off -
- ti ti-notification-off
- \f16b -
-
- -
- - number -
- ti ti-number
- \f1fe -
-
- -
- - number-0 -
- ti ti-number-0
- \edf0 -
-
- -
- - number-1 -
- ti ti-number-1
- \edf1 -
-
- -
- - number-2 -
- ti ti-number-2
- \edf2 -
-
- -
- - number-3 -
- ti ti-number-3
- \edf3 -
-
- -
- - number-4 -
- ti ti-number-4
- \edf4 -
-
- -
- - number-5 -
- ti ti-number-5
- \edf5 -
-
- -
- - number-6 -
- ti ti-number-6
- \edf6 -
-
- -
- - number-7 -
- ti ti-number-7
- \edf7 -
-
- -
- - number-8 -
- ti ti-number-8
- \edf8 -
-
- -
- - number-9 -
- ti ti-number-9
- \edf9 -
-
- -
- - numbers -
- ti ti-numbers
- \f015 -
-
- -
- - nurse -
- ti ti-nurse
- \ef65 -
-
- -
- - octagon -
- ti ti-octagon
- \ecbd -
-
- -
- - octagon-off -
- ti ti-octagon-off
- \eeb8 -
-
- -
- - old -
- ti ti-old
- \eeb9 -
-
- -
- - olympics -
- ti ti-olympics
- \eeba -
-
- -
- - omega -
- ti ti-omega
- \eb97 -
-
- -
- - outbound -
- ti ti-outbound
- \f249 -
-
- -
- - outlet -
- ti ti-outlet
- \ebd7 -
-
- -
- - oval -
- ti ti-oval
- \f02e -
-
- -
- - oval-vertical -
- ti ti-oval-vertical
- \f02d -
-
- -
- - overline -
- ti ti-overline
- \eebb -
-
- -
- - package -
- ti ti-package
- \eaff -
-
- -
- - package-off -
- ti ti-package-off
- \f16c -
-
- -
- - packages -
- ti ti-packages
- \f2c9 -
-
- -
- - packge-export -
- ti ti-packge-export
- \f07a -
-
- -
- - packge-import -
- ti ti-packge-import
- \f07b -
-
- -
- - pacman -
- ti ti-pacman
- \eebc -
-
- -
- - page-break -
- ti ti-page-break
- \ec81 -
-
- -
- - paint -
- ti ti-paint
- \eb00 -
-
- -
- - paint-off -
- ti ti-paint-off
- \f16d -
-
- -
- - palette -
- ti ti-palette
- \eb01 -
-
- -
- - palette-off -
- ti ti-palette-off
- \f16e -
-
- -
- - panorama-horizontal -
- ti ti-panorama-horizontal
- \ed33 -
-
- -
- - panorama-vertical -
- ti ti-panorama-vertical
- \ed34 -
-
- -
- - paper-bag -
- ti ti-paper-bag
- \f02f -
-
- -
- - paper-bag-off -
- ti ti-paper-bag-off
- \f16f -
-
- -
- - paperclip -
- ti ti-paperclip
- \eb02 -
-
- -
- - parachute -
- ti ti-parachute
- \ed7c -
-
- -
- - parachute-off -
- ti ti-parachute-off
- \f170 -
-
- -
- - parentheses -
- ti ti-parentheses
- \ebd8 -
-
- -
- - parentheses-off -
- ti ti-parentheses-off
- \f171 -
-
- -
- - parking -
- ti ti-parking
- \eb03 -
-
- -
- - parking-off -
- ti ti-parking-off
- \f172 -
-
- -
- - paw -
- ti ti-paw
- \eff9 -
-
- -
- - peace -
- ti ti-peace
- \ecbe -
-
- -
- - pencil -
- ti ti-pencil
- \eb04 -
-
- -
- - pencil-minus -
- ti ti-pencil-minus
- \f1eb -
-
- -
- - pencil-off -
- ti ti-pencil-off
- \f173 -
-
- -
- - pencil-plus -
- ti ti-pencil-plus
- \f1ec -
-
- -
- - pennant -
- ti ti-pennant
- \ed7d -
-
- -
- - pennant-2 -
- ti ti-pennant-2
- \f06a -
-
- -
- - pennant-off -
- ti ti-pennant-off
- \f174 -
-
- -
- - pentagon -
- ti ti-pentagon
- \efe3 -
-
- -
- - pepper -
- ti ti-pepper
- \ef15 -
-
- -
- - pepper-off -
- ti ti-pepper-off
- \f175 -
-
- -
- - percentage -
- ti ti-percentage
- \ecf4 -
-
- -
- - perspective -
- ti ti-perspective
- \eebd -
-
- -
- - perspective-off -
- ti ti-perspective-off
- \f176 -
-
- -
- - phone -
- ti ti-phone
- \eb09 -
-
- -
- - phone-call -
- ti ti-phone-call
- \eb05 -
-
- -
- - phone-calling -
- ti ti-phone-calling
- \ec43 -
-
- -
- - phone-check -
- ti ti-phone-check
- \ec05 -
-
- -
- - phone-incoming -
- ti ti-phone-incoming
- \eb06 -
-
- -
- - phone-off -
- ti ti-phone-off
- \ecf5 -
-
- -
- - phone-outgoing -
- ti ti-phone-outgoing
- \eb07 -
-
- -
- - phone-pause -
- ti ti-phone-pause
- \eb08 -
-
- -
- - phone-plus -
- ti ti-phone-plus
- \ec06 -
-
- -
- - phone-x -
- ti ti-phone-x
- \ec07 -
-
- -
- - photo -
- ti ti-photo
- \eb0a -
-
- -
- - photo-off -
- ti ti-photo-off
- \ecf6 -
-
- -
- - physotherapist -
- ti ti-physotherapist
- \eebe -
-
- -
- - picture-in-picture -
- ti ti-picture-in-picture
- \ed35 -
-
- -
- - picture-in-picture-off -
- ti ti-picture-in-picture-off
- \ed43 -
-
- -
- - picture-in-picture-on -
- ti ti-picture-in-picture-on
- \ed44 -
-
- -
- - picture-in-picture-top -
- ti ti-picture-in-picture-top
- \efe4 -
-
- -
- - pig -
- ti ti-pig
- \ef52 -
-
- -
- - pig-off -
- ti ti-pig-off
- \f177 -
-
- -
- - pill -
- ti ti-pill
- \ec44 -
-
- -
- - pill-off -
- ti ti-pill-off
- \f178 -
-
- -
- - pills -
- ti ti-pills
- \ef66 -
-
- -
- - pin -
- ti ti-pin
- \ec9c -
-
- -
- - pinned -
- ti ti-pinned
- \ed60 -
-
- -
- - pinned-off -
- ti ti-pinned-off
- \ed5f -
-
- -
- - pizza -
- ti ti-pizza
- \edbb -
-
- -
- - pizza-off -
- ti ti-pizza-off
- \f179 -
-
- -
- - plane -
- ti ti-plane
- \eb6f -
-
- -
- - plane-arrival -
- ti ti-plane-arrival
- \eb99 -
-
- -
- - plane-departure -
- ti ti-plane-departure
- \eb9a -
-
- -
- - plane-inflight -
- ti ti-plane-inflight
- \ef98 -
-
- -
- - plane-off -
- ti ti-plane-off
- \f17a -
-
- -
- - plane-tilt -
- ti ti-plane-tilt
- \f1ed -
-
- -
- - planet -
- ti ti-planet
- \ec08 -
-
- -
- - planet-off -
- ti ti-planet-off
- \f17b -
-
- -
- - plant -
- ti ti-plant
- \ed50 -
-
- -
- - plant-2 -
- ti ti-plant-2
- \ed7e -
-
- -
- - plant-2-off -
- ti ti-plant-2-off
- \f17c -
-
- -
- - plant-off -
- ti ti-plant-off
- \f17d -
-
- -
- - play-card -
- ti ti-play-card
- \eebf -
-
- -
- - play-card-off -
- ti ti-play-card-off
- \f17e -
-
- -
- - player-eject -
- ti ti-player-eject
- \efbc -
-
- -
- - player-pause -
- ti ti-player-pause
- \ed45 -
-
- -
- - player-play -
- ti ti-player-play
- \ed46 -
-
- -
- - player-record -
- ti ti-player-record
- \ed47 -
-
- -
- - player-skip-back -
- ti ti-player-skip-back
- \ed48 -
-
- -
- - player-skip-forward -
- ti ti-player-skip-forward
- \ed49 -
-
- -
- - player-stop -
- ti ti-player-stop
- \ed4a -
-
- -
- - player-track-next -
- ti ti-player-track-next
- \ed4b -
-
- -
- - player-track-prev -
- ti ti-player-track-prev
- \ed4c -
-
- -
- - playlist -
- ti ti-playlist
- \eec0 -
-
- -
- - playlist-add -
- ti ti-playlist-add
- \f008 -
-
- -
- - playlist-off -
- ti ti-playlist-off
- \f17f -
-
- -
- - playlist-x -
- ti ti-playlist-x
- \f009 -
-
- -
- - playstation-circle -
- ti ti-playstation-circle
- \f2ad -
-
- -
- - playstation-square -
- ti ti-playstation-square
- \f2ae -
-
- -
- - playstation-triangle -
- ti ti-playstation-triangle
- \f2af -
-
- -
- - playstation-x -
- ti ti-playstation-x
- \f2b0 -
-
- -
- - plug -
- ti ti-plug
- \ebd9 -
-
- -
- - plug-connected -
- ti ti-plug-connected
- \f00a -
-
- -
- - plug-connected-x -
- ti ti-plug-connected-x
- \f0a0 -
-
- -
- - plug-off -
- ti ti-plug-off
- \f180 -
-
- -
- - plug-x -
- ti ti-plug-x
- \f0a1 -
-
- -
- - plus -
- ti ti-plus
- \eb0b -
-
- -
- - podium -
- ti ti-podium
- \f1d8 -
-
- -
- - point -
- ti ti-point
- \eb0c -
-
- -
- - point-off -
- ti ti-point-off
- \f181 -
-
- -
- - pointer -
- ti ti-pointer
- \f265 -
-
- -
- - pokeball -
- ti ti-pokeball
- \eec1 -
-
- -
- - polaroid -
- ti ti-polaroid
- \eec2 -
-
- -
- - polygon -
- ti ti-polygon
- \efd0 -
-
- -
- - polygon-off -
- ti ti-polygon-off
- \f182 -
-
- -
- - poo -
- ti ti-poo
- \f258 -
-
- -
- - pool -
- ti ti-pool
- \ed91 -
-
- -
- - power -
- ti ti-power
- \eb0d -
-
- -
- - pray -
- ti ti-pray
- \ecbf -
-
- -
- - premium-rights -
- ti ti-premium-rights
- \efbd -
-
- -
- - prescription -
- ti ti-prescription
- \ef99 -
-
- -
- - presentation -
- ti ti-presentation
- \eb70 -
-
- -
- - presentation-analytics -
- ti ti-presentation-analytics
- \eec3 -
-
- -
- - presentation-off -
- ti ti-presentation-off
- \f183 -
-
- -
- - printer -
- ti ti-printer
- \eb0e -
-
- -
- - printer-off -
- ti ti-printer-off
- \f184 -
-
- -
- - prison -
- ti ti-prison
- \ef79 -
-
- -
- - prompt -
- ti ti-prompt
- \eb0f -
-
- -
- - propeller -
- ti ti-propeller
- \eec4 -
-
- -
- - propeller-off -
- ti ti-propeller-off
- \f185 -
-
- -
- - puzzle -
- ti ti-puzzle
- \eb10 -
-
- -
- - puzzle-2 -
- ti ti-puzzle-2
- \ef83 -
-
- -
- - puzzle-off -
- ti ti-puzzle-off
- \f186 -
-
- -
- - pyramid -
- ti ti-pyramid
- \eec5 -
-
- -
- - pyramid-off -
- ti ti-pyramid-off
- \f187 -
-
- -
- - qrcode -
- ti ti-qrcode
- \eb11 -
-
- -
- - question-mark -
- ti ti-question-mark
- \ec9d -
-
- -
- - quote -
- ti ti-quote
- \efbe -
-
- -
- - quote-off -
- ti ti-quote-off
- \f188 -
-
- -
- - radar -
- ti ti-radar
- \f017 -
-
- -
- - radar-2 -
- ti ti-radar-2
- \f016 -
-
- -
- - radio -
- ti ti-radio
- \ef2d -
-
- -
- - radioactive -
- ti ti-radioactive
- \ecc0 -
-
- -
- - radioactive-off -
- ti ti-radioactive-off
- \f189 -
-
- -
- - radius-bottom-left -
- ti ti-radius-bottom-left
- \eec6 -
-
- -
- - radius-bottom-right -
- ti ti-radius-bottom-right
- \eec7 -
-
- -
- - radius-top-left -
- ti ti-radius-top-left
- \eec8 -
-
- -
- - radius-top-right -
- ti ti-radius-top-right
- \eec9 -
-
- -
- - rainbow -
- ti ti-rainbow
- \edbc -
-
- -
- - rainbow-off -
- ti ti-rainbow-off
- \f18a -
-
- -
- - rating-12-plus -
- ti ti-rating-12-plus
- \f266 -
-
- -
- - rating-14-plus -
- ti ti-rating-14-plus
- \f267 -
-
- -
- - rating-16-plus -
- ti ti-rating-16-plus
- \f268 -
-
- -
- - rating-18-plus -
- ti ti-rating-18-plus
- \f269 -
-
- -
- - rating-21-plus -
- ti ti-rating-21-plus
- \f26a -
-
- -
- - receipt -
- ti ti-receipt
- \edfd -
-
- -
- - receipt-2 -
- ti ti-receipt-2
- \edfa -
-
- -
- - receipt-off -
- ti ti-receipt-off
- \edfb -
-
- -
- - receipt-refund -
- ti ti-receipt-refund
- \edfc -
-
- -
- - receipt-tax -
- ti ti-receipt-tax
- \edbd -
-
- -
- - recharging -
- ti ti-recharging
- \eeca -
-
- -
- - record-mail -
- ti ti-record-mail
- \eb12 -
-
- -
- - record-mail-off -
- ti ti-record-mail-off
- \f18b -
-
- -
- - rectangle -
- ti ti-rectangle
- \ed37 -
-
- -
- - rectangle-vertical -
- ti ti-rectangle-vertical
- \ed36 -
-
- -
- - recycle -
- ti ti-recycle
- \eb9b -
-
- -
- - recycle-off -
- ti ti-recycle-off
- \f18c -
-
- -
- - refresh -
- ti ti-refresh
- \eb13 -
-
- -
- - refresh-alert -
- ti ti-refresh-alert
- \ed57 -
-
- -
- - refresh-dot -
- ti ti-refresh-dot
- \efbf -
-
- -
- - refresh-off -
- ti ti-refresh-off
- \f18d -
-
- -
- - registered -
- ti ti-registered
- \eb14 -
-
- -
- - relation-many-to-many -
- ti ti-relation-many-to-many
- \ed7f -
-
- -
- - relation-one-to-many -
- ti ti-relation-one-to-many
- \ed80 -
-
- -
- - relation-one-to-one -
- ti ti-relation-one-to-one
- \ed81 -
-
- -
- - repeat -
- ti ti-repeat
- \eb72 -
-
- -
- - repeat-off -
- ti ti-repeat-off
- \f18e -
-
- -
- - repeat-once -
- ti ti-repeat-once
- \eb71 -
-
- -
- - replace -
- ti ti-replace
- \ebc7 -
-
- -
- - report -
- ti ti-report
- \eece -
-
- -
- - report-analytics -
- ti ti-report-analytics
- \eecb -
-
- -
- - report-medical -
- ti ti-report-medical
- \eecc -
-
- -
- - report-money -
- ti ti-report-money
- \eecd -
-
- -
- - report-off -
- ti ti-report-off
- \f18f -
-
- -
- - report-search -
- ti ti-report-search
- \ef84 -
-
- -
- - resize -
- ti ti-resize
- \eecf -
-
- -
- - ripple -
- ti ti-ripple
- \ed82 -
-
- -
- - ripple-off -
- ti ti-ripple-off
- \f190 -
-
- -
- - road -
- ti ti-road
- \f018 -
-
- -
- - road-off -
- ti ti-road-off
- \f191 -
-
- -
- - road-sign -
- ti ti-road-sign
- \ecdd -
-
- -
- - robot -
- ti ti-robot
- \f00b -
-
- -
- - robot-off -
- ti ti-robot-off
- \f192 -
-
- -
- - rocket -
- ti ti-rocket
- \ec45 -
-
- -
- - rocket-off -
- ti ti-rocket-off
- \f193 -
-
- -
- - roller-skating -
- ti ti-roller-skating
- \efd1 -
-
- -
- - rollercoaster -
- ti ti-rollercoaster
- \f0a2 -
-
- -
- - rotate -
- ti ti-rotate
- \eb16 -
-
- -
- - rotate-2 -
- ti ti-rotate-2
- \ebb4 -
-
- -
- - rotate-360 -
- ti ti-rotate-360
- \ef85 -
-
- -
- - rotate-clockwise -
- ti ti-rotate-clockwise
- \eb15 -
-
- -
- - rotate-clockwise-2 -
- ti ti-rotate-clockwise-2
- \ebb5 -
-
- -
- - rotate-dot -
- ti ti-rotate-dot
- \efe5 -
-
- -
- - rotate-rectangle -
- ti ti-rotate-rectangle
- \ec15 -
-
- -
- - route -
- ti ti-route
- \eb17 -
-
- -
- - route-off -
- ti ti-route-off
- \f194 -
-
- -
- - router -
- ti ti-router
- \eb18 -
-
- -
- - row-insert-bottom -
- ti ti-row-insert-bottom
- \eed0 -
-
- -
- - row-insert-top -
- ti ti-row-insert-top
- \eed1 -
-
- -
- - rss -
- ti ti-rss
- \eb19 -
-
- -
- - ruler -
- ti ti-ruler
- \eb1a -
-
- -
- - ruler-2 -
- ti ti-ruler-2
- \eed2 -
-
- -
- - ruler-2-off -
- ti ti-ruler-2-off
- \f195 -
-
- -
- - ruler-3 -
- ti ti-ruler-3
- \f290 -
-
- -
- - ruler-measure -
- ti ti-ruler-measure
- \f291 -
-
- -
- - ruler-off -
- ti ti-ruler-off
- \f196 -
-
- -
- - run -
- ti ti-run
- \ec82 -
-
- -
- - sailboat -
- ti ti-sailboat
- \ec83 -
-
- -
- - salt -
- ti ti-salt
- \ef16 -
-
- -
- - satellite -
- ti ti-satellite
- \eed3 -
-
- -
- - satellite-off -
- ti ti-satellite-off
- \f197 -
-
- -
- - sausage -
- ti ti-sausage
- \ef17 -
-
- -
- - scale -
- ti ti-scale
- \ebc2 -
-
- -
- - scale-off -
- ti ti-scale-off
- \f198 -
-
- -
- - scale-outline -
- ti ti-scale-outline
- \ef53 -
-
- -
- - scale-outline-off -
- ti ti-scale-outline-off
- \f199 -
-
- -
- - scan -
- ti ti-scan
- \ebc8 -
-
- -
- - scan-eye -
- ti ti-scan-eye
- \f1ff -
-
- -
- - schema -
- ti ti-schema
- \f200 -
-
- -
- - school -
- ti ti-school
- \ecf7 -
-
- -
- - school-off -
- ti ti-school-off
- \f19a -
-
- -
- - scissors -
- ti ti-scissors
- \eb1b -
-
- -
- - scissors-off -
- ti ti-scissors-off
- \f19b -
-
- -
- - scooter -
- ti ti-scooter
- \ec6c -
-
- -
- - scooter-electric -
- ti ti-scooter-electric
- \ecc1 -
-
- -
- - screen-share -
- ti ti-screen-share
- \ed18 -
-
- -
- - screen-share-off -
- ti ti-screen-share-off
- \ed17 -
-
- -
- - screenshot -
- ti ti-screenshot
- \f201 -
-
- -
- - scribble -
- ti ti-scribble
- \f0a3 -
-
- -
- - script -
- ti ti-script
- \f2da -
-
- -
- - script-minus -
- ti ti-script-minus
- \f2d7 -
-
- -
- - script-plus -
- ti ti-script-plus
- \f2d8 -
-
- -
- - script-x -
- ti ti-script-x
- \f2d9 -
-
- -
- - scuba-mask -
- ti ti-scuba-mask
- \eed4 -
-
- -
- - search -
- ti ti-search
- \eb1c -
-
- -
- - search-off -
- ti ti-search-off
- \f19c -
-
- -
- - section -
- ti ti-section
- \eed5 -
-
- -
- - section-sign -
- ti ti-section-sign
- \f019 -
-
- -
- - seeding -
- ti ti-seeding
- \ed51 -
-
- -
- - seeding-off -
- ti ti-seeding-off
- \f19d -
-
- -
- - select -
- ti ti-select
- \ec9e -
-
- -
- - selector -
- ti ti-selector
- \eb1d -
-
- -
- - send -
- ti ti-send
- \eb1e -
-
- -
- - seo -
- ti ti-seo
- \f26b -
-
- -
- - separator -
- ti ti-separator
- \ebda -
-
- -
- - separator-horizontal -
- ti ti-separator-horizontal
- \ec79 -
-
- -
- - separator-vertical -
- ti ti-separator-vertical
- \ec7a -
-
- -
- - server -
- ti ti-server
- \eb1f -
-
- -
- - server-2 -
- ti ti-server-2
- \f07c -
-
- -
- - server-off -
- ti ti-server-off
- \f19e -
-
- -
- - servicemark -
- ti ti-servicemark
- \ec09 -
-
- -
- - settings -
- ti ti-settings
- \eb20 -
-
- -
- - settings-automation -
- ti ti-settings-automation
- \eed6 -
-
- -
- - settings-off -
- ti ti-settings-off
- \f19f -
-
- -
- - shadow -
- ti ti-shadow
- \eed8 -
-
- -
- - shadow-off -
- ti ti-shadow-off
- \eed7 -
-
- -
- - shape -
- ti ti-shape
- \eb9c -
-
- -
- - shape-2 -
- ti ti-shape-2
- \eed9 -
-
- -
- - shape-3 -
- ti ti-shape-3
- \eeda -
-
- -
- - shape-off -
- ti ti-shape-off
- \f1a0 -
-
- -
- - share -
- ti ti-share
- \eb21 -
-
- -
- - share-off -
- ti ti-share-off
- \f1a1 -
-
- -
- - shield -
- ti ti-shield
- \eb24 -
-
- -
- - shield-check -
- ti ti-shield-check
- \eb22 -
-
- -
- - shield-checkered -
- ti ti-shield-checkered
- \ef9a -
-
- -
- - shield-chevron -
- ti ti-shield-chevron
- \ef9b -
-
- -
- - shield-lock -
- ti ti-shield-lock
- \ed58 -
-
- -
- - shield-off -
- ti ti-shield-off
- \ecf8 -
-
- -
- - shield-x -
- ti ti-shield-x
- \eb23 -
-
- -
- - ship -
- ti ti-ship
- \ec84 -
-
- -
- - shirt -
- ti ti-shirt
- \ec0a -
-
- -
- - shirt-off -
- ti ti-shirt-off
- \f1a2 -
-
- -
- - shirt-sport -
- ti ti-shirt-sport
- \f26c -
-
- -
- - shoe -
- ti ti-shoe
- \efd2 -
-
- -
- - shoe-off -
- ti ti-shoe-off
- \f1a4 -
-
- -
- - shopping-cart -
- ti ti-shopping-cart
- \eb25 -
-
- -
- - shopping-cart-discount -
- ti ti-shopping-cart-discount
- \eedb -
-
- -
- - shopping-cart-off -
- ti ti-shopping-cart-off
- \eedc -
-
- -
- - shopping-cart-plus -
- ti ti-shopping-cart-plus
- \eedd -
-
- -
- - shopping-cart-x -
- ti ti-shopping-cart-x
- \eede -
-
- -
- - shovel -
- ti ti-shovel
- \f1d9 -
-
- -
- - shredder -
- ti ti-shredder
- \eedf -
-
- -
- - sign-left -
- ti ti-sign-left
- \f06b -
-
- -
- - sign-right -
- ti ti-sign-right
- \f06c -
-
- -
- - signal-3g -
- ti ti-signal-3g
- \f1ee -
-
- -
- - signal-4g -
- ti ti-signal-4g
- \f1ef -
-
- -
- - signal-4g-plus -
- ti ti-signal-4g-plus
- \f259 -
-
- -
- - signal-5g -
- ti ti-signal-5g
- \f1f0 -
-
- -
- - signature -
- ti ti-signature
- \eee0 -
-
- -
- - signature-off -
- ti ti-signature-off
- \f1a5 -
-
- -
- - sitemap -
- ti ti-sitemap
- \eb9d -
-
- -
- - sitemap-off -
- ti ti-sitemap-off
- \f1a6 -
-
- -
- - skateboard -
- ti ti-skateboard
- \ecc2 -
-
- -
- - skull -
- ti ti-skull
- \f292 -
-
- -
- - sleigh -
- ti ti-sleigh
- \ef9c -
-
- -
- - slice -
- ti ti-slice
- \ebdb -
-
- -
- - slideshow -
- ti ti-slideshow
- \ebc9 -
-
- -
- - smart-home -
- ti ti-smart-home
- \ecde -
-
- -
- - smart-home-off -
- ti ti-smart-home-off
- \f1a7 -
-
- -
- - smoking -
- ti ti-smoking
- \ecc4 -
-
- -
- - smoking-no -
- ti ti-smoking-no
- \ecc3 -
-
- -
- - snowflake -
- ti ti-snowflake
- \ec0b -
-
- -
- - snowflake-off -
- ti ti-snowflake-off
- \f1a8 -
-
- -
- - snowman -
- ti ti-snowman
- \f26d -
-
- -
- - soccer-field -
- ti ti-soccer-field
- \ed92 -
-
- -
- - social -
- ti ti-social
- \ebec -
-
- -
- - social-off -
- ti ti-social-off
- \f1a9 -
-
- -
- - sock -
- ti ti-sock
- \eee1 -
-
- -
- - sofa -
- ti ti-sofa
- \efaf -
-
- -
- - sort-ascending -
- ti ti-sort-ascending
- \eb26 -
-
- -
- - sort-ascending-2 -
- ti ti-sort-ascending-2
- \eee2 -
-
- -
- - sort-ascending-letters -
- ti ti-sort-ascending-letters
- \ef18 -
-
- -
- - sort-ascending-numbers -
- ti ti-sort-ascending-numbers
- \ef19 -
-
- -
- - sort-descending -
- ti ti-sort-descending
- \eb27 -
-
- -
- - sort-descending-2 -
- ti ti-sort-descending-2
- \eee3 -
-
- -
- - sort-descending-letters -
- ti ti-sort-descending-letters
- \ef1a -
-
- -
- - sort-descending-numbers -
- ti ti-sort-descending-numbers
- \ef1b -
-
- -
- - sos -
- ti ti-sos
- \f24a -
-
- -
- - soup -
- ti ti-soup
- \ef2e -
-
- -
- - space -
- ti ti-space
- \ec0c -
-
- -
- - space-off -
- ti ti-space-off
- \f1aa -
-
- -
- - spacing-horizontal -
- ti ti-spacing-horizontal
- \ef54 -
-
- -
- - spacing-vertical -
- ti ti-spacing-vertical
- \ef55 -
-
- -
- - spade -
- ti ti-spade
- \effa -
-
- -
- - speakerphone -
- ti ti-speakerphone
- \ed61 -
-
- -
- - speedboat -
- ti ti-speedboat
- \ed93 -
-
- -
- - spider -
- ti ti-spider
- \f293 -
-
- -
- - spiral -
- ti ti-spiral
- \f294 -
-
- -
- - sport-billard -
- ti ti-sport-billard
- \eee4 -
-
- -
- - spy -
- ti ti-spy
- \f227 -
-
- -
- - square -
- ti ti-square
- \eb2c -
-
- -
- - square-0 -
- ti ti-square-0
- \eee5 -
-
- -
- - square-1 -
- ti ti-square-1
- \eee6 -
-
- -
- - square-2 -
- ti ti-square-2
- \eee7 -
-
- -
- - square-3 -
- ti ti-square-3
- \eee8 -
-
- -
- - square-4 -
- ti ti-square-4
- \eee9 -
-
- -
- - square-5 -
- ti ti-square-5
- \eeea -
-
- -
- - square-6 -
- ti ti-square-6
- \eeeb -
-
- -
- - square-7 -
- ti ti-square-7
- \eeec -
-
- -
- - square-8 -
- ti ti-square-8
- \eeed -
-
- -
- - square-9 -
- ti ti-square-9
- \eeee -
-
- -
- - square-asterisk -
- ti ti-square-asterisk
- \f01a -
-
- -
- - square-check -
- ti ti-square-check
- \eb28 -
-
- -
- - square-dot -
- ti ti-square-dot
- \ed59 -
-
- -
- - square-forbid -
- ti ti-square-forbid
- \ed5b -
-
- -
- - square-forbid-2 -
- ti ti-square-forbid-2
- \ed5a -
-
- -
- - square-half -
- ti ti-square-half
- \effb -
-
- -
- - square-minus -
- ti ti-square-minus
- \eb29 -
-
- -
- - square-off -
- ti ti-square-off
- \eeef -
-
- -
- - square-plus -
- ti ti-square-plus
- \eb2a -
-
- -
- - square-root -
- ti ti-square-root
- \eef1 -
-
- -
- - square-root-2 -
- ti ti-square-root-2
- \eef0 -
-
- -
- - square-rotated -
- ti ti-square-rotated
- \ecdf -
-
- -
- - square-rotated-forbid -
- ti ti-square-rotated-forbid
- \f01c -
-
- -
- - square-rotated-forbid-2 -
- ti ti-square-rotated-forbid-2
- \f01b -
-
- -
- - square-rotated-off -
- ti ti-square-rotated-off
- \eef2 -
-
- -
- - square-toggle -
- ti ti-square-toggle
- \eef4 -
-
- -
- - square-toggle-horizontal -
- ti ti-square-toggle-horizontal
- \eef3 -
-
- -
- - square-x -
- ti ti-square-x
- \eb2b -
-
- -
- - squares-diagonal -
- ti ti-squares-diagonal
- \eef5 -
-
- -
- - squares-filled -
- ti ti-squares-filled
- \eef6 -
-
- -
- - stack -
- ti ti-stack
- \eb2d -
-
- -
- - stack-2 -
- ti ti-stack-2
- \eef7 -
-
- -
- - stack-3 -
- ti ti-stack-3
- \ef9d -
-
- -
- - stack-pop -
- ti ti-stack-pop
- \f234 -
-
- -
- - stack-push -
- ti ti-stack-push
- \f235 -
-
- -
- - stairs -
- ti ti-stairs
- \eca6 -
-
- -
- - stairs-down -
- ti ti-stairs-down
- \eca4 -
-
- -
- - stairs-up -
- ti ti-stairs-up
- \eca5 -
-
- -
- - star -
- ti ti-star
- \eb2e -
-
- -
- - star-half -
- ti ti-star-half
- \ed19 -
-
- -
- - star-off -
- ti ti-star-off
- \ed62 -
-
- -
- - stars -
- ti ti-stars
- \ed38 -
-
- -
- - steam -
- ti ti-steam
- \f24b -
-
- -
- - steering-wheel -
- ti ti-steering-wheel
- \ec7b -
-
- -
- - step-into -
- ti ti-step-into
- \ece0 -
-
- -
- - step-out -
- ti ti-step-out
- \ece1 -
-
- -
- - stethoscope -
- ti ti-stethoscope
- \edbe -
-
- -
- - sticker -
- ti ti-sticker
- \eb2f -
-
- -
- - storm -
- ti ti-storm
- \f24c -
-
- -
- - stretching -
- ti ti-stretching
- \f2db -
-
- -
- - strikethrough -
- ti ti-strikethrough
- \eb9e -
-
- -
- - submarine -
- ti ti-submarine
- \ed94 -
-
- -
- - subscript -
- ti ti-subscript
- \eb9f -
-
- -
- - subtask -
- ti ti-subtask
- \ec9f -
-
- -
- - sum -
- ti ti-sum
- \eb73 -
-
- -
- - sum-off -
- ti ti-sum-off
- \f1ab -
-
- -
- - sun -
- ti ti-sun
- \eb30 -
-
- -
- - sun-high -
- ti ti-sun-high
- \f236 -
-
- -
- - sun-low -
- ti ti-sun-low
- \f237 -
-
- -
- - sun-off -
- ti ti-sun-off
- \ed63 -
-
- -
- - sun-wind -
- ti ti-sun-wind
- \f238 -
-
- -
- - sunglasses -
- ti ti-sunglasses
- \f239 -
-
- -
- - sunrise -
- ti ti-sunrise
- \ef1c -
-
- -
- - sunset -
- ti ti-sunset
- \ec31 -
-
- -
- - sunset-2 -
- ti ti-sunset-2
- \f23a -
-
- -
- - superscript -
- ti ti-superscript
- \eba0 -
-
- -
- - svg -
- ti ti-svg
- \f25a -
-
- -
- - swimming -
- ti ti-swimming
- \ec92 -
-
- -
- - switch -
- ti ti-switch
- \eb33 -
-
- -
- - switch-2 -
- ti ti-switch-2
- \edbf -
-
- -
- - switch-3 -
- ti ti-switch-3
- \edc0 -
-
- -
- - switch-horizontal -
- ti ti-switch-horizontal
- \eb31 -
-
- -
- - switch-vertical -
- ti ti-switch-vertical
- \eb32 -
-
- -
- - sword -
- ti ti-sword
- \f030 -
-
- -
- - sword-off -
- ti ti-sword-off
- \f1ac -
-
- -
- - swords -
- ti ti-swords
- \f132 -
-
- -
- - table -
- ti ti-table
- \eba1 -
-
- -
- - table-alias -
- ti ti-table-alias
- \f25b -
-
- -
- - table-export -
- ti ti-table-export
- \eef8 -
-
- -
- - table-import -
- ti ti-table-import
- \eef9 -
-
- -
- - table-off -
- ti ti-table-off
- \eefa -
-
- -
- - table-options -
- ti ti-table-options
- \f25c -
-
- -
- - table-shortcut -
- ti ti-table-shortcut
- \f25d -
-
- -
- - tag -
- ti ti-tag
- \eb34 -
-
- -
- - tag-off -
- ti ti-tag-off
- \efc0 -
-
- -
- - tags -
- ti ti-tags
- \ef86 -
-
- -
- - tags-off -
- ti ti-tags-off
- \efc1 -
-
- -
- - tallymark-1 -
- ti ti-tallymark-1
- \ec46 -
-
- -
- - tallymark-2 -
- ti ti-tallymark-2
- \ec47 -
-
- -
- - tallymark-3 -
- ti ti-tallymark-3
- \ec48 -
-
- -
- - tallymark-4 -
- ti ti-tallymark-4
- \ec49 -
-
- -
- - tallymarks -
- ti ti-tallymarks
- \ec4a -
-
- -
- - tank -
- ti ti-tank
- \ed95 -
-
- -
- - target -
- ti ti-target
- \eb35 -
-
- -
- - target-off -
- ti ti-target-off
- \f1ad -
-
- -
- - telescope -
- ti ti-telescope
- \f07d -
-
- -
- - telescope-off -
- ti ti-telescope-off
- \f1ae -
-
- -
- - temperature -
- ti ti-temperature
- \eb38 -
-
- -
- - temperature-celsius -
- ti ti-temperature-celsius
- \eb36 -
-
- -
- - temperature-fahrenheit -
- ti ti-temperature-fahrenheit
- \eb37 -
-
- -
- - temperature-minus -
- ti ti-temperature-minus
- \ebed -
-
- -
- - temperature-off -
- ti ti-temperature-off
- \f1af -
-
- -
- - temperature-plus -
- ti ti-temperature-plus
- \ebee -
-
- -
- - template -
- ti ti-template
- \eb39 -
-
- -
- - template-off -
- ti ti-template-off
- \f1b0 -
-
- -
- - tent -
- ti ti-tent
- \eefb -
-
- -
- - terminal -
- ti ti-terminal
- \ebdc -
-
- -
- - terminal-2 -
- ti ti-terminal-2
- \ebef -
-
- -
- - test-pipe -
- ti ti-test-pipe
- \eb3a -
-
- -
- - test-pipe-2 -
- ti ti-test-pipe-2
- \f0a4 -
-
- -
- - test-pipe-off -
- ti ti-test-pipe-off
- \f1b1 -
-
- -
- - text-color -
- ti ti-text-color
- \f2dc -
-
- -
- - text-decrease -
- ti ti-text-decrease
- \f202 -
-
- -
- - text-direction-ltr -
- ti ti-text-direction-ltr
- \eefc -
-
- -
- - text-direction-rtl -
- ti ti-text-direction-rtl
- \eefd -
-
- -
- - text-increase -
- ti ti-text-increase
- \f203 -
-
- -
- - text-orientation -
- ti ti-text-orientation
- \f2a4 -
-
- -
- - text-plus -
- ti ti-text-plus
- \f2a5 -
-
- -
- - text-recognition -
- ti ti-text-recognition
- \f204 -
-
- -
- - text-resize -
- ti ti-text-resize
- \ef87 -
-
- -
- - text-size -
- ti ti-text-size
- \f2b1 -
-
- -
- - text-spellcheck -
- ti ti-text-spellcheck
- \f2a6 -
-
- -
- - text-wrap -
- ti ti-text-wrap
- \ebdd -
-
- -
- - text-wrap-disabled -
- ti ti-text-wrap-disabled
- \eca7 -
-
- -
- - thermometer -
- ti ti-thermometer
- \ef67 -
-
- -
- - thumb-down -
- ti ti-thumb-down
- \eb3b -
-
- -
- - thumb-up -
- ti ti-thumb-up
- \eb3c -
-
- -
- - ticket -
- ti ti-ticket
- \eb3d -
-
- -
- - ticket-off -
- ti ti-ticket-off
- \f1b2 -
-
- -
- - tie -
- ti ti-tie
- \f07e -
-
- -
- - tilt-shift -
- ti ti-tilt-shift
- \eefe -
-
- -
- - tilt-shift-off -
- ti ti-tilt-shift-off
- \f1b3 -
-
- -
- - timeline -
- ti ti-timeline
- \f031 -
-
- -
- - tir -
- ti ti-tir
- \ebf0 -
-
- -
- - toggle-left -
- ti ti-toggle-left
- \eb3e -
-
- -
- - toggle-right -
- ti ti-toggle-right
- \eb3f -
-
- -
- - toilet-paper -
- ti ti-toilet-paper
- \efd3 -
-
- -
- - toilet-paper-off -
- ti ti-toilet-paper-off
- \f1b4 -
-
- -
- - tool -
- ti ti-tool
- \eb40 -
-
- -
- - tools -
- ti ti-tools
- \ebca -
-
- -
- - tools-kitchen -
- ti ti-tools-kitchen
- \ed64 -
-
- -
- - tools-kitchen-2 -
- ti ti-tools-kitchen-2
- \eeff -
-
- -
- - tools-kitchen-2-off -
- ti ti-tools-kitchen-2-off
- \f1b5 -
-
- -
- - tools-kitchen-off -
- ti ti-tools-kitchen-off
- \f1b6 -
-
- -
- - tools-off -
- ti ti-tools-off
- \f1b7 -
-
- -
- - tooltip -
- ti ti-tooltip
- \f2dd -
-
- -
- - tornado -
- ti ti-tornado
- \ece2 -
-
- -
- - tournament -
- ti ti-tournament
- \ecd0 -
-
- -
- - tower -
- ti ti-tower
- \f2cb -
-
- -
- - tower-off -
- ti ti-tower-off
- \f2ca -
-
- -
- - track -
- ti ti-track
- \ef00 -
-
- -
- - tractor -
- ti ti-tractor
- \ec0d -
-
- -
- - trademark -
- ti ti-trademark
- \ec0e -
-
- -
- - traffic-cone -
- ti ti-traffic-cone
- \ec0f -
-
- -
- - traffic-cone-off -
- ti ti-traffic-cone-off
- \f1b8 -
-
- -
- - traffic-lights -
- ti ti-traffic-lights
- \ed39 -
-
- -
- - traffic-lights-off -
- ti ti-traffic-lights-off
- \f1b9 -
-
- -
- - train -
- ti ti-train
- \ed96 -
-
- -
- - transfer-in -
- ti ti-transfer-in
- \ef2f -
-
- -
- - transfer-out -
- ti ti-transfer-out
- \ef30 -
-
- -
- - transition-bottom -
- ti ti-transition-bottom
- \f2b2 -
-
- -
- - transition-left -
- ti ti-transition-left
- \f2b3 -
-
- -
- - transition-right -
- ti ti-transition-right
- \f2b4 -
-
- -
- - transition-top -
- ti ti-transition-top
- \f2b5 -
-
- -
- - trash -
- ti ti-trash
- \eb41 -
-
- -
- - trash-off -
- ti ti-trash-off
- \ed65 -
-
- -
- - trash-x -
- ti ti-trash-x
- \ef88 -
-
- -
- - tree -
- ti ti-tree
- \ef01 -
-
- -
- - trees -
- ti ti-trees
- \ec10 -
-
- -
- - trending-down -
- ti ti-trending-down
- \eb42 -
-
- -
- - trending-down-2 -
- ti ti-trending-down-2
- \edc1 -
-
- -
- - trending-down-3 -
- ti ti-trending-down-3
- \edc2 -
-
- -
- - trending-up -
- ti ti-trending-up
- \eb43 -
-
- -
- - trending-up-2 -
- ti ti-trending-up-2
- \edc3 -
-
- -
- - trending-up-3 -
- ti ti-trending-up-3
- \edc4 -
-
- -
- - triangle -
- ti ti-triangle
- \eb44 -
-
- -
- - triangle-inverted -
- ti ti-triangle-inverted
- \f01d -
-
- -
- - triangle-off -
- ti ti-triangle-off
- \ef02 -
-
- -
- - triangle-square-circle -
- ti ti-triangle-square-circle
- \ece8 -
-
- -
- - triangles -
- ti ti-triangles
- \f0a5 -
-
- -
- - trident -
- ti ti-trident
- \ecc5 -
-
- -
- - trophy -
- ti ti-trophy
- \eb45 -
-
- -
- - truck -
- ti ti-truck
- \ebc4 -
-
- -
- - truck-delivery -
- ti ti-truck-delivery
- \ec4b -
-
- -
- - truck-loading -
- ti ti-truck-loading
- \f1da -
-
- -
- - truck-off -
- ti ti-truck-off
- \ef03 -
-
- -
- - truck-return -
- ti ti-truck-return
- \ec4c -
-
- -
- - typography -
- ti ti-typography
- \ebc5 -
-
- -
- - typography-off -
- ti ti-typography-off
- \f1ba -
-
- -
- - uf-off -
- ti ti-uf-off
- \f26e -
-
- -
- - ufo -
- ti ti-ufo
- \f26f -
-
- -
- - umbrella -
- ti ti-umbrella
- \ebf1 -
-
- -
- - umbrella-off -
- ti ti-umbrella-off
- \f1bb -
-
- -
- - underline -
- ti ti-underline
- \eba2 -
-
- -
- - unlink -
- ti ti-unlink
- \eb46 -
-
- -
- - upload -
- ti ti-upload
- \eb47 -
-
- -
- - urgent -
- ti ti-urgent
- \eb48 -
-
- -
- - usb -
- ti ti-usb
- \f00c -
-
- -
- - user -
- ti ti-user
- \eb4d -
-
- -
- - user-check -
- ti ti-user-check
- \eb49 -
-
- -
- - user-circle -
- ti ti-user-circle
- \ef68 -
-
- -
- - user-exclamation -
- ti ti-user-exclamation
- \ec12 -
-
- -
- - user-minus -
- ti ti-user-minus
- \eb4a -
-
- -
- - user-off -
- ti ti-user-off
- \ecf9 -
-
- -
- - user-plus -
- ti ti-user-plus
- \eb4b -
-
- -
- - user-search -
- ti ti-user-search
- \ef89 -
-
- -
- - user-x -
- ti ti-user-x
- \eb4c -
-
- -
- - users -
- ti ti-users
- \ebf2 -
-
- -
- - vaccine -
- ti ti-vaccine
- \ef04 -
-
- -
- - vaccine-bottle -
- ti ti-vaccine-bottle
- \ef69 -
-
- -
- - vaccine-off -
- ti ti-vaccine-off
- \f1bc -
-
- -
- - variable -
- ti ti-variable
- \ef05 -
-
- -
- - variable-off -
- ti ti-variable-off
- \f1bd -
-
- -
- - vector -
- ti ti-vector
- \eca9 -
-
- -
- - vector-bezier -
- ti ti-vector-bezier
- \ef1d -
-
- -
- - vector-bezier-2 -
- ti ti-vector-bezier-2
- \f1a3 -
-
- -
- - vector-off -
- ti ti-vector-off
- \f1be -
-
- -
- - vector-triangle -
- ti ti-vector-triangle
- \eca8 -
-
- -
- - vector-triangle-off -
- ti ti-vector-triangle-off
- \f1bf -
-
- -
- - venus -
- ti ti-venus
- \ec86 -
-
- -
- - versions -
- ti ti-versions
- \ed52 -
-
- -
- - versions-off -
- ti ti-versions-off
- \f1c0 -
-
- -
- - video -
- ti ti-video
- \ed22 -
-
- -
- - video-minus -
- ti ti-video-minus
- \ed1f -
-
- -
- - video-off -
- ti ti-video-off
- \ed20 -
-
- -
- - video-plus -
- ti ti-video-plus
- \ed21 -
-
- -
- - view-360 -
- ti ti-view-360
- \ed84 -
-
- -
- - view-360-off -
- ti ti-view-360-off
- \f1c1 -
-
- -
- - viewfinder -
- ti ti-viewfinder
- \eb4e -
-
- -
- - viewfinder-off -
- ti ti-viewfinder-off
- \f1c2 -
-
- -
- - viewport-narrow -
- ti ti-viewport-narrow
- \ebf3 -
-
- -
- - viewport-wide -
- ti ti-viewport-wide
- \ebf4 -
-
- -
- - vinyl -
- ti ti-vinyl
- \f00d -
-
- -
- - virus -
- ti ti-virus
- \eb74 -
-
- -
- - virus-off -
- ti ti-virus-off
- \ed66 -
-
- -
- - virus-search -
- ti ti-virus-search
- \ed67 -
-
- -
- - vocabulary -
- ti ti-vocabulary
- \ef1e -
-
- -
- - volume -
- ti ti-volume
- \eb51 -
-
- -
- - volume-2 -
- ti ti-volume-2
- \eb4f -
-
- -
- - volume-3 -
- ti ti-volume-3
- \eb50 -
-
- -
- - volume-off -
- ti ti-volume-off
- \f1c3 -
-
- -
- - walk -
- ti ti-walk
- \ec87 -
-
- -
- - wall -
- ti ti-wall
- \ef7a -
-
- -
- - wallet -
- ti ti-wallet
- \eb75 -
-
- -
- - wallet-off -
- ti ti-wallet-off
- \f1c4 -
-
- -
- - wallpaper -
- ti ti-wallpaper
- \ef56 -
-
- -
- - wallpaper-off -
- ti ti-wallpaper-off
- \f1c5 -
-
- -
- - wand -
- ti ti-wand
- \ebcb -
-
- -
- - wand-off -
- ti ti-wand-off
- \f1c6 -
-
- -
- - wash-machine -
- ti ti-wash-machine
- \f25e -
-
- -
- - wave-saw-tool -
- ti ti-wave-saw-tool
- \ecd3 -
-
- -
- - wave-sine -
- ti ti-wave-sine
- \ecd4 -
-
- -
- - wave-square -
- ti ti-wave-square
- \ecd5 -
-
- -
- - webhook -
- ti ti-webhook
- \f01e -
-
- -
- - wheelchair -
- ti ti-wheelchair
- \f1db -
-
- -
- - wifi -
- ti ti-wifi
- \eb52 -
-
- -
- - wifi-0 -
- ti ti-wifi-0
- \eba3 -
-
- -
- - wifi-1 -
- ti ti-wifi-1
- \eba4 -
-
- -
- - wifi-2 -
- ti ti-wifi-2
- \eba5 -
-
- -
- - wifi-off -
- ti ti-wifi-off
- \ecfa -
-
- -
- - wind -
- ti ti-wind
- \ec34 -
-
- -
- - wind-off -
- ti ti-wind-off
- \f1c7 -
-
- -
- - windmill -
- ti ti-windmill
- \ed85 -
-
- -
- - windmill-off -
- ti ti-windmill-off
- \f1c8 -
-
- -
- - window -
- ti ti-window
- \ef06 -
-
- -
- - window-maximize -
- ti ti-window-maximize
- \f1f1 -
-
- -
- - window-minimize -
- ti ti-window-minimize
- \f1f2 -
-
- -
- - window-off -
- ti ti-window-off
- \f1c9 -
-
- -
- - windsock -
- ti ti-windsock
- \f06d -
-
- -
- - wiper -
- ti ti-wiper
- \ecab -
-
- -
- - wiper-wash -
- ti ti-wiper-wash
- \ecaa -
-
- -
- - woman -
- ti ti-woman
- \eb53 -
-
- -
- - world -
- ti ti-world
- \eb54 -
-
- -
- - world-download -
- ti ti-world-download
- \ef8a -
-
- -
- - world-latitude -
- ti ti-world-latitude
- \ed2e -
-
- -
- - world-longitude -
- ti ti-world-longitude
- \ed2f -
-
- -
- - world-off -
- ti ti-world-off
- \f1ca -
-
- -
- - world-upload -
- ti ti-world-upload
- \ef8b -
-
- -
- - wrecking-ball -
- ti ti-wrecking-ball
- \ed97 -
-
- -
- - writing -
- ti ti-writing
- \ef08 -
-
- -
- - writing-off -
- ti ti-writing-off
- \f1cb -
-
- -
- - writing-sign -
- ti ti-writing-sign
- \ef07 -
-
- -
- - writing-sign-off -
- ti ti-writing-sign-off
- \f1cc -
-
- -
- - x -
- ti ti-x
- \eb55 -
-
- -
- - xbox-a -
- ti ti-xbox-a
- \f2b6 -
-
- -
- - xbox-b -
- ti ti-xbox-b
- \f2b7 -
-
- -
- - xbox-x -
- ti ti-xbox-x
- \f2b8 -
-
- -
- - xbox-y -
- ti ti-xbox-y
- \f2b9 -
-
- -
- - yin-yang -
- ti ti-yin-yang
- \ec35 -
-
- -
- - yoga -
- ti ti-yoga
- \f01f -
-
- -
- - zeppelin -
- ti ti-zeppelin
- \f270 -
-
- -
- - zodiac-aquarius -
- ti ti-zodiac-aquarius
- \ecac -
-
- -
- - zodiac-aries -
- ti ti-zodiac-aries
- \ecad -
-
- -
- - zodiac-cancer -
- ti ti-zodiac-cancer
- \ecae -
-
- -
- - zodiac-capricorn -
- ti ti-zodiac-capricorn
- \ecaf -
-
- -
- - zodiac-gemini -
- ti ti-zodiac-gemini
- \ecb0 -
-
- -
- - zodiac-leo -
- ti ti-zodiac-leo
- \ecb1 -
-
- -
- - zodiac-libra -
- ti ti-zodiac-libra
- \ecb2 -
-
- -
- - zodiac-pisces -
- ti ti-zodiac-pisces
- \ecb3 -
-
- -
- - zodiac-sagittarius -
- ti ti-zodiac-sagittarius
- \ecb4 -
-
- -
- - zodiac-scorpio -
- ti ti-zodiac-scorpio
- \ecb5 -
-
- -
- - zodiac-taurus -
- ti ti-zodiac-taurus
- \ecb6 -
-
- -
- - zodiac-virgo -
- ti ti-zodiac-virgo
- \ecb7 -
-
- -
- - zoom-cancel -
- ti ti-zoom-cancel
- \ec4d -
-
- -
- - zoom-check -
- ti ti-zoom-check
- \ef09 -
-
- -
- - zoom-code -
- ti ti-zoom-code
- \f07f -
-
- -
- - zoom-exclamation -
- ti ti-zoom-exclamation
- \f080 -
-
- -
- - zoom-in -
- ti ti-zoom-in
- \eb56 -
-
- -
- - zoom-in-area -
- ti ti-zoom-in-area
- \f1dc -
-
- -
- - zoom-money -
- ti ti-zoom-money
- \ef0a -
-
- -
- - zoom-out -
- ti ti-zoom-out
- \eb57 -
-
- -
- - zoom-out-area -
- ti ti-zoom-out-area
- \f1dd -
-
- -
- - zoom-pan -
- ti ti-zoom-pan
- \f1de -
-
- -
- - zoom-question -
- ti ti-zoom-question
- \edeb -
-
- -
- - zoom-replace -
- ti ti-zoom-replace
- \f2a7 -
-
- -
- - zoom-reset -
- ti ti-zoom-reset
- \f295 -
-
- -
- - zzz -
- ti ti-zzz
- \f228 -
-
- -
-
-
- - - - - diff --git a/iconfont/tabler-icons.min.css b/iconfont/tabler-icons.min.css deleted file mode 100644 index 75f7d11fb..000000000 --- a/iconfont/tabler-icons.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Tabler Icons 1.82.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-2fa:before{content:"\eca0"}.ti-3d-cube-sphere:before{content:"\ecd7"}.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-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-address-book:before{content:"\f021"}.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-alarm:before{content:"\ea04"}.ti-alarm-off:before{content:"\f0a9"}.ti-album:before{content:"\f022"}.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-center:before{content:"\ea07"}.ti-align-justified:before{content:"\ea08"}.ti-align-left:before{content:"\ea09"}.ti-align-right:before{content:"\ea0a"}.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-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-aperture:before{content:"\eb58"}.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-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-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-bottom-bar:before{content:"\ed98"}.ti-arrow-bottom-circle:before{content:"\ed99"}.ti-arrow-bottom-square:before{content:"\ed9a"}.ti-arrow-bottom-tail:before{content:"\ed9b"}.ti-arrow-curve-left:before{content:"\f048"}.ti-arrow-curve-right:before{content:"\f049"}.ti-arrow-down:before{content:"\ea16"}.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-right:before{content:"\ea15"}.ti-arrow-down-right-circle:before{content:"\ea14"}.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-left:before{content:"\ea19"}.ti-arrow-left-bar:before{content:"\ed9c"}.ti-arrow-left-circle:before{content:"\ea18"}.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-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-top-bar:before{content:"\eda4"}.ti-arrow-top-circle:before{content:"\eda5"}.ti-arrow-top-square:before{content:"\eda6"}.ti-arrow-top-tail:before{content:"\eda7"}.ti-arrow-up:before{content:"\ea25"}.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-right:before{content:"\ea24"}.ti-arrow-up-right-circle:before{content:"\ea23"}.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-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-aspect-ratio:before{content:"\ed30"}.ti-aspect-ratio-off:before{content:"\f0af"}.ti-assembly:before{content:"\f24d"}.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-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-carriage:before{content:"\f05d"}.ti-backhoe:before{content:"\ed86"}.ti-backpack:before{content:"\ef47"}.ti-backspace:before{content:"\ea2d"}.ti-badge:before{content:"\efc2"}.ti-badge-off:before{content:"\f0fb"}.ti-badges:before{content:"\efc3"}.ti-badges-off:before{content:"\f0fc"}.ti-ball-american-football:before{content:"\ee04"}.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-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-bible:before{content:"\efc4"}.ti-bike:before{content:"\ea36"}.ti-bike-off:before{content:"\f0b8"}.ti-binary:before{content:"\ee08"}.ti-biohazard:before{content:"\ecb8"}.ti-biohazard-off:before{content:"\f0b9"}.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-bold:before{content:"\eb7b"}.ti-bold-off:before{content:"\f0ba"}.ti-bolt:before{content:"\ea38"}.ti-bolt-off:before{content:"\ecec"}.ti-bone:before{content:"\edb8"}.ti-bone-off:before{content:"\f0bb"}.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-bow:before{content:"\f096"}.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-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-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-brand-adobe:before{content:"\f0dc"}.ti-brand-airbnb:before{content:"\ed68"}.ti-brand-airtable:before{content:"\ef6a"}.ti-brand-amazon:before{content:"\f230"}.ti-brand-amongus:before{content:"\f205"}.ti-brand-android:before{content:"\ec16"}.ti-brand-angular:before{content:"\ef6b"}.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-badoo:before{content:"\f206"}.ti-brand-bandcamp:before{content:"\f207"}.ti-brand-beats:before{content:"\f208"}.ti-brand-behance:before{content:"\ec6e"}.ti-brand-bing:before{content:"\edc6"}.ti-brand-bitbucket:before{content:"\edc7"}.ti-brand-booking:before{content:"\edc8"}.ti-brand-bootstrap:before{content:"\ef3e"}.ti-brand-chrome:before{content:"\ec18"}.ti-brand-codepen:before{content:"\ec6f"}.ti-brand-codesandbox:before{content:"\ed6a"}.ti-brand-coinbase:before{content:"\f209"}.ti-brand-comedy-central:before{content:"\f217"}.ti-brand-css3:before{content:"\ed6b"}.ti-brand-cucumber:before{content:"\ef6c"}.ti-brand-d3:before{content:"\f24e"}.ti-brand-debian:before{content:"\ef57"}.ti-brand-deno:before{content:"\f24f"}.ti-brand-deviantart:before{content:"\ecfb"}.ti-brand-discord:before{content:"\ece3"}.ti-brand-disney:before{content:"\f20a"}.ti-brand-disqus:before{content:"\edc9"}.ti-brand-docker:before{content:"\edca"}.ti-brand-doctrine:before{content:"\ef6d"}.ti-brand-dribbble:before{content:"\ec19"}.ti-brand-edge:before{content:"\ecfc"}.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-flipboard:before{content:"\f20b"}.ti-brand-fortnite:before{content:"\f260"}.ti-brand-foursquare:before{content:"\ecff"}.ti-brand-framer:before{content:"\ec1b"}.ti-brand-git:before{content:"\ef6f"}.ti-brand-github:before{content:"\ec1c"}.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-drive:before{content:"\ec1e"}.ti-brand-google-fit:before{content:"\f297"}.ti-brand-google-one:before{content:"\f232"}.ti-brand-google-photos:before{content:"\f20c"}.ti-brand-google-play:before{content:"\ed25"}.ti-brand-gravatar:before{content:"\edcc"}.ti-brand-grindr:before{content:"\f20d"}.ti-brand-hipchat:before{content:"\edcd"}.ti-brand-html5:before{content:"\ed6c"}.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-lastfm:before{content:"\f001"}.ti-brand-linkedin:before{content:"\ec8c"}.ti-brand-linktree:before{content:"\f1e7"}.ti-brand-loom:before{content:"\ef70"}.ti-brand-mastercard:before{content:"\ef49"}.ti-brand-mastodon:before{content:"\f250"}.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-monday:before{content:"\f219"}.ti-brand-netbeans:before{content:"\ef71"}.ti-brand-netflix:before{content:"\edcf"}.ti-brand-nextjs:before{content:"\f0dd"}.ti-brand-notion:before{content:"\ef7b"}.ti-brand-nuxt:before{content:"\f0de"}.ti-brand-nytimes:before{content:"\ef8d"}.ti-brand-open-source:before{content:"\edd0"}.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-pepsi:before{content:"\f261"}.ti-brand-php:before{content:"\ef72"}.ti-brand-pinterest:before{content:"\ec8d"}.ti-brand-pocket:before{content:"\ed00"}.ti-brand-producthunt:before{content:"\edd3"}.ti-brand-pushover:before{content:"\f20e"}.ti-brand-python:before{content:"\ed01"}.ti-brand-react-native:before{content:"\ef73"}.ti-brand-reddit:before{content:"\ec8e"}.ti-brand-safari:before{content:"\ec23"}.ti-brand-sass:before{content:"\edd4"}.ti-brand-sentry:before{content:"\edd5"}.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-soundcloud:before{content:"\ed6e"}.ti-brand-spotify:before{content:"\ed03"}.ti-brand-stackoverflow:before{content:"\ef58"}.ti-brand-steam:before{content:"\ed6f"}.ti-brand-strava:before{content:"\f254"}.ti-brand-stripe:before{content:"\edd7"}.ti-brand-sublime-text:before{content:"\ef74"}.ti-brand-surfshark:before{content:"\f255"}.ti-brand-svelte:before{content:"\f0df"}.ti-brand-tabler:before{content:"\ec8f"}.ti-brand-tailwind:before{content:"\eca1"}.ti-brand-telegram:before{content:"\ec26"}.ti-brand-tidal:before{content:"\ed70"}.ti-brand-tiktok:before{content:"\ec73"}.ti-brand-tinder:before{content:"\ed71"}.ti-brand-toyota:before{content:"\f262"}.ti-brand-tripadvisor:before{content:"\f002"}.ti-brand-tumblr:before{content:"\ed04"}.ti-brand-twitch:before{content:"\ed05"}.ti-brand-twitter:before{content:"\ec27"}.ti-brand-uber:before{content:"\ef75"}.ti-brand-ubuntu:before{content:"\ef59"}.ti-brand-unity:before{content:"\f2ac"}.ti-brand-unsplash:before{content:"\edd8"}.ti-brand-vercel:before{content:"\ef24"}.ti-brand-vimeo:before{content:"\ed06"}.ti-brand-vinted:before{content:"\f20f"}.ti-brand-visual-studio:before{content:"\ef76"}.ti-brand-vivaldi:before{content:"\f210"}.ti-brand-vk:before{content:"\ed72"}.ti-brand-vue:before{content:"\f0e0"}.ti-brand-walmart:before{content:"\f211"}.ti-brand-webflow:before{content:"\f2d2"}.ti-brand-whatsapp:before{content:"\ec74"}.ti-brand-windows:before{content:"\ecd8"}.ti-brand-wish:before{content:"\f212"}.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-zoom:before{content:"\f215"}.ti-brand-zwift:before{content:"\f216"}.ti-bread:before{content:"\efa3"}.ti-briefcase:before{content:"\ea46"}.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-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-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-carousel:before{content:"\ed87"}.ti-building-castle:before{content:"\ed88"}.ti-building-church:before{content:"\ea4c"}.ti-building-community:before{content:"\ebf6"}.ti-building-cottage:before{content:"\ee1b"}.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-store:before{content:"\ea4e"}.ti-building-warehouse:before{content:"\ebe3"}.ti-bulb:before{content:"\ea51"}.ti-bulb-off:before{content:"\ea50"}.ti-bulldozer:before{content:"\ee1d"}.ti-bus:before{content:"\ebe4"}.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-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-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-candle:before{content:"\efc6"}.ti-candy:before{content:"\ef0d"}.ti-candy-off:before{content:"\f0c5"}.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-caravan:before{content:"\ec7c"}.ti-cardboards:before{content:"\ed74"}.ti-cardboards-off:before{content:"\f0c8"}.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-carrot:before{content:"\f21c"}.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-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-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-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-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-radar:before{content:"\ed77"}.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-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-christmas-tree:before{content:"\ed78"}.ti-circle:before{content:"\ea6b"}.ti-circle-0:before{content:"\ee34"}.ti-circle-1:before{content:"\ee35"}.ti-circle-2:before{content:"\ee36"}.ti-circle-3:before{content:"\ee37"}.ti-circle-4:before{content:"\ee38"}.ti-circle-5:before{content:"\ee39"}.ti-circle-6:before{content:"\ee3a"}.ti-circle-7:before{content:"\ee3b"}.ti-circle-8:before{content:"\ee3c"}.ti-circle-9:before{content:"\ee3d"}.ti-circle-check:before{content:"\ea67"}.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-minus:before{content:"\ea68"}.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-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-list:before{content:"\ea6d"}.ti-clipboard-off:before{content:"\f0ce"}.ti-clipboard-plus:before{content:"\efb2"}.ti-clipboard-text:before{content:"\f089"}.ti-clipboard-x:before{content:"\ea6e"}.ti-clock:before{content:"\ea70"}.ti-clock-2:before{content:"\f099"}.ti-clock-off:before{content:"\f0cf"}.ti-clothes-rack:before{content:"\f285"}.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-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-coin:before{content:"\eb82"}.ti-coin-bitcoin:before{content:"\f2be"}.ti-coin-euro:before{content:"\f2bf"}.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-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-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-confetti:before{content:"\ee46"}.ti-container:before{content:"\ee47"}.ti-container-off:before{content:"\f107"}.ti-contrast:before{content:"\ec4e"}.ti-contrast-2:before{content:"\efc7"}.ti-cookie:before{content:"\ef0f"}.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-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-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-canadian:before{content:"\ee57"}.ti-currency-dollar-singapore:before{content:"\ee58"}.ti-currency-ethereum:before{content:"\ee59"}.ti-currency-euro:before{content:"\eb85"}.ti-currency-forint:before{content:"\ee5a"}.ti-currency-frank:before{content:"\ee5b"}.ti-currency-krone-czech:before{content:"\ee5c"}.ti-currency-krone-danish:before{content:"\ee5d"}.ti-currency-krone-swedish:before{content:"\ee5e"}.ti-currency-leu:before{content:"\ee5f"}.ti-currency-lira:before{content:"\ee60"}.ti-currency-litecoin:before{content:"\ee61"}.ti-currency-naira:before{content:"\ee62"}.ti-currency-pound:before{content:"\ebac"}.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-rupee:before{content:"\ebad"}.ti-currency-shekel:before{content:"\ee68"}.ti-currency-taka:before{content:"\ee69"}.ti-currency-tugrik:before{content:"\ee6a"}.ti-currency-won:before{content:"\ee6b"}.ti-currency-yen:before{content:"\ebae"}.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-dashboard:before{content:"\ea87"}.ti-database:before{content:"\ea88"}.ti-database-export:before{content:"\ee6e"}.ti-database-import:before{content:"\ee6f"}.ti-database-off:before{content:"\ee70"}.ti-dental:before{content:"\f025"}.ti-dental-broken:before{content:"\f286"}.ti-dental-off:before{content:"\f110"}.ti-details:before{content:"\ee71"}.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-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-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-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:"\f066"}.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-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-off:before{content:"\f118"}.ti-discount:before{content:"\ebbd"}.ti-discount-2:before{content:"\ee7c"}.ti-discount-check:before{content:"\f1f8"}.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-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-ear:before{content:"\ebce"}.ti-ear-off:before{content:"\ee84"}.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-off:before{content:"\f11f"}.ti-elevator:before{content:"\efdf"}.ti-emergency-bed:before{content:"\ef5d"}.ti-empathize:before{content:"\f29b"}.ti-emphasis:before{content:"\ebcf"}.ti-engine:before{content:"\ef7e"}.ti-engine-off:before{content:"\f120"}.ti-equal:before{content:"\ee87"}.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-mark:before{content:"\efb4"}.ti-exclamation-mark-off:before{content:"\f124"}.ti-explicit:before{content:"\f256"}.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-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-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-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-horizontal:before{content:"\ebb0"}.ti-file-import:before{content:"\edea"}.ti-file-info:before{content:"\edec"}.ti-file-invoice:before{content:"\eb67"}.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-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-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-firetruck:before{content:"\ebe8"}.ti-first-aid-kit:before{content:"\ef5f"}.ti-fish:before{content:"\ef2b"}.ti-fish-bone:before{content:"\f287"}.ti-fish-hook:before{content:"\f1f9"}.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-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-friends:before{content:"\eab0"}.ti-friends-off:before{content:"\f136"}.ti-function:before{content:"\f225"}.ti-garden-cart:before{content:"\f23e"}.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-gif:before{content:"\f257"}.ti-gift:before{content:"\eb68"}.ti-git-branch:before{content:"\eab2"}.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-golf:before{content:"\ed8c"}.ti-golf-off:before{content:"\f13a"}.ti-gps:before{content:"\ed7a"}.ti-grain:before{content:"\ee92"}.ti-graph:before{content:"\f288"}.ti-grid-dots:before{content:"\eaba"}.ti-grid-pattern:before{content:"\efc9"}.ti-grill:before{content:"\efa9"}.ti-grill-off:before{content:"\f13b"}.ti-grip-horizontal:before{content:"\ec00"}.ti-grip-vertical:before{content:"\ec01"}.ti-growth:before{content:"\ee93"}.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-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-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-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-hexagon:before{content:"\ec02"}.ti-hexagon-off:before{content:"\ee9c"}.ti-hexagons:before{content:"\f09d"}.ti-hierarchy:before{content:"\ee9e"}.ti-hierarchy-2:before{content:"\ee9d"}.ti-hierarchy-3:before{content:"\f289"}.ti-highlight:before{content:"\ef3f"}.ti-highlight-off:before{content:"\f144"}.ti-history:before{content:"\ebea"}.ti-history-toggle:before{content:"\f1fc"}.ti-home:before{content:"\eac1"}.ti-home-2:before{content:"\eac0"}.ti-home-off:before{content:"\f145"}.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-id:before{content:"\eac3"}.ti-id-badge:before{content:"\eff7"}.ti-id-badge-2:before{content:"\f076"}.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-info-circle:before{content:"\eac5"}.ti-info-square:before{content:"\eac6"}.ti-input-search:before{content:"\f2a2"}.ti-italic:before{content:"\eb93"}.ti-jewish-star:before{content:"\f1d5"}.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-ladder:before{content:"\efe2"}.ti-ladder-off:before{content:"\f14c"}.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-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-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:"\f152"}.ti-lego:before{content:"\eadc"}.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-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-view:before{content:"\ec6b"}.ti-loader:before{content:"\eca3"}.ti-loader-2:before{content:"\f226"}.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-off:before{content:"\ed1e"}.ti-lock-open:before{content:"\eae1"}.ti-lock-open-off:before{content:"\f156"}.ti-lock-square:before{content:"\ef51"}.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-macro:before{content:"\eeab"}.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-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-massage:before{content:"\eeb1"}.ti-math:before{content:"\ebeb"}.ti-math-avg:before{content:"\f0f4"}.ti-math-function:before{content:"\eeb2"}.ti-math-function-off:before{content:"\f15e"}.ti-math-max:before{content:"\f0f5"}.ti-math-min:before{content:"\f0f6"}.ti-math-symbols:before{content:"\eeb3"}.ti-maximize:before{content:"\eaea"}.ti-maximize-off:before{content:"\f15f"}.ti-meat:before{content:"\ef12"}.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-menu:before{content:"\eaeb"}.ti-menu-2:before{content:"\ec42"}.ti-message:before{content:"\eaef"}.ti-message-2:before{content:"\eaec"}.ti-message-2-code:before{content:"\f012"}.ti-message-2-share:before{content:"\f077"}.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-mickey:before{content:"\f2a3"}.ti-microphone:before{content:"\eaf0"}.ti-microphone-2:before{content:"\ef2c"}.ti-microphone-off:before{content:"\ed16"}.ti-microscope:before{content:"\ef64"}.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-minimize:before{content:"\eaf1"}.ti-minus:before{content:"\eaf2"}.ti-minus-vertical:before{content:"\eeb4"}.ti-mist:before{content:"\ec30"}.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-nervous:before{content:"\ef96"}.ti-mood-neutral:before{content:"\eaf5"}.ti-mood-off:before{content:"\f161"}.ti-mood-sad:before{content:"\eaf6"}.ti-mood-sing:before{content:"\f2c7"}.ti-mood-smile:before{content:"\eaf7"}.ti-mood-suprised:before{content:"\ec04"}.ti-mood-tongue:before{content:"\eb95"}.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-mouse:before{content:"\eaf9"}.ti-mouse-2:before{content:"\f1d7"}.ti-mouse-off:before{content:"\f163"}.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-music:before{content:"\eafc"}.ti-music-off:before{content:"\f166"}.ti-navigation:before{content:"\f2c8"}.ti-network:before{content:"\f09f"}.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-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-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-vertical:before{content:"\ed34"}.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-paw:before{content:"\eff9"}.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-pepper:before{content:"\ef15"}.ti-pepper-off:before{content:"\f175"}.ti-percentage:before{content:"\ecf4"}.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-off:before{content:"\ecf6"}.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-off:before{content:"\f177"}.ti-pill:before{content:"\ec44"}.ti-pill-off:before{content:"\f178"}.ti-pills:before{content:"\ef66"}.ti-pin:before{content:"\ec9c"}.ti-pinned:before{content:"\ed60"}.ti-pinned-off:before{content:"\ed5f"}.ti-pizza:before{content:"\edbb"}.ti-pizza-off:before{content:"\f179"}.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-podium:before{content:"\f1d8"}.ti-point:before{content:"\eb0c"}.ti-point-off:before{content:"\f181"}.ti-pointer:before{content:"\f265"}.ti-pokeball:before{content:"\eec1"}.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-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-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-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-radio:before{content:"\ef2d"}.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-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-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-repeat:before{content:"\eb72"}.ti-repeat-off:before{content:"\f18e"}.ti-repeat-once:before{content:"\eb71"}.ti-replace:before{content:"\ebc7"}.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-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-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-off:before{content:"\f194"}.ti-router:before{content:"\eb18"}.ti-row-insert-bottom:before{content:"\eed0"}.ti-row-insert-top:before{content:"\eed1"}.ti-rss:before{content:"\eb19"}.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-sailboat:before{content:"\ec83"}.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-school:before{content:"\ecf7"}.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-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-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-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-off:before{content:"\f19e"}.ti-servicemark:before{content:"\ec09"}.ti-settings:before{content:"\eb20"}.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-lock:before{content:"\ed58"}.ti-shield-off:before{content:"\ecf8"}.ti-shield-x:before{content:"\eb23"}.ti-ship:before{content:"\ec84"}.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-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-skull:before{content:"\f292"}.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-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-sos:before{content:"\f24a"}.ti-soup:before{content:"\ef2e"}.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-sport-billard:before{content:"\eee4"}.ti-spy:before{content:"\f227"}.ti-square:before{content:"\eb2c"}.ti-square-0:before{content:"\eee5"}.ti-square-1:before{content:"\eee6"}.ti-square-2:before{content:"\eee7"}.ti-square-3:before{content:"\eee8"}.ti-square-4:before{content:"\eee9"}.ti-square-5:before{content:"\eeea"}.ti-square-6:before{content:"\eeeb"}.ti-square-7:before{content:"\eeec"}.ti-square-8:before{content:"\eeed"}.ti-square-9:before{content:"\eeee"}.ti-square-asterisk:before{content:"\f01a"}.ti-square-check:before{content:"\eb28"}.ti-square-dot:before{content:"\ed59"}.ti-square-forbid:before{content:"\ed5b"}.ti-square-forbid-2:before{content:"\ed5a"}.ti-square-half:before{content:"\effb"}.ti-square-minus:before{content:"\eb29"}.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-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-steam:before{content:"\f24b"}.ti-steering-wheel:before{content:"\ec7b"}.ti-step-into:before{content:"\ece0"}.ti-step-out:before{content:"\ece1"}.ti-stethoscope:before{content:"\edbe"}.ti-sticker:before{content:"\eb2f"}.ti-storm:before{content:"\f24c"}.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-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-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:"\f1ac"}.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-off:before{content:"\f1ad"}.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-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-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-thermometer:before{content:"\ef67"}.ti-thumb-down:before{content:"\eb3b"}.ti-thumb-up:before{content:"\eb3c"}.ti-ticket:before{content:"\eb3d"}.ti-ticket-off:before{content:"\f1b2"}.ti-tie:before{content:"\f07e"}.ti-tilt-shift:before{content:"\eefe"}.ti-tilt-shift-off:before{content:"\f1b3"}.ti-timeline:before{content:"\f031"}.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-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-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-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-trophy:before{content:"\eb45"}.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-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-vaccine:before{content:"\ef04"}.ti-vaccine-bottle:before{content:"\ef69"}.ti-vaccine-off:before{content:"\f1bc"}.ti-variable:before{content:"\ef05"}.ti-variable-off:before{content:"\f1bd"}.ti-vector:before{content:"\eca9"}.ti-vector-bezier:before{content:"\ef1d"}.ti-vector-bezier-2:before{content:"\f1a3"}.ti-vector-off:before{content:"\f1be"}.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-virus:before{content:"\eb74"}.ti-virus-off:before{content:"\ed66"}.ti-virus-search:before{content:"\ed67"}.ti-vocabulary:before{content:"\ef1e"}.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-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-machine:before{content:"\f25e"}.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-wheelchair:before{content:"\f1db"}.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-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-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-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"} \ No newline at end of file diff --git a/iconfont/tabler-icons.scss b/iconfont/tabler-icons.scss deleted file mode 100644 index 109018bda..000000000 --- a/iconfont/tabler-icons.scss +++ /dev/null @@ -1,4513 +0,0 @@ -/*! - * Tabler Icons 1.82.0 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-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}/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"); - } -} - -.#{$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("\"") -} - - -$ti-icon-2fa: unicode('eca0'); -$ti-icon-3d-cube-sphere: unicode('ecd7'); -$ti-icon-3d-rotate: unicode('f020'); -$ti-icon-a-b: unicode('ec36'); -$ti-icon-a-b-2: unicode('f25f'); -$ti-icon-a-b-off: unicode('f0a6'); -$ti-icon-abacus: unicode('f05c'); -$ti-icon-access-point: unicode('ed1b'); -$ti-icon-access-point-off: unicode('ed1a'); -$ti-icon-accessible: unicode('eba9'); -$ti-icon-accessible-off: unicode('f0a7'); -$ti-icon-activity: unicode('ed23'); -$ti-icon-activity-heartbeat: unicode('f0db'); -$ti-icon-ad: unicode('ea02'); -$ti-icon-ad-2: unicode('ef1f'); -$ti-icon-address-book: unicode('f021'); -$ti-icon-adjustments: unicode('ea03'); -$ti-icon-adjustments-alt: unicode('ec37'); -$ti-icon-adjustments-horizontal: unicode('ec38'); -$ti-icon-adjustments-off: unicode('f0a8'); -$ti-icon-aerial-lift: unicode('edfe'); -$ti-icon-affiliate: unicode('edff'); -$ti-icon-alarm: unicode('ea04'); -$ti-icon-alarm-off: unicode('f0a9'); -$ti-icon-album: unicode('f022'); -$ti-icon-alert-circle: unicode('ea05'); -$ti-icon-alert-octagon: unicode('ecc6'); -$ti-icon-alert-triangle: unicode('ea06'); -$ti-icon-alien: unicode('ebde'); -$ti-icon-align-center: unicode('ea07'); -$ti-icon-align-justified: unicode('ea08'); -$ti-icon-align-left: unicode('ea09'); -$ti-icon-align-right: unicode('ea0a'); -$ti-icon-alphabet-cyrillic: unicode('f1df'); -$ti-icon-alphabet-greek: unicode('f1e0'); -$ti-icon-alphabet-latin: unicode('f1e1'); -$ti-icon-ambulance: unicode('ebf5'); -$ti-icon-ampersand: unicode('f229'); -$ti-icon-anchor: unicode('eb76'); -$ti-icon-anchor-off: unicode('f0f7'); -$ti-icon-angle: unicode('ef20'); -$ti-icon-ankh: unicode('f1cd'); -$ti-icon-antenna: unicode('f094'); -$ti-icon-antenna-bars-1: unicode('ecc7'); -$ti-icon-antenna-bars-2: unicode('ecc8'); -$ti-icon-antenna-bars-3: unicode('ecc9'); -$ti-icon-antenna-bars-4: unicode('ecca'); -$ti-icon-antenna-bars-5: unicode('eccb'); -$ti-icon-antenna-bars-off: unicode('f0aa'); -$ti-icon-aperture: unicode('eb58'); -$ti-icon-api: unicode('effd'); -$ti-icon-api-app: unicode('effc'); -$ti-icon-api-app-off: unicode('f0ab'); -$ti-icon-api-off: unicode('f0f8'); -$ti-icon-app-window: unicode('efe6'); -$ti-icon-apple: unicode('ef21'); -$ti-icon-apps: unicode('ebb6'); -$ti-icon-apps-off: unicode('f0ac'); -$ti-icon-archive: unicode('ea0b'); -$ti-icon-archive-off: unicode('f0ad'); -$ti-icon-armchair: unicode('ef9e'); -$ti-icon-armchair-2: unicode('efe7'); -$ti-icon-arrow-autofit-content: unicode('ef31'); -$ti-icon-arrow-autofit-down: unicode('ef32'); -$ti-icon-arrow-autofit-height: unicode('ef33'); -$ti-icon-arrow-autofit-left: unicode('ef34'); -$ti-icon-arrow-autofit-right: unicode('ef35'); -$ti-icon-arrow-autofit-up: unicode('ef36'); -$ti-icon-arrow-autofit-width: unicode('ef37'); -$ti-icon-arrow-back: unicode('ea0c'); -$ti-icon-arrow-back-up: unicode('eb77'); -$ti-icon-arrow-bar-down: unicode('ea0d'); -$ti-icon-arrow-bar-left: unicode('ea0e'); -$ti-icon-arrow-bar-right: unicode('ea0f'); -$ti-icon-arrow-bar-to-down: unicode('ec88'); -$ti-icon-arrow-bar-to-left: unicode('ec89'); -$ti-icon-arrow-bar-to-right: unicode('ec8a'); -$ti-icon-arrow-bar-to-up: unicode('ec8b'); -$ti-icon-arrow-bar-up: unicode('ea10'); -$ti-icon-arrow-bear-left: unicode('f045'); -$ti-icon-arrow-bear-left-2: unicode('f044'); -$ti-icon-arrow-bear-right: unicode('f047'); -$ti-icon-arrow-bear-right-2: unicode('f046'); -$ti-icon-arrow-big-down: unicode('edda'); -$ti-icon-arrow-big-down-line: unicode('efe8'); -$ti-icon-arrow-big-down-lines: unicode('efe9'); -$ti-icon-arrow-big-left: unicode('eddb'); -$ti-icon-arrow-big-left-line: unicode('efea'); -$ti-icon-arrow-big-left-lines: unicode('efeb'); -$ti-icon-arrow-big-right: unicode('eddc'); -$ti-icon-arrow-big-right-line: unicode('efec'); -$ti-icon-arrow-big-right-lines: unicode('efed'); -$ti-icon-arrow-big-top: unicode('eddd'); -$ti-icon-arrow-big-up-line: unicode('efee'); -$ti-icon-arrow-big-up-lines: unicode('efef'); -$ti-icon-arrow-bottom-bar: unicode('ed98'); -$ti-icon-arrow-bottom-circle: unicode('ed99'); -$ti-icon-arrow-bottom-square: unicode('ed9a'); -$ti-icon-arrow-bottom-tail: unicode('ed9b'); -$ti-icon-arrow-curve-left: unicode('f048'); -$ti-icon-arrow-curve-right: unicode('f049'); -$ti-icon-arrow-down: unicode('ea16'); -$ti-icon-arrow-down-circle: unicode('ea11'); -$ti-icon-arrow-down-left: unicode('ea13'); -$ti-icon-arrow-down-left-circle: unicode('ea12'); -$ti-icon-arrow-down-right: unicode('ea15'); -$ti-icon-arrow-down-right-circle: unicode('ea14'); -$ti-icon-arrow-fork: unicode('f04a'); -$ti-icon-arrow-forward: unicode('ea17'); -$ti-icon-arrow-forward-up: unicode('eb78'); -$ti-icon-arrow-guide: unicode('f22a'); -$ti-icon-arrow-left: unicode('ea19'); -$ti-icon-arrow-left-bar: unicode('ed9c'); -$ti-icon-arrow-left-circle: unicode('ea18'); -$ti-icon-arrow-left-right: unicode('f04b'); -$ti-icon-arrow-left-square: unicode('ed9d'); -$ti-icon-arrow-left-tail: unicode('ed9e'); -$ti-icon-arrow-loop-left: unicode('ed9f'); -$ti-icon-arrow-loop-left-2: unicode('f04c'); -$ti-icon-arrow-loop-right: unicode('eda0'); -$ti-icon-arrow-loop-right-2: unicode('f04d'); -$ti-icon-arrow-merge: unicode('f04e'); -$ti-icon-arrow-merge-both: unicode('f23b'); -$ti-icon-arrow-merge-left: unicode('f23c'); -$ti-icon-arrow-merge-right: unicode('f23d'); -$ti-icon-arrow-move-down: unicode('f2ba'); -$ti-icon-arrow-move-left: unicode('f2bb'); -$ti-icon-arrow-move-right: unicode('f2bc'); -$ti-icon-arrow-move-up: unicode('f2bd'); -$ti-icon-arrow-narrow-down: unicode('ea1a'); -$ti-icon-arrow-narrow-left: unicode('ea1b'); -$ti-icon-arrow-narrow-right: unicode('ea1c'); -$ti-icon-arrow-narrow-up: unicode('ea1d'); -$ti-icon-arrow-ramp-left: unicode('ed3c'); -$ti-icon-arrow-ramp-left-2: unicode('f04f'); -$ti-icon-arrow-ramp-left-3: unicode('f050'); -$ti-icon-arrow-ramp-right: unicode('ed3d'); -$ti-icon-arrow-ramp-right-2: unicode('f051'); -$ti-icon-arrow-ramp-right-3: unicode('f052'); -$ti-icon-arrow-right: unicode('ea1f'); -$ti-icon-arrow-right-bar: unicode('eda1'); -$ti-icon-arrow-right-circle: unicode('ea1e'); -$ti-icon-arrow-right-square: unicode('eda2'); -$ti-icon-arrow-right-tail: unicode('eda3'); -$ti-icon-arrow-rotary-first-left: unicode('f053'); -$ti-icon-arrow-rotary-first-right: unicode('f054'); -$ti-icon-arrow-rotary-last-left: unicode('f055'); -$ti-icon-arrow-rotary-last-right: unicode('f056'); -$ti-icon-arrow-rotary-left: unicode('f057'); -$ti-icon-arrow-rotary-right: unicode('f058'); -$ti-icon-arrow-rotary-straight: unicode('f059'); -$ti-icon-arrow-roundabout-left: unicode('f22b'); -$ti-icon-arrow-roundabout-right: unicode('f22c'); -$ti-icon-arrow-sharp-turn-left: unicode('f05a'); -$ti-icon-arrow-sharp-turn-right: unicode('f05b'); -$ti-icon-arrow-top-bar: unicode('eda4'); -$ti-icon-arrow-top-circle: unicode('eda5'); -$ti-icon-arrow-top-square: unicode('eda6'); -$ti-icon-arrow-top-tail: unicode('eda7'); -$ti-icon-arrow-up: unicode('ea25'); -$ti-icon-arrow-up-circle: unicode('ea20'); -$ti-icon-arrow-up-left: unicode('ea22'); -$ti-icon-arrow-up-left-circle: unicode('ea21'); -$ti-icon-arrow-up-right: unicode('ea24'); -$ti-icon-arrow-up-right-circle: unicode('ea23'); -$ti-icon-arrow-wave-left-down: unicode('eda8'); -$ti-icon-arrow-wave-left-up: unicode('eda9'); -$ti-icon-arrow-wave-right-down: unicode('edaa'); -$ti-icon-arrow-wave-right-up: unicode('edab'); -$ti-icon-arrows-cross: unicode('effe'); -$ti-icon-arrows-diagonal: unicode('ea27'); -$ti-icon-arrows-diagonal-2: unicode('ea26'); -$ti-icon-arrows-diagonal-minimize: unicode('ef39'); -$ti-icon-arrows-diagonal-minimize-2: unicode('ef38'); -$ti-icon-arrows-diff: unicode('f296'); -$ti-icon-arrows-double-ne-sw: unicode('edde'); -$ti-icon-arrows-double-nw-se: unicode('eddf'); -$ti-icon-arrows-double-se-nw: unicode('ede0'); -$ti-icon-arrows-double-sw-ne: unicode('ede1'); -$ti-icon-arrows-down: unicode('edad'); -$ti-icon-arrows-down-up: unicode('edac'); -$ti-icon-arrows-exchange: unicode('f1f4'); -$ti-icon-arrows-exchange-2: unicode('f1f3'); -$ti-icon-arrows-horizontal: unicode('eb59'); -$ti-icon-arrows-join: unicode('edaf'); -$ti-icon-arrows-join-2: unicode('edae'); -$ti-icon-arrows-left: unicode('edb1'); -$ti-icon-arrows-left-down: unicode('ee00'); -$ti-icon-arrows-left-right: unicode('edb0'); -$ti-icon-arrows-maximize: unicode('ea28'); -$ti-icon-arrows-minimize: unicode('ea29'); -$ti-icon-arrows-move: unicode('f22f'); -$ti-icon-arrows-move-horizontal: unicode('f22d'); -$ti-icon-arrows-move-vertical: unicode('f22e'); -$ti-icon-arrows-random: unicode('f095'); -$ti-icon-arrows-right: unicode('edb3'); -$ti-icon-arrows-right-down: unicode('ee01'); -$ti-icon-arrows-right-left: unicode('edb2'); -$ti-icon-arrows-shuffle: unicode('f000'); -$ti-icon-arrows-shuffle-2: unicode('efff'); -$ti-icon-arrows-sort: unicode('eb5a'); -$ti-icon-arrows-split: unicode('edb5'); -$ti-icon-arrows-split-2: unicode('edb4'); -$ti-icon-arrows-transfer-down: unicode('f2cc'); -$ti-icon-arrows-transfer-up: unicode('f2cd'); -$ti-icon-arrows-up: unicode('edb7'); -$ti-icon-arrows-up-down: unicode('edb6'); -$ti-icon-arrows-up-left: unicode('ee02'); -$ti-icon-arrows-up-right: unicode('ee03'); -$ti-icon-arrows-vertical: unicode('eb5b'); -$ti-icon-artboard: unicode('ea2a'); -$ti-icon-artboard-off: unicode('f0ae'); -$ti-icon-article: unicode('f1e2'); -$ti-icon-aspect-ratio: unicode('ed30'); -$ti-icon-aspect-ratio-off: unicode('f0af'); -$ti-icon-assembly: unicode('f24d'); -$ti-icon-asset: unicode('f1ce'); -$ti-icon-asterisk: unicode('efd5'); -$ti-icon-asterisk-simple: unicode('efd4'); -$ti-icon-at: unicode('ea2b'); -$ti-icon-at-off: unicode('f0b0'); -$ti-icon-atom: unicode('eb79'); -$ti-icon-atom-2: unicode('ebdf'); -$ti-icon-atom-off: unicode('f0f9'); -$ti-icon-augmented-reality: unicode('f023'); -$ti-icon-award: unicode('ea2c'); -$ti-icon-award-off: unicode('f0fa'); -$ti-icon-axe: unicode('ef9f'); -$ti-icon-axis-x: unicode('ef45'); -$ti-icon-axis-y: unicode('ef46'); -$ti-icon-baby-carriage: unicode('f05d'); -$ti-icon-backhoe: unicode('ed86'); -$ti-icon-backpack: unicode('ef47'); -$ti-icon-backspace: unicode('ea2d'); -$ti-icon-badge: unicode('efc2'); -$ti-icon-badge-off: unicode('f0fb'); -$ti-icon-badges: unicode('efc3'); -$ti-icon-badges-off: unicode('f0fc'); -$ti-icon-ball-american-football: unicode('ee04'); -$ti-icon-ball-baseball: unicode('efa0'); -$ti-icon-ball-basketball: unicode('ec28'); -$ti-icon-ball-bowling: unicode('ec29'); -$ti-icon-ball-football: unicode('ee06'); -$ti-icon-ball-football-off: unicode('ee05'); -$ti-icon-ball-tennis: unicode('ec2a'); -$ti-icon-ball-volleyball: unicode('ec2b'); -$ti-icon-ballon: unicode('ef3a'); -$ti-icon-ballon-off: unicode('f0fd'); -$ti-icon-ballpen: unicode('f06e'); -$ti-icon-ballpen-off: unicode('f0b1'); -$ti-icon-ban: unicode('ea2e'); -$ti-icon-bandage: unicode('eb7a'); -$ti-icon-barbell: unicode('eff0'); -$ti-icon-barbell-off: unicode('f0b2'); -$ti-icon-barcode: unicode('ebc6'); -$ti-icon-barcode-off: unicode('f0b3'); -$ti-icon-barrel: unicode('f0b4'); -$ti-icon-barrel-off: unicode('f0fe'); -$ti-icon-barrier-block: unicode('f00e'); -$ti-icon-barrier-block-off: unicode('f0b5'); -$ti-icon-baseline: unicode('f024'); -$ti-icon-basket: unicode('ebe1'); -$ti-icon-basket-off: unicode('f0b6'); -$ti-icon-bat: unicode('f284'); -$ti-icon-bath: unicode('ef48'); -$ti-icon-bath-off: unicode('f0ff'); -$ti-icon-battery: unicode('ea34'); -$ti-icon-battery-1: unicode('ea2f'); -$ti-icon-battery-2: unicode('ea30'); -$ti-icon-battery-3: unicode('ea31'); -$ti-icon-battery-4: unicode('ea32'); -$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-off: unicode('ed1c'); -$ti-icon-beach: unicode('ef3d'); -$ti-icon-beach-off: unicode('f0b7'); -$ti-icon-bed: unicode('eb5c'); -$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-minus: unicode('ede2'); -$ti-icon-bell-off: unicode('ece9'); -$ti-icon-bell-plus: unicode('ede3'); -$ti-icon-bell-ringing: unicode('ed07'); -$ti-icon-bell-ringing-2: unicode('ede4'); -$ti-icon-bell-school: unicode('f05e'); -$ti-icon-bell-x: unicode('ede5'); -$ti-icon-bell-z: unicode('eff1'); -$ti-icon-bible: unicode('efc4'); -$ti-icon-bike: unicode('ea36'); -$ti-icon-bike-off: unicode('f0b8'); -$ti-icon-binary: unicode('ee08'); -$ti-icon-biohazard: unicode('ecb8'); -$ti-icon-biohazard-off: unicode('f0b9'); -$ti-icon-blockquote: unicode('ee09'); -$ti-icon-bluetooth: unicode('ea37'); -$ti-icon-bluetooth-connected: unicode('ecea'); -$ti-icon-bluetooth-off: unicode('eceb'); -$ti-icon-bluetooth-x: unicode('f081'); -$ti-icon-blur: unicode('ef8c'); -$ti-icon-bold: unicode('eb7b'); -$ti-icon-bold-off: unicode('f0ba'); -$ti-icon-bolt: unicode('ea38'); -$ti-icon-bolt-off: unicode('ecec'); -$ti-icon-bone: unicode('edb8'); -$ti-icon-bone-off: unicode('f0bb'); -$ti-icon-book: unicode('ea39'); -$ti-icon-book-2: unicode('efc5'); -$ti-icon-book-download: unicode('f070'); -$ti-icon-book-off: unicode('f0bc'); -$ti-icon-book-upload: unicode('f071'); -$ti-icon-bookmark: unicode('ea3a'); -$ti-icon-bookmark-off: unicode('eced'); -$ti-icon-bookmarks: unicode('ed08'); -$ti-icon-bookmarks-off: unicode('f0bd'); -$ti-icon-books: unicode('eff2'); -$ti-icon-books-off: unicode('f0be'); -$ti-icon-border-all: unicode('ea3b'); -$ti-icon-border-bottom: unicode('ea3c'); -$ti-icon-border-horizontal: unicode('ea3d'); -$ti-icon-border-inner: unicode('ea3e'); -$ti-icon-border-left: unicode('ea3f'); -$ti-icon-border-none: unicode('ea40'); -$ti-icon-border-outer: unicode('ea41'); -$ti-icon-border-radius: unicode('eb7c'); -$ti-icon-border-right: unicode('ea42'); -$ti-icon-border-style: unicode('ee0a'); -$ti-icon-border-style-2: unicode('ef22'); -$ti-icon-border-top: unicode('ea43'); -$ti-icon-border-vertical: unicode('ea44'); -$ti-icon-bottle: unicode('ef0b'); -$ti-icon-bow: unicode('f096'); -$ti-icon-box: unicode('ea45'); -$ti-icon-box-align-bottom: unicode('f2a8'); -$ti-icon-box-align-bottom-left: unicode('f2ce'); -$ti-icon-box-align-bottom-right: unicode('f2cf'); -$ti-icon-box-align-left: unicode('f2a9'); -$ti-icon-box-align-right: unicode('f2aa'); -$ti-icon-box-align-top: unicode('f2ab'); -$ti-icon-box-align-top-left: unicode('f2d0'); -$ti-icon-box-align-top-right: unicode('f2d1'); -$ti-icon-box-margin: unicode('ee0b'); -$ti-icon-box-model: unicode('ee0c'); -$ti-icon-box-model-2: unicode('ef23'); -$ti-icon-box-multiple: unicode('ee17'); -$ti-icon-box-multiple-0: unicode('ee0d'); -$ti-icon-box-multiple-1: unicode('ee0e'); -$ti-icon-box-multiple-2: unicode('ee0f'); -$ti-icon-box-multiple-3: unicode('ee10'); -$ti-icon-box-multiple-4: unicode('ee11'); -$ti-icon-box-multiple-5: unicode('ee12'); -$ti-icon-box-multiple-6: unicode('ee13'); -$ti-icon-box-multiple-7: unicode('ee14'); -$ti-icon-box-multiple-8: unicode('ee15'); -$ti-icon-box-multiple-9: unicode('ee16'); -$ti-icon-box-off: unicode('f102'); -$ti-icon-box-padding: unicode('ee18'); -$ti-icon-braces: unicode('ebcc'); -$ti-icon-braces-off: unicode('f0bf'); -$ti-icon-brackets: unicode('ebcd'); -$ti-icon-brackets-contain: unicode('f1e5'); -$ti-icon-brackets-contain-end: unicode('f1e3'); -$ti-icon-brackets-contain-start: unicode('f1e4'); -$ti-icon-brackets-off: unicode('f0c0'); -$ti-icon-brand-adobe: unicode('f0dc'); -$ti-icon-brand-airbnb: unicode('ed68'); -$ti-icon-brand-airtable: unicode('ef6a'); -$ti-icon-brand-amazon: unicode('f230'); -$ti-icon-brand-amongus: unicode('f205'); -$ti-icon-brand-android: unicode('ec16'); -$ti-icon-brand-angular: unicode('ef6b'); -$ti-icon-brand-appgallery: unicode('f231'); -$ti-icon-brand-apple: unicode('ec17'); -$ti-icon-brand-apple-arcade: unicode('ed69'); -$ti-icon-brand-apple-podcast: unicode('f1e6'); -$ti-icon-brand-appstore: unicode('ed24'); -$ti-icon-brand-asana: unicode('edc5'); -$ti-icon-brand-badoo: unicode('f206'); -$ti-icon-brand-bandcamp: unicode('f207'); -$ti-icon-brand-beats: unicode('f208'); -$ti-icon-brand-behance: unicode('ec6e'); -$ti-icon-brand-bing: unicode('edc6'); -$ti-icon-brand-bitbucket: unicode('edc7'); -$ti-icon-brand-booking: unicode('edc8'); -$ti-icon-brand-bootstrap: unicode('ef3e'); -$ti-icon-brand-chrome: unicode('ec18'); -$ti-icon-brand-codepen: unicode('ec6f'); -$ti-icon-brand-codesandbox: unicode('ed6a'); -$ti-icon-brand-coinbase: unicode('f209'); -$ti-icon-brand-comedy-central: unicode('f217'); -$ti-icon-brand-css3: unicode('ed6b'); -$ti-icon-brand-cucumber: unicode('ef6c'); -$ti-icon-brand-d3: unicode('f24e'); -$ti-icon-brand-debian: unicode('ef57'); -$ti-icon-brand-deno: unicode('f24f'); -$ti-icon-brand-deviantart: unicode('ecfb'); -$ti-icon-brand-discord: unicode('ece3'); -$ti-icon-brand-disney: unicode('f20a'); -$ti-icon-brand-disqus: unicode('edc9'); -$ti-icon-brand-docker: unicode('edca'); -$ti-icon-brand-doctrine: unicode('ef6d'); -$ti-icon-brand-dribbble: unicode('ec19'); -$ti-icon-brand-edge: unicode('ecfc'); -$ti-icon-brand-facebook: unicode('ec1a'); -$ti-icon-brand-figma: unicode('ec93'); -$ti-icon-brand-finder: unicode('f218'); -$ti-icon-brand-firebase: unicode('ef6e'); -$ti-icon-brand-firefox: unicode('ecfd'); -$ti-icon-brand-flickr: unicode('ecfe'); -$ti-icon-brand-flipboard: unicode('f20b'); -$ti-icon-brand-fortnite: unicode('f260'); -$ti-icon-brand-foursquare: unicode('ecff'); -$ti-icon-brand-framer: unicode('ec1b'); -$ti-icon-brand-git: unicode('ef6f'); -$ti-icon-brand-github: unicode('ec1c'); -$ti-icon-brand-gitlab: unicode('ec1d'); -$ti-icon-brand-gmail: unicode('efa2'); -$ti-icon-brand-google: unicode('ec1f'); -$ti-icon-brand-google-analytics: unicode('edcb'); -$ti-icon-brand-google-drive: unicode('ec1e'); -$ti-icon-brand-google-fit: unicode('f297'); -$ti-icon-brand-google-one: unicode('f232'); -$ti-icon-brand-google-photos: unicode('f20c'); -$ti-icon-brand-google-play: unicode('ed25'); -$ti-icon-brand-gravatar: unicode('edcc'); -$ti-icon-brand-grindr: unicode('f20d'); -$ti-icon-brand-hipchat: unicode('edcd'); -$ti-icon-brand-html5: unicode('ed6c'); -$ti-icon-brand-instagram: unicode('ec20'); -$ti-icon-brand-intercom: unicode('f1cf'); -$ti-icon-brand-javascript: unicode('ef0c'); -$ti-icon-brand-kickstarter: unicode('edce'); -$ti-icon-brand-kotlin: unicode('ed6d'); -$ti-icon-brand-lastfm: unicode('f001'); -$ti-icon-brand-linkedin: unicode('ec8c'); -$ti-icon-brand-linktree: unicode('f1e7'); -$ti-icon-brand-loom: unicode('ef70'); -$ti-icon-brand-mastercard: unicode('ef49'); -$ti-icon-brand-mastodon: unicode('f250'); -$ti-icon-brand-mcdonalds: unicode('f251'); -$ti-icon-brand-medium: unicode('ec70'); -$ti-icon-brand-mercedes: unicode('f072'); -$ti-icon-brand-messenger: unicode('ec71'); -$ti-icon-brand-meta: unicode('efb0'); -$ti-icon-brand-monday: unicode('f219'); -$ti-icon-brand-netbeans: unicode('ef71'); -$ti-icon-brand-netflix: unicode('edcf'); -$ti-icon-brand-nextjs: unicode('f0dd'); -$ti-icon-brand-notion: unicode('ef7b'); -$ti-icon-brand-nuxt: unicode('f0de'); -$ti-icon-brand-nytimes: unicode('ef8d'); -$ti-icon-brand-open-source: unicode('edd0'); -$ti-icon-brand-opera: unicode('ec21'); -$ti-icon-brand-pagekit: unicode('edd1'); -$ti-icon-brand-patreon: unicode('edd2'); -$ti-icon-brand-paypal: unicode('ec22'); -$ti-icon-brand-pepsi: unicode('f261'); -$ti-icon-brand-php: unicode('ef72'); -$ti-icon-brand-pinterest: unicode('ec8d'); -$ti-icon-brand-pocket: unicode('ed00'); -$ti-icon-brand-producthunt: unicode('edd3'); -$ti-icon-brand-pushover: unicode('f20e'); -$ti-icon-brand-python: unicode('ed01'); -$ti-icon-brand-react-native: unicode('ef73'); -$ti-icon-brand-reddit: unicode('ec8e'); -$ti-icon-brand-safari: unicode('ec23'); -$ti-icon-brand-sass: unicode('edd4'); -$ti-icon-brand-sentry: unicode('edd5'); -$ti-icon-brand-shazam: unicode('edd6'); -$ti-icon-brand-shopee: unicode('f252'); -$ti-icon-brand-sketch: unicode('ec24'); -$ti-icon-brand-skype: unicode('ed02'); -$ti-icon-brand-slack: unicode('ec72'); -$ti-icon-brand-snapchat: unicode('ec25'); -$ti-icon-brand-snapseed: unicode('f253'); -$ti-icon-brand-soundcloud: unicode('ed6e'); -$ti-icon-brand-spotify: unicode('ed03'); -$ti-icon-brand-stackoverflow: unicode('ef58'); -$ti-icon-brand-steam: unicode('ed6f'); -$ti-icon-brand-strava: unicode('f254'); -$ti-icon-brand-stripe: unicode('edd7'); -$ti-icon-brand-sublime-text: unicode('ef74'); -$ti-icon-brand-surfshark: unicode('f255'); -$ti-icon-brand-svelte: unicode('f0df'); -$ti-icon-brand-tabler: unicode('ec8f'); -$ti-icon-brand-tailwind: unicode('eca1'); -$ti-icon-brand-telegram: unicode('ec26'); -$ti-icon-brand-tidal: unicode('ed70'); -$ti-icon-brand-tiktok: unicode('ec73'); -$ti-icon-brand-tinder: unicode('ed71'); -$ti-icon-brand-toyota: unicode('f262'); -$ti-icon-brand-tripadvisor: unicode('f002'); -$ti-icon-brand-tumblr: unicode('ed04'); -$ti-icon-brand-twitch: unicode('ed05'); -$ti-icon-brand-twitter: unicode('ec27'); -$ti-icon-brand-uber: unicode('ef75'); -$ti-icon-brand-ubuntu: unicode('ef59'); -$ti-icon-brand-unity: unicode('f2ac'); -$ti-icon-brand-unsplash: unicode('edd8'); -$ti-icon-brand-vercel: unicode('ef24'); -$ti-icon-brand-vimeo: unicode('ed06'); -$ti-icon-brand-vinted: unicode('f20f'); -$ti-icon-brand-visual-studio: unicode('ef76'); -$ti-icon-brand-vivaldi: unicode('f210'); -$ti-icon-brand-vk: unicode('ed72'); -$ti-icon-brand-vue: unicode('f0e0'); -$ti-icon-brand-walmart: unicode('f211'); -$ti-icon-brand-webflow: unicode('f2d2'); -$ti-icon-brand-whatsapp: unicode('ec74'); -$ti-icon-brand-windows: unicode('ecd8'); -$ti-icon-brand-wish: unicode('f212'); -$ti-icon-brand-wordpress: unicode('f2d3'); -$ti-icon-brand-xbox: unicode('f298'); -$ti-icon-brand-xing: unicode('f21a'); -$ti-icon-brand-yahoo: unicode('ed73'); -$ti-icon-brand-yatse: unicode('f213'); -$ti-icon-brand-ycombinator: unicode('edd9'); -$ti-icon-brand-youtube: unicode('ec90'); -$ti-icon-brand-youtube-kids: unicode('f214'); -$ti-icon-brand-zoom: unicode('f215'); -$ti-icon-brand-zwift: unicode('f216'); -$ti-icon-bread: unicode('efa3'); -$ti-icon-briefcase: unicode('ea46'); -$ti-icon-brightness: unicode('eb7f'); -$ti-icon-brightness-2: unicode('ee19'); -$ti-icon-brightness-down: unicode('eb7d'); -$ti-icon-brightness-half: unicode('ee1a'); -$ti-icon-brightness-up: unicode('eb7e'); -$ti-icon-broadcast: unicode('f1e9'); -$ti-icon-broadcast-off: unicode('f1e8'); -$ti-icon-browser: unicode('ebb7'); -$ti-icon-browser-check: unicode('efd6'); -$ti-icon-browser-off: unicode('f0c1'); -$ti-icon-browser-plus: unicode('efd7'); -$ti-icon-browser-x: unicode('efd8'); -$ti-icon-brush: unicode('ebb8'); -$ti-icon-brush-off: unicode('f0c2'); -$ti-icon-bucket: unicode('ea47'); -$ti-icon-bucket-off: unicode('f103'); -$ti-icon-bug: unicode('ea48'); -$ti-icon-bug-off: unicode('f0c3'); -$ti-icon-building: unicode('ea4f'); -$ti-icon-building-arch: unicode('ea49'); -$ti-icon-building-bank: unicode('ebe2'); -$ti-icon-building-bridge: unicode('ea4b'); -$ti-icon-building-bridge-2: unicode('ea4a'); -$ti-icon-building-carousel: unicode('ed87'); -$ti-icon-building-castle: unicode('ed88'); -$ti-icon-building-church: unicode('ea4c'); -$ti-icon-building-community: unicode('ebf6'); -$ti-icon-building-cottage: unicode('ee1b'); -$ti-icon-building-factory: unicode('ee1c'); -$ti-icon-building-factory-2: unicode('f082'); -$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-skyscraper: unicode('ec39'); -$ti-icon-building-store: unicode('ea4e'); -$ti-icon-building-warehouse: unicode('ebe3'); -$ti-icon-bulb: unicode('ea51'); -$ti-icon-bulb-off: unicode('ea50'); -$ti-icon-bulldozer: unicode('ee1d'); -$ti-icon-bus: unicode('ebe4'); -$ti-icon-bus-stop: unicode('f2d4'); -$ti-icon-businessplan: unicode('ee1e'); -$ti-icon-butterfly: unicode('efd9'); -$ti-icon-c-sharp: unicode('f003'); -$ti-icon-cactus: unicode('f21b'); -$ti-icon-cake: unicode('f00f'); -$ti-icon-cake-off: unicode('f104'); -$ti-icon-calculator: unicode('eb80'); -$ti-icon-calculator-off: unicode('f0c4'); -$ti-icon-calendar: unicode('ea53'); -$ti-icon-calendar-event: unicode('ea52'); -$ti-icon-calendar-minus: unicode('ebb9'); -$ti-icon-calendar-off: unicode('ee1f'); -$ti-icon-calendar-plus: unicode('ebba'); -$ti-icon-calendar-stats: unicode('ee20'); -$ti-icon-calendar-time: unicode('ee21'); -$ti-icon-camera: unicode('ea54'); -$ti-icon-camera-minus: unicode('ec3a'); -$ti-icon-camera-off: unicode('ecee'); -$ti-icon-camera-plus: unicode('ec3b'); -$ti-icon-camera-rotate: unicode('ee22'); -$ti-icon-camera-selfie: unicode('ee23'); -$ti-icon-candle: unicode('efc6'); -$ti-icon-candy: unicode('ef0d'); -$ti-icon-candy-off: unicode('f0c5'); -$ti-icon-capture: unicode('ec3c'); -$ti-icon-capture-off: unicode('f0c6'); -$ti-icon-car: unicode('ebbb'); -$ti-icon-car-crane: unicode('ef25'); -$ti-icon-car-crash: unicode('efa4'); -$ti-icon-car-off: unicode('f0c7'); -$ti-icon-caravan: unicode('ec7c'); -$ti-icon-cardboards: unicode('ed74'); -$ti-icon-cardboards-off: unicode('f0c8'); -$ti-icon-caret-down: unicode('eb5d'); -$ti-icon-caret-left: unicode('eb5e'); -$ti-icon-caret-right: unicode('eb5f'); -$ti-icon-caret-up: unicode('eb60'); -$ti-icon-carrot: unicode('f21c'); -$ti-icon-cash: unicode('ea55'); -$ti-icon-cash-banknote: unicode('ee25'); -$ti-icon-cash-banknote-off: unicode('ee24'); -$ti-icon-cash-off: unicode('f105'); -$ti-icon-cast: unicode('ea56'); -$ti-icon-cast-off: unicode('f0c9'); -$ti-icon-category: unicode('f1f6'); -$ti-icon-category-2: unicode('f1f5'); -$ti-icon-ce: unicode('ed75'); -$ti-icon-ce-off: unicode('f0ca'); -$ti-icon-cell: unicode('f05f'); -$ti-icon-cell-signal-1: unicode('f083'); -$ti-icon-cell-signal-2: unicode('f084'); -$ti-icon-cell-signal-3: unicode('f085'); -$ti-icon-cell-signal-4: unicode('f086'); -$ti-icon-cell-signal-5: unicode('f087'); -$ti-icon-cell-signal-off: unicode('f088'); -$ti-icon-certificate: unicode('ed76'); -$ti-icon-certificate-2: unicode('f073'); -$ti-icon-certificate-2-off: unicode('f0cb'); -$ti-icon-certificate-off: unicode('f0cc'); -$ti-icon-chair-director: unicode('f2d5'); -$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-line: unicode('ea57'); -$ti-icon-chart-arrows: unicode('ee2a'); -$ti-icon-chart-arrows-vertical: unicode('ee29'); -$ti-icon-chart-bar: unicode('ea59'); -$ti-icon-chart-bubble: unicode('ec75'); -$ti-icon-chart-candle: unicode('ea5a'); -$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-dots: unicode('ee2f'); -$ti-icon-chart-dots-2: unicode('f097'); -$ti-icon-chart-dots-3: unicode('f098'); -$ti-icon-chart-infographic: unicode('ee30'); -$ti-icon-chart-line: unicode('ea5c'); -$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-radar: unicode('ed77'); -$ti-icon-check: unicode('ea5e'); -$ti-icon-checkbox: unicode('eba6'); -$ti-icon-checklist: unicode('f074'); -$ti-icon-checks: unicode('ebaa'); -$ti-icon-checkup-list: unicode('ef5a'); -$ti-icon-cheese: unicode('ef26'); -$ti-icon-chef-hat: unicode('f21d'); -$ti-icon-chevron-down: unicode('ea5f'); -$ti-icon-chevron-down-left: unicode('ed09'); -$ti-icon-chevron-down-right: unicode('ed0a'); -$ti-icon-chevron-left: unicode('ea60'); -$ti-icon-chevron-right: unicode('ea61'); -$ti-icon-chevron-up: unicode('ea62'); -$ti-icon-chevron-up-left: unicode('ed0b'); -$ti-icon-chevron-up-right: unicode('ed0c'); -$ti-icon-chevrons-down: unicode('ea63'); -$ti-icon-chevrons-down-left: unicode('ed0d'); -$ti-icon-chevrons-down-right: unicode('ed0e'); -$ti-icon-chevrons-left: unicode('ea64'); -$ti-icon-chevrons-right: unicode('ea65'); -$ti-icon-chevrons-up: unicode('ea66'); -$ti-icon-chevrons-up-left: unicode('ed0f'); -$ti-icon-chevrons-up-right: unicode('ed10'); -$ti-icon-christmas-tree: unicode('ed78'); -$ti-icon-circle: unicode('ea6b'); -$ti-icon-circle-0: unicode('ee34'); -$ti-icon-circle-1: unicode('ee35'); -$ti-icon-circle-2: unicode('ee36'); -$ti-icon-circle-3: unicode('ee37'); -$ti-icon-circle-4: unicode('ee38'); -$ti-icon-circle-5: unicode('ee39'); -$ti-icon-circle-6: unicode('ee3a'); -$ti-icon-circle-7: unicode('ee3b'); -$ti-icon-circle-8: unicode('ee3c'); -$ti-icon-circle-9: unicode('ee3d'); -$ti-icon-circle-check: unicode('ea67'); -$ti-icon-circle-dashed: unicode('ed27'); -$ti-icon-circle-dot: unicode('efb1'); -$ti-icon-circle-dotted: unicode('ed28'); -$ti-icon-circle-half: unicode('ee3f'); -$ti-icon-circle-half-2: unicode('eff3'); -$ti-icon-circle-half-vertical: unicode('ee3e'); -$ti-icon-circle-minus: unicode('ea68'); -$ti-icon-circle-off: unicode('ee40'); -$ti-icon-circle-plus: unicode('ea69'); -$ti-icon-circle-rectangle: unicode('f010'); -$ti-icon-circle-rectangle-off: unicode('f0cd'); -$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-circuit-ammeter: unicode('f271'); -$ti-icon-circuit-battery: unicode('f272'); -$ti-icon-circuit-bulb: unicode('f273'); -$ti-icon-circuit-capacitor: unicode('f275'); -$ti-icon-circuit-capacitor-polarized: unicode('f274'); -$ti-icon-circuit-cell: unicode('f277'); -$ti-icon-circuit-cell-plus: unicode('f276'); -$ti-icon-circuit-changeover: unicode('f278'); -$ti-icon-circuit-diode: unicode('f27a'); -$ti-icon-circuit-diode-zener: unicode('f279'); -$ti-icon-circuit-ground: unicode('f27c'); -$ti-icon-circuit-ground-digital: unicode('f27b'); -$ti-icon-circuit-inductor: unicode('f27d'); -$ti-icon-circuit-motor: unicode('f27e'); -$ti-icon-circuit-pushbutton: unicode('f27f'); -$ti-icon-circuit-resistor: unicode('f280'); -$ti-icon-circuit-switch-closed: unicode('f281'); -$ti-icon-circuit-switch-open: unicode('f282'); -$ti-icon-circuit-voltmeter: unicode('f283'); -$ti-icon-clear-all: unicode('ee41'); -$ti-icon-clear-formatting: unicode('ebe5'); -$ti-icon-click: unicode('ebbc'); -$ti-icon-clipboard: unicode('ea6f'); -$ti-icon-clipboard-check: unicode('ea6c'); -$ti-icon-clipboard-copy: unicode('f299'); -$ti-icon-clipboard-list: unicode('ea6d'); -$ti-icon-clipboard-off: unicode('f0ce'); -$ti-icon-clipboard-plus: unicode('efb2'); -$ti-icon-clipboard-text: unicode('f089'); -$ti-icon-clipboard-x: unicode('ea6e'); -$ti-icon-clock: unicode('ea70'); -$ti-icon-clock-2: unicode('f099'); -$ti-icon-clock-off: unicode('f0cf'); -$ti-icon-clothes-rack: unicode('f285'); -$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-fog: unicode('ecd9'); -$ti-icon-cloud-lock: unicode('efdb'); -$ti-icon-cloud-lock-open: unicode('efda'); -$ti-icon-cloud-off: unicode('ed3e'); -$ti-icon-cloud-rain: unicode('ea72'); -$ti-icon-cloud-snow: unicode('ea73'); -$ti-icon-cloud-storm: unicode('ea74'); -$ti-icon-cloud-upload: unicode('ea75'); -$ti-icon-clover: unicode('f1ea'); -$ti-icon-clover-2: unicode('f21e'); -$ti-icon-clubs: unicode('eff4'); -$ti-icon-code: unicode('ea77'); -$ti-icon-code-minus: unicode('ee42'); -$ti-icon-code-off: unicode('f0d0'); -$ti-icon-code-plus: unicode('ee43'); -$ti-icon-coffee: unicode('ef0e'); -$ti-icon-coffee-off: unicode('f106'); -$ti-icon-coin: unicode('eb82'); -$ti-icon-coin-bitcoin: unicode('f2be'); -$ti-icon-coin-euro: unicode('f2bf'); -$ti-icon-coin-off: unicode('f0d1'); -$ti-icon-coin-pound: unicode('f2c0'); -$ti-icon-coin-rupee: unicode('f2c1'); -$ti-icon-coin-yen: unicode('f2c2'); -$ti-icon-coin-yuan: unicode('f2c3'); -$ti-icon-color-picker: unicode('ebe6'); -$ti-icon-color-picker-off: unicode('f0d2'); -$ti-icon-color-swatch: unicode('eb61'); -$ti-icon-color-swatch-off: unicode('f0d3'); -$ti-icon-column-insert-left: unicode('ee44'); -$ti-icon-column-insert-right: unicode('ee45'); -$ti-icon-columns: unicode('eb83'); -$ti-icon-columns-off: unicode('f0d4'); -$ti-icon-comet: unicode('ec76'); -$ti-icon-command: unicode('ea78'); -$ti-icon-compass: unicode('ea79'); -$ti-icon-compass-off: unicode('f0d5'); -$ti-icon-components: unicode('efa5'); -$ti-icon-components-off: unicode('f0d6'); -$ti-icon-cone: unicode('efdd'); -$ti-icon-cone-2: unicode('efdc'); -$ti-icon-confetti: unicode('ee46'); -$ti-icon-container: unicode('ee47'); -$ti-icon-container-off: unicode('f107'); -$ti-icon-contrast: unicode('ec4e'); -$ti-icon-contrast-2: unicode('efc7'); -$ti-icon-cookie: unicode('ef0f'); -$ti-icon-cookie-off: unicode('f0d7'); -$ti-icon-copy: unicode('ea7a'); -$ti-icon-copy-off: unicode('f0d8'); -$ti-icon-copyleft: unicode('ec3d'); -$ti-icon-copyleft-off: unicode('f0d9'); -$ti-icon-copyright: unicode('ea7b'); -$ti-icon-copyright-off: unicode('f0da'); -$ti-icon-corner-down-left: unicode('ea7c'); -$ti-icon-corner-down-left-double: unicode('ee48'); -$ti-icon-corner-down-right: unicode('ea7d'); -$ti-icon-corner-down-right-double: unicode('ee49'); -$ti-icon-corner-left-down: unicode('ea7e'); -$ti-icon-corner-left-down-double: unicode('ee4a'); -$ti-icon-corner-left-up: unicode('ea7f'); -$ti-icon-corner-left-up-double: unicode('ee4b'); -$ti-icon-corner-right-down: unicode('ea80'); -$ti-icon-corner-right-down-double: unicode('ee4c'); -$ti-icon-corner-right-up: unicode('ea81'); -$ti-icon-corner-right-up-double: unicode('ee4d'); -$ti-icon-corner-up-left: unicode('ea82'); -$ti-icon-corner-up-left-double: unicode('ee4e'); -$ti-icon-corner-up-right: unicode('ea83'); -$ti-icon-corner-up-right-double: unicode('ee4f'); -$ti-icon-cpu: unicode('ef8e'); -$ti-icon-cpu-2: unicode('f075'); -$ti-icon-cpu-off: unicode('f108'); -$ti-icon-crane: unicode('ef27'); -$ti-icon-crane-off: unicode('f109'); -$ti-icon-creative-commons: unicode('efb3'); -$ti-icon-creative-commons-by: unicode('f21f'); -$ti-icon-creative-commons-nc: unicode('f220'); -$ti-icon-creative-commons-nd: unicode('f221'); -$ti-icon-creative-commons-off: unicode('f10a'); -$ti-icon-creative-commons-sa: unicode('f222'); -$ti-icon-creative-commons-zero: unicode('f223'); -$ti-icon-credit-card: unicode('ea84'); -$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-off: unicode('f10b'); -$ti-icon-crosshair: unicode('ec3e'); -$ti-icon-crown: unicode('ed12'); -$ti-icon-crown-off: unicode('ee50'); -$ti-icon-crutches: unicode('ef5b'); -$ti-icon-crutches-off: unicode('f10c'); -$ti-icon-cup: unicode('ef28'); -$ti-icon-cup-off: unicode('f10d'); -$ti-icon-curling: unicode('efc8'); -$ti-icon-curly-loop: unicode('ecda'); -$ti-icon-currency: unicode('efa6'); -$ti-icon-currency-bahraini: unicode('ee51'); -$ti-icon-currency-baht: unicode('f08a'); -$ti-icon-currency-bitcoin: unicode('ebab'); -$ti-icon-currency-cent: unicode('ee53'); -$ti-icon-currency-dinar: unicode('ee54'); -$ti-icon-currency-dirham: unicode('ee55'); -$ti-icon-currency-dogecoin: unicode('ef4b'); -$ti-icon-currency-dollar: unicode('eb84'); -$ti-icon-currency-dollar-australian: unicode('ee56'); -$ti-icon-currency-dollar-canadian: unicode('ee57'); -$ti-icon-currency-dollar-singapore: unicode('ee58'); -$ti-icon-currency-ethereum: unicode('ee59'); -$ti-icon-currency-euro: unicode('eb85'); -$ti-icon-currency-forint: unicode('ee5a'); -$ti-icon-currency-frank: unicode('ee5b'); -$ti-icon-currency-krone-czech: unicode('ee5c'); -$ti-icon-currency-krone-danish: unicode('ee5d'); -$ti-icon-currency-krone-swedish: unicode('ee5e'); -$ti-icon-currency-leu: unicode('ee5f'); -$ti-icon-currency-lira: unicode('ee60'); -$ti-icon-currency-litecoin: unicode('ee61'); -$ti-icon-currency-naira: unicode('ee62'); -$ti-icon-currency-pound: unicode('ebac'); -$ti-icon-currency-real: unicode('ee63'); -$ti-icon-currency-renminbi: unicode('ee64'); -$ti-icon-currency-ripple: unicode('ee65'); -$ti-icon-currency-riyal: unicode('ee66'); -$ti-icon-currency-rubel: unicode('ee67'); -$ti-icon-currency-rupee: unicode('ebad'); -$ti-icon-currency-shekel: unicode('ee68'); -$ti-icon-currency-taka: unicode('ee69'); -$ti-icon-currency-tugrik: unicode('ee6a'); -$ti-icon-currency-won: unicode('ee6b'); -$ti-icon-currency-yen: unicode('ebae'); -$ti-icon-currency-yuan: unicode('f29a'); -$ti-icon-currency-zloty: unicode('ee6c'); -$ti-icon-current-location: unicode('ecef'); -$ti-icon-current-location-off: unicode('f10e'); -$ti-icon-cursor-off: unicode('f10f'); -$ti-icon-cursor-text: unicode('ee6d'); -$ti-icon-cut: unicode('ea86'); -$ti-icon-dashboard: unicode('ea87'); -$ti-icon-database: unicode('ea88'); -$ti-icon-database-export: unicode('ee6e'); -$ti-icon-database-import: unicode('ee6f'); -$ti-icon-database-off: unicode('ee70'); -$ti-icon-dental: unicode('f025'); -$ti-icon-dental-broken: unicode('f286'); -$ti-icon-dental-off: unicode('f110'); -$ti-icon-details: unicode('ee71'); -$ti-icon-device-analytics: unicode('ee72'); -$ti-icon-device-audio-tape: unicode('ee73'); -$ti-icon-device-camera-phone: unicode('f233'); -$ti-icon-device-cctv: unicode('ee74'); -$ti-icon-device-computer-camera: unicode('ee76'); -$ti-icon-device-computer-camera-off: unicode('ee75'); -$ti-icon-device-desktop: unicode('ea89'); -$ti-icon-device-desktop-analytics: unicode('ee77'); -$ti-icon-device-desktop-off: unicode('ee78'); -$ti-icon-device-floppy: unicode('eb62'); -$ti-icon-device-gamepad: unicode('eb63'); -$ti-icon-device-gamepad-2: unicode('f1d2'); -$ti-icon-device-heart-monitor: unicode('f060'); -$ti-icon-device-laptop: unicode('eb64'); -$ti-icon-device-laptop-off: unicode('f061'); -$ti-icon-device-mobile: unicode('ea8a'); -$ti-icon-device-mobile-charging: unicode('f224'); -$ti-icon-device-mobile-message: unicode('ee79'); -$ti-icon-device-mobile-off: unicode('f062'); -$ti-icon-device-mobile-rotated: unicode('ecdb'); -$ti-icon-device-mobile-vibration: unicode('eb86'); -$ti-icon-device-nintendo: unicode('f026'); -$ti-icon-device-nintendo-off: unicode('f111'); -$ti-icon-device-speaker: unicode('ea8b'); -$ti-icon-device-speaker-off: unicode('f112'); -$ti-icon-device-tablet: unicode('ea8c'); -$ti-icon-device-tablet-off: unicode('f063'); -$ti-icon-device-tv: unicode('ea8d'); -$ti-icon-device-tv-off: unicode('f064'); -$ti-icon-device-tv-old: unicode('f1d3'); -$ti-icon-device-watch: unicode('ebf9'); -$ti-icon-device-watch-off: unicode('f065'); -$ti-icon-device-watch-stats: unicode('ef7d'); -$ti-icon-device-watch-stats-2: unicode('ef7c'); -$ti-icon-devices: unicode('eb87'); -$ti-icon-devices-2: unicode('ed29'); -$ti-icon-devices-off: unicode('f066'); -$ti-icon-devices-pc: unicode('ee7a'); -$ti-icon-devices-pc-off: unicode('f113'); -$ti-icon-dialpad: unicode('f067'); -$ti-icon-dialpad-off: unicode('f114'); -$ti-icon-diamond: unicode('eb65'); -$ti-icon-diamond-off: unicode('f115'); -$ti-icon-diamonds: unicode('eff5'); -$ti-icon-dice: unicode('eb66'); -$ti-icon-dice-1: unicode('f08b'); -$ti-icon-dice-2: unicode('f08c'); -$ti-icon-dice-3: unicode('f08d'); -$ti-icon-dice-4: unicode('f08e'); -$ti-icon-dice-5: unicode('f08f'); -$ti-icon-dice-6: unicode('f090'); -$ti-icon-dimensions: unicode('ee7b'); -$ti-icon-direction: unicode('ebfb'); -$ti-icon-direction-horizontal: unicode('ebfa'); -$ti-icon-direction-sign: unicode('f1f7'); -$ti-icon-directions: unicode('ea8e'); -$ti-icon-directions-off: unicode('f116'); -$ti-icon-disabled: unicode('ea8f'); -$ti-icon-disabled-2: unicode('ebaf'); -$ti-icon-disabled-off: unicode('f117'); -$ti-icon-disc: unicode('ea90'); -$ti-icon-disc-off: unicode('f118'); -$ti-icon-discount: unicode('ebbd'); -$ti-icon-discount-2: unicode('ee7c'); -$ti-icon-discount-check: unicode('f1f8'); -$ti-icon-divide: unicode('ed5c'); -$ti-icon-dna: unicode('ee7d'); -$ti-icon-dna-2: unicode('ef5c'); -$ti-icon-dna-2-off: unicode('f119'); -$ti-icon-dna-off: unicode('f11a'); -$ti-icon-dog-bowl: unicode('ef29'); -$ti-icon-door: unicode('ef4e'); -$ti-icon-door-enter: unicode('ef4c'); -$ti-icon-door-exit: unicode('ef4d'); -$ti-icon-door-off: unicode('f11b'); -$ti-icon-dots: unicode('ea95'); -$ti-icon-dots-circle-horizontal: unicode('ea91'); -$ti-icon-dots-diagonal: unicode('ea93'); -$ti-icon-dots-diagonal-2: unicode('ea92'); -$ti-icon-dots-vertical: unicode('ea94'); -$ti-icon-download: unicode('ea96'); -$ti-icon-download-off: unicode('f11c'); -$ti-icon-drag-drop: unicode('eb89'); -$ti-icon-drag-drop-2: unicode('eb88'); -$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-2: unicode('ee7f'); -$ti-icon-droplet-half: unicode('ee82'); -$ti-icon-droplet-half-2: unicode('ee81'); -$ti-icon-droplet-off: unicode('ee83'); -$ti-icon-ear: unicode('ebce'); -$ti-icon-ear-off: unicode('ee84'); -$ti-icon-edit: unicode('ea98'); -$ti-icon-edit-circle: unicode('ee85'); -$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-off: unicode('f11f'); -$ti-icon-elevator: unicode('efdf'); -$ti-icon-emergency-bed: unicode('ef5d'); -$ti-icon-empathize: unicode('f29b'); -$ti-icon-emphasis: unicode('ebcf'); -$ti-icon-engine: unicode('ef7e'); -$ti-icon-engine-off: unicode('f120'); -$ti-icon-equal: unicode('ee87'); -$ti-icon-equal-not: unicode('ee86'); -$ti-icon-eraser: unicode('eb8b'); -$ti-icon-eraser-off: unicode('f121'); -$ti-icon-error-404: unicode('f027'); -$ti-icon-error-404-off: unicode('f122'); -$ti-icon-exchange: unicode('ebe7'); -$ti-icon-exchange-off: unicode('f123'); -$ti-icon-exclamation-mark: unicode('efb4'); -$ti-icon-exclamation-mark-off: unicode('f124'); -$ti-icon-explicit: unicode('f256'); -$ti-icon-exposure: unicode('eb8c'); -$ti-icon-exposure-0: unicode('f29c'); -$ti-icon-exposure-minus-1: unicode('f29d'); -$ti-icon-exposure-minus-2: unicode('f29e'); -$ti-icon-exposure-plus-1: unicode('f29f'); -$ti-icon-exposure-plus-2: unicode('f2a0'); -$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-off: unicode('ecf0'); -$ti-icon-eye-table: unicode('ef5e'); -$ti-icon-eyeglass: unicode('ee8a'); -$ti-icon-eyeglass-2: unicode('ee89'); -$ti-icon-eyeglass-off: unicode('f126'); -$ti-icon-face-id: unicode('ea9b'); -$ti-icon-face-id-error: unicode('efa7'); -$ti-icon-face-mask: unicode('efb5'); -$ti-icon-face-mask-off: unicode('f127'); -$ti-icon-fall: unicode('ecb9'); -$ti-icon-feather: unicode('ee8b'); -$ti-icon-feather-off: unicode('f128'); -$ti-icon-fence: unicode('ef2a'); -$ti-icon-fence-off: unicode('f129'); -$ti-icon-fidget-spinner: unicode('f068'); -$ti-icon-file: unicode('eaa4'); -$ti-icon-file-3d: unicode('f032'); -$ti-icon-file-alert: unicode('ede6'); -$ti-icon-file-analytics: unicode('ede7'); -$ti-icon-file-arrow-left: unicode('f033'); -$ti-icon-file-arrow-right: unicode('f034'); -$ti-icon-file-barcode: unicode('f035'); -$ti-icon-file-certificate: unicode('ed4d'); -$ti-icon-file-chart: unicode('f036'); -$ti-icon-file-check: unicode('ea9c'); -$ti-icon-file-code: unicode('ebd0'); -$ti-icon-file-code-2: unicode('ede8'); -$ti-icon-file-database: unicode('f037'); -$ti-icon-file-description: unicode('f028'); -$ti-icon-file-diff: unicode('ecf1'); -$ti-icon-file-digit: unicode('efa8'); -$ti-icon-file-dislike: unicode('ed2a'); -$ti-icon-file-dollar: unicode('efe0'); -$ti-icon-file-dots: unicode('f038'); -$ti-icon-file-download: unicode('ea9d'); -$ti-icon-file-euro: unicode('efe1'); -$ti-icon-file-export: unicode('ede9'); -$ti-icon-file-horizontal: unicode('ebb0'); -$ti-icon-file-import: unicode('edea'); -$ti-icon-file-info: unicode('edec'); -$ti-icon-file-invoice: unicode('eb67'); -$ti-icon-file-like: unicode('ed2b'); -$ti-icon-file-minus: unicode('ea9e'); -$ti-icon-file-music: unicode('ea9f'); -$ti-icon-file-off: unicode('ecf2'); -$ti-icon-file-orientation: unicode('f2a1'); -$ti-icon-file-pencil: unicode('f039'); -$ti-icon-file-phone: unicode('ecdc'); -$ti-icon-file-plus: unicode('eaa0'); -$ti-icon-file-power: unicode('f03a'); -$ti-icon-file-report: unicode('eded'); -$ti-icon-file-rss: unicode('f03b'); -$ti-icon-file-scissors: unicode('f03c'); -$ti-icon-file-search: unicode('ed5d'); -$ti-icon-file-settings: unicode('f029'); -$ti-icon-file-shredder: unicode('eaa1'); -$ti-icon-file-signal: unicode('f03d'); -$ti-icon-file-spreadsheet: unicode('f03e'); -$ti-icon-file-star: unicode('f03f'); -$ti-icon-file-symlink: unicode('ed53'); -$ti-icon-file-text: unicode('eaa2'); -$ti-icon-file-time: unicode('f040'); -$ti-icon-file-typography: unicode('f041'); -$ti-icon-file-unknown: unicode('f042'); -$ti-icon-file-upload: unicode('ec91'); -$ti-icon-file-vector: unicode('f043'); -$ti-icon-file-x: unicode('eaa3'); -$ti-icon-file-zip: unicode('ed4e'); -$ti-icon-files: unicode('edef'); -$ti-icon-files-off: unicode('edee'); -$ti-icon-filter: unicode('eaa5'); -$ti-icon-filter-off: unicode('ed2c'); -$ti-icon-fingerprint: unicode('ebd1'); -$ti-icon-fingerprint-off: unicode('f12a'); -$ti-icon-firetruck: unicode('ebe8'); -$ti-icon-first-aid-kit: unicode('ef5f'); -$ti-icon-fish: unicode('ef2b'); -$ti-icon-fish-bone: unicode('f287'); -$ti-icon-fish-hook: unicode('f1f9'); -$ti-icon-fish-off: unicode('f12b'); -$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-off: unicode('f12d'); -$ti-icon-flame: unicode('ec2c'); -$ti-icon-flame-off: unicode('f12e'); -$ti-icon-flare: unicode('ee8e'); -$ti-icon-flask: unicode('ebd2'); -$ti-icon-flask-2: unicode('ef60'); -$ti-icon-flask-2-off: unicode('f12f'); -$ti-icon-flask-off: unicode('f130'); -$ti-icon-flip-horizontal: unicode('eaa7'); -$ti-icon-flip-vertical: unicode('eaa8'); -$ti-icon-float-center: unicode('ebb1'); -$ti-icon-float-left: unicode('ebb2'); -$ti-icon-float-none: unicode('ed13'); -$ti-icon-float-right: unicode('ebb3'); -$ti-icon-flower: unicode('eff6'); -$ti-icon-flower-off: unicode('f131'); -$ti-icon-focus: unicode('eb8d'); -$ti-icon-focus-2: unicode('ebd3'); -$ti-icon-focus-centered: unicode('f02a'); -$ti-icon-fold: unicode('ed56'); -$ti-icon-fold-down: unicode('ed54'); -$ti-icon-fold-up: unicode('ed55'); -$ti-icon-folder: unicode('eaad'); -$ti-icon-folder-minus: unicode('eaaa'); -$ti-icon-folder-off: unicode('ed14'); -$ti-icon-folder-plus: unicode('eaab'); -$ti-icon-folder-x: unicode('eaac'); -$ti-icon-folders: unicode('eaae'); -$ti-icon-folders-off: unicode('f133'); -$ti-icon-forbid: unicode('ebd5'); -$ti-icon-forbid-2: unicode('ebd4'); -$ti-icon-forklift: unicode('ebe9'); -$ti-icon-forms: unicode('ee8f'); -$ti-icon-fountain: unicode('f09b'); -$ti-icon-fountain-off: unicode('f134'); -$ti-icon-frame: unicode('eaaf'); -$ti-icon-frame-off: unicode('f135'); -$ti-icon-free-rights: unicode('efb6'); -$ti-icon-fridge: unicode('f1fa'); -$ti-icon-friends: unicode('eab0'); -$ti-icon-friends-off: unicode('f136'); -$ti-icon-function: unicode('f225'); -$ti-icon-garden-cart: unicode('f23e'); -$ti-icon-gas-station: unicode('ec7d'); -$ti-icon-gas-station-off: unicode('f137'); -$ti-icon-gauge: unicode('eab1'); -$ti-icon-gauge-off: unicode('f138'); -$ti-icon-gavel: unicode('ef90'); -$ti-icon-gender-agender: unicode('f0e1'); -$ti-icon-gender-androgyne: unicode('f0e2'); -$ti-icon-gender-bigender: unicode('f0e3'); -$ti-icon-gender-demiboy: unicode('f0e4'); -$ti-icon-gender-demigirl: unicode('f0e5'); -$ti-icon-gender-epicene: unicode('f0e6'); -$ti-icon-gender-female: unicode('f0e7'); -$ti-icon-gender-femme: unicode('f0e8'); -$ti-icon-gender-genderfluid: unicode('f0e9'); -$ti-icon-gender-genderless: unicode('f0ea'); -$ti-icon-gender-genderqueer: unicode('f0eb'); -$ti-icon-gender-hermaphrodite: unicode('f0ec'); -$ti-icon-gender-intergender: unicode('f0ed'); -$ti-icon-gender-male: unicode('f0ee'); -$ti-icon-gender-neutrois: unicode('f0ef'); -$ti-icon-gender-third: unicode('f0f0'); -$ti-icon-gender-transgender: unicode('f0f1'); -$ti-icon-gender-trasvesti: unicode('f0f2'); -$ti-icon-geometry: unicode('ee90'); -$ti-icon-ghost: unicode('eb8e'); -$ti-icon-gif: unicode('f257'); -$ti-icon-gift: unicode('eb68'); -$ti-icon-git-branch: unicode('eab2'); -$ti-icon-git-commit: unicode('eab3'); -$ti-icon-git-compare: unicode('eab4'); -$ti-icon-git-fork: unicode('eb8f'); -$ti-icon-git-merge: unicode('eab5'); -$ti-icon-git-pull-request: unicode('eab6'); -$ti-icon-git-pull-request-closed: unicode('ef7f'); -$ti-icon-git-pull-request-draft: unicode('efb7'); -$ti-icon-gizmo: unicode('f02b'); -$ti-icon-glass: unicode('eab8'); -$ti-icon-glass-full: unicode('eab7'); -$ti-icon-glass-off: unicode('ee91'); -$ti-icon-globe: unicode('eab9'); -$ti-icon-globe-off: unicode('f139'); -$ti-icon-golf: unicode('ed8c'); -$ti-icon-golf-off: unicode('f13a'); -$ti-icon-gps: unicode('ed7a'); -$ti-icon-grain: unicode('ee92'); -$ti-icon-graph: unicode('f288'); -$ti-icon-grid-dots: unicode('eaba'); -$ti-icon-grid-pattern: unicode('efc9'); -$ti-icon-grill: unicode('efa9'); -$ti-icon-grill-off: unicode('f13b'); -$ti-icon-grip-horizontal: unicode('ec00'); -$ti-icon-grip-vertical: unicode('ec01'); -$ti-icon-growth: unicode('ee93'); -$ti-icon-h-1: unicode('ec94'); -$ti-icon-h-2: unicode('ec95'); -$ti-icon-h-3: unicode('ec96'); -$ti-icon-h-4: unicode('ec97'); -$ti-icon-h-5: unicode('ec98'); -$ti-icon-h-6: unicode('ec99'); -$ti-icon-hammer: unicode('ef91'); -$ti-icon-hammer-off: unicode('f13c'); -$ti-icon-hand-click: unicode('ef4f'); -$ti-icon-hand-finger: unicode('ee94'); -$ti-icon-hand-finger-off: unicode('f13d'); -$ti-icon-hand-grab: unicode('f091'); -$ti-icon-hand-little-finger: unicode('ee95'); -$ti-icon-hand-middle-finger: unicode('ec2d'); -$ti-icon-hand-move: unicode('ef50'); -$ti-icon-hand-off: unicode('ed15'); -$ti-icon-hand-ring-finger: unicode('ee96'); -$ti-icon-hand-rock: unicode('ee97'); -$ti-icon-hand-stop: unicode('ec2e'); -$ti-icon-hand-three-fingers: unicode('ee98'); -$ti-icon-hand-two-fingers: unicode('ee99'); -$ti-icon-hanger: unicode('ee9a'); -$ti-icon-hanger-2: unicode('f09c'); -$ti-icon-hanger-off: unicode('f13e'); -$ti-icon-hash: unicode('eabc'); -$ti-icon-haze: unicode('efaa'); -$ti-icon-heading: unicode('ee9b'); -$ti-icon-heading-off: unicode('f13f'); -$ti-icon-headphones: unicode('eabd'); -$ti-icon-headphones-off: unicode('ed1d'); -$ti-icon-headset: unicode('eb90'); -$ti-icon-health-recognition: unicode('f1fb'); -$ti-icon-heart: unicode('eabe'); -$ti-icon-heart-broken: unicode('ecba'); -$ti-icon-heart-handshake: unicode('f0f3'); -$ti-icon-heart-minus: unicode('f140'); -$ti-icon-heart-off: unicode('f141'); -$ti-icon-heart-plus: unicode('f142'); -$ti-icon-heart-rate-monitor: unicode('ef61'); -$ti-icon-heartbeat: unicode('ef92'); -$ti-icon-helicopter: unicode('ed8e'); -$ti-icon-helicopter-landing: unicode('ed8d'); -$ti-icon-helmet: unicode('efca'); -$ti-icon-helmet-off: unicode('f143'); -$ti-icon-help: unicode('eabf'); -$ti-icon-hexagon: unicode('ec02'); -$ti-icon-hexagon-off: unicode('ee9c'); -$ti-icon-hexagons: unicode('f09d'); -$ti-icon-hierarchy: unicode('ee9e'); -$ti-icon-hierarchy-2: unicode('ee9d'); -$ti-icon-hierarchy-3: unicode('f289'); -$ti-icon-highlight: unicode('ef3f'); -$ti-icon-highlight-off: unicode('f144'); -$ti-icon-history: unicode('ebea'); -$ti-icon-history-toggle: unicode('f1fc'); -$ti-icon-home: unicode('eac1'); -$ti-icon-home-2: unicode('eac0'); -$ti-icon-home-off: unicode('f145'); -$ti-icon-horse-toy: unicode('f28a'); -$ti-icon-hotel-service: unicode('ef80'); -$ti-icon-hourglass: unicode('ef93'); -$ti-icon-hourglass-empty: unicode('f146'); -$ti-icon-hourglass-high: unicode('f092'); -$ti-icon-hourglass-low: unicode('f093'); -$ti-icon-hourglass-off: unicode('f147'); -$ti-icon-ice-cream: unicode('eac2'); -$ti-icon-ice-cream-2: unicode('ee9f'); -$ti-icon-ice-cream-off: unicode('f148'); -$ti-icon-ice-skating: unicode('efcb'); -$ti-icon-icons: unicode('f1d4'); -$ti-icon-id: unicode('eac3'); -$ti-icon-id-badge: unicode('eff7'); -$ti-icon-id-badge-2: unicode('f076'); -$ti-icon-id-off: unicode('f149'); -$ti-icon-inbox: unicode('eac4'); -$ti-icon-inbox-off: unicode('f14a'); -$ti-icon-indent-decrease: unicode('eb91'); -$ti-icon-indent-increase: unicode('eb92'); -$ti-icon-infinity: unicode('eb69'); -$ti-icon-info-circle: unicode('eac5'); -$ti-icon-info-square: unicode('eac6'); -$ti-icon-input-search: unicode('f2a2'); -$ti-icon-italic: unicode('eb93'); -$ti-icon-jewish-star: unicode('f1d5'); -$ti-icon-jump-rope: unicode('ed8f'); -$ti-icon-karate: unicode('ed32'); -$ti-icon-kayak: unicode('f1d6'); -$ti-icon-kering: unicode('efb8'); -$ti-icon-key: unicode('eac7'); -$ti-icon-key-off: unicode('f14b'); -$ti-icon-keyboard: unicode('ebd6'); -$ti-icon-keyboard-hide: unicode('ec7e'); -$ti-icon-keyboard-off: unicode('eea0'); -$ti-icon-keyboard-show: unicode('ec7f'); -$ti-icon-ladder: unicode('efe2'); -$ti-icon-ladder-off: unicode('f14c'); -$ti-icon-lamp: unicode('efab'); -$ti-icon-lamp-2: unicode('f09e'); -$ti-icon-lamp-off: unicode('f14d'); -$ti-icon-language: unicode('ebbe'); -$ti-icon-language-hiragana: unicode('ef77'); -$ti-icon-language-katakana: unicode('ef78'); -$ti-icon-language-off: unicode('f14e'); -$ti-icon-lasso: unicode('efac'); -$ti-icon-lasso-off: unicode('f14f'); -$ti-icon-layers-difference: unicode('eac8'); -$ti-icon-layers-intersect: unicode('eac9'); -$ti-icon-layers-intersect-2: unicode('eff8'); -$ti-icon-layers-linked: unicode('eea1'); -$ti-icon-layers-off: unicode('f150'); -$ti-icon-layers-subtract: unicode('eaca'); -$ti-icon-layers-union: unicode('eacb'); -$ti-icon-layout: unicode('eadb'); -$ti-icon-layout-2: unicode('eacc'); -$ti-icon-layout-align-bottom: unicode('eacd'); -$ti-icon-layout-align-center: unicode('eace'); -$ti-icon-layout-align-left: unicode('eacf'); -$ti-icon-layout-align-middle: unicode('ead0'); -$ti-icon-layout-align-right: unicode('ead1'); -$ti-icon-layout-align-top: unicode('ead2'); -$ti-icon-layout-board: unicode('ef95'); -$ti-icon-layout-board-split: unicode('ef94'); -$ti-icon-layout-bottombar: unicode('ead3'); -$ti-icon-layout-bottombar-collapse: unicode('f28b'); -$ti-icon-layout-bottombar-expand: unicode('f28c'); -$ti-icon-layout-cards: unicode('ec13'); -$ti-icon-layout-columns: unicode('ead4'); -$ti-icon-layout-dashboard: unicode('f02c'); -$ti-icon-layout-distribute-horizontal: unicode('ead5'); -$ti-icon-layout-distribute-vertical: unicode('ead6'); -$ti-icon-layout-grid: unicode('edba'); -$ti-icon-layout-grid-add: unicode('edb9'); -$ti-icon-layout-kanban: unicode('ec3f'); -$ti-icon-layout-list: unicode('ec14'); -$ti-icon-layout-navbar: unicode('ead7'); -$ti-icon-layout-navbar-collapse: unicode('f28d'); -$ti-icon-layout-navbar-expand: unicode('f28e'); -$ti-icon-layout-off: unicode('f151'); -$ti-icon-layout-rows: unicode('ead8'); -$ti-icon-layout-sidebar: unicode('eada'); -$ti-icon-layout-sidebar-left-collapse: unicode('f004'); -$ti-icon-layout-sidebar-left-expand: unicode('f005'); -$ti-icon-layout-sidebar-right: unicode('ead9'); -$ti-icon-layout-sidebar-right-collapse: unicode('f006'); -$ti-icon-layout-sidebar-right-expand: unicode('f007'); -$ti-icon-leaf: unicode('ed4f'); -$ti-icon-leaf-off: unicode('f152'); -$ti-icon-lego: unicode('eadc'); -$ti-icon-lemon: unicode('ef10'); -$ti-icon-lemon-2: unicode('ef81'); -$ti-icon-letter-a: unicode('ec50'); -$ti-icon-letter-b: unicode('ec51'); -$ti-icon-letter-c: unicode('ec52'); -$ti-icon-letter-case: unicode('eea5'); -$ti-icon-letter-case-lower: unicode('eea2'); -$ti-icon-letter-case-toggle: unicode('eea3'); -$ti-icon-letter-case-upper: unicode('eea4'); -$ti-icon-letter-d: unicode('ec53'); -$ti-icon-letter-e: unicode('ec54'); -$ti-icon-letter-f: unicode('ec55'); -$ti-icon-letter-g: unicode('ec56'); -$ti-icon-letter-h: unicode('ec57'); -$ti-icon-letter-i: unicode('ec58'); -$ti-icon-letter-j: unicode('ec59'); -$ti-icon-letter-k: unicode('ec5a'); -$ti-icon-letter-l: unicode('ec5b'); -$ti-icon-letter-m: unicode('ec5c'); -$ti-icon-letter-n: unicode('ec5d'); -$ti-icon-letter-o: unicode('ec5e'); -$ti-icon-letter-p: unicode('ec5f'); -$ti-icon-letter-q: unicode('ec60'); -$ti-icon-letter-r: unicode('ec61'); -$ti-icon-letter-s: unicode('ec62'); -$ti-icon-letter-spacing: unicode('eea6'); -$ti-icon-letter-t: unicode('ec63'); -$ti-icon-letter-u: unicode('ec64'); -$ti-icon-letter-v: unicode('ec65'); -$ti-icon-letter-w: unicode('ec66'); -$ti-icon-letter-x: unicode('ec67'); -$ti-icon-letter-y: unicode('ec68'); -$ti-icon-letter-z: unicode('ec69'); -$ti-icon-license: unicode('ebc0'); -$ti-icon-license-off: unicode('f153'); -$ti-icon-lifebuoy: unicode('eadd'); -$ti-icon-lifebuoy-off: unicode('f154'); -$ti-icon-line: unicode('ec40'); -$ti-icon-line-dashed: unicode('eea7'); -$ti-icon-line-dotted: unicode('eea8'); -$ti-icon-line-height: unicode('eb94'); -$ti-icon-link: unicode('eade'); -$ti-icon-list: unicode('eb6b'); -$ti-icon-list-check: unicode('eb6a'); -$ti-icon-list-details: unicode('ef40'); -$ti-icon-list-numbers: unicode('ef11'); -$ti-icon-list-search: unicode('eea9'); -$ti-icon-live-photo: unicode('eadf'); -$ti-icon-live-view: unicode('ec6b'); -$ti-icon-loader: unicode('eca3'); -$ti-icon-loader-2: unicode('f226'); -$ti-icon-loader-quarter: unicode('eca2'); -$ti-icon-location: unicode('eae0'); -$ti-icon-location-broken: unicode('f2c4'); -$ti-icon-location-off: unicode('f155'); -$ti-icon-lock: unicode('eae2'); -$ti-icon-lock-access: unicode('eeaa'); -$ti-icon-lock-off: unicode('ed1e'); -$ti-icon-lock-open: unicode('eae1'); -$ti-icon-lock-open-off: unicode('f156'); -$ti-icon-lock-square: unicode('ef51'); -$ti-icon-logic-and: unicode('f240'); -$ti-icon-logic-buffer: unicode('f241'); -$ti-icon-logic-nand: unicode('f242'); -$ti-icon-logic-nor: unicode('f243'); -$ti-icon-logic-not: unicode('f244'); -$ti-icon-logic-or: unicode('f245'); -$ti-icon-logic-xnor: unicode('f246'); -$ti-icon-logic-xor: unicode('f247'); -$ti-icon-login: unicode('eba7'); -$ti-icon-logout: unicode('eba8'); -$ti-icon-lollipop: unicode('efcc'); -$ti-icon-lollipop-off: unicode('f157'); -$ti-icon-luggage: unicode('efad'); -$ti-icon-luggage-off: unicode('f158'); -$ti-icon-lungs: unicode('ef62'); -$ti-icon-macro: unicode('eeab'); -$ti-icon-magnet: unicode('eae3'); -$ti-icon-magnet-off: unicode('f159'); -$ti-icon-mail: unicode('eae5'); -$ti-icon-mail-fast: unicode('f069'); -$ti-icon-mail-forward: unicode('eeac'); -$ti-icon-mail-off: unicode('f15a'); -$ti-icon-mail-opened: unicode('eae4'); -$ti-icon-mailbox: unicode('eead'); -$ti-icon-mailbox-off: unicode('f15b'); -$ti-icon-man: unicode('eae6'); -$ti-icon-manual-gearbox: unicode('ed7b'); -$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-off: unicode('ecf3'); -$ti-icon-map-pins: unicode('ed5e'); -$ti-icon-map-search: unicode('ef82'); -$ti-icon-markdown: unicode('ec41'); -$ti-icon-marquee: unicode('ec77'); -$ti-icon-marquee-2: unicode('eeae'); -$ti-icon-marquee-off: unicode('f15d'); -$ti-icon-mars: unicode('ec80'); -$ti-icon-mask: unicode('eeb0'); -$ti-icon-mask-off: unicode('eeaf'); -$ti-icon-masks-theater: unicode('f263'); -$ti-icon-massage: unicode('eeb1'); -$ti-icon-math: unicode('ebeb'); -$ti-icon-math-avg: unicode('f0f4'); -$ti-icon-math-function: unicode('eeb2'); -$ti-icon-math-function-off: unicode('f15e'); -$ti-icon-math-max: unicode('f0f5'); -$ti-icon-math-min: unicode('f0f6'); -$ti-icon-math-symbols: unicode('eeb3'); -$ti-icon-maximize: unicode('eaea'); -$ti-icon-maximize-off: unicode('f15f'); -$ti-icon-meat: unicode('ef12'); -$ti-icon-medal: unicode('ec78'); -$ti-icon-medal-2: unicode('efcd'); -$ti-icon-medical-cross: unicode('ec2f'); -$ti-icon-medical-cross-off: unicode('f160'); -$ti-icon-medicine-syrup: unicode('ef63'); -$ti-icon-menu: unicode('eaeb'); -$ti-icon-menu-2: unicode('ec42'); -$ti-icon-message: unicode('eaef'); -$ti-icon-message-2: unicode('eaec'); -$ti-icon-message-2-code: unicode('f012'); -$ti-icon-message-2-share: unicode('f077'); -$ti-icon-message-circle: unicode('eaed'); -$ti-icon-message-circle-2: unicode('ed3f'); -$ti-icon-message-circle-off: unicode('ed40'); -$ti-icon-message-code: unicode('f013'); -$ti-icon-message-dots: unicode('eaee'); -$ti-icon-message-forward: unicode('f28f'); -$ti-icon-message-language: unicode('efae'); -$ti-icon-message-off: unicode('ed41'); -$ti-icon-message-plus: unicode('ec9a'); -$ti-icon-message-report: unicode('ec9b'); -$ti-icon-message-share: unicode('f078'); -$ti-icon-messages: unicode('eb6c'); -$ti-icon-messages-off: unicode('ed42'); -$ti-icon-meteor: unicode('f1fd'); -$ti-icon-mickey: unicode('f2a3'); -$ti-icon-microphone: unicode('eaf0'); -$ti-icon-microphone-2: unicode('ef2c'); -$ti-icon-microphone-off: unicode('ed16'); -$ti-icon-microscope: unicode('ef64'); -$ti-icon-microwave: unicode('f248'); -$ti-icon-microwave-off: unicode('f264'); -$ti-icon-military-award: unicode('f079'); -$ti-icon-military-rank: unicode('efcf'); -$ti-icon-milk: unicode('ef13'); -$ti-icon-minimize: unicode('eaf1'); -$ti-icon-minus: unicode('eaf2'); -$ti-icon-minus-vertical: unicode('eeb4'); -$ti-icon-mist: unicode('ec30'); -$ti-icon-mood-boy: unicode('ed2d'); -$ti-icon-mood-confuzed: unicode('eaf3'); -$ti-icon-mood-crazy-happy: unicode('ed90'); -$ti-icon-mood-cry: unicode('ecbb'); -$ti-icon-mood-empty: unicode('eeb5'); -$ti-icon-mood-happy: unicode('eaf4'); -$ti-icon-mood-kid: unicode('ec03'); -$ti-icon-mood-look-left: unicode('f2c5'); -$ti-icon-mood-look-right: unicode('f2c6'); -$ti-icon-mood-nervous: unicode('ef96'); -$ti-icon-mood-neutral: unicode('eaf5'); -$ti-icon-mood-off: unicode('f161'); -$ti-icon-mood-sad: unicode('eaf6'); -$ti-icon-mood-sing: unicode('f2c7'); -$ti-icon-mood-smile: unicode('eaf7'); -$ti-icon-mood-suprised: unicode('ec04'); -$ti-icon-mood-tongue: unicode('eb95'); -$ti-icon-moon: unicode('eaf8'); -$ti-icon-moon-2: unicode('ece6'); -$ti-icon-moon-off: unicode('f162'); -$ti-icon-moon-stars: unicode('ece7'); -$ti-icon-moped: unicode('ecbc'); -$ti-icon-motorbike: unicode('eeb6'); -$ti-icon-mountain: unicode('ef97'); -$ti-icon-mouse: unicode('eaf9'); -$ti-icon-mouse-2: unicode('f1d7'); -$ti-icon-mouse-off: unicode('f163'); -$ti-icon-movie: unicode('eafa'); -$ti-icon-movie-off: unicode('f164'); -$ti-icon-mug: unicode('eafb'); -$ti-icon-mug-off: unicode('f165'); -$ti-icon-multiplier-0-5x: unicode('ef41'); -$ti-icon-multiplier-1-5x: unicode('ef42'); -$ti-icon-multiplier-1x: unicode('ef43'); -$ti-icon-multiplier-2x: unicode('ef44'); -$ti-icon-mushroom: unicode('ef14'); -$ti-icon-music: unicode('eafc'); -$ti-icon-music-off: unicode('f166'); -$ti-icon-navigation: unicode('f2c8'); -$ti-icon-network: unicode('f09f'); -$ti-icon-new-section: unicode('ebc1'); -$ti-icon-news: unicode('eafd'); -$ti-icon-news-off: unicode('f167'); -$ti-icon-nfc: unicode('eeb7'); -$ti-icon-nfc-off: unicode('f168'); -$ti-icon-no-copyright: unicode('efb9'); -$ti-icon-no-creative-commons: unicode('efba'); -$ti-icon-no-derivatives: unicode('efbb'); -$ti-icon-north-star: unicode('f014'); -$ti-icon-note: unicode('eb6d'); -$ti-icon-note-off: unicode('f169'); -$ti-icon-notebook: unicode('eb96'); -$ti-icon-notes: unicode('eb6e'); -$ti-icon-notes-off: unicode('f16a'); -$ti-icon-notification: unicode('eafe'); -$ti-icon-notification-off: unicode('f16b'); -$ti-icon-number: unicode('f1fe'); -$ti-icon-number-0: unicode('edf0'); -$ti-icon-number-1: unicode('edf1'); -$ti-icon-number-2: unicode('edf2'); -$ti-icon-number-3: unicode('edf3'); -$ti-icon-number-4: unicode('edf4'); -$ti-icon-number-5: unicode('edf5'); -$ti-icon-number-6: unicode('edf6'); -$ti-icon-number-7: unicode('edf7'); -$ti-icon-number-8: unicode('edf8'); -$ti-icon-number-9: unicode('edf9'); -$ti-icon-numbers: unicode('f015'); -$ti-icon-nurse: unicode('ef65'); -$ti-icon-octagon: unicode('ecbd'); -$ti-icon-octagon-off: unicode('eeb8'); -$ti-icon-old: unicode('eeb9'); -$ti-icon-olympics: unicode('eeba'); -$ti-icon-omega: unicode('eb97'); -$ti-icon-outbound: unicode('f249'); -$ti-icon-outlet: unicode('ebd7'); -$ti-icon-oval: unicode('f02e'); -$ti-icon-oval-vertical: unicode('f02d'); -$ti-icon-overline: unicode('eebb'); -$ti-icon-package: unicode('eaff'); -$ti-icon-package-off: unicode('f16c'); -$ti-icon-packages: unicode('f2c9'); -$ti-icon-packge-export: unicode('f07a'); -$ti-icon-packge-import: unicode('f07b'); -$ti-icon-pacman: unicode('eebc'); -$ti-icon-page-break: unicode('ec81'); -$ti-icon-paint: unicode('eb00'); -$ti-icon-paint-off: unicode('f16d'); -$ti-icon-palette: unicode('eb01'); -$ti-icon-palette-off: unicode('f16e'); -$ti-icon-panorama-horizontal: unicode('ed33'); -$ti-icon-panorama-vertical: unicode('ed34'); -$ti-icon-paper-bag: unicode('f02f'); -$ti-icon-paper-bag-off: unicode('f16f'); -$ti-icon-paperclip: unicode('eb02'); -$ti-icon-parachute: unicode('ed7c'); -$ti-icon-parachute-off: unicode('f170'); -$ti-icon-parentheses: unicode('ebd8'); -$ti-icon-parentheses-off: unicode('f171'); -$ti-icon-parking: unicode('eb03'); -$ti-icon-parking-off: unicode('f172'); -$ti-icon-paw: unicode('eff9'); -$ti-icon-peace: unicode('ecbe'); -$ti-icon-pencil: unicode('eb04'); -$ti-icon-pencil-minus: unicode('f1eb'); -$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-off: unicode('f174'); -$ti-icon-pentagon: unicode('efe3'); -$ti-icon-pepper: unicode('ef15'); -$ti-icon-pepper-off: unicode('f175'); -$ti-icon-percentage: unicode('ecf4'); -$ti-icon-perspective: unicode('eebd'); -$ti-icon-perspective-off: unicode('f176'); -$ti-icon-phone: unicode('eb09'); -$ti-icon-phone-call: unicode('eb05'); -$ti-icon-phone-calling: unicode('ec43'); -$ti-icon-phone-check: unicode('ec05'); -$ti-icon-phone-incoming: unicode('eb06'); -$ti-icon-phone-off: unicode('ecf5'); -$ti-icon-phone-outgoing: unicode('eb07'); -$ti-icon-phone-pause: unicode('eb08'); -$ti-icon-phone-plus: unicode('ec06'); -$ti-icon-phone-x: unicode('ec07'); -$ti-icon-photo: unicode('eb0a'); -$ti-icon-photo-off: unicode('ecf6'); -$ti-icon-physotherapist: unicode('eebe'); -$ti-icon-picture-in-picture: unicode('ed35'); -$ti-icon-picture-in-picture-off: unicode('ed43'); -$ti-icon-picture-in-picture-on: unicode('ed44'); -$ti-icon-picture-in-picture-top: unicode('efe4'); -$ti-icon-pig: unicode('ef52'); -$ti-icon-pig-off: unicode('f177'); -$ti-icon-pill: unicode('ec44'); -$ti-icon-pill-off: unicode('f178'); -$ti-icon-pills: unicode('ef66'); -$ti-icon-pin: unicode('ec9c'); -$ti-icon-pinned: unicode('ed60'); -$ti-icon-pinned-off: unicode('ed5f'); -$ti-icon-pizza: unicode('edbb'); -$ti-icon-pizza-off: unicode('f179'); -$ti-icon-plane: unicode('eb6f'); -$ti-icon-plane-arrival: unicode('eb99'); -$ti-icon-plane-departure: unicode('eb9a'); -$ti-icon-plane-inflight: unicode('ef98'); -$ti-icon-plane-off: unicode('f17a'); -$ti-icon-plane-tilt: unicode('f1ed'); -$ti-icon-planet: unicode('ec08'); -$ti-icon-planet-off: unicode('f17b'); -$ti-icon-plant: unicode('ed50'); -$ti-icon-plant-2: unicode('ed7e'); -$ti-icon-plant-2-off: unicode('f17c'); -$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-pause: unicode('ed45'); -$ti-icon-player-play: unicode('ed46'); -$ti-icon-player-record: unicode('ed47'); -$ti-icon-player-skip-back: unicode('ed48'); -$ti-icon-player-skip-forward: unicode('ed49'); -$ti-icon-player-stop: unicode('ed4a'); -$ti-icon-player-track-next: unicode('ed4b'); -$ti-icon-player-track-prev: unicode('ed4c'); -$ti-icon-playlist: unicode('eec0'); -$ti-icon-playlist-add: unicode('f008'); -$ti-icon-playlist-off: unicode('f17f'); -$ti-icon-playlist-x: unicode('f009'); -$ti-icon-playstation-circle: unicode('f2ad'); -$ti-icon-playstation-square: unicode('f2ae'); -$ti-icon-playstation-triangle: unicode('f2af'); -$ti-icon-playstation-x: unicode('f2b0'); -$ti-icon-plug: unicode('ebd9'); -$ti-icon-plug-connected: unicode('f00a'); -$ti-icon-plug-connected-x: unicode('f0a0'); -$ti-icon-plug-off: unicode('f180'); -$ti-icon-plug-x: unicode('f0a1'); -$ti-icon-plus: unicode('eb0b'); -$ti-icon-podium: unicode('f1d8'); -$ti-icon-point: unicode('eb0c'); -$ti-icon-point-off: unicode('f181'); -$ti-icon-pointer: unicode('f265'); -$ti-icon-pokeball: unicode('eec1'); -$ti-icon-polaroid: unicode('eec2'); -$ti-icon-polygon: unicode('efd0'); -$ti-icon-polygon-off: unicode('f182'); -$ti-icon-poo: unicode('f258'); -$ti-icon-pool: unicode('ed91'); -$ti-icon-power: unicode('eb0d'); -$ti-icon-pray: unicode('ecbf'); -$ti-icon-premium-rights: unicode('efbd'); -$ti-icon-prescription: unicode('ef99'); -$ti-icon-presentation: unicode('eb70'); -$ti-icon-presentation-analytics: unicode('eec3'); -$ti-icon-presentation-off: unicode('f183'); -$ti-icon-printer: unicode('eb0e'); -$ti-icon-printer-off: unicode('f184'); -$ti-icon-prison: unicode('ef79'); -$ti-icon-prompt: unicode('eb0f'); -$ti-icon-propeller: unicode('eec4'); -$ti-icon-propeller-off: unicode('f185'); -$ti-icon-puzzle: unicode('eb10'); -$ti-icon-puzzle-2: unicode('ef83'); -$ti-icon-puzzle-off: unicode('f186'); -$ti-icon-pyramid: unicode('eec5'); -$ti-icon-pyramid-off: unicode('f187'); -$ti-icon-qrcode: unicode('eb11'); -$ti-icon-question-mark: unicode('ec9d'); -$ti-icon-quote: unicode('efbe'); -$ti-icon-quote-off: unicode('f188'); -$ti-icon-radar: unicode('f017'); -$ti-icon-radar-2: unicode('f016'); -$ti-icon-radio: unicode('ef2d'); -$ti-icon-radioactive: unicode('ecc0'); -$ti-icon-radioactive-off: unicode('f189'); -$ti-icon-radius-bottom-left: unicode('eec6'); -$ti-icon-radius-bottom-right: unicode('eec7'); -$ti-icon-radius-top-left: unicode('eec8'); -$ti-icon-radius-top-right: unicode('eec9'); -$ti-icon-rainbow: unicode('edbc'); -$ti-icon-rainbow-off: unicode('f18a'); -$ti-icon-rating-12-plus: unicode('f266'); -$ti-icon-rating-14-plus: unicode('f267'); -$ti-icon-rating-16-plus: unicode('f268'); -$ti-icon-rating-18-plus: unicode('f269'); -$ti-icon-rating-21-plus: unicode('f26a'); -$ti-icon-receipt: unicode('edfd'); -$ti-icon-receipt-2: unicode('edfa'); -$ti-icon-receipt-off: unicode('edfb'); -$ti-icon-receipt-refund: unicode('edfc'); -$ti-icon-receipt-tax: unicode('edbd'); -$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-vertical: unicode('ed36'); -$ti-icon-recycle: unicode('eb9b'); -$ti-icon-recycle-off: unicode('f18c'); -$ti-icon-refresh: unicode('eb13'); -$ti-icon-refresh-alert: unicode('ed57'); -$ti-icon-refresh-dot: unicode('efbf'); -$ti-icon-refresh-off: unicode('f18d'); -$ti-icon-registered: unicode('eb14'); -$ti-icon-relation-many-to-many: unicode('ed7f'); -$ti-icon-relation-one-to-many: unicode('ed80'); -$ti-icon-relation-one-to-one: unicode('ed81'); -$ti-icon-repeat: unicode('eb72'); -$ti-icon-repeat-off: unicode('f18e'); -$ti-icon-repeat-once: unicode('eb71'); -$ti-icon-replace: unicode('ebc7'); -$ti-icon-report: unicode('eece'); -$ti-icon-report-analytics: unicode('eecb'); -$ti-icon-report-medical: unicode('eecc'); -$ti-icon-report-money: unicode('eecd'); -$ti-icon-report-off: unicode('f18f'); -$ti-icon-report-search: unicode('ef84'); -$ti-icon-resize: unicode('eecf'); -$ti-icon-ripple: unicode('ed82'); -$ti-icon-ripple-off: unicode('f190'); -$ti-icon-road: unicode('f018'); -$ti-icon-road-off: unicode('f191'); -$ti-icon-road-sign: unicode('ecdd'); -$ti-icon-robot: unicode('f00b'); -$ti-icon-robot-off: unicode('f192'); -$ti-icon-rocket: unicode('ec45'); -$ti-icon-rocket-off: unicode('f193'); -$ti-icon-roller-skating: unicode('efd1'); -$ti-icon-rollercoaster: unicode('f0a2'); -$ti-icon-rotate: unicode('eb16'); -$ti-icon-rotate-2: unicode('ebb4'); -$ti-icon-rotate-360: unicode('ef85'); -$ti-icon-rotate-clockwise: unicode('eb15'); -$ti-icon-rotate-clockwise-2: unicode('ebb5'); -$ti-icon-rotate-dot: unicode('efe5'); -$ti-icon-rotate-rectangle: unicode('ec15'); -$ti-icon-route: unicode('eb17'); -$ti-icon-route-off: unicode('f194'); -$ti-icon-router: unicode('eb18'); -$ti-icon-row-insert-bottom: unicode('eed0'); -$ti-icon-row-insert-top: unicode('eed1'); -$ti-icon-rss: unicode('eb19'); -$ti-icon-ruler: unicode('eb1a'); -$ti-icon-ruler-2: unicode('eed2'); -$ti-icon-ruler-2-off: unicode('f195'); -$ti-icon-ruler-3: unicode('f290'); -$ti-icon-ruler-measure: unicode('f291'); -$ti-icon-ruler-off: unicode('f196'); -$ti-icon-run: unicode('ec82'); -$ti-icon-sailboat: unicode('ec83'); -$ti-icon-salt: unicode('ef16'); -$ti-icon-satellite: unicode('eed3'); -$ti-icon-satellite-off: unicode('f197'); -$ti-icon-sausage: unicode('ef17'); -$ti-icon-scale: unicode('ebc2'); -$ti-icon-scale-off: unicode('f198'); -$ti-icon-scale-outline: unicode('ef53'); -$ti-icon-scale-outline-off: unicode('f199'); -$ti-icon-scan: unicode('ebc8'); -$ti-icon-scan-eye: unicode('f1ff'); -$ti-icon-schema: unicode('f200'); -$ti-icon-school: unicode('ecf7'); -$ti-icon-school-off: unicode('f19a'); -$ti-icon-scissors: unicode('eb1b'); -$ti-icon-scissors-off: unicode('f19b'); -$ti-icon-scooter: unicode('ec6c'); -$ti-icon-scooter-electric: unicode('ecc1'); -$ti-icon-screen-share: unicode('ed18'); -$ti-icon-screen-share-off: unicode('ed17'); -$ti-icon-screenshot: unicode('f201'); -$ti-icon-scribble: unicode('f0a3'); -$ti-icon-script: unicode('f2da'); -$ti-icon-script-minus: unicode('f2d7'); -$ti-icon-script-plus: unicode('f2d8'); -$ti-icon-script-x: unicode('f2d9'); -$ti-icon-scuba-mask: unicode('eed4'); -$ti-icon-search: unicode('eb1c'); -$ti-icon-search-off: unicode('f19c'); -$ti-icon-section: unicode('eed5'); -$ti-icon-section-sign: unicode('f019'); -$ti-icon-seeding: unicode('ed51'); -$ti-icon-seeding-off: unicode('f19d'); -$ti-icon-select: unicode('ec9e'); -$ti-icon-selector: unicode('eb1d'); -$ti-icon-send: unicode('eb1e'); -$ti-icon-seo: unicode('f26b'); -$ti-icon-separator: unicode('ebda'); -$ti-icon-separator-horizontal: unicode('ec79'); -$ti-icon-separator-vertical: unicode('ec7a'); -$ti-icon-server: unicode('eb1f'); -$ti-icon-server-2: unicode('f07c'); -$ti-icon-server-off: unicode('f19e'); -$ti-icon-servicemark: unicode('ec09'); -$ti-icon-settings: unicode('eb20'); -$ti-icon-settings-automation: unicode('eed6'); -$ti-icon-settings-off: unicode('f19f'); -$ti-icon-shadow: unicode('eed8'); -$ti-icon-shadow-off: unicode('eed7'); -$ti-icon-shape: unicode('eb9c'); -$ti-icon-shape-2: unicode('eed9'); -$ti-icon-shape-3: unicode('eeda'); -$ti-icon-shape-off: unicode('f1a0'); -$ti-icon-share: unicode('eb21'); -$ti-icon-share-off: unicode('f1a1'); -$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-lock: unicode('ed58'); -$ti-icon-shield-off: unicode('ecf8'); -$ti-icon-shield-x: unicode('eb23'); -$ti-icon-ship: unicode('ec84'); -$ti-icon-shirt: unicode('ec0a'); -$ti-icon-shirt-off: unicode('f1a2'); -$ti-icon-shirt-sport: unicode('f26c'); -$ti-icon-shoe: unicode('efd2'); -$ti-icon-shoe-off: unicode('f1a4'); -$ti-icon-shopping-cart: unicode('eb25'); -$ti-icon-shopping-cart-discount: unicode('eedb'); -$ti-icon-shopping-cart-off: unicode('eedc'); -$ti-icon-shopping-cart-plus: unicode('eedd'); -$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-right: unicode('f06c'); -$ti-icon-signal-3g: unicode('f1ee'); -$ti-icon-signal-4g: unicode('f1ef'); -$ti-icon-signal-4g-plus: unicode('f259'); -$ti-icon-signal-5g: unicode('f1f0'); -$ti-icon-signature: unicode('eee0'); -$ti-icon-signature-off: unicode('f1a5'); -$ti-icon-sitemap: unicode('eb9d'); -$ti-icon-sitemap-off: unicode('f1a6'); -$ti-icon-skateboard: unicode('ecc2'); -$ti-icon-skull: unicode('f292'); -$ti-icon-sleigh: unicode('ef9c'); -$ti-icon-slice: unicode('ebdb'); -$ti-icon-slideshow: unicode('ebc9'); -$ti-icon-smart-home: unicode('ecde'); -$ti-icon-smart-home-off: unicode('f1a7'); -$ti-icon-smoking: unicode('ecc4'); -$ti-icon-smoking-no: unicode('ecc3'); -$ti-icon-snowflake: unicode('ec0b'); -$ti-icon-snowflake-off: unicode('f1a8'); -$ti-icon-snowman: unicode('f26d'); -$ti-icon-soccer-field: unicode('ed92'); -$ti-icon-social: unicode('ebec'); -$ti-icon-social-off: unicode('f1a9'); -$ti-icon-sock: unicode('eee1'); -$ti-icon-sofa: unicode('efaf'); -$ti-icon-sort-ascending: unicode('eb26'); -$ti-icon-sort-ascending-2: unicode('eee2'); -$ti-icon-sort-ascending-letters: unicode('ef18'); -$ti-icon-sort-ascending-numbers: unicode('ef19'); -$ti-icon-sort-descending: unicode('eb27'); -$ti-icon-sort-descending-2: unicode('eee3'); -$ti-icon-sort-descending-letters: unicode('ef1a'); -$ti-icon-sort-descending-numbers: unicode('ef1b'); -$ti-icon-sos: unicode('f24a'); -$ti-icon-soup: unicode('ef2e'); -$ti-icon-space: unicode('ec0c'); -$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-speakerphone: unicode('ed61'); -$ti-icon-speedboat: unicode('ed93'); -$ti-icon-spider: unicode('f293'); -$ti-icon-spiral: unicode('f294'); -$ti-icon-sport-billard: unicode('eee4'); -$ti-icon-spy: unicode('f227'); -$ti-icon-square: unicode('eb2c'); -$ti-icon-square-0: unicode('eee5'); -$ti-icon-square-1: unicode('eee6'); -$ti-icon-square-2: unicode('eee7'); -$ti-icon-square-3: unicode('eee8'); -$ti-icon-square-4: unicode('eee9'); -$ti-icon-square-5: unicode('eeea'); -$ti-icon-square-6: unicode('eeeb'); -$ti-icon-square-7: unicode('eeec'); -$ti-icon-square-8: unicode('eeed'); -$ti-icon-square-9: unicode('eeee'); -$ti-icon-square-asterisk: unicode('f01a'); -$ti-icon-square-check: unicode('eb28'); -$ti-icon-square-dot: unicode('ed59'); -$ti-icon-square-forbid: unicode('ed5b'); -$ti-icon-square-forbid-2: unicode('ed5a'); -$ti-icon-square-half: unicode('effb'); -$ti-icon-square-minus: unicode('eb29'); -$ti-icon-square-off: unicode('eeef'); -$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-forbid: unicode('f01c'); -$ti-icon-square-rotated-forbid-2: unicode('f01b'); -$ti-icon-square-rotated-off: unicode('eef2'); -$ti-icon-square-toggle: unicode('eef4'); -$ti-icon-square-toggle-horizontal: unicode('eef3'); -$ti-icon-square-x: unicode('eb2b'); -$ti-icon-squares-diagonal: unicode('eef5'); -$ti-icon-squares-filled: unicode('eef6'); -$ti-icon-stack: unicode('eb2d'); -$ti-icon-stack-2: unicode('eef7'); -$ti-icon-stack-3: unicode('ef9d'); -$ti-icon-stack-pop: unicode('f234'); -$ti-icon-stack-push: unicode('f235'); -$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-half: unicode('ed19'); -$ti-icon-star-off: unicode('ed62'); -$ti-icon-stars: unicode('ed38'); -$ti-icon-steam: unicode('f24b'); -$ti-icon-steering-wheel: unicode('ec7b'); -$ti-icon-step-into: unicode('ece0'); -$ti-icon-step-out: unicode('ece1'); -$ti-icon-stethoscope: unicode('edbe'); -$ti-icon-sticker: unicode('eb2f'); -$ti-icon-storm: unicode('f24c'); -$ti-icon-stretching: unicode('f2db'); -$ti-icon-strikethrough: unicode('eb9e'); -$ti-icon-submarine: unicode('ed94'); -$ti-icon-subscript: unicode('eb9f'); -$ti-icon-subtask: unicode('ec9f'); -$ti-icon-sum: unicode('eb73'); -$ti-icon-sum-off: unicode('f1ab'); -$ti-icon-sun: unicode('eb30'); -$ti-icon-sun-high: unicode('f236'); -$ti-icon-sun-low: unicode('f237'); -$ti-icon-sun-off: unicode('ed63'); -$ti-icon-sun-wind: unicode('f238'); -$ti-icon-sunglasses: unicode('f239'); -$ti-icon-sunrise: unicode('ef1c'); -$ti-icon-sunset: unicode('ec31'); -$ti-icon-sunset-2: unicode('f23a'); -$ti-icon-superscript: unicode('eba0'); -$ti-icon-svg: unicode('f25a'); -$ti-icon-swimming: unicode('ec92'); -$ti-icon-switch: unicode('eb33'); -$ti-icon-switch-2: unicode('edbf'); -$ti-icon-switch-3: unicode('edc0'); -$ti-icon-switch-horizontal: unicode('eb31'); -$ti-icon-switch-vertical: unicode('eb32'); -$ti-icon-sword: unicode('f030'); -$ti-icon-sword-off: unicode('f1ac'); -$ti-icon-swords: unicode('f132'); -$ti-icon-table: unicode('eba1'); -$ti-icon-table-alias: unicode('f25b'); -$ti-icon-table-export: unicode('eef8'); -$ti-icon-table-import: unicode('eef9'); -$ti-icon-table-off: unicode('eefa'); -$ti-icon-table-options: unicode('f25c'); -$ti-icon-table-shortcut: unicode('f25d'); -$ti-icon-tag: unicode('eb34'); -$ti-icon-tag-off: unicode('efc0'); -$ti-icon-tags: unicode('ef86'); -$ti-icon-tags-off: unicode('efc1'); -$ti-icon-tallymark-1: unicode('ec46'); -$ti-icon-tallymark-2: unicode('ec47'); -$ti-icon-tallymark-3: unicode('ec48'); -$ti-icon-tallymark-4: unicode('ec49'); -$ti-icon-tallymarks: unicode('ec4a'); -$ti-icon-tank: unicode('ed95'); -$ti-icon-target: unicode('eb35'); -$ti-icon-target-off: unicode('f1ad'); -$ti-icon-telescope: unicode('f07d'); -$ti-icon-telescope-off: unicode('f1ae'); -$ti-icon-temperature: unicode('eb38'); -$ti-icon-temperature-celsius: unicode('eb36'); -$ti-icon-temperature-fahrenheit: unicode('eb37'); -$ti-icon-temperature-minus: unicode('ebed'); -$ti-icon-temperature-off: unicode('f1af'); -$ti-icon-temperature-plus: unicode('ebee'); -$ti-icon-template: unicode('eb39'); -$ti-icon-template-off: unicode('f1b0'); -$ti-icon-tent: unicode('eefb'); -$ti-icon-terminal: unicode('ebdc'); -$ti-icon-terminal-2: unicode('ebef'); -$ti-icon-test-pipe: unicode('eb3a'); -$ti-icon-test-pipe-2: unicode('f0a4'); -$ti-icon-test-pipe-off: unicode('f1b1'); -$ti-icon-text-color: unicode('f2dc'); -$ti-icon-text-decrease: unicode('f202'); -$ti-icon-text-direction-ltr: unicode('eefc'); -$ti-icon-text-direction-rtl: unicode('eefd'); -$ti-icon-text-increase: unicode('f203'); -$ti-icon-text-orientation: unicode('f2a4'); -$ti-icon-text-plus: unicode('f2a5'); -$ti-icon-text-recognition: unicode('f204'); -$ti-icon-text-resize: unicode('ef87'); -$ti-icon-text-size: unicode('f2b1'); -$ti-icon-text-spellcheck: unicode('f2a6'); -$ti-icon-text-wrap: unicode('ebdd'); -$ti-icon-text-wrap-disabled: unicode('eca7'); -$ti-icon-thermometer: unicode('ef67'); -$ti-icon-thumb-down: unicode('eb3b'); -$ti-icon-thumb-up: unicode('eb3c'); -$ti-icon-ticket: unicode('eb3d'); -$ti-icon-ticket-off: unicode('f1b2'); -$ti-icon-tie: unicode('f07e'); -$ti-icon-tilt-shift: unicode('eefe'); -$ti-icon-tilt-shift-off: unicode('f1b3'); -$ti-icon-timeline: unicode('f031'); -$ti-icon-tir: unicode('ebf0'); -$ti-icon-toggle-left: unicode('eb3e'); -$ti-icon-toggle-right: unicode('eb3f'); -$ti-icon-toilet-paper: unicode('efd3'); -$ti-icon-toilet-paper-off: unicode('f1b4'); -$ti-icon-tool: unicode('eb40'); -$ti-icon-tools: unicode('ebca'); -$ti-icon-tools-kitchen: unicode('ed64'); -$ti-icon-tools-kitchen-2: unicode('eeff'); -$ti-icon-tools-kitchen-2-off: unicode('f1b5'); -$ti-icon-tools-kitchen-off: unicode('f1b6'); -$ti-icon-tools-off: unicode('f1b7'); -$ti-icon-tooltip: unicode('f2dd'); -$ti-icon-tornado: unicode('ece2'); -$ti-icon-tournament: unicode('ecd0'); -$ti-icon-tower: unicode('f2cb'); -$ti-icon-tower-off: unicode('f2ca'); -$ti-icon-track: unicode('ef00'); -$ti-icon-tractor: unicode('ec0d'); -$ti-icon-trademark: unicode('ec0e'); -$ti-icon-traffic-cone: unicode('ec0f'); -$ti-icon-traffic-cone-off: unicode('f1b8'); -$ti-icon-traffic-lights: unicode('ed39'); -$ti-icon-traffic-lights-off: unicode('f1b9'); -$ti-icon-train: unicode('ed96'); -$ti-icon-transfer-in: unicode('ef2f'); -$ti-icon-transfer-out: unicode('ef30'); -$ti-icon-transition-bottom: unicode('f2b2'); -$ti-icon-transition-left: unicode('f2b3'); -$ti-icon-transition-right: unicode('f2b4'); -$ti-icon-transition-top: unicode('f2b5'); -$ti-icon-trash: unicode('eb41'); -$ti-icon-trash-off: unicode('ed65'); -$ti-icon-trash-x: unicode('ef88'); -$ti-icon-tree: unicode('ef01'); -$ti-icon-trees: unicode('ec10'); -$ti-icon-trending-down: unicode('eb42'); -$ti-icon-trending-down-2: unicode('edc1'); -$ti-icon-trending-down-3: unicode('edc2'); -$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-inverted: unicode('f01d'); -$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-trophy: unicode('eb45'); -$ti-icon-truck: unicode('ebc4'); -$ti-icon-truck-delivery: unicode('ec4b'); -$ti-icon-truck-loading: unicode('f1da'); -$ti-icon-truck-off: unicode('ef03'); -$ti-icon-truck-return: unicode('ec4c'); -$ti-icon-typography: unicode('ebc5'); -$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-off: unicode('f1bb'); -$ti-icon-underline: unicode('eba2'); -$ti-icon-unlink: unicode('eb46'); -$ti-icon-upload: unicode('eb47'); -$ti-icon-urgent: unicode('eb48'); -$ti-icon-usb: unicode('f00c'); -$ti-icon-user: unicode('eb4d'); -$ti-icon-user-check: unicode('eb49'); -$ti-icon-user-circle: unicode('ef68'); -$ti-icon-user-exclamation: unicode('ec12'); -$ti-icon-user-minus: unicode('eb4a'); -$ti-icon-user-off: unicode('ecf9'); -$ti-icon-user-plus: unicode('eb4b'); -$ti-icon-user-search: unicode('ef89'); -$ti-icon-user-x: unicode('eb4c'); -$ti-icon-users: unicode('ebf2'); -$ti-icon-vaccine: unicode('ef04'); -$ti-icon-vaccine-bottle: unicode('ef69'); -$ti-icon-vaccine-off: unicode('f1bc'); -$ti-icon-variable: unicode('ef05'); -$ti-icon-variable-off: unicode('f1bd'); -$ti-icon-vector: unicode('eca9'); -$ti-icon-vector-bezier: unicode('ef1d'); -$ti-icon-vector-bezier-2: unicode('f1a3'); -$ti-icon-vector-off: unicode('f1be'); -$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-off: unicode('f1c0'); -$ti-icon-video: unicode('ed22'); -$ti-icon-video-minus: unicode('ed1f'); -$ti-icon-video-off: unicode('ed20'); -$ti-icon-video-plus: unicode('ed21'); -$ti-icon-view-360: unicode('ed84'); -$ti-icon-view-360-off: unicode('f1c1'); -$ti-icon-viewfinder: unicode('eb4e'); -$ti-icon-viewfinder-off: unicode('f1c2'); -$ti-icon-viewport-narrow: unicode('ebf3'); -$ti-icon-viewport-wide: unicode('ebf4'); -$ti-icon-vinyl: unicode('f00d'); -$ti-icon-virus: unicode('eb74'); -$ti-icon-virus-off: unicode('ed66'); -$ti-icon-virus-search: unicode('ed67'); -$ti-icon-vocabulary: unicode('ef1e'); -$ti-icon-volume: unicode('eb51'); -$ti-icon-volume-2: unicode('eb4f'); -$ti-icon-volume-3: unicode('eb50'); -$ti-icon-volume-off: unicode('f1c3'); -$ti-icon-walk: unicode('ec87'); -$ti-icon-wall: unicode('ef7a'); -$ti-icon-wallet: unicode('eb75'); -$ti-icon-wallet-off: unicode('f1c4'); -$ti-icon-wallpaper: unicode('ef56'); -$ti-icon-wallpaper-off: unicode('f1c5'); -$ti-icon-wand: unicode('ebcb'); -$ti-icon-wand-off: unicode('f1c6'); -$ti-icon-wash-machine: unicode('f25e'); -$ti-icon-wave-saw-tool: unicode('ecd3'); -$ti-icon-wave-sine: unicode('ecd4'); -$ti-icon-wave-square: unicode('ecd5'); -$ti-icon-webhook: unicode('f01e'); -$ti-icon-wheelchair: unicode('f1db'); -$ti-icon-wifi: unicode('eb52'); -$ti-icon-wifi-0: unicode('eba3'); -$ti-icon-wifi-1: unicode('eba4'); -$ti-icon-wifi-2: unicode('eba5'); -$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-off: unicode('f1c8'); -$ti-icon-window: unicode('ef06'); -$ti-icon-window-maximize: unicode('f1f1'); -$ti-icon-window-minimize: unicode('f1f2'); -$ti-icon-window-off: unicode('f1c9'); -$ti-icon-windsock: unicode('f06d'); -$ti-icon-wiper: unicode('ecab'); -$ti-icon-wiper-wash: unicode('ecaa'); -$ti-icon-woman: unicode('eb53'); -$ti-icon-world: unicode('eb54'); -$ti-icon-world-download: unicode('ef8a'); -$ti-icon-world-latitude: unicode('ed2e'); -$ti-icon-world-longitude: unicode('ed2f'); -$ti-icon-world-off: unicode('f1ca'); -$ti-icon-world-upload: unicode('ef8b'); -$ti-icon-wrecking-ball: unicode('ed97'); -$ti-icon-writing: unicode('ef08'); -$ti-icon-writing-off: unicode('f1cb'); -$ti-icon-writing-sign: unicode('ef07'); -$ti-icon-writing-sign-off: unicode('f1cc'); -$ti-icon-x: unicode('eb55'); -$ti-icon-xbox-a: unicode('f2b6'); -$ti-icon-xbox-b: unicode('f2b7'); -$ti-icon-xbox-x: unicode('f2b8'); -$ti-icon-xbox-y: unicode('f2b9'); -$ti-icon-yin-yang: unicode('ec35'); -$ti-icon-yoga: unicode('f01f'); -$ti-icon-zeppelin: unicode('f270'); -$ti-icon-zodiac-aquarius: unicode('ecac'); -$ti-icon-zodiac-aries: unicode('ecad'); -$ti-icon-zodiac-cancer: unicode('ecae'); -$ti-icon-zodiac-capricorn: unicode('ecaf'); -$ti-icon-zodiac-gemini: unicode('ecb0'); -$ti-icon-zodiac-leo: unicode('ecb1'); -$ti-icon-zodiac-libra: unicode('ecb2'); -$ti-icon-zodiac-pisces: unicode('ecb3'); -$ti-icon-zodiac-sagittarius: unicode('ecb4'); -$ti-icon-zodiac-scorpio: unicode('ecb5'); -$ti-icon-zodiac-taurus: unicode('ecb6'); -$ti-icon-zodiac-virgo: unicode('ecb7'); -$ti-icon-zoom-cancel: unicode('ec4d'); -$ti-icon-zoom-check: unicode('ef09'); -$ti-icon-zoom-code: unicode('f07f'); -$ti-icon-zoom-exclamation: unicode('f080'); -$ti-icon-zoom-in: unicode('eb56'); -$ti-icon-zoom-in-area: unicode('f1dc'); -$ti-icon-zoom-money: unicode('ef0a'); -$ti-icon-zoom-out: unicode('eb57'); -$ti-icon-zoom-out-area: unicode('f1dd'); -$ti-icon-zoom-pan: unicode('f1de'); -$ti-icon-zoom-question: unicode('edeb'); -$ti-icon-zoom-replace: unicode('f2a7'); -$ti-icon-zoom-reset: unicode('f295'); -$ti-icon-zzz: unicode('f228'); - - -.#{$ti-prefix}-2fa:before { content: $ti-icon-2fa; } -.#{$ti-prefix}-3d-cube-sphere:before { content: $ti-icon-3d-cube-sphere; } -.#{$ti-prefix}-3d-rotate:before { content: $ti-icon-3d-rotate; } -.#{$ti-prefix}-a-b:before { content: $ti-icon-a-b; } -.#{$ti-prefix}-a-b-2:before { content: $ti-icon-a-b-2; } -.#{$ti-prefix}-a-b-off:before { content: $ti-icon-a-b-off; } -.#{$ti-prefix}-abacus:before { content: $ti-icon-abacus; } -.#{$ti-prefix}-access-point:before { content: $ti-icon-access-point; } -.#{$ti-prefix}-access-point-off:before { content: $ti-icon-access-point-off; } -.#{$ti-prefix}-accessible:before { content: $ti-icon-accessible; } -.#{$ti-prefix}-accessible-off:before { content: $ti-icon-accessible-off; } -.#{$ti-prefix}-activity:before { content: $ti-icon-activity; } -.#{$ti-prefix}-activity-heartbeat:before { content: $ti-icon-activity-heartbeat; } -.#{$ti-prefix}-ad:before { content: $ti-icon-ad; } -.#{$ti-prefix}-ad-2:before { content: $ti-icon-ad-2; } -.#{$ti-prefix}-address-book:before { content: $ti-icon-address-book; } -.#{$ti-prefix}-adjustments:before { content: $ti-icon-adjustments; } -.#{$ti-prefix}-adjustments-alt:before { content: $ti-icon-adjustments-alt; } -.#{$ti-prefix}-adjustments-horizontal:before { content: $ti-icon-adjustments-horizontal; } -.#{$ti-prefix}-adjustments-off:before { content: $ti-icon-adjustments-off; } -.#{$ti-prefix}-aerial-lift:before { content: $ti-icon-aerial-lift; } -.#{$ti-prefix}-affiliate:before { content: $ti-icon-affiliate; } -.#{$ti-prefix}-alarm:before { content: $ti-icon-alarm; } -.#{$ti-prefix}-alarm-off:before { content: $ti-icon-alarm-off; } -.#{$ti-prefix}-album:before { content: $ti-icon-album; } -.#{$ti-prefix}-alert-circle:before { content: $ti-icon-alert-circle; } -.#{$ti-prefix}-alert-octagon:before { content: $ti-icon-alert-octagon; } -.#{$ti-prefix}-alert-triangle:before { content: $ti-icon-alert-triangle; } -.#{$ti-prefix}-alien:before { content: $ti-icon-alien; } -.#{$ti-prefix}-align-center:before { content: $ti-icon-align-center; } -.#{$ti-prefix}-align-justified:before { content: $ti-icon-align-justified; } -.#{$ti-prefix}-align-left:before { content: $ti-icon-align-left; } -.#{$ti-prefix}-align-right:before { content: $ti-icon-align-right; } -.#{$ti-prefix}-alphabet-cyrillic:before { content: $ti-icon-alphabet-cyrillic; } -.#{$ti-prefix}-alphabet-greek:before { content: $ti-icon-alphabet-greek; } -.#{$ti-prefix}-alphabet-latin:before { content: $ti-icon-alphabet-latin; } -.#{$ti-prefix}-ambulance:before { content: $ti-icon-ambulance; } -.#{$ti-prefix}-ampersand:before { content: $ti-icon-ampersand; } -.#{$ti-prefix}-anchor:before { content: $ti-icon-anchor; } -.#{$ti-prefix}-anchor-off:before { content: $ti-icon-anchor-off; } -.#{$ti-prefix}-angle:before { content: $ti-icon-angle; } -.#{$ti-prefix}-ankh:before { content: $ti-icon-ankh; } -.#{$ti-prefix}-antenna:before { content: $ti-icon-antenna; } -.#{$ti-prefix}-antenna-bars-1:before { content: $ti-icon-antenna-bars-1; } -.#{$ti-prefix}-antenna-bars-2:before { content: $ti-icon-antenna-bars-2; } -.#{$ti-prefix}-antenna-bars-3:before { content: $ti-icon-antenna-bars-3; } -.#{$ti-prefix}-antenna-bars-4:before { content: $ti-icon-antenna-bars-4; } -.#{$ti-prefix}-antenna-bars-5:before { content: $ti-icon-antenna-bars-5; } -.#{$ti-prefix}-antenna-bars-off:before { content: $ti-icon-antenna-bars-off; } -.#{$ti-prefix}-aperture:before { content: $ti-icon-aperture; } -.#{$ti-prefix}-api:before { content: $ti-icon-api; } -.#{$ti-prefix}-api-app:before { content: $ti-icon-api-app; } -.#{$ti-prefix}-api-app-off:before { content: $ti-icon-api-app-off; } -.#{$ti-prefix}-api-off:before { content: $ti-icon-api-off; } -.#{$ti-prefix}-app-window:before { content: $ti-icon-app-window; } -.#{$ti-prefix}-apple:before { content: $ti-icon-apple; } -.#{$ti-prefix}-apps:before { content: $ti-icon-apps; } -.#{$ti-prefix}-apps-off:before { content: $ti-icon-apps-off; } -.#{$ti-prefix}-archive:before { content: $ti-icon-archive; } -.#{$ti-prefix}-archive-off:before { content: $ti-icon-archive-off; } -.#{$ti-prefix}-armchair:before { content: $ti-icon-armchair; } -.#{$ti-prefix}-armchair-2:before { content: $ti-icon-armchair-2; } -.#{$ti-prefix}-arrow-autofit-content:before { content: $ti-icon-arrow-autofit-content; } -.#{$ti-prefix}-arrow-autofit-down:before { content: $ti-icon-arrow-autofit-down; } -.#{$ti-prefix}-arrow-autofit-height:before { content: $ti-icon-arrow-autofit-height; } -.#{$ti-prefix}-arrow-autofit-left:before { content: $ti-icon-arrow-autofit-left; } -.#{$ti-prefix}-arrow-autofit-right:before { content: $ti-icon-arrow-autofit-right; } -.#{$ti-prefix}-arrow-autofit-up:before { content: $ti-icon-arrow-autofit-up; } -.#{$ti-prefix}-arrow-autofit-width:before { content: $ti-icon-arrow-autofit-width; } -.#{$ti-prefix}-arrow-back:before { content: $ti-icon-arrow-back; } -.#{$ti-prefix}-arrow-back-up:before { content: $ti-icon-arrow-back-up; } -.#{$ti-prefix}-arrow-bar-down:before { content: $ti-icon-arrow-bar-down; } -.#{$ti-prefix}-arrow-bar-left:before { content: $ti-icon-arrow-bar-left; } -.#{$ti-prefix}-arrow-bar-right:before { content: $ti-icon-arrow-bar-right; } -.#{$ti-prefix}-arrow-bar-to-down:before { content: $ti-icon-arrow-bar-to-down; } -.#{$ti-prefix}-arrow-bar-to-left:before { content: $ti-icon-arrow-bar-to-left; } -.#{$ti-prefix}-arrow-bar-to-right:before { content: $ti-icon-arrow-bar-to-right; } -.#{$ti-prefix}-arrow-bar-to-up:before { content: $ti-icon-arrow-bar-to-up; } -.#{$ti-prefix}-arrow-bar-up:before { content: $ti-icon-arrow-bar-up; } -.#{$ti-prefix}-arrow-bear-left:before { content: $ti-icon-arrow-bear-left; } -.#{$ti-prefix}-arrow-bear-left-2:before { content: $ti-icon-arrow-bear-left-2; } -.#{$ti-prefix}-arrow-bear-right:before { content: $ti-icon-arrow-bear-right; } -.#{$ti-prefix}-arrow-bear-right-2:before { content: $ti-icon-arrow-bear-right-2; } -.#{$ti-prefix}-arrow-big-down:before { content: $ti-icon-arrow-big-down; } -.#{$ti-prefix}-arrow-big-down-line:before { content: $ti-icon-arrow-big-down-line; } -.#{$ti-prefix}-arrow-big-down-lines:before { content: $ti-icon-arrow-big-down-lines; } -.#{$ti-prefix}-arrow-big-left:before { content: $ti-icon-arrow-big-left; } -.#{$ti-prefix}-arrow-big-left-line:before { content: $ti-icon-arrow-big-left-line; } -.#{$ti-prefix}-arrow-big-left-lines:before { content: $ti-icon-arrow-big-left-lines; } -.#{$ti-prefix}-arrow-big-right:before { content: $ti-icon-arrow-big-right; } -.#{$ti-prefix}-arrow-big-right-line:before { content: $ti-icon-arrow-big-right-line; } -.#{$ti-prefix}-arrow-big-right-lines:before { content: $ti-icon-arrow-big-right-lines; } -.#{$ti-prefix}-arrow-big-top:before { content: $ti-icon-arrow-big-top; } -.#{$ti-prefix}-arrow-big-up-line:before { content: $ti-icon-arrow-big-up-line; } -.#{$ti-prefix}-arrow-big-up-lines:before { content: $ti-icon-arrow-big-up-lines; } -.#{$ti-prefix}-arrow-bottom-bar:before { content: $ti-icon-arrow-bottom-bar; } -.#{$ti-prefix}-arrow-bottom-circle:before { content: $ti-icon-arrow-bottom-circle; } -.#{$ti-prefix}-arrow-bottom-square:before { content: $ti-icon-arrow-bottom-square; } -.#{$ti-prefix}-arrow-bottom-tail:before { content: $ti-icon-arrow-bottom-tail; } -.#{$ti-prefix}-arrow-curve-left:before { content: $ti-icon-arrow-curve-left; } -.#{$ti-prefix}-arrow-curve-right:before { content: $ti-icon-arrow-curve-right; } -.#{$ti-prefix}-arrow-down:before { content: $ti-icon-arrow-down; } -.#{$ti-prefix}-arrow-down-circle:before { content: $ti-icon-arrow-down-circle; } -.#{$ti-prefix}-arrow-down-left:before { content: $ti-icon-arrow-down-left; } -.#{$ti-prefix}-arrow-down-left-circle:before { content: $ti-icon-arrow-down-left-circle; } -.#{$ti-prefix}-arrow-down-right:before { content: $ti-icon-arrow-down-right; } -.#{$ti-prefix}-arrow-down-right-circle:before { content: $ti-icon-arrow-down-right-circle; } -.#{$ti-prefix}-arrow-fork:before { content: $ti-icon-arrow-fork; } -.#{$ti-prefix}-arrow-forward:before { content: $ti-icon-arrow-forward; } -.#{$ti-prefix}-arrow-forward-up:before { content: $ti-icon-arrow-forward-up; } -.#{$ti-prefix}-arrow-guide:before { content: $ti-icon-arrow-guide; } -.#{$ti-prefix}-arrow-left:before { content: $ti-icon-arrow-left; } -.#{$ti-prefix}-arrow-left-bar:before { content: $ti-icon-arrow-left-bar; } -.#{$ti-prefix}-arrow-left-circle:before { content: $ti-icon-arrow-left-circle; } -.#{$ti-prefix}-arrow-left-right:before { content: $ti-icon-arrow-left-right; } -.#{$ti-prefix}-arrow-left-square:before { content: $ti-icon-arrow-left-square; } -.#{$ti-prefix}-arrow-left-tail:before { content: $ti-icon-arrow-left-tail; } -.#{$ti-prefix}-arrow-loop-left:before { content: $ti-icon-arrow-loop-left; } -.#{$ti-prefix}-arrow-loop-left-2:before { content: $ti-icon-arrow-loop-left-2; } -.#{$ti-prefix}-arrow-loop-right:before { content: $ti-icon-arrow-loop-right; } -.#{$ti-prefix}-arrow-loop-right-2:before { content: $ti-icon-arrow-loop-right-2; } -.#{$ti-prefix}-arrow-merge:before { content: $ti-icon-arrow-merge; } -.#{$ti-prefix}-arrow-merge-both:before { content: $ti-icon-arrow-merge-both; } -.#{$ti-prefix}-arrow-merge-left:before { content: $ti-icon-arrow-merge-left; } -.#{$ti-prefix}-arrow-merge-right:before { content: $ti-icon-arrow-merge-right; } -.#{$ti-prefix}-arrow-move-down:before { content: $ti-icon-arrow-move-down; } -.#{$ti-prefix}-arrow-move-left:before { content: $ti-icon-arrow-move-left; } -.#{$ti-prefix}-arrow-move-right:before { content: $ti-icon-arrow-move-right; } -.#{$ti-prefix}-arrow-move-up:before { content: $ti-icon-arrow-move-up; } -.#{$ti-prefix}-arrow-narrow-down:before { content: $ti-icon-arrow-narrow-down; } -.#{$ti-prefix}-arrow-narrow-left:before { content: $ti-icon-arrow-narrow-left; } -.#{$ti-prefix}-arrow-narrow-right:before { content: $ti-icon-arrow-narrow-right; } -.#{$ti-prefix}-arrow-narrow-up:before { content: $ti-icon-arrow-narrow-up; } -.#{$ti-prefix}-arrow-ramp-left:before { content: $ti-icon-arrow-ramp-left; } -.#{$ti-prefix}-arrow-ramp-left-2:before { content: $ti-icon-arrow-ramp-left-2; } -.#{$ti-prefix}-arrow-ramp-left-3:before { content: $ti-icon-arrow-ramp-left-3; } -.#{$ti-prefix}-arrow-ramp-right:before { content: $ti-icon-arrow-ramp-right; } -.#{$ti-prefix}-arrow-ramp-right-2:before { content: $ti-icon-arrow-ramp-right-2; } -.#{$ti-prefix}-arrow-ramp-right-3:before { content: $ti-icon-arrow-ramp-right-3; } -.#{$ti-prefix}-arrow-right:before { content: $ti-icon-arrow-right; } -.#{$ti-prefix}-arrow-right-bar:before { content: $ti-icon-arrow-right-bar; } -.#{$ti-prefix}-arrow-right-circle:before { content: $ti-icon-arrow-right-circle; } -.#{$ti-prefix}-arrow-right-square:before { content: $ti-icon-arrow-right-square; } -.#{$ti-prefix}-arrow-right-tail:before { content: $ti-icon-arrow-right-tail; } -.#{$ti-prefix}-arrow-rotary-first-left:before { content: $ti-icon-arrow-rotary-first-left; } -.#{$ti-prefix}-arrow-rotary-first-right:before { content: $ti-icon-arrow-rotary-first-right; } -.#{$ti-prefix}-arrow-rotary-last-left:before { content: $ti-icon-arrow-rotary-last-left; } -.#{$ti-prefix}-arrow-rotary-last-right:before { content: $ti-icon-arrow-rotary-last-right; } -.#{$ti-prefix}-arrow-rotary-left:before { content: $ti-icon-arrow-rotary-left; } -.#{$ti-prefix}-arrow-rotary-right:before { content: $ti-icon-arrow-rotary-right; } -.#{$ti-prefix}-arrow-rotary-straight:before { content: $ti-icon-arrow-rotary-straight; } -.#{$ti-prefix}-arrow-roundabout-left:before { content: $ti-icon-arrow-roundabout-left; } -.#{$ti-prefix}-arrow-roundabout-right:before { content: $ti-icon-arrow-roundabout-right; } -.#{$ti-prefix}-arrow-sharp-turn-left:before { content: $ti-icon-arrow-sharp-turn-left; } -.#{$ti-prefix}-arrow-sharp-turn-right:before { content: $ti-icon-arrow-sharp-turn-right; } -.#{$ti-prefix}-arrow-top-bar:before { content: $ti-icon-arrow-top-bar; } -.#{$ti-prefix}-arrow-top-circle:before { content: $ti-icon-arrow-top-circle; } -.#{$ti-prefix}-arrow-top-square:before { content: $ti-icon-arrow-top-square; } -.#{$ti-prefix}-arrow-top-tail:before { content: $ti-icon-arrow-top-tail; } -.#{$ti-prefix}-arrow-up:before { content: $ti-icon-arrow-up; } -.#{$ti-prefix}-arrow-up-circle:before { content: $ti-icon-arrow-up-circle; } -.#{$ti-prefix}-arrow-up-left:before { content: $ti-icon-arrow-up-left; } -.#{$ti-prefix}-arrow-up-left-circle:before { content: $ti-icon-arrow-up-left-circle; } -.#{$ti-prefix}-arrow-up-right:before { content: $ti-icon-arrow-up-right; } -.#{$ti-prefix}-arrow-up-right-circle:before { content: $ti-icon-arrow-up-right-circle; } -.#{$ti-prefix}-arrow-wave-left-down:before { content: $ti-icon-arrow-wave-left-down; } -.#{$ti-prefix}-arrow-wave-left-up:before { content: $ti-icon-arrow-wave-left-up; } -.#{$ti-prefix}-arrow-wave-right-down:before { content: $ti-icon-arrow-wave-right-down; } -.#{$ti-prefix}-arrow-wave-right-up:before { content: $ti-icon-arrow-wave-right-up; } -.#{$ti-prefix}-arrows-cross:before { content: $ti-icon-arrows-cross; } -.#{$ti-prefix}-arrows-diagonal:before { content: $ti-icon-arrows-diagonal; } -.#{$ti-prefix}-arrows-diagonal-2:before { content: $ti-icon-arrows-diagonal-2; } -.#{$ti-prefix}-arrows-diagonal-minimize:before { content: $ti-icon-arrows-diagonal-minimize; } -.#{$ti-prefix}-arrows-diagonal-minimize-2:before { content: $ti-icon-arrows-diagonal-minimize-2; } -.#{$ti-prefix}-arrows-diff:before { content: $ti-icon-arrows-diff; } -.#{$ti-prefix}-arrows-double-ne-sw:before { content: $ti-icon-arrows-double-ne-sw; } -.#{$ti-prefix}-arrows-double-nw-se:before { content: $ti-icon-arrows-double-nw-se; } -.#{$ti-prefix}-arrows-double-se-nw:before { content: $ti-icon-arrows-double-se-nw; } -.#{$ti-prefix}-arrows-double-sw-ne:before { content: $ti-icon-arrows-double-sw-ne; } -.#{$ti-prefix}-arrows-down:before { content: $ti-icon-arrows-down; } -.#{$ti-prefix}-arrows-down-up:before { content: $ti-icon-arrows-down-up; } -.#{$ti-prefix}-arrows-exchange:before { content: $ti-icon-arrows-exchange; } -.#{$ti-prefix}-arrows-exchange-2:before { content: $ti-icon-arrows-exchange-2; } -.#{$ti-prefix}-arrows-horizontal:before { content: $ti-icon-arrows-horizontal; } -.#{$ti-prefix}-arrows-join:before { content: $ti-icon-arrows-join; } -.#{$ti-prefix}-arrows-join-2:before { content: $ti-icon-arrows-join-2; } -.#{$ti-prefix}-arrows-left:before { content: $ti-icon-arrows-left; } -.#{$ti-prefix}-arrows-left-down:before { content: $ti-icon-arrows-left-down; } -.#{$ti-prefix}-arrows-left-right:before { content: $ti-icon-arrows-left-right; } -.#{$ti-prefix}-arrows-maximize:before { content: $ti-icon-arrows-maximize; } -.#{$ti-prefix}-arrows-minimize:before { content: $ti-icon-arrows-minimize; } -.#{$ti-prefix}-arrows-move:before { content: $ti-icon-arrows-move; } -.#{$ti-prefix}-arrows-move-horizontal:before { content: $ti-icon-arrows-move-horizontal; } -.#{$ti-prefix}-arrows-move-vertical:before { content: $ti-icon-arrows-move-vertical; } -.#{$ti-prefix}-arrows-random:before { content: $ti-icon-arrows-random; } -.#{$ti-prefix}-arrows-right:before { content: $ti-icon-arrows-right; } -.#{$ti-prefix}-arrows-right-down:before { content: $ti-icon-arrows-right-down; } -.#{$ti-prefix}-arrows-right-left:before { content: $ti-icon-arrows-right-left; } -.#{$ti-prefix}-arrows-shuffle:before { content: $ti-icon-arrows-shuffle; } -.#{$ti-prefix}-arrows-shuffle-2:before { content: $ti-icon-arrows-shuffle-2; } -.#{$ti-prefix}-arrows-sort:before { content: $ti-icon-arrows-sort; } -.#{$ti-prefix}-arrows-split:before { content: $ti-icon-arrows-split; } -.#{$ti-prefix}-arrows-split-2:before { content: $ti-icon-arrows-split-2; } -.#{$ti-prefix}-arrows-transfer-down:before { content: $ti-icon-arrows-transfer-down; } -.#{$ti-prefix}-arrows-transfer-up:before { content: $ti-icon-arrows-transfer-up; } -.#{$ti-prefix}-arrows-up:before { content: $ti-icon-arrows-up; } -.#{$ti-prefix}-arrows-up-down:before { content: $ti-icon-arrows-up-down; } -.#{$ti-prefix}-arrows-up-left:before { content: $ti-icon-arrows-up-left; } -.#{$ti-prefix}-arrows-up-right:before { content: $ti-icon-arrows-up-right; } -.#{$ti-prefix}-arrows-vertical:before { content: $ti-icon-arrows-vertical; } -.#{$ti-prefix}-artboard:before { content: $ti-icon-artboard; } -.#{$ti-prefix}-artboard-off:before { content: $ti-icon-artboard-off; } -.#{$ti-prefix}-article:before { content: $ti-icon-article; } -.#{$ti-prefix}-aspect-ratio:before { content: $ti-icon-aspect-ratio; } -.#{$ti-prefix}-aspect-ratio-off:before { content: $ti-icon-aspect-ratio-off; } -.#{$ti-prefix}-assembly:before { content: $ti-icon-assembly; } -.#{$ti-prefix}-asset:before { content: $ti-icon-asset; } -.#{$ti-prefix}-asterisk:before { content: $ti-icon-asterisk; } -.#{$ti-prefix}-asterisk-simple:before { content: $ti-icon-asterisk-simple; } -.#{$ti-prefix}-at:before { content: $ti-icon-at; } -.#{$ti-prefix}-at-off:before { content: $ti-icon-at-off; } -.#{$ti-prefix}-atom:before { content: $ti-icon-atom; } -.#{$ti-prefix}-atom-2:before { content: $ti-icon-atom-2; } -.#{$ti-prefix}-atom-off:before { content: $ti-icon-atom-off; } -.#{$ti-prefix}-augmented-reality:before { content: $ti-icon-augmented-reality; } -.#{$ti-prefix}-award:before { content: $ti-icon-award; } -.#{$ti-prefix}-award-off:before { content: $ti-icon-award-off; } -.#{$ti-prefix}-axe:before { content: $ti-icon-axe; } -.#{$ti-prefix}-axis-x:before { content: $ti-icon-axis-x; } -.#{$ti-prefix}-axis-y:before { content: $ti-icon-axis-y; } -.#{$ti-prefix}-baby-carriage:before { content: $ti-icon-baby-carriage; } -.#{$ti-prefix}-backhoe:before { content: $ti-icon-backhoe; } -.#{$ti-prefix}-backpack:before { content: $ti-icon-backpack; } -.#{$ti-prefix}-backspace:before { content: $ti-icon-backspace; } -.#{$ti-prefix}-badge:before { content: $ti-icon-badge; } -.#{$ti-prefix}-badge-off:before { content: $ti-icon-badge-off; } -.#{$ti-prefix}-badges:before { content: $ti-icon-badges; } -.#{$ti-prefix}-badges-off:before { content: $ti-icon-badges-off; } -.#{$ti-prefix}-ball-american-football:before { content: $ti-icon-ball-american-football; } -.#{$ti-prefix}-ball-baseball:before { content: $ti-icon-ball-baseball; } -.#{$ti-prefix}-ball-basketball:before { content: $ti-icon-ball-basketball; } -.#{$ti-prefix}-ball-bowling:before { content: $ti-icon-ball-bowling; } -.#{$ti-prefix}-ball-football:before { content: $ti-icon-ball-football; } -.#{$ti-prefix}-ball-football-off:before { content: $ti-icon-ball-football-off; } -.#{$ti-prefix}-ball-tennis:before { content: $ti-icon-ball-tennis; } -.#{$ti-prefix}-ball-volleyball:before { content: $ti-icon-ball-volleyball; } -.#{$ti-prefix}-ballon:before { content: $ti-icon-ballon; } -.#{$ti-prefix}-ballon-off:before { content: $ti-icon-ballon-off; } -.#{$ti-prefix}-ballpen:before { content: $ti-icon-ballpen; } -.#{$ti-prefix}-ballpen-off:before { content: $ti-icon-ballpen-off; } -.#{$ti-prefix}-ban:before { content: $ti-icon-ban; } -.#{$ti-prefix}-bandage:before { content: $ti-icon-bandage; } -.#{$ti-prefix}-barbell:before { content: $ti-icon-barbell; } -.#{$ti-prefix}-barbell-off:before { content: $ti-icon-barbell-off; } -.#{$ti-prefix}-barcode:before { content: $ti-icon-barcode; } -.#{$ti-prefix}-barcode-off:before { content: $ti-icon-barcode-off; } -.#{$ti-prefix}-barrel:before { content: $ti-icon-barrel; } -.#{$ti-prefix}-barrel-off:before { content: $ti-icon-barrel-off; } -.#{$ti-prefix}-barrier-block:before { content: $ti-icon-barrier-block; } -.#{$ti-prefix}-barrier-block-off:before { content: $ti-icon-barrier-block-off; } -.#{$ti-prefix}-baseline:before { content: $ti-icon-baseline; } -.#{$ti-prefix}-basket:before { content: $ti-icon-basket; } -.#{$ti-prefix}-basket-off:before { content: $ti-icon-basket-off; } -.#{$ti-prefix}-bat:before { content: $ti-icon-bat; } -.#{$ti-prefix}-bath:before { content: $ti-icon-bath; } -.#{$ti-prefix}-bath-off:before { content: $ti-icon-bath-off; } -.#{$ti-prefix}-battery:before { content: $ti-icon-battery; } -.#{$ti-prefix}-battery-1:before { content: $ti-icon-battery-1; } -.#{$ti-prefix}-battery-2:before { content: $ti-icon-battery-2; } -.#{$ti-prefix}-battery-3:before { content: $ti-icon-battery-3; } -.#{$ti-prefix}-battery-4:before { content: $ti-icon-battery-4; } -.#{$ti-prefix}-battery-automotive:before { content: $ti-icon-battery-automotive; } -.#{$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-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; } -.#{$ti-prefix}-bed:before { content: $ti-icon-bed; } -.#{$ti-prefix}-bed-off:before { content: $ti-icon-bed-off; } -.#{$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-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; } -.#{$ti-prefix}-bell-ringing:before { content: $ti-icon-bell-ringing; } -.#{$ti-prefix}-bell-ringing-2:before { content: $ti-icon-bell-ringing-2; } -.#{$ti-prefix}-bell-school:before { content: $ti-icon-bell-school; } -.#{$ti-prefix}-bell-x:before { content: $ti-icon-bell-x; } -.#{$ti-prefix}-bell-z:before { content: $ti-icon-bell-z; } -.#{$ti-prefix}-bible:before { content: $ti-icon-bible; } -.#{$ti-prefix}-bike:before { content: $ti-icon-bike; } -.#{$ti-prefix}-bike-off:before { content: $ti-icon-bike-off; } -.#{$ti-prefix}-binary:before { content: $ti-icon-binary; } -.#{$ti-prefix}-biohazard:before { content: $ti-icon-biohazard; } -.#{$ti-prefix}-biohazard-off:before { content: $ti-icon-biohazard-off; } -.#{$ti-prefix}-blockquote:before { content: $ti-icon-blockquote; } -.#{$ti-prefix}-bluetooth:before { content: $ti-icon-bluetooth; } -.#{$ti-prefix}-bluetooth-connected:before { content: $ti-icon-bluetooth-connected; } -.#{$ti-prefix}-bluetooth-off:before { content: $ti-icon-bluetooth-off; } -.#{$ti-prefix}-bluetooth-x:before { content: $ti-icon-bluetooth-x; } -.#{$ti-prefix}-blur:before { content: $ti-icon-blur; } -.#{$ti-prefix}-bold:before { content: $ti-icon-bold; } -.#{$ti-prefix}-bold-off:before { content: $ti-icon-bold-off; } -.#{$ti-prefix}-bolt:before { content: $ti-icon-bolt; } -.#{$ti-prefix}-bolt-off:before { content: $ti-icon-bolt-off; } -.#{$ti-prefix}-bone:before { content: $ti-icon-bone; } -.#{$ti-prefix}-bone-off:before { content: $ti-icon-bone-off; } -.#{$ti-prefix}-book:before { content: $ti-icon-book; } -.#{$ti-prefix}-book-2:before { content: $ti-icon-book-2; } -.#{$ti-prefix}-book-download:before { content: $ti-icon-book-download; } -.#{$ti-prefix}-book-off:before { content: $ti-icon-book-off; } -.#{$ti-prefix}-book-upload:before { content: $ti-icon-book-upload; } -.#{$ti-prefix}-bookmark:before { content: $ti-icon-bookmark; } -.#{$ti-prefix}-bookmark-off:before { content: $ti-icon-bookmark-off; } -.#{$ti-prefix}-bookmarks:before { content: $ti-icon-bookmarks; } -.#{$ti-prefix}-bookmarks-off:before { content: $ti-icon-bookmarks-off; } -.#{$ti-prefix}-books:before { content: $ti-icon-books; } -.#{$ti-prefix}-books-off:before { content: $ti-icon-books-off; } -.#{$ti-prefix}-border-all:before { content: $ti-icon-border-all; } -.#{$ti-prefix}-border-bottom:before { content: $ti-icon-border-bottom; } -.#{$ti-prefix}-border-horizontal:before { content: $ti-icon-border-horizontal; } -.#{$ti-prefix}-border-inner:before { content: $ti-icon-border-inner; } -.#{$ti-prefix}-border-left:before { content: $ti-icon-border-left; } -.#{$ti-prefix}-border-none:before { content: $ti-icon-border-none; } -.#{$ti-prefix}-border-outer:before { content: $ti-icon-border-outer; } -.#{$ti-prefix}-border-radius:before { content: $ti-icon-border-radius; } -.#{$ti-prefix}-border-right:before { content: $ti-icon-border-right; } -.#{$ti-prefix}-border-style:before { content: $ti-icon-border-style; } -.#{$ti-prefix}-border-style-2:before { content: $ti-icon-border-style-2; } -.#{$ti-prefix}-border-top:before { content: $ti-icon-border-top; } -.#{$ti-prefix}-border-vertical:before { content: $ti-icon-border-vertical; } -.#{$ti-prefix}-bottle:before { content: $ti-icon-bottle; } -.#{$ti-prefix}-bow:before { content: $ti-icon-bow; } -.#{$ti-prefix}-box:before { content: $ti-icon-box; } -.#{$ti-prefix}-box-align-bottom:before { content: $ti-icon-box-align-bottom; } -.#{$ti-prefix}-box-align-bottom-left:before { content: $ti-icon-box-align-bottom-left; } -.#{$ti-prefix}-box-align-bottom-right:before { content: $ti-icon-box-align-bottom-right; } -.#{$ti-prefix}-box-align-left:before { content: $ti-icon-box-align-left; } -.#{$ti-prefix}-box-align-right:before { content: $ti-icon-box-align-right; } -.#{$ti-prefix}-box-align-top:before { content: $ti-icon-box-align-top; } -.#{$ti-prefix}-box-align-top-left:before { content: $ti-icon-box-align-top-left; } -.#{$ti-prefix}-box-align-top-right:before { content: $ti-icon-box-align-top-right; } -.#{$ti-prefix}-box-margin:before { content: $ti-icon-box-margin; } -.#{$ti-prefix}-box-model:before { content: $ti-icon-box-model; } -.#{$ti-prefix}-box-model-2:before { content: $ti-icon-box-model-2; } -.#{$ti-prefix}-box-multiple:before { content: $ti-icon-box-multiple; } -.#{$ti-prefix}-box-multiple-0:before { content: $ti-icon-box-multiple-0; } -.#{$ti-prefix}-box-multiple-1:before { content: $ti-icon-box-multiple-1; } -.#{$ti-prefix}-box-multiple-2:before { content: $ti-icon-box-multiple-2; } -.#{$ti-prefix}-box-multiple-3:before { content: $ti-icon-box-multiple-3; } -.#{$ti-prefix}-box-multiple-4:before { content: $ti-icon-box-multiple-4; } -.#{$ti-prefix}-box-multiple-5:before { content: $ti-icon-box-multiple-5; } -.#{$ti-prefix}-box-multiple-6:before { content: $ti-icon-box-multiple-6; } -.#{$ti-prefix}-box-multiple-7:before { content: $ti-icon-box-multiple-7; } -.#{$ti-prefix}-box-multiple-8:before { content: $ti-icon-box-multiple-8; } -.#{$ti-prefix}-box-multiple-9:before { content: $ti-icon-box-multiple-9; } -.#{$ti-prefix}-box-off:before { content: $ti-icon-box-off; } -.#{$ti-prefix}-box-padding:before { content: $ti-icon-box-padding; } -.#{$ti-prefix}-braces:before { content: $ti-icon-braces; } -.#{$ti-prefix}-braces-off:before { content: $ti-icon-braces-off; } -.#{$ti-prefix}-brackets:before { content: $ti-icon-brackets; } -.#{$ti-prefix}-brackets-contain:before { content: $ti-icon-brackets-contain; } -.#{$ti-prefix}-brackets-contain-end:before { content: $ti-icon-brackets-contain-end; } -.#{$ti-prefix}-brackets-contain-start:before { content: $ti-icon-brackets-contain-start; } -.#{$ti-prefix}-brackets-off:before { content: $ti-icon-brackets-off; } -.#{$ti-prefix}-brand-adobe:before { content: $ti-icon-brand-adobe; } -.#{$ti-prefix}-brand-airbnb:before { content: $ti-icon-brand-airbnb; } -.#{$ti-prefix}-brand-airtable:before { content: $ti-icon-brand-airtable; } -.#{$ti-prefix}-brand-amazon:before { content: $ti-icon-brand-amazon; } -.#{$ti-prefix}-brand-amongus:before { content: $ti-icon-brand-amongus; } -.#{$ti-prefix}-brand-android:before { content: $ti-icon-brand-android; } -.#{$ti-prefix}-brand-angular:before { content: $ti-icon-brand-angular; } -.#{$ti-prefix}-brand-appgallery:before { content: $ti-icon-brand-appgallery; } -.#{$ti-prefix}-brand-apple:before { content: $ti-icon-brand-apple; } -.#{$ti-prefix}-brand-apple-arcade:before { content: $ti-icon-brand-apple-arcade; } -.#{$ti-prefix}-brand-apple-podcast:before { content: $ti-icon-brand-apple-podcast; } -.#{$ti-prefix}-brand-appstore:before { content: $ti-icon-brand-appstore; } -.#{$ti-prefix}-brand-asana:before { content: $ti-icon-brand-asana; } -.#{$ti-prefix}-brand-badoo:before { content: $ti-icon-brand-badoo; } -.#{$ti-prefix}-brand-bandcamp:before { content: $ti-icon-brand-bandcamp; } -.#{$ti-prefix}-brand-beats:before { content: $ti-icon-brand-beats; } -.#{$ti-prefix}-brand-behance:before { content: $ti-icon-brand-behance; } -.#{$ti-prefix}-brand-bing:before { content: $ti-icon-brand-bing; } -.#{$ti-prefix}-brand-bitbucket:before { content: $ti-icon-brand-bitbucket; } -.#{$ti-prefix}-brand-booking:before { content: $ti-icon-brand-booking; } -.#{$ti-prefix}-brand-bootstrap:before { content: $ti-icon-brand-bootstrap; } -.#{$ti-prefix}-brand-chrome:before { content: $ti-icon-brand-chrome; } -.#{$ti-prefix}-brand-codepen:before { content: $ti-icon-brand-codepen; } -.#{$ti-prefix}-brand-codesandbox:before { content: $ti-icon-brand-codesandbox; } -.#{$ti-prefix}-brand-coinbase:before { content: $ti-icon-brand-coinbase; } -.#{$ti-prefix}-brand-comedy-central:before { content: $ti-icon-brand-comedy-central; } -.#{$ti-prefix}-brand-css3:before { content: $ti-icon-brand-css3; } -.#{$ti-prefix}-brand-cucumber:before { content: $ti-icon-brand-cucumber; } -.#{$ti-prefix}-brand-d3:before { content: $ti-icon-brand-d3; } -.#{$ti-prefix}-brand-debian:before { content: $ti-icon-brand-debian; } -.#{$ti-prefix}-brand-deno:before { content: $ti-icon-brand-deno; } -.#{$ti-prefix}-brand-deviantart:before { content: $ti-icon-brand-deviantart; } -.#{$ti-prefix}-brand-discord:before { content: $ti-icon-brand-discord; } -.#{$ti-prefix}-brand-disney:before { content: $ti-icon-brand-disney; } -.#{$ti-prefix}-brand-disqus:before { content: $ti-icon-brand-disqus; } -.#{$ti-prefix}-brand-docker:before { content: $ti-icon-brand-docker; } -.#{$ti-prefix}-brand-doctrine:before { content: $ti-icon-brand-doctrine; } -.#{$ti-prefix}-brand-dribbble:before { content: $ti-icon-brand-dribbble; } -.#{$ti-prefix}-brand-edge:before { content: $ti-icon-brand-edge; } -.#{$ti-prefix}-brand-facebook:before { content: $ti-icon-brand-facebook; } -.#{$ti-prefix}-brand-figma:before { content: $ti-icon-brand-figma; } -.#{$ti-prefix}-brand-finder:before { content: $ti-icon-brand-finder; } -.#{$ti-prefix}-brand-firebase:before { content: $ti-icon-brand-firebase; } -.#{$ti-prefix}-brand-firefox:before { content: $ti-icon-brand-firefox; } -.#{$ti-prefix}-brand-flickr:before { content: $ti-icon-brand-flickr; } -.#{$ti-prefix}-brand-flipboard:before { content: $ti-icon-brand-flipboard; } -.#{$ti-prefix}-brand-fortnite:before { content: $ti-icon-brand-fortnite; } -.#{$ti-prefix}-brand-foursquare:before { content: $ti-icon-brand-foursquare; } -.#{$ti-prefix}-brand-framer:before { content: $ti-icon-brand-framer; } -.#{$ti-prefix}-brand-git:before { content: $ti-icon-brand-git; } -.#{$ti-prefix}-brand-github:before { content: $ti-icon-brand-github; } -.#{$ti-prefix}-brand-gitlab:before { content: $ti-icon-brand-gitlab; } -.#{$ti-prefix}-brand-gmail:before { content: $ti-icon-brand-gmail; } -.#{$ti-prefix}-brand-google:before { content: $ti-icon-brand-google; } -.#{$ti-prefix}-brand-google-analytics:before { content: $ti-icon-brand-google-analytics; } -.#{$ti-prefix}-brand-google-drive:before { content: $ti-icon-brand-google-drive; } -.#{$ti-prefix}-brand-google-fit:before { content: $ti-icon-brand-google-fit; } -.#{$ti-prefix}-brand-google-one:before { content: $ti-icon-brand-google-one; } -.#{$ti-prefix}-brand-google-photos:before { content: $ti-icon-brand-google-photos; } -.#{$ti-prefix}-brand-google-play:before { content: $ti-icon-brand-google-play; } -.#{$ti-prefix}-brand-gravatar:before { content: $ti-icon-brand-gravatar; } -.#{$ti-prefix}-brand-grindr:before { content: $ti-icon-brand-grindr; } -.#{$ti-prefix}-brand-hipchat:before { content: $ti-icon-brand-hipchat; } -.#{$ti-prefix}-brand-html5:before { content: $ti-icon-brand-html5; } -.#{$ti-prefix}-brand-instagram:before { content: $ti-icon-brand-instagram; } -.#{$ti-prefix}-brand-intercom:before { content: $ti-icon-brand-intercom; } -.#{$ti-prefix}-brand-javascript:before { content: $ti-icon-brand-javascript; } -.#{$ti-prefix}-brand-kickstarter:before { content: $ti-icon-brand-kickstarter; } -.#{$ti-prefix}-brand-kotlin:before { content: $ti-icon-brand-kotlin; } -.#{$ti-prefix}-brand-lastfm:before { content: $ti-icon-brand-lastfm; } -.#{$ti-prefix}-brand-linkedin:before { content: $ti-icon-brand-linkedin; } -.#{$ti-prefix}-brand-linktree:before { content: $ti-icon-brand-linktree; } -.#{$ti-prefix}-brand-loom:before { content: $ti-icon-brand-loom; } -.#{$ti-prefix}-brand-mastercard:before { content: $ti-icon-brand-mastercard; } -.#{$ti-prefix}-brand-mastodon:before { content: $ti-icon-brand-mastodon; } -.#{$ti-prefix}-brand-mcdonalds:before { content: $ti-icon-brand-mcdonalds; } -.#{$ti-prefix}-brand-medium:before { content: $ti-icon-brand-medium; } -.#{$ti-prefix}-brand-mercedes:before { content: $ti-icon-brand-mercedes; } -.#{$ti-prefix}-brand-messenger:before { content: $ti-icon-brand-messenger; } -.#{$ti-prefix}-brand-meta:before { content: $ti-icon-brand-meta; } -.#{$ti-prefix}-brand-monday:before { content: $ti-icon-brand-monday; } -.#{$ti-prefix}-brand-netbeans:before { content: $ti-icon-brand-netbeans; } -.#{$ti-prefix}-brand-netflix:before { content: $ti-icon-brand-netflix; } -.#{$ti-prefix}-brand-nextjs:before { content: $ti-icon-brand-nextjs; } -.#{$ti-prefix}-brand-notion:before { content: $ti-icon-brand-notion; } -.#{$ti-prefix}-brand-nuxt:before { content: $ti-icon-brand-nuxt; } -.#{$ti-prefix}-brand-nytimes:before { content: $ti-icon-brand-nytimes; } -.#{$ti-prefix}-brand-open-source:before { content: $ti-icon-brand-open-source; } -.#{$ti-prefix}-brand-opera:before { content: $ti-icon-brand-opera; } -.#{$ti-prefix}-brand-pagekit:before { content: $ti-icon-brand-pagekit; } -.#{$ti-prefix}-brand-patreon:before { content: $ti-icon-brand-patreon; } -.#{$ti-prefix}-brand-paypal:before { content: $ti-icon-brand-paypal; } -.#{$ti-prefix}-brand-pepsi:before { content: $ti-icon-brand-pepsi; } -.#{$ti-prefix}-brand-php:before { content: $ti-icon-brand-php; } -.#{$ti-prefix}-brand-pinterest:before { content: $ti-icon-brand-pinterest; } -.#{$ti-prefix}-brand-pocket:before { content: $ti-icon-brand-pocket; } -.#{$ti-prefix}-brand-producthunt:before { content: $ti-icon-brand-producthunt; } -.#{$ti-prefix}-brand-pushover:before { content: $ti-icon-brand-pushover; } -.#{$ti-prefix}-brand-python:before { content: $ti-icon-brand-python; } -.#{$ti-prefix}-brand-react-native:before { content: $ti-icon-brand-react-native; } -.#{$ti-prefix}-brand-reddit:before { content: $ti-icon-brand-reddit; } -.#{$ti-prefix}-brand-safari:before { content: $ti-icon-brand-safari; } -.#{$ti-prefix}-brand-sass:before { content: $ti-icon-brand-sass; } -.#{$ti-prefix}-brand-sentry:before { content: $ti-icon-brand-sentry; } -.#{$ti-prefix}-brand-shazam:before { content: $ti-icon-brand-shazam; } -.#{$ti-prefix}-brand-shopee:before { content: $ti-icon-brand-shopee; } -.#{$ti-prefix}-brand-sketch:before { content: $ti-icon-brand-sketch; } -.#{$ti-prefix}-brand-skype:before { content: $ti-icon-brand-skype; } -.#{$ti-prefix}-brand-slack:before { content: $ti-icon-brand-slack; } -.#{$ti-prefix}-brand-snapchat:before { content: $ti-icon-brand-snapchat; } -.#{$ti-prefix}-brand-snapseed:before { content: $ti-icon-brand-snapseed; } -.#{$ti-prefix}-brand-soundcloud:before { content: $ti-icon-brand-soundcloud; } -.#{$ti-prefix}-brand-spotify:before { content: $ti-icon-brand-spotify; } -.#{$ti-prefix}-brand-stackoverflow:before { content: $ti-icon-brand-stackoverflow; } -.#{$ti-prefix}-brand-steam:before { content: $ti-icon-brand-steam; } -.#{$ti-prefix}-brand-strava:before { content: $ti-icon-brand-strava; } -.#{$ti-prefix}-brand-stripe:before { content: $ti-icon-brand-stripe; } -.#{$ti-prefix}-brand-sublime-text:before { content: $ti-icon-brand-sublime-text; } -.#{$ti-prefix}-brand-surfshark:before { content: $ti-icon-brand-surfshark; } -.#{$ti-prefix}-brand-svelte:before { content: $ti-icon-brand-svelte; } -.#{$ti-prefix}-brand-tabler:before { content: $ti-icon-brand-tabler; } -.#{$ti-prefix}-brand-tailwind:before { content: $ti-icon-brand-tailwind; } -.#{$ti-prefix}-brand-telegram:before { content: $ti-icon-brand-telegram; } -.#{$ti-prefix}-brand-tidal:before { content: $ti-icon-brand-tidal; } -.#{$ti-prefix}-brand-tiktok:before { content: $ti-icon-brand-tiktok; } -.#{$ti-prefix}-brand-tinder:before { content: $ti-icon-brand-tinder; } -.#{$ti-prefix}-brand-toyota:before { content: $ti-icon-brand-toyota; } -.#{$ti-prefix}-brand-tripadvisor:before { content: $ti-icon-brand-tripadvisor; } -.#{$ti-prefix}-brand-tumblr:before { content: $ti-icon-brand-tumblr; } -.#{$ti-prefix}-brand-twitch:before { content: $ti-icon-brand-twitch; } -.#{$ti-prefix}-brand-twitter:before { content: $ti-icon-brand-twitter; } -.#{$ti-prefix}-brand-uber:before { content: $ti-icon-brand-uber; } -.#{$ti-prefix}-brand-ubuntu:before { content: $ti-icon-brand-ubuntu; } -.#{$ti-prefix}-brand-unity:before { content: $ti-icon-brand-unity; } -.#{$ti-prefix}-brand-unsplash:before { content: $ti-icon-brand-unsplash; } -.#{$ti-prefix}-brand-vercel:before { content: $ti-icon-brand-vercel; } -.#{$ti-prefix}-brand-vimeo:before { content: $ti-icon-brand-vimeo; } -.#{$ti-prefix}-brand-vinted:before { content: $ti-icon-brand-vinted; } -.#{$ti-prefix}-brand-visual-studio:before { content: $ti-icon-brand-visual-studio; } -.#{$ti-prefix}-brand-vivaldi:before { content: $ti-icon-brand-vivaldi; } -.#{$ti-prefix}-brand-vk:before { content: $ti-icon-brand-vk; } -.#{$ti-prefix}-brand-vue:before { content: $ti-icon-brand-vue; } -.#{$ti-prefix}-brand-walmart:before { content: $ti-icon-brand-walmart; } -.#{$ti-prefix}-brand-webflow:before { content: $ti-icon-brand-webflow; } -.#{$ti-prefix}-brand-whatsapp:before { content: $ti-icon-brand-whatsapp; } -.#{$ti-prefix}-brand-windows:before { content: $ti-icon-brand-windows; } -.#{$ti-prefix}-brand-wish:before { content: $ti-icon-brand-wish; } -.#{$ti-prefix}-brand-wordpress:before { content: $ti-icon-brand-wordpress; } -.#{$ti-prefix}-brand-xbox:before { content: $ti-icon-brand-xbox; } -.#{$ti-prefix}-brand-xing:before { content: $ti-icon-brand-xing; } -.#{$ti-prefix}-brand-yahoo:before { content: $ti-icon-brand-yahoo; } -.#{$ti-prefix}-brand-yatse:before { content: $ti-icon-brand-yatse; } -.#{$ti-prefix}-brand-ycombinator:before { content: $ti-icon-brand-ycombinator; } -.#{$ti-prefix}-brand-youtube:before { content: $ti-icon-brand-youtube; } -.#{$ti-prefix}-brand-youtube-kids:before { content: $ti-icon-brand-youtube-kids; } -.#{$ti-prefix}-brand-zoom:before { content: $ti-icon-brand-zoom; } -.#{$ti-prefix}-brand-zwift:before { content: $ti-icon-brand-zwift; } -.#{$ti-prefix}-bread:before { content: $ti-icon-bread; } -.#{$ti-prefix}-briefcase:before { content: $ti-icon-briefcase; } -.#{$ti-prefix}-brightness:before { content: $ti-icon-brightness; } -.#{$ti-prefix}-brightness-2:before { content: $ti-icon-brightness-2; } -.#{$ti-prefix}-brightness-down:before { content: $ti-icon-brightness-down; } -.#{$ti-prefix}-brightness-half:before { content: $ti-icon-brightness-half; } -.#{$ti-prefix}-brightness-up:before { content: $ti-icon-brightness-up; } -.#{$ti-prefix}-broadcast:before { content: $ti-icon-broadcast; } -.#{$ti-prefix}-broadcast-off:before { content: $ti-icon-broadcast-off; } -.#{$ti-prefix}-browser:before { content: $ti-icon-browser; } -.#{$ti-prefix}-browser-check:before { content: $ti-icon-browser-check; } -.#{$ti-prefix}-browser-off:before { content: $ti-icon-browser-off; } -.#{$ti-prefix}-browser-plus:before { content: $ti-icon-browser-plus; } -.#{$ti-prefix}-browser-x:before { content: $ti-icon-browser-x; } -.#{$ti-prefix}-brush:before { content: $ti-icon-brush; } -.#{$ti-prefix}-brush-off:before { content: $ti-icon-brush-off; } -.#{$ti-prefix}-bucket:before { content: $ti-icon-bucket; } -.#{$ti-prefix}-bucket-off:before { content: $ti-icon-bucket-off; } -.#{$ti-prefix}-bug:before { content: $ti-icon-bug; } -.#{$ti-prefix}-bug-off:before { content: $ti-icon-bug-off; } -.#{$ti-prefix}-building:before { content: $ti-icon-building; } -.#{$ti-prefix}-building-arch:before { content: $ti-icon-building-arch; } -.#{$ti-prefix}-building-bank:before { content: $ti-icon-building-bank; } -.#{$ti-prefix}-building-bridge:before { content: $ti-icon-building-bridge; } -.#{$ti-prefix}-building-bridge-2:before { content: $ti-icon-building-bridge-2; } -.#{$ti-prefix}-building-carousel:before { content: $ti-icon-building-carousel; } -.#{$ti-prefix}-building-castle:before { content: $ti-icon-building-castle; } -.#{$ti-prefix}-building-church:before { content: $ti-icon-building-church; } -.#{$ti-prefix}-building-community:before { content: $ti-icon-building-community; } -.#{$ti-prefix}-building-cottage:before { content: $ti-icon-building-cottage; } -.#{$ti-prefix}-building-factory:before { content: $ti-icon-building-factory; } -.#{$ti-prefix}-building-factory-2:before { content: $ti-icon-building-factory-2; } -.#{$ti-prefix}-building-fortress:before { content: $ti-icon-building-fortress; } -.#{$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-skyscraper:before { content: $ti-icon-building-skyscraper; } -.#{$ti-prefix}-building-store:before { content: $ti-icon-building-store; } -.#{$ti-prefix}-building-warehouse:before { content: $ti-icon-building-warehouse; } -.#{$ti-prefix}-bulb:before { content: $ti-icon-bulb; } -.#{$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; } -.#{$ti-prefix}-bus-stop:before { content: $ti-icon-bus-stop; } -.#{$ti-prefix}-businessplan:before { content: $ti-icon-businessplan; } -.#{$ti-prefix}-butterfly:before { content: $ti-icon-butterfly; } -.#{$ti-prefix}-c-sharp:before { content: $ti-icon-c-sharp; } -.#{$ti-prefix}-cactus:before { content: $ti-icon-cactus; } -.#{$ti-prefix}-cake:before { content: $ti-icon-cake; } -.#{$ti-prefix}-cake-off:before { content: $ti-icon-cake-off; } -.#{$ti-prefix}-calculator:before { content: $ti-icon-calculator; } -.#{$ti-prefix}-calculator-off:before { content: $ti-icon-calculator-off; } -.#{$ti-prefix}-calendar:before { content: $ti-icon-calendar; } -.#{$ti-prefix}-calendar-event:before { content: $ti-icon-calendar-event; } -.#{$ti-prefix}-calendar-minus:before { content: $ti-icon-calendar-minus; } -.#{$ti-prefix}-calendar-off:before { content: $ti-icon-calendar-off; } -.#{$ti-prefix}-calendar-plus:before { content: $ti-icon-calendar-plus; } -.#{$ti-prefix}-calendar-stats:before { content: $ti-icon-calendar-stats; } -.#{$ti-prefix}-calendar-time:before { content: $ti-icon-calendar-time; } -.#{$ti-prefix}-camera:before { content: $ti-icon-camera; } -.#{$ti-prefix}-camera-minus:before { content: $ti-icon-camera-minus; } -.#{$ti-prefix}-camera-off:before { content: $ti-icon-camera-off; } -.#{$ti-prefix}-camera-plus:before { content: $ti-icon-camera-plus; } -.#{$ti-prefix}-camera-rotate:before { content: $ti-icon-camera-rotate; } -.#{$ti-prefix}-camera-selfie:before { content: $ti-icon-camera-selfie; } -.#{$ti-prefix}-candle:before { content: $ti-icon-candle; } -.#{$ti-prefix}-candy:before { content: $ti-icon-candy; } -.#{$ti-prefix}-candy-off:before { content: $ti-icon-candy-off; } -.#{$ti-prefix}-capture:before { content: $ti-icon-capture; } -.#{$ti-prefix}-capture-off:before { content: $ti-icon-capture-off; } -.#{$ti-prefix}-car:before { content: $ti-icon-car; } -.#{$ti-prefix}-car-crane:before { content: $ti-icon-car-crane; } -.#{$ti-prefix}-car-crash:before { content: $ti-icon-car-crash; } -.#{$ti-prefix}-car-off:before { content: $ti-icon-car-off; } -.#{$ti-prefix}-caravan:before { content: $ti-icon-caravan; } -.#{$ti-prefix}-cardboards:before { content: $ti-icon-cardboards; } -.#{$ti-prefix}-cardboards-off:before { content: $ti-icon-cardboards-off; } -.#{$ti-prefix}-caret-down:before { content: $ti-icon-caret-down; } -.#{$ti-prefix}-caret-left:before { content: $ti-icon-caret-left; } -.#{$ti-prefix}-caret-right:before { content: $ti-icon-caret-right; } -.#{$ti-prefix}-caret-up:before { content: $ti-icon-caret-up; } -.#{$ti-prefix}-carrot:before { content: $ti-icon-carrot; } -.#{$ti-prefix}-cash:before { content: $ti-icon-cash; } -.#{$ti-prefix}-cash-banknote:before { content: $ti-icon-cash-banknote; } -.#{$ti-prefix}-cash-banknote-off:before { content: $ti-icon-cash-banknote-off; } -.#{$ti-prefix}-cash-off:before { content: $ti-icon-cash-off; } -.#{$ti-prefix}-cast:before { content: $ti-icon-cast; } -.#{$ti-prefix}-cast-off:before { content: $ti-icon-cast-off; } -.#{$ti-prefix}-category:before { content: $ti-icon-category; } -.#{$ti-prefix}-category-2:before { content: $ti-icon-category-2; } -.#{$ti-prefix}-ce:before { content: $ti-icon-ce; } -.#{$ti-prefix}-ce-off:before { content: $ti-icon-ce-off; } -.#{$ti-prefix}-cell:before { content: $ti-icon-cell; } -.#{$ti-prefix}-cell-signal-1:before { content: $ti-icon-cell-signal-1; } -.#{$ti-prefix}-cell-signal-2:before { content: $ti-icon-cell-signal-2; } -.#{$ti-prefix}-cell-signal-3:before { content: $ti-icon-cell-signal-3; } -.#{$ti-prefix}-cell-signal-4:before { content: $ti-icon-cell-signal-4; } -.#{$ti-prefix}-cell-signal-5:before { content: $ti-icon-cell-signal-5; } -.#{$ti-prefix}-cell-signal-off:before { content: $ti-icon-cell-signal-off; } -.#{$ti-prefix}-certificate:before { content: $ti-icon-certificate; } -.#{$ti-prefix}-certificate-2:before { content: $ti-icon-certificate-2; } -.#{$ti-prefix}-certificate-2-off:before { content: $ti-icon-certificate-2-off; } -.#{$ti-prefix}-certificate-off:before { content: $ti-icon-certificate-off; } -.#{$ti-prefix}-chair-director:before { content: $ti-icon-chair-director; } -.#{$ti-prefix}-charging-pile:before { content: $ti-icon-charging-pile; } -.#{$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-line:before { content: $ti-icon-chart-area-line; } -.#{$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-bubble:before { content: $ti-icon-chart-bubble; } -.#{$ti-prefix}-chart-candle:before { content: $ti-icon-chart-candle; } -.#{$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-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; } -.#{$ti-prefix}-chart-infographic:before { content: $ti-icon-chart-infographic; } -.#{$ti-prefix}-chart-line:before { content: $ti-icon-chart-line; } -.#{$ti-prefix}-chart-pie:before { content: $ti-icon-chart-pie; } -.#{$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-radar:before { content: $ti-icon-chart-radar; } -.#{$ti-prefix}-check:before { content: $ti-icon-check; } -.#{$ti-prefix}-checkbox:before { content: $ti-icon-checkbox; } -.#{$ti-prefix}-checklist:before { content: $ti-icon-checklist; } -.#{$ti-prefix}-checks:before { content: $ti-icon-checks; } -.#{$ti-prefix}-checkup-list:before { content: $ti-icon-checkup-list; } -.#{$ti-prefix}-cheese:before { content: $ti-icon-cheese; } -.#{$ti-prefix}-chef-hat:before { content: $ti-icon-chef-hat; } -.#{$ti-prefix}-chevron-down:before { content: $ti-icon-chevron-down; } -.#{$ti-prefix}-chevron-down-left:before { content: $ti-icon-chevron-down-left; } -.#{$ti-prefix}-chevron-down-right:before { content: $ti-icon-chevron-down-right; } -.#{$ti-prefix}-chevron-left:before { content: $ti-icon-chevron-left; } -.#{$ti-prefix}-chevron-right:before { content: $ti-icon-chevron-right; } -.#{$ti-prefix}-chevron-up:before { content: $ti-icon-chevron-up; } -.#{$ti-prefix}-chevron-up-left:before { content: $ti-icon-chevron-up-left; } -.#{$ti-prefix}-chevron-up-right:before { content: $ti-icon-chevron-up-right; } -.#{$ti-prefix}-chevrons-down:before { content: $ti-icon-chevrons-down; } -.#{$ti-prefix}-chevrons-down-left:before { content: $ti-icon-chevrons-down-left; } -.#{$ti-prefix}-chevrons-down-right:before { content: $ti-icon-chevrons-down-right; } -.#{$ti-prefix}-chevrons-left:before { content: $ti-icon-chevrons-left; } -.#{$ti-prefix}-chevrons-right:before { content: $ti-icon-chevrons-right; } -.#{$ti-prefix}-chevrons-up:before { content: $ti-icon-chevrons-up; } -.#{$ti-prefix}-chevrons-up-left:before { content: $ti-icon-chevrons-up-left; } -.#{$ti-prefix}-chevrons-up-right:before { content: $ti-icon-chevrons-up-right; } -.#{$ti-prefix}-christmas-tree:before { content: $ti-icon-christmas-tree; } -.#{$ti-prefix}-circle:before { content: $ti-icon-circle; } -.#{$ti-prefix}-circle-0:before { content: $ti-icon-circle-0; } -.#{$ti-prefix}-circle-1:before { content: $ti-icon-circle-1; } -.#{$ti-prefix}-circle-2:before { content: $ti-icon-circle-2; } -.#{$ti-prefix}-circle-3:before { content: $ti-icon-circle-3; } -.#{$ti-prefix}-circle-4:before { content: $ti-icon-circle-4; } -.#{$ti-prefix}-circle-5:before { content: $ti-icon-circle-5; } -.#{$ti-prefix}-circle-6:before { content: $ti-icon-circle-6; } -.#{$ti-prefix}-circle-7:before { content: $ti-icon-circle-7; } -.#{$ti-prefix}-circle-8:before { content: $ti-icon-circle-8; } -.#{$ti-prefix}-circle-9:before { content: $ti-icon-circle-9; } -.#{$ti-prefix}-circle-check:before { content: $ti-icon-circle-check; } -.#{$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-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; } -.#{$ti-prefix}-circle-minus:before { content: $ti-icon-circle-minus; } -.#{$ti-prefix}-circle-off:before { content: $ti-icon-circle-off; } -.#{$ti-prefix}-circle-plus:before { content: $ti-icon-circle-plus; } -.#{$ti-prefix}-circle-rectangle:before { content: $ti-icon-circle-rectangle; } -.#{$ti-prefix}-circle-rectangle-off:before { content: $ti-icon-circle-rectangle-off; } -.#{$ti-prefix}-circle-square:before { content: $ti-icon-circle-square; } -.#{$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}-circuit-ammeter:before { content: $ti-icon-circuit-ammeter; } -.#{$ti-prefix}-circuit-battery:before { content: $ti-icon-circuit-battery; } -.#{$ti-prefix}-circuit-bulb:before { content: $ti-icon-circuit-bulb; } -.#{$ti-prefix}-circuit-capacitor:before { content: $ti-icon-circuit-capacitor; } -.#{$ti-prefix}-circuit-capacitor-polarized:before { content: $ti-icon-circuit-capacitor-polarized; } -.#{$ti-prefix}-circuit-cell:before { content: $ti-icon-circuit-cell; } -.#{$ti-prefix}-circuit-cell-plus:before { content: $ti-icon-circuit-cell-plus; } -.#{$ti-prefix}-circuit-changeover:before { content: $ti-icon-circuit-changeover; } -.#{$ti-prefix}-circuit-diode:before { content: $ti-icon-circuit-diode; } -.#{$ti-prefix}-circuit-diode-zener:before { content: $ti-icon-circuit-diode-zener; } -.#{$ti-prefix}-circuit-ground:before { content: $ti-icon-circuit-ground; } -.#{$ti-prefix}-circuit-ground-digital:before { content: $ti-icon-circuit-ground-digital; } -.#{$ti-prefix}-circuit-inductor:before { content: $ti-icon-circuit-inductor; } -.#{$ti-prefix}-circuit-motor:before { content: $ti-icon-circuit-motor; } -.#{$ti-prefix}-circuit-pushbutton:before { content: $ti-icon-circuit-pushbutton; } -.#{$ti-prefix}-circuit-resistor:before { content: $ti-icon-circuit-resistor; } -.#{$ti-prefix}-circuit-switch-closed:before { content: $ti-icon-circuit-switch-closed; } -.#{$ti-prefix}-circuit-switch-open:before { content: $ti-icon-circuit-switch-open; } -.#{$ti-prefix}-circuit-voltmeter:before { content: $ti-icon-circuit-voltmeter; } -.#{$ti-prefix}-clear-all:before { content: $ti-icon-clear-all; } -.#{$ti-prefix}-clear-formatting:before { content: $ti-icon-clear-formatting; } -.#{$ti-prefix}-click:before { content: $ti-icon-click; } -.#{$ti-prefix}-clipboard:before { content: $ti-icon-clipboard; } -.#{$ti-prefix}-clipboard-check:before { content: $ti-icon-clipboard-check; } -.#{$ti-prefix}-clipboard-copy:before { content: $ti-icon-clipboard-copy; } -.#{$ti-prefix}-clipboard-list:before { content: $ti-icon-clipboard-list; } -.#{$ti-prefix}-clipboard-off:before { content: $ti-icon-clipboard-off; } -.#{$ti-prefix}-clipboard-plus:before { content: $ti-icon-clipboard-plus; } -.#{$ti-prefix}-clipboard-text:before { content: $ti-icon-clipboard-text; } -.#{$ti-prefix}-clipboard-x:before { content: $ti-icon-clipboard-x; } -.#{$ti-prefix}-clock:before { content: $ti-icon-clock; } -.#{$ti-prefix}-clock-2:before { content: $ti-icon-clock-2; } -.#{$ti-prefix}-clock-off:before { content: $ti-icon-clock-off; } -.#{$ti-prefix}-clothes-rack:before { content: $ti-icon-clothes-rack; } -.#{$ti-prefix}-cloud:before { content: $ti-icon-cloud; } -.#{$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-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; } -.#{$ti-prefix}-cloud-off:before { content: $ti-icon-cloud-off; } -.#{$ti-prefix}-cloud-rain:before { content: $ti-icon-cloud-rain; } -.#{$ti-prefix}-cloud-snow:before { content: $ti-icon-cloud-snow; } -.#{$ti-prefix}-cloud-storm:before { content: $ti-icon-cloud-storm; } -.#{$ti-prefix}-cloud-upload:before { content: $ti-icon-cloud-upload; } -.#{$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}-code:before { content: $ti-icon-code; } -.#{$ti-prefix}-code-minus:before { content: $ti-icon-code-minus; } -.#{$ti-prefix}-code-off:before { content: $ti-icon-code-off; } -.#{$ti-prefix}-code-plus:before { content: $ti-icon-code-plus; } -.#{$ti-prefix}-coffee:before { content: $ti-icon-coffee; } -.#{$ti-prefix}-coffee-off:before { content: $ti-icon-coffee-off; } -.#{$ti-prefix}-coin:before { content: $ti-icon-coin; } -.#{$ti-prefix}-coin-bitcoin:before { content: $ti-icon-coin-bitcoin; } -.#{$ti-prefix}-coin-euro:before { content: $ti-icon-coin-euro; } -.#{$ti-prefix}-coin-off:before { content: $ti-icon-coin-off; } -.#{$ti-prefix}-coin-pound:before { content: $ti-icon-coin-pound; } -.#{$ti-prefix}-coin-rupee:before { content: $ti-icon-coin-rupee; } -.#{$ti-prefix}-coin-yen:before { content: $ti-icon-coin-yen; } -.#{$ti-prefix}-coin-yuan:before { content: $ti-icon-coin-yuan; } -.#{$ti-prefix}-color-picker:before { content: $ti-icon-color-picker; } -.#{$ti-prefix}-color-picker-off:before { content: $ti-icon-color-picker-off; } -.#{$ti-prefix}-color-swatch:before { content: $ti-icon-color-swatch; } -.#{$ti-prefix}-color-swatch-off:before { content: $ti-icon-color-swatch-off; } -.#{$ti-prefix}-column-insert-left:before { content: $ti-icon-column-insert-left; } -.#{$ti-prefix}-column-insert-right:before { content: $ti-icon-column-insert-right; } -.#{$ti-prefix}-columns:before { content: $ti-icon-columns; } -.#{$ti-prefix}-columns-off:before { content: $ti-icon-columns-off; } -.#{$ti-prefix}-comet:before { content: $ti-icon-comet; } -.#{$ti-prefix}-command:before { content: $ti-icon-command; } -.#{$ti-prefix}-compass:before { content: $ti-icon-compass; } -.#{$ti-prefix}-compass-off:before { content: $ti-icon-compass-off; } -.#{$ti-prefix}-components:before { content: $ti-icon-components; } -.#{$ti-prefix}-components-off:before { content: $ti-icon-components-off; } -.#{$ti-prefix}-cone:before { content: $ti-icon-cone; } -.#{$ti-prefix}-cone-2:before { content: $ti-icon-cone-2; } -.#{$ti-prefix}-confetti:before { content: $ti-icon-confetti; } -.#{$ti-prefix}-container:before { content: $ti-icon-container; } -.#{$ti-prefix}-container-off:before { content: $ti-icon-container-off; } -.#{$ti-prefix}-contrast:before { content: $ti-icon-contrast; } -.#{$ti-prefix}-contrast-2:before { content: $ti-icon-contrast-2; } -.#{$ti-prefix}-cookie:before { content: $ti-icon-cookie; } -.#{$ti-prefix}-cookie-off:before { content: $ti-icon-cookie-off; } -.#{$ti-prefix}-copy:before { content: $ti-icon-copy; } -.#{$ti-prefix}-copy-off:before { content: $ti-icon-copy-off; } -.#{$ti-prefix}-copyleft:before { content: $ti-icon-copyleft; } -.#{$ti-prefix}-copyleft-off:before { content: $ti-icon-copyleft-off; } -.#{$ti-prefix}-copyright:before { content: $ti-icon-copyright; } -.#{$ti-prefix}-copyright-off:before { content: $ti-icon-copyright-off; } -.#{$ti-prefix}-corner-down-left:before { content: $ti-icon-corner-down-left; } -.#{$ti-prefix}-corner-down-left-double:before { content: $ti-icon-corner-down-left-double; } -.#{$ti-prefix}-corner-down-right:before { content: $ti-icon-corner-down-right; } -.#{$ti-prefix}-corner-down-right-double:before { content: $ti-icon-corner-down-right-double; } -.#{$ti-prefix}-corner-left-down:before { content: $ti-icon-corner-left-down; } -.#{$ti-prefix}-corner-left-down-double:before { content: $ti-icon-corner-left-down-double; } -.#{$ti-prefix}-corner-left-up:before { content: $ti-icon-corner-left-up; } -.#{$ti-prefix}-corner-left-up-double:before { content: $ti-icon-corner-left-up-double; } -.#{$ti-prefix}-corner-right-down:before { content: $ti-icon-corner-right-down; } -.#{$ti-prefix}-corner-right-down-double:before { content: $ti-icon-corner-right-down-double; } -.#{$ti-prefix}-corner-right-up:before { content: $ti-icon-corner-right-up; } -.#{$ti-prefix}-corner-right-up-double:before { content: $ti-icon-corner-right-up-double; } -.#{$ti-prefix}-corner-up-left:before { content: $ti-icon-corner-up-left; } -.#{$ti-prefix}-corner-up-left-double:before { content: $ti-icon-corner-up-left-double; } -.#{$ti-prefix}-corner-up-right:before { content: $ti-icon-corner-up-right; } -.#{$ti-prefix}-corner-up-right-double:before { content: $ti-icon-corner-up-right-double; } -.#{$ti-prefix}-cpu:before { content: $ti-icon-cpu; } -.#{$ti-prefix}-cpu-2:before { content: $ti-icon-cpu-2; } -.#{$ti-prefix}-cpu-off:before { content: $ti-icon-cpu-off; } -.#{$ti-prefix}-crane:before { content: $ti-icon-crane; } -.#{$ti-prefix}-crane-off:before { content: $ti-icon-crane-off; } -.#{$ti-prefix}-creative-commons:before { content: $ti-icon-creative-commons; } -.#{$ti-prefix}-creative-commons-by:before { content: $ti-icon-creative-commons-by; } -.#{$ti-prefix}-creative-commons-nc:before { content: $ti-icon-creative-commons-nc; } -.#{$ti-prefix}-creative-commons-nd:before { content: $ti-icon-creative-commons-nd; } -.#{$ti-prefix}-creative-commons-off:before { content: $ti-icon-creative-commons-off; } -.#{$ti-prefix}-creative-commons-sa:before { content: $ti-icon-creative-commons-sa; } -.#{$ti-prefix}-creative-commons-zero:before { content: $ti-icon-creative-commons-zero; } -.#{$ti-prefix}-credit-card:before { content: $ti-icon-credit-card; } -.#{$ti-prefix}-credit-card-off:before { content: $ti-icon-credit-card-off; } -.#{$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-off:before { content: $ti-icon-cross-off; } -.#{$ti-prefix}-crosshair:before { content: $ti-icon-crosshair; } -.#{$ti-prefix}-crown:before { content: $ti-icon-crown; } -.#{$ti-prefix}-crown-off:before { content: $ti-icon-crown-off; } -.#{$ti-prefix}-crutches:before { content: $ti-icon-crutches; } -.#{$ti-prefix}-crutches-off:before { content: $ti-icon-crutches-off; } -.#{$ti-prefix}-cup:before { content: $ti-icon-cup; } -.#{$ti-prefix}-cup-off:before { content: $ti-icon-cup-off; } -.#{$ti-prefix}-curling:before { content: $ti-icon-curling; } -.#{$ti-prefix}-curly-loop:before { content: $ti-icon-curly-loop; } -.#{$ti-prefix}-currency:before { content: $ti-icon-currency; } -.#{$ti-prefix}-currency-bahraini:before { content: $ti-icon-currency-bahraini; } -.#{$ti-prefix}-currency-baht:before { content: $ti-icon-currency-baht; } -.#{$ti-prefix}-currency-bitcoin:before { content: $ti-icon-currency-bitcoin; } -.#{$ti-prefix}-currency-cent:before { content: $ti-icon-currency-cent; } -.#{$ti-prefix}-currency-dinar:before { content: $ti-icon-currency-dinar; } -.#{$ti-prefix}-currency-dirham:before { content: $ti-icon-currency-dirham; } -.#{$ti-prefix}-currency-dogecoin:before { content: $ti-icon-currency-dogecoin; } -.#{$ti-prefix}-currency-dollar:before { content: $ti-icon-currency-dollar; } -.#{$ti-prefix}-currency-dollar-australian:before { content: $ti-icon-currency-dollar-australian; } -.#{$ti-prefix}-currency-dollar-canadian:before { content: $ti-icon-currency-dollar-canadian; } -.#{$ti-prefix}-currency-dollar-singapore:before { content: $ti-icon-currency-dollar-singapore; } -.#{$ti-prefix}-currency-ethereum:before { content: $ti-icon-currency-ethereum; } -.#{$ti-prefix}-currency-euro:before { content: $ti-icon-currency-euro; } -.#{$ti-prefix}-currency-forint:before { content: $ti-icon-currency-forint; } -.#{$ti-prefix}-currency-frank:before { content: $ti-icon-currency-frank; } -.#{$ti-prefix}-currency-krone-czech:before { content: $ti-icon-currency-krone-czech; } -.#{$ti-prefix}-currency-krone-danish:before { content: $ti-icon-currency-krone-danish; } -.#{$ti-prefix}-currency-krone-swedish:before { content: $ti-icon-currency-krone-swedish; } -.#{$ti-prefix}-currency-leu:before { content: $ti-icon-currency-leu; } -.#{$ti-prefix}-currency-lira:before { content: $ti-icon-currency-lira; } -.#{$ti-prefix}-currency-litecoin:before { content: $ti-icon-currency-litecoin; } -.#{$ti-prefix}-currency-naira:before { content: $ti-icon-currency-naira; } -.#{$ti-prefix}-currency-pound:before { content: $ti-icon-currency-pound; } -.#{$ti-prefix}-currency-real:before { content: $ti-icon-currency-real; } -.#{$ti-prefix}-currency-renminbi:before { content: $ti-icon-currency-renminbi; } -.#{$ti-prefix}-currency-ripple:before { content: $ti-icon-currency-ripple; } -.#{$ti-prefix}-currency-riyal:before { content: $ti-icon-currency-riyal; } -.#{$ti-prefix}-currency-rubel:before { content: $ti-icon-currency-rubel; } -.#{$ti-prefix}-currency-rupee:before { content: $ti-icon-currency-rupee; } -.#{$ti-prefix}-currency-shekel:before { content: $ti-icon-currency-shekel; } -.#{$ti-prefix}-currency-taka:before { content: $ti-icon-currency-taka; } -.#{$ti-prefix}-currency-tugrik:before { content: $ti-icon-currency-tugrik; } -.#{$ti-prefix}-currency-won:before { content: $ti-icon-currency-won; } -.#{$ti-prefix}-currency-yen:before { content: $ti-icon-currency-yen; } -.#{$ti-prefix}-currency-yuan:before { content: $ti-icon-currency-yuan; } -.#{$ti-prefix}-currency-zloty:before { content: $ti-icon-currency-zloty; } -.#{$ti-prefix}-current-location:before { content: $ti-icon-current-location; } -.#{$ti-prefix}-current-location-off:before { content: $ti-icon-current-location-off; } -.#{$ti-prefix}-cursor-off:before { content: $ti-icon-cursor-off; } -.#{$ti-prefix}-cursor-text:before { content: $ti-icon-cursor-text; } -.#{$ti-prefix}-cut:before { content: $ti-icon-cut; } -.#{$ti-prefix}-dashboard:before { content: $ti-icon-dashboard; } -.#{$ti-prefix}-database:before { content: $ti-icon-database; } -.#{$ti-prefix}-database-export:before { content: $ti-icon-database-export; } -.#{$ti-prefix}-database-import:before { content: $ti-icon-database-import; } -.#{$ti-prefix}-database-off:before { content: $ti-icon-database-off; } -.#{$ti-prefix}-dental:before { content: $ti-icon-dental; } -.#{$ti-prefix}-dental-broken:before { content: $ti-icon-dental-broken; } -.#{$ti-prefix}-dental-off:before { content: $ti-icon-dental-off; } -.#{$ti-prefix}-details:before { content: $ti-icon-details; } -.#{$ti-prefix}-device-analytics:before { content: $ti-icon-device-analytics; } -.#{$ti-prefix}-device-audio-tape:before { content: $ti-icon-device-audio-tape; } -.#{$ti-prefix}-device-camera-phone:before { content: $ti-icon-device-camera-phone; } -.#{$ti-prefix}-device-cctv:before { content: $ti-icon-device-cctv; } -.#{$ti-prefix}-device-computer-camera:before { content: $ti-icon-device-computer-camera; } -.#{$ti-prefix}-device-computer-camera-off:before { content: $ti-icon-device-computer-camera-off; } -.#{$ti-prefix}-device-desktop:before { content: $ti-icon-device-desktop; } -.#{$ti-prefix}-device-desktop-analytics:before { content: $ti-icon-device-desktop-analytics; } -.#{$ti-prefix}-device-desktop-off:before { content: $ti-icon-device-desktop-off; } -.#{$ti-prefix}-device-floppy:before { content: $ti-icon-device-floppy; } -.#{$ti-prefix}-device-gamepad:before { content: $ti-icon-device-gamepad; } -.#{$ti-prefix}-device-gamepad-2:before { content: $ti-icon-device-gamepad-2; } -.#{$ti-prefix}-device-heart-monitor:before { content: $ti-icon-device-heart-monitor; } -.#{$ti-prefix}-device-laptop:before { content: $ti-icon-device-laptop; } -.#{$ti-prefix}-device-laptop-off:before { content: $ti-icon-device-laptop-off; } -.#{$ti-prefix}-device-mobile:before { content: $ti-icon-device-mobile; } -.#{$ti-prefix}-device-mobile-charging:before { content: $ti-icon-device-mobile-charging; } -.#{$ti-prefix}-device-mobile-message:before { content: $ti-icon-device-mobile-message; } -.#{$ti-prefix}-device-mobile-off:before { content: $ti-icon-device-mobile-off; } -.#{$ti-prefix}-device-mobile-rotated:before { content: $ti-icon-device-mobile-rotated; } -.#{$ti-prefix}-device-mobile-vibration:before { content: $ti-icon-device-mobile-vibration; } -.#{$ti-prefix}-device-nintendo:before { content: $ti-icon-device-nintendo; } -.#{$ti-prefix}-device-nintendo-off:before { content: $ti-icon-device-nintendo-off; } -.#{$ti-prefix}-device-speaker:before { content: $ti-icon-device-speaker; } -.#{$ti-prefix}-device-speaker-off:before { content: $ti-icon-device-speaker-off; } -.#{$ti-prefix}-device-tablet:before { content: $ti-icon-device-tablet; } -.#{$ti-prefix}-device-tablet-off:before { content: $ti-icon-device-tablet-off; } -.#{$ti-prefix}-device-tv:before { content: $ti-icon-device-tv; } -.#{$ti-prefix}-device-tv-off:before { content: $ti-icon-device-tv-off; } -.#{$ti-prefix}-device-tv-old:before { content: $ti-icon-device-tv-old; } -.#{$ti-prefix}-device-watch:before { content: $ti-icon-device-watch; } -.#{$ti-prefix}-device-watch-off:before { content: $ti-icon-device-watch-off; } -.#{$ti-prefix}-device-watch-stats:before { content: $ti-icon-device-watch-stats; } -.#{$ti-prefix}-device-watch-stats-2:before { content: $ti-icon-device-watch-stats-2; } -.#{$ti-prefix}-devices:before { content: $ti-icon-devices; } -.#{$ti-prefix}-devices-2:before { content: $ti-icon-devices-2; } -.#{$ti-prefix}-devices-off:before { content: $ti-icon-devices-off; } -.#{$ti-prefix}-devices-pc:before { content: $ti-icon-devices-pc; } -.#{$ti-prefix}-devices-pc-off:before { content: $ti-icon-devices-pc-off; } -.#{$ti-prefix}-dialpad:before { content: $ti-icon-dialpad; } -.#{$ti-prefix}-dialpad-off:before { content: $ti-icon-dialpad-off; } -.#{$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}-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; } -.#{$ti-prefix}-dice-3:before { content: $ti-icon-dice-3; } -.#{$ti-prefix}-dice-4:before { content: $ti-icon-dice-4; } -.#{$ti-prefix}-dice-5:before { content: $ti-icon-dice-5; } -.#{$ti-prefix}-dice-6:before { content: $ti-icon-dice-6; } -.#{$ti-prefix}-dimensions:before { content: $ti-icon-dimensions; } -.#{$ti-prefix}-direction:before { content: $ti-icon-direction; } -.#{$ti-prefix}-direction-horizontal:before { content: $ti-icon-direction-horizontal; } -.#{$ti-prefix}-direction-sign:before { content: $ti-icon-direction-sign; } -.#{$ti-prefix}-directions:before { content: $ti-icon-directions; } -.#{$ti-prefix}-directions-off:before { content: $ti-icon-directions-off; } -.#{$ti-prefix}-disabled:before { content: $ti-icon-disabled; } -.#{$ti-prefix}-disabled-2:before { content: $ti-icon-disabled-2; } -.#{$ti-prefix}-disabled-off:before { content: $ti-icon-disabled-off; } -.#{$ti-prefix}-disc:before { content: $ti-icon-disc; } -.#{$ti-prefix}-disc-off:before { content: $ti-icon-disc-off; } -.#{$ti-prefix}-discount:before { content: $ti-icon-discount; } -.#{$ti-prefix}-discount-2:before { content: $ti-icon-discount-2; } -.#{$ti-prefix}-discount-check:before { content: $ti-icon-discount-check; } -.#{$ti-prefix}-divide:before { content: $ti-icon-divide; } -.#{$ti-prefix}-dna:before { content: $ti-icon-dna; } -.#{$ti-prefix}-dna-2:before { content: $ti-icon-dna-2; } -.#{$ti-prefix}-dna-2-off:before { content: $ti-icon-dna-2-off; } -.#{$ti-prefix}-dna-off:before { content: $ti-icon-dna-off; } -.#{$ti-prefix}-dog-bowl:before { content: $ti-icon-dog-bowl; } -.#{$ti-prefix}-door:before { content: $ti-icon-door; } -.#{$ti-prefix}-door-enter:before { content: $ti-icon-door-enter; } -.#{$ti-prefix}-door-exit:before { content: $ti-icon-door-exit; } -.#{$ti-prefix}-door-off:before { content: $ti-icon-door-off; } -.#{$ti-prefix}-dots:before { content: $ti-icon-dots; } -.#{$ti-prefix}-dots-circle-horizontal:before { content: $ti-icon-dots-circle-horizontal; } -.#{$ti-prefix}-dots-diagonal:before { content: $ti-icon-dots-diagonal; } -.#{$ti-prefix}-dots-diagonal-2:before { content: $ti-icon-dots-diagonal-2; } -.#{$ti-prefix}-dots-vertical:before { content: $ti-icon-dots-vertical; } -.#{$ti-prefix}-download:before { content: $ti-icon-download; } -.#{$ti-prefix}-download-off:before { content: $ti-icon-download-off; } -.#{$ti-prefix}-drag-drop:before { content: $ti-icon-drag-drop; } -.#{$ti-prefix}-drag-drop-2:before { content: $ti-icon-drag-drop-2; } -.#{$ti-prefix}-drone:before { content: $ti-icon-drone; } -.#{$ti-prefix}-drone-off:before { content: $ti-icon-drone-off; } -.#{$ti-prefix}-drop-circle:before { content: $ti-icon-drop-circle; } -.#{$ti-prefix}-droplet:before { content: $ti-icon-droplet; } -.#{$ti-prefix}-droplet-filled:before { content: $ti-icon-droplet-filled; } -.#{$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-off:before { content: $ti-icon-droplet-off; } -.#{$ti-prefix}-ear:before { content: $ti-icon-ear; } -.#{$ti-prefix}-ear-off:before { content: $ti-icon-ear-off; } -.#{$ti-prefix}-edit:before { content: $ti-icon-edit; } -.#{$ti-prefix}-edit-circle:before { content: $ti-icon-edit-circle; } -.#{$ti-prefix}-edit-circle-off:before { content: $ti-icon-edit-circle-off; } -.#{$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-off:before { content: $ti-icon-egg-off; } -.#{$ti-prefix}-elevator:before { content: $ti-icon-elevator; } -.#{$ti-prefix}-emergency-bed:before { content: $ti-icon-emergency-bed; } -.#{$ti-prefix}-empathize:before { content: $ti-icon-empathize; } -.#{$ti-prefix}-emphasis:before { content: $ti-icon-emphasis; } -.#{$ti-prefix}-engine:before { content: $ti-icon-engine; } -.#{$ti-prefix}-engine-off:before { content: $ti-icon-engine-off; } -.#{$ti-prefix}-equal:before { content: $ti-icon-equal; } -.#{$ti-prefix}-equal-not:before { content: $ti-icon-equal-not; } -.#{$ti-prefix}-eraser:before { content: $ti-icon-eraser; } -.#{$ti-prefix}-eraser-off:before { content: $ti-icon-eraser-off; } -.#{$ti-prefix}-error-404:before { content: $ti-icon-error-404; } -.#{$ti-prefix}-error-404-off:before { content: $ti-icon-error-404-off; } -.#{$ti-prefix}-exchange:before { content: $ti-icon-exchange; } -.#{$ti-prefix}-exchange-off:before { content: $ti-icon-exchange-off; } -.#{$ti-prefix}-exclamation-mark:before { content: $ti-icon-exclamation-mark; } -.#{$ti-prefix}-exclamation-mark-off:before { content: $ti-icon-exclamation-mark-off; } -.#{$ti-prefix}-explicit:before { content: $ti-icon-explicit; } -.#{$ti-prefix}-exposure:before { content: $ti-icon-exposure; } -.#{$ti-prefix}-exposure-0:before { content: $ti-icon-exposure-0; } -.#{$ti-prefix}-exposure-minus-1:before { content: $ti-icon-exposure-minus-1; } -.#{$ti-prefix}-exposure-minus-2:before { content: $ti-icon-exposure-minus-2; } -.#{$ti-prefix}-exposure-plus-1:before { content: $ti-icon-exposure-plus-1; } -.#{$ti-prefix}-exposure-plus-2:before { content: $ti-icon-exposure-plus-2; } -.#{$ti-prefix}-external-link:before { content: $ti-icon-external-link; } -.#{$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-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; } -.#{$ti-prefix}-eyeglass-2:before { content: $ti-icon-eyeglass-2; } -.#{$ti-prefix}-eyeglass-off:before { content: $ti-icon-eyeglass-off; } -.#{$ti-prefix}-face-id:before { content: $ti-icon-face-id; } -.#{$ti-prefix}-face-id-error:before { content: $ti-icon-face-id-error; } -.#{$ti-prefix}-face-mask:before { content: $ti-icon-face-mask; } -.#{$ti-prefix}-face-mask-off:before { content: $ti-icon-face-mask-off; } -.#{$ti-prefix}-fall:before { content: $ti-icon-fall; } -.#{$ti-prefix}-feather:before { content: $ti-icon-feather; } -.#{$ti-prefix}-feather-off:before { content: $ti-icon-feather-off; } -.#{$ti-prefix}-fence:before { content: $ti-icon-fence; } -.#{$ti-prefix}-fence-off:before { content: $ti-icon-fence-off; } -.#{$ti-prefix}-fidget-spinner:before { content: $ti-icon-fidget-spinner; } -.#{$ti-prefix}-file:before { content: $ti-icon-file; } -.#{$ti-prefix}-file-3d:before { content: $ti-icon-file-3d; } -.#{$ti-prefix}-file-alert:before { content: $ti-icon-file-alert; } -.#{$ti-prefix}-file-analytics:before { content: $ti-icon-file-analytics; } -.#{$ti-prefix}-file-arrow-left:before { content: $ti-icon-file-arrow-left; } -.#{$ti-prefix}-file-arrow-right:before { content: $ti-icon-file-arrow-right; } -.#{$ti-prefix}-file-barcode:before { content: $ti-icon-file-barcode; } -.#{$ti-prefix}-file-certificate:before { content: $ti-icon-file-certificate; } -.#{$ti-prefix}-file-chart:before { content: $ti-icon-file-chart; } -.#{$ti-prefix}-file-check:before { content: $ti-icon-file-check; } -.#{$ti-prefix}-file-code:before { content: $ti-icon-file-code; } -.#{$ti-prefix}-file-code-2:before { content: $ti-icon-file-code-2; } -.#{$ti-prefix}-file-database:before { content: $ti-icon-file-database; } -.#{$ti-prefix}-file-description:before { content: $ti-icon-file-description; } -.#{$ti-prefix}-file-diff:before { content: $ti-icon-file-diff; } -.#{$ti-prefix}-file-digit:before { content: $ti-icon-file-digit; } -.#{$ti-prefix}-file-dislike:before { content: $ti-icon-file-dislike; } -.#{$ti-prefix}-file-dollar:before { content: $ti-icon-file-dollar; } -.#{$ti-prefix}-file-dots:before { content: $ti-icon-file-dots; } -.#{$ti-prefix}-file-download:before { content: $ti-icon-file-download; } -.#{$ti-prefix}-file-euro:before { content: $ti-icon-file-euro; } -.#{$ti-prefix}-file-export:before { content: $ti-icon-file-export; } -.#{$ti-prefix}-file-horizontal:before { content: $ti-icon-file-horizontal; } -.#{$ti-prefix}-file-import:before { content: $ti-icon-file-import; } -.#{$ti-prefix}-file-info:before { content: $ti-icon-file-info; } -.#{$ti-prefix}-file-invoice:before { content: $ti-icon-file-invoice; } -.#{$ti-prefix}-file-like:before { content: $ti-icon-file-like; } -.#{$ti-prefix}-file-minus:before { content: $ti-icon-file-minus; } -.#{$ti-prefix}-file-music:before { content: $ti-icon-file-music; } -.#{$ti-prefix}-file-off:before { content: $ti-icon-file-off; } -.#{$ti-prefix}-file-orientation:before { content: $ti-icon-file-orientation; } -.#{$ti-prefix}-file-pencil:before { content: $ti-icon-file-pencil; } -.#{$ti-prefix}-file-phone:before { content: $ti-icon-file-phone; } -.#{$ti-prefix}-file-plus:before { content: $ti-icon-file-plus; } -.#{$ti-prefix}-file-power:before { content: $ti-icon-file-power; } -.#{$ti-prefix}-file-report:before { content: $ti-icon-file-report; } -.#{$ti-prefix}-file-rss:before { content: $ti-icon-file-rss; } -.#{$ti-prefix}-file-scissors:before { content: $ti-icon-file-scissors; } -.#{$ti-prefix}-file-search:before { content: $ti-icon-file-search; } -.#{$ti-prefix}-file-settings:before { content: $ti-icon-file-settings; } -.#{$ti-prefix}-file-shredder:before { content: $ti-icon-file-shredder; } -.#{$ti-prefix}-file-signal:before { content: $ti-icon-file-signal; } -.#{$ti-prefix}-file-spreadsheet:before { content: $ti-icon-file-spreadsheet; } -.#{$ti-prefix}-file-star:before { content: $ti-icon-file-star; } -.#{$ti-prefix}-file-symlink:before { content: $ti-icon-file-symlink; } -.#{$ti-prefix}-file-text:before { content: $ti-icon-file-text; } -.#{$ti-prefix}-file-time:before { content: $ti-icon-file-time; } -.#{$ti-prefix}-file-typography:before { content: $ti-icon-file-typography; } -.#{$ti-prefix}-file-unknown:before { content: $ti-icon-file-unknown; } -.#{$ti-prefix}-file-upload:before { content: $ti-icon-file-upload; } -.#{$ti-prefix}-file-vector:before { content: $ti-icon-file-vector; } -.#{$ti-prefix}-file-x:before { content: $ti-icon-file-x; } -.#{$ti-prefix}-file-zip:before { content: $ti-icon-file-zip; } -.#{$ti-prefix}-files:before { content: $ti-icon-files; } -.#{$ti-prefix}-files-off:before { content: $ti-icon-files-off; } -.#{$ti-prefix}-filter:before { content: $ti-icon-filter; } -.#{$ti-prefix}-filter-off:before { content: $ti-icon-filter-off; } -.#{$ti-prefix}-fingerprint:before { content: $ti-icon-fingerprint; } -.#{$ti-prefix}-fingerprint-off:before { content: $ti-icon-fingerprint-off; } -.#{$ti-prefix}-firetruck:before { content: $ti-icon-firetruck; } -.#{$ti-prefix}-first-aid-kit:before { content: $ti-icon-first-aid-kit; } -.#{$ti-prefix}-fish:before { content: $ti-icon-fish; } -.#{$ti-prefix}-fish-bone:before { content: $ti-icon-fish-bone; } -.#{$ti-prefix}-fish-hook:before { content: $ti-icon-fish-hook; } -.#{$ti-prefix}-fish-off:before { content: $ti-icon-fish-off; } -.#{$ti-prefix}-flag:before { content: $ti-icon-flag; } -.#{$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-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; } -.#{$ti-prefix}-flare:before { content: $ti-icon-flare; } -.#{$ti-prefix}-flask:before { content: $ti-icon-flask; } -.#{$ti-prefix}-flask-2:before { content: $ti-icon-flask-2; } -.#{$ti-prefix}-flask-2-off:before { content: $ti-icon-flask-2-off; } -.#{$ti-prefix}-flask-off:before { content: $ti-icon-flask-off; } -.#{$ti-prefix}-flip-horizontal:before { content: $ti-icon-flip-horizontal; } -.#{$ti-prefix}-flip-vertical:before { content: $ti-icon-flip-vertical; } -.#{$ti-prefix}-float-center:before { content: $ti-icon-float-center; } -.#{$ti-prefix}-float-left:before { content: $ti-icon-float-left; } -.#{$ti-prefix}-float-none:before { content: $ti-icon-float-none; } -.#{$ti-prefix}-float-right:before { content: $ti-icon-float-right; } -.#{$ti-prefix}-flower:before { content: $ti-icon-flower; } -.#{$ti-prefix}-flower-off:before { content: $ti-icon-flower-off; } -.#{$ti-prefix}-focus:before { content: $ti-icon-focus; } -.#{$ti-prefix}-focus-2:before { content: $ti-icon-focus-2; } -.#{$ti-prefix}-focus-centered:before { content: $ti-icon-focus-centered; } -.#{$ti-prefix}-fold:before { content: $ti-icon-fold; } -.#{$ti-prefix}-fold-down:before { content: $ti-icon-fold-down; } -.#{$ti-prefix}-fold-up:before { content: $ti-icon-fold-up; } -.#{$ti-prefix}-folder:before { content: $ti-icon-folder; } -.#{$ti-prefix}-folder-minus:before { content: $ti-icon-folder-minus; } -.#{$ti-prefix}-folder-off:before { content: $ti-icon-folder-off; } -.#{$ti-prefix}-folder-plus:before { content: $ti-icon-folder-plus; } -.#{$ti-prefix}-folder-x:before { content: $ti-icon-folder-x; } -.#{$ti-prefix}-folders:before { content: $ti-icon-folders; } -.#{$ti-prefix}-folders-off:before { content: $ti-icon-folders-off; } -.#{$ti-prefix}-forbid:before { content: $ti-icon-forbid; } -.#{$ti-prefix}-forbid-2:before { content: $ti-icon-forbid-2; } -.#{$ti-prefix}-forklift:before { content: $ti-icon-forklift; } -.#{$ti-prefix}-forms:before { content: $ti-icon-forms; } -.#{$ti-prefix}-fountain:before { content: $ti-icon-fountain; } -.#{$ti-prefix}-fountain-off:before { content: $ti-icon-fountain-off; } -.#{$ti-prefix}-frame:before { content: $ti-icon-frame; } -.#{$ti-prefix}-frame-off:before { content: $ti-icon-frame-off; } -.#{$ti-prefix}-free-rights:before { content: $ti-icon-free-rights; } -.#{$ti-prefix}-fridge:before { content: $ti-icon-fridge; } -.#{$ti-prefix}-friends:before { content: $ti-icon-friends; } -.#{$ti-prefix}-friends-off:before { content: $ti-icon-friends-off; } -.#{$ti-prefix}-function:before { content: $ti-icon-function; } -.#{$ti-prefix}-garden-cart:before { content: $ti-icon-garden-cart; } -.#{$ti-prefix}-gas-station:before { content: $ti-icon-gas-station; } -.#{$ti-prefix}-gas-station-off:before { content: $ti-icon-gas-station-off; } -.#{$ti-prefix}-gauge:before { content: $ti-icon-gauge; } -.#{$ti-prefix}-gauge-off:before { content: $ti-icon-gauge-off; } -.#{$ti-prefix}-gavel:before { content: $ti-icon-gavel; } -.#{$ti-prefix}-gender-agender:before { content: $ti-icon-gender-agender; } -.#{$ti-prefix}-gender-androgyne:before { content: $ti-icon-gender-androgyne; } -.#{$ti-prefix}-gender-bigender:before { content: $ti-icon-gender-bigender; } -.#{$ti-prefix}-gender-demiboy:before { content: $ti-icon-gender-demiboy; } -.#{$ti-prefix}-gender-demigirl:before { content: $ti-icon-gender-demigirl; } -.#{$ti-prefix}-gender-epicene:before { content: $ti-icon-gender-epicene; } -.#{$ti-prefix}-gender-female:before { content: $ti-icon-gender-female; } -.#{$ti-prefix}-gender-femme:before { content: $ti-icon-gender-femme; } -.#{$ti-prefix}-gender-genderfluid:before { content: $ti-icon-gender-genderfluid; } -.#{$ti-prefix}-gender-genderless:before { content: $ti-icon-gender-genderless; } -.#{$ti-prefix}-gender-genderqueer:before { content: $ti-icon-gender-genderqueer; } -.#{$ti-prefix}-gender-hermaphrodite:before { content: $ti-icon-gender-hermaphrodite; } -.#{$ti-prefix}-gender-intergender:before { content: $ti-icon-gender-intergender; } -.#{$ti-prefix}-gender-male:before { content: $ti-icon-gender-male; } -.#{$ti-prefix}-gender-neutrois:before { content: $ti-icon-gender-neutrois; } -.#{$ti-prefix}-gender-third:before { content: $ti-icon-gender-third; } -.#{$ti-prefix}-gender-transgender:before { content: $ti-icon-gender-transgender; } -.#{$ti-prefix}-gender-trasvesti:before { content: $ti-icon-gender-trasvesti; } -.#{$ti-prefix}-geometry:before { content: $ti-icon-geometry; } -.#{$ti-prefix}-ghost:before { content: $ti-icon-ghost; } -.#{$ti-prefix}-gif:before { content: $ti-icon-gif; } -.#{$ti-prefix}-gift:before { content: $ti-icon-gift; } -.#{$ti-prefix}-git-branch:before { content: $ti-icon-git-branch; } -.#{$ti-prefix}-git-commit:before { content: $ti-icon-git-commit; } -.#{$ti-prefix}-git-compare:before { content: $ti-icon-git-compare; } -.#{$ti-prefix}-git-fork:before { content: $ti-icon-git-fork; } -.#{$ti-prefix}-git-merge:before { content: $ti-icon-git-merge; } -.#{$ti-prefix}-git-pull-request:before { content: $ti-icon-git-pull-request; } -.#{$ti-prefix}-git-pull-request-closed:before { content: $ti-icon-git-pull-request-closed; } -.#{$ti-prefix}-git-pull-request-draft:before { content: $ti-icon-git-pull-request-draft; } -.#{$ti-prefix}-gizmo:before { content: $ti-icon-gizmo; } -.#{$ti-prefix}-glass:before { content: $ti-icon-glass; } -.#{$ti-prefix}-glass-full:before { content: $ti-icon-glass-full; } -.#{$ti-prefix}-glass-off:before { content: $ti-icon-glass-off; } -.#{$ti-prefix}-globe:before { content: $ti-icon-globe; } -.#{$ti-prefix}-globe-off:before { content: $ti-icon-globe-off; } -.#{$ti-prefix}-golf:before { content: $ti-icon-golf; } -.#{$ti-prefix}-golf-off:before { content: $ti-icon-golf-off; } -.#{$ti-prefix}-gps:before { content: $ti-icon-gps; } -.#{$ti-prefix}-grain:before { content: $ti-icon-grain; } -.#{$ti-prefix}-graph:before { content: $ti-icon-graph; } -.#{$ti-prefix}-grid-dots:before { content: $ti-icon-grid-dots; } -.#{$ti-prefix}-grid-pattern:before { content: $ti-icon-grid-pattern; } -.#{$ti-prefix}-grill:before { content: $ti-icon-grill; } -.#{$ti-prefix}-grill-off:before { content: $ti-icon-grill-off; } -.#{$ti-prefix}-grip-horizontal:before { content: $ti-icon-grip-horizontal; } -.#{$ti-prefix}-grip-vertical:before { content: $ti-icon-grip-vertical; } -.#{$ti-prefix}-growth:before { content: $ti-icon-growth; } -.#{$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; } -.#{$ti-prefix}-h-4:before { content: $ti-icon-h-4; } -.#{$ti-prefix}-h-5:before { content: $ti-icon-h-5; } -.#{$ti-prefix}-h-6:before { content: $ti-icon-h-6; } -.#{$ti-prefix}-hammer:before { content: $ti-icon-hammer; } -.#{$ti-prefix}-hammer-off:before { content: $ti-icon-hammer-off; } -.#{$ti-prefix}-hand-click:before { content: $ti-icon-hand-click; } -.#{$ti-prefix}-hand-finger:before { content: $ti-icon-hand-finger; } -.#{$ti-prefix}-hand-finger-off:before { content: $ti-icon-hand-finger-off; } -.#{$ti-prefix}-hand-grab:before { content: $ti-icon-hand-grab; } -.#{$ti-prefix}-hand-little-finger:before { content: $ti-icon-hand-little-finger; } -.#{$ti-prefix}-hand-middle-finger:before { content: $ti-icon-hand-middle-finger; } -.#{$ti-prefix}-hand-move:before { content: $ti-icon-hand-move; } -.#{$ti-prefix}-hand-off:before { content: $ti-icon-hand-off; } -.#{$ti-prefix}-hand-ring-finger:before { content: $ti-icon-hand-ring-finger; } -.#{$ti-prefix}-hand-rock:before { content: $ti-icon-hand-rock; } -.#{$ti-prefix}-hand-stop:before { content: $ti-icon-hand-stop; } -.#{$ti-prefix}-hand-three-fingers:before { content: $ti-icon-hand-three-fingers; } -.#{$ti-prefix}-hand-two-fingers:before { content: $ti-icon-hand-two-fingers; } -.#{$ti-prefix}-hanger:before { content: $ti-icon-hanger; } -.#{$ti-prefix}-hanger-2:before { content: $ti-icon-hanger-2; } -.#{$ti-prefix}-hanger-off:before { content: $ti-icon-hanger-off; } -.#{$ti-prefix}-hash:before { content: $ti-icon-hash; } -.#{$ti-prefix}-haze:before { content: $ti-icon-haze; } -.#{$ti-prefix}-heading:before { content: $ti-icon-heading; } -.#{$ti-prefix}-heading-off:before { content: $ti-icon-heading-off; } -.#{$ti-prefix}-headphones:before { content: $ti-icon-headphones; } -.#{$ti-prefix}-headphones-off:before { content: $ti-icon-headphones-off; } -.#{$ti-prefix}-headset:before { content: $ti-icon-headset; } -.#{$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-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; } -.#{$ti-prefix}-heart-plus:before { content: $ti-icon-heart-plus; } -.#{$ti-prefix}-heart-rate-monitor:before { content: $ti-icon-heart-rate-monitor; } -.#{$ti-prefix}-heartbeat:before { content: $ti-icon-heartbeat; } -.#{$ti-prefix}-helicopter:before { content: $ti-icon-helicopter; } -.#{$ti-prefix}-helicopter-landing:before { content: $ti-icon-helicopter-landing; } -.#{$ti-prefix}-helmet:before { content: $ti-icon-helmet; } -.#{$ti-prefix}-helmet-off:before { content: $ti-icon-helmet-off; } -.#{$ti-prefix}-help:before { content: $ti-icon-help; } -.#{$ti-prefix}-hexagon:before { content: $ti-icon-hexagon; } -.#{$ti-prefix}-hexagon-off:before { content: $ti-icon-hexagon-off; } -.#{$ti-prefix}-hexagons:before { content: $ti-icon-hexagons; } -.#{$ti-prefix}-hierarchy:before { content: $ti-icon-hierarchy; } -.#{$ti-prefix}-hierarchy-2:before { content: $ti-icon-hierarchy-2; } -.#{$ti-prefix}-hierarchy-3:before { content: $ti-icon-hierarchy-3; } -.#{$ti-prefix}-highlight:before { content: $ti-icon-highlight; } -.#{$ti-prefix}-highlight-off:before { content: $ti-icon-highlight-off; } -.#{$ti-prefix}-history:before { content: $ti-icon-history; } -.#{$ti-prefix}-history-toggle:before { content: $ti-icon-history-toggle; } -.#{$ti-prefix}-home:before { content: $ti-icon-home; } -.#{$ti-prefix}-home-2:before { content: $ti-icon-home-2; } -.#{$ti-prefix}-home-off:before { content: $ti-icon-home-off; } -.#{$ti-prefix}-horse-toy:before { content: $ti-icon-horse-toy; } -.#{$ti-prefix}-hotel-service:before { content: $ti-icon-hotel-service; } -.#{$ti-prefix}-hourglass:before { content: $ti-icon-hourglass; } -.#{$ti-prefix}-hourglass-empty:before { content: $ti-icon-hourglass-empty; } -.#{$ti-prefix}-hourglass-high:before { content: $ti-icon-hourglass-high; } -.#{$ti-prefix}-hourglass-low:before { content: $ti-icon-hourglass-low; } -.#{$ti-prefix}-hourglass-off:before { content: $ti-icon-hourglass-off; } -.#{$ti-prefix}-ice-cream:before { content: $ti-icon-ice-cream; } -.#{$ti-prefix}-ice-cream-2:before { content: $ti-icon-ice-cream-2; } -.#{$ti-prefix}-ice-cream-off:before { content: $ti-icon-ice-cream-off; } -.#{$ti-prefix}-ice-skating:before { content: $ti-icon-ice-skating; } -.#{$ti-prefix}-icons:before { content: $ti-icon-icons; } -.#{$ti-prefix}-id:before { content: $ti-icon-id; } -.#{$ti-prefix}-id-badge:before { content: $ti-icon-id-badge; } -.#{$ti-prefix}-id-badge-2:before { content: $ti-icon-id-badge-2; } -.#{$ti-prefix}-id-off:before { content: $ti-icon-id-off; } -.#{$ti-prefix}-inbox:before { content: $ti-icon-inbox; } -.#{$ti-prefix}-inbox-off:before { content: $ti-icon-inbox-off; } -.#{$ti-prefix}-indent-decrease:before { content: $ti-icon-indent-decrease; } -.#{$ti-prefix}-indent-increase:before { content: $ti-icon-indent-increase; } -.#{$ti-prefix}-infinity:before { content: $ti-icon-infinity; } -.#{$ti-prefix}-info-circle:before { content: $ti-icon-info-circle; } -.#{$ti-prefix}-info-square:before { content: $ti-icon-info-square; } -.#{$ti-prefix}-input-search:before { content: $ti-icon-input-search; } -.#{$ti-prefix}-italic:before { content: $ti-icon-italic; } -.#{$ti-prefix}-jewish-star:before { content: $ti-icon-jewish-star; } -.#{$ti-prefix}-jump-rope:before { content: $ti-icon-jump-rope; } -.#{$ti-prefix}-karate:before { content: $ti-icon-karate; } -.#{$ti-prefix}-kayak:before { content: $ti-icon-kayak; } -.#{$ti-prefix}-kering:before { content: $ti-icon-kering; } -.#{$ti-prefix}-key:before { content: $ti-icon-key; } -.#{$ti-prefix}-key-off:before { content: $ti-icon-key-off; } -.#{$ti-prefix}-keyboard:before { content: $ti-icon-keyboard; } -.#{$ti-prefix}-keyboard-hide:before { content: $ti-icon-keyboard-hide; } -.#{$ti-prefix}-keyboard-off:before { content: $ti-icon-keyboard-off; } -.#{$ti-prefix}-keyboard-show:before { content: $ti-icon-keyboard-show; } -.#{$ti-prefix}-ladder:before { content: $ti-icon-ladder; } -.#{$ti-prefix}-ladder-off:before { content: $ti-icon-ladder-off; } -.#{$ti-prefix}-lamp:before { content: $ti-icon-lamp; } -.#{$ti-prefix}-lamp-2:before { content: $ti-icon-lamp-2; } -.#{$ti-prefix}-lamp-off:before { content: $ti-icon-lamp-off; } -.#{$ti-prefix}-language:before { content: $ti-icon-language; } -.#{$ti-prefix}-language-hiragana:before { content: $ti-icon-language-hiragana; } -.#{$ti-prefix}-language-katakana:before { content: $ti-icon-language-katakana; } -.#{$ti-prefix}-language-off:before { content: $ti-icon-language-off; } -.#{$ti-prefix}-lasso:before { content: $ti-icon-lasso; } -.#{$ti-prefix}-lasso-off:before { content: $ti-icon-lasso-off; } -.#{$ti-prefix}-layers-difference:before { content: $ti-icon-layers-difference; } -.#{$ti-prefix}-layers-intersect:before { content: $ti-icon-layers-intersect; } -.#{$ti-prefix}-layers-intersect-2:before { content: $ti-icon-layers-intersect-2; } -.#{$ti-prefix}-layers-linked:before { content: $ti-icon-layers-linked; } -.#{$ti-prefix}-layers-off:before { content: $ti-icon-layers-off; } -.#{$ti-prefix}-layers-subtract:before { content: $ti-icon-layers-subtract; } -.#{$ti-prefix}-layers-union:before { content: $ti-icon-layers-union; } -.#{$ti-prefix}-layout:before { content: $ti-icon-layout; } -.#{$ti-prefix}-layout-2:before { content: $ti-icon-layout-2; } -.#{$ti-prefix}-layout-align-bottom:before { content: $ti-icon-layout-align-bottom; } -.#{$ti-prefix}-layout-align-center:before { content: $ti-icon-layout-align-center; } -.#{$ti-prefix}-layout-align-left:before { content: $ti-icon-layout-align-left; } -.#{$ti-prefix}-layout-align-middle:before { content: $ti-icon-layout-align-middle; } -.#{$ti-prefix}-layout-align-right:before { content: $ti-icon-layout-align-right; } -.#{$ti-prefix}-layout-align-top:before { content: $ti-icon-layout-align-top; } -.#{$ti-prefix}-layout-board:before { content: $ti-icon-layout-board; } -.#{$ti-prefix}-layout-board-split:before { content: $ti-icon-layout-board-split; } -.#{$ti-prefix}-layout-bottombar:before { content: $ti-icon-layout-bottombar; } -.#{$ti-prefix}-layout-bottombar-collapse:before { content: $ti-icon-layout-bottombar-collapse; } -.#{$ti-prefix}-layout-bottombar-expand:before { content: $ti-icon-layout-bottombar-expand; } -.#{$ti-prefix}-layout-cards:before { content: $ti-icon-layout-cards; } -.#{$ti-prefix}-layout-columns:before { content: $ti-icon-layout-columns; } -.#{$ti-prefix}-layout-dashboard:before { content: $ti-icon-layout-dashboard; } -.#{$ti-prefix}-layout-distribute-horizontal:before { content: $ti-icon-layout-distribute-horizontal; } -.#{$ti-prefix}-layout-distribute-vertical:before { content: $ti-icon-layout-distribute-vertical; } -.#{$ti-prefix}-layout-grid:before { content: $ti-icon-layout-grid; } -.#{$ti-prefix}-layout-grid-add:before { content: $ti-icon-layout-grid-add; } -.#{$ti-prefix}-layout-kanban:before { content: $ti-icon-layout-kanban; } -.#{$ti-prefix}-layout-list:before { content: $ti-icon-layout-list; } -.#{$ti-prefix}-layout-navbar:before { content: $ti-icon-layout-navbar; } -.#{$ti-prefix}-layout-navbar-collapse:before { content: $ti-icon-layout-navbar-collapse; } -.#{$ti-prefix}-layout-navbar-expand:before { content: $ti-icon-layout-navbar-expand; } -.#{$ti-prefix}-layout-off:before { content: $ti-icon-layout-off; } -.#{$ti-prefix}-layout-rows:before { content: $ti-icon-layout-rows; } -.#{$ti-prefix}-layout-sidebar:before { content: $ti-icon-layout-sidebar; } -.#{$ti-prefix}-layout-sidebar-left-collapse:before { content: $ti-icon-layout-sidebar-left-collapse; } -.#{$ti-prefix}-layout-sidebar-left-expand:before { content: $ti-icon-layout-sidebar-left-expand; } -.#{$ti-prefix}-layout-sidebar-right:before { content: $ti-icon-layout-sidebar-right; } -.#{$ti-prefix}-layout-sidebar-right-collapse:before { content: $ti-icon-layout-sidebar-right-collapse; } -.#{$ti-prefix}-layout-sidebar-right-expand:before { content: $ti-icon-layout-sidebar-right-expand; } -.#{$ti-prefix}-leaf:before { content: $ti-icon-leaf; } -.#{$ti-prefix}-leaf-off:before { content: $ti-icon-leaf-off; } -.#{$ti-prefix}-lego:before { content: $ti-icon-lego; } -.#{$ti-prefix}-lemon:before { content: $ti-icon-lemon; } -.#{$ti-prefix}-lemon-2:before { content: $ti-icon-lemon-2; } -.#{$ti-prefix}-letter-a:before { content: $ti-icon-letter-a; } -.#{$ti-prefix}-letter-b:before { content: $ti-icon-letter-b; } -.#{$ti-prefix}-letter-c:before { content: $ti-icon-letter-c; } -.#{$ti-prefix}-letter-case:before { content: $ti-icon-letter-case; } -.#{$ti-prefix}-letter-case-lower:before { content: $ti-icon-letter-case-lower; } -.#{$ti-prefix}-letter-case-toggle:before { content: $ti-icon-letter-case-toggle; } -.#{$ti-prefix}-letter-case-upper:before { content: $ti-icon-letter-case-upper; } -.#{$ti-prefix}-letter-d:before { content: $ti-icon-letter-d; } -.#{$ti-prefix}-letter-e:before { content: $ti-icon-letter-e; } -.#{$ti-prefix}-letter-f:before { content: $ti-icon-letter-f; } -.#{$ti-prefix}-letter-g:before { content: $ti-icon-letter-g; } -.#{$ti-prefix}-letter-h:before { content: $ti-icon-letter-h; } -.#{$ti-prefix}-letter-i:before { content: $ti-icon-letter-i; } -.#{$ti-prefix}-letter-j:before { content: $ti-icon-letter-j; } -.#{$ti-prefix}-letter-k:before { content: $ti-icon-letter-k; } -.#{$ti-prefix}-letter-l:before { content: $ti-icon-letter-l; } -.#{$ti-prefix}-letter-m:before { content: $ti-icon-letter-m; } -.#{$ti-prefix}-letter-n:before { content: $ti-icon-letter-n; } -.#{$ti-prefix}-letter-o:before { content: $ti-icon-letter-o; } -.#{$ti-prefix}-letter-p:before { content: $ti-icon-letter-p; } -.#{$ti-prefix}-letter-q:before { content: $ti-icon-letter-q; } -.#{$ti-prefix}-letter-r:before { content: $ti-icon-letter-r; } -.#{$ti-prefix}-letter-s:before { content: $ti-icon-letter-s; } -.#{$ti-prefix}-letter-spacing:before { content: $ti-icon-letter-spacing; } -.#{$ti-prefix}-letter-t:before { content: $ti-icon-letter-t; } -.#{$ti-prefix}-letter-u:before { content: $ti-icon-letter-u; } -.#{$ti-prefix}-letter-v:before { content: $ti-icon-letter-v; } -.#{$ti-prefix}-letter-w:before { content: $ti-icon-letter-w; } -.#{$ti-prefix}-letter-x:before { content: $ti-icon-letter-x; } -.#{$ti-prefix}-letter-y:before { content: $ti-icon-letter-y; } -.#{$ti-prefix}-letter-z:before { content: $ti-icon-letter-z; } -.#{$ti-prefix}-license:before { content: $ti-icon-license; } -.#{$ti-prefix}-license-off:before { content: $ti-icon-license-off; } -.#{$ti-prefix}-lifebuoy:before { content: $ti-icon-lifebuoy; } -.#{$ti-prefix}-lifebuoy-off:before { content: $ti-icon-lifebuoy-off; } -.#{$ti-prefix}-line:before { content: $ti-icon-line; } -.#{$ti-prefix}-line-dashed:before { content: $ti-icon-line-dashed; } -.#{$ti-prefix}-line-dotted:before { content: $ti-icon-line-dotted; } -.#{$ti-prefix}-line-height:before { content: $ti-icon-line-height; } -.#{$ti-prefix}-link:before { content: $ti-icon-link; } -.#{$ti-prefix}-list:before { content: $ti-icon-list; } -.#{$ti-prefix}-list-check:before { content: $ti-icon-list-check; } -.#{$ti-prefix}-list-details:before { content: $ti-icon-list-details; } -.#{$ti-prefix}-list-numbers:before { content: $ti-icon-list-numbers; } -.#{$ti-prefix}-list-search:before { content: $ti-icon-list-search; } -.#{$ti-prefix}-live-photo:before { content: $ti-icon-live-photo; } -.#{$ti-prefix}-live-view:before { content: $ti-icon-live-view; } -.#{$ti-prefix}-loader:before { content: $ti-icon-loader; } -.#{$ti-prefix}-loader-2:before { content: $ti-icon-loader-2; } -.#{$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-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; } -.#{$ti-prefix}-lock-off:before { content: $ti-icon-lock-off; } -.#{$ti-prefix}-lock-open:before { content: $ti-icon-lock-open; } -.#{$ti-prefix}-lock-open-off:before { content: $ti-icon-lock-open-off; } -.#{$ti-prefix}-lock-square:before { content: $ti-icon-lock-square; } -.#{$ti-prefix}-logic-and:before { content: $ti-icon-logic-and; } -.#{$ti-prefix}-logic-buffer:before { content: $ti-icon-logic-buffer; } -.#{$ti-prefix}-logic-nand:before { content: $ti-icon-logic-nand; } -.#{$ti-prefix}-logic-nor:before { content: $ti-icon-logic-nor; } -.#{$ti-prefix}-logic-not:before { content: $ti-icon-logic-not; } -.#{$ti-prefix}-logic-or:before { content: $ti-icon-logic-or; } -.#{$ti-prefix}-logic-xnor:before { content: $ti-icon-logic-xnor; } -.#{$ti-prefix}-logic-xor:before { content: $ti-icon-logic-xor; } -.#{$ti-prefix}-login:before { content: $ti-icon-login; } -.#{$ti-prefix}-logout:before { content: $ti-icon-logout; } -.#{$ti-prefix}-lollipop:before { content: $ti-icon-lollipop; } -.#{$ti-prefix}-lollipop-off:before { content: $ti-icon-lollipop-off; } -.#{$ti-prefix}-luggage:before { content: $ti-icon-luggage; } -.#{$ti-prefix}-luggage-off:before { content: $ti-icon-luggage-off; } -.#{$ti-prefix}-lungs:before { content: $ti-icon-lungs; } -.#{$ti-prefix}-macro:before { content: $ti-icon-macro; } -.#{$ti-prefix}-magnet:before { content: $ti-icon-magnet; } -.#{$ti-prefix}-magnet-off:before { content: $ti-icon-magnet-off; } -.#{$ti-prefix}-mail:before { content: $ti-icon-mail; } -.#{$ti-prefix}-mail-fast:before { content: $ti-icon-mail-fast; } -.#{$ti-prefix}-mail-forward:before { content: $ti-icon-mail-forward; } -.#{$ti-prefix}-mail-off:before { content: $ti-icon-mail-off; } -.#{$ti-prefix}-mail-opened:before { content: $ti-icon-mail-opened; } -.#{$ti-prefix}-mailbox:before { content: $ti-icon-mailbox; } -.#{$ti-prefix}-mailbox-off:before { content: $ti-icon-mailbox-off; } -.#{$ti-prefix}-man:before { content: $ti-icon-man; } -.#{$ti-prefix}-manual-gearbox:before { content: $ti-icon-manual-gearbox; } -.#{$ti-prefix}-map:before { content: $ti-icon-map; } -.#{$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-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; } -.#{$ti-prefix}-markdown:before { content: $ti-icon-markdown; } -.#{$ti-prefix}-marquee:before { content: $ti-icon-marquee; } -.#{$ti-prefix}-marquee-2:before { content: $ti-icon-marquee-2; } -.#{$ti-prefix}-marquee-off:before { content: $ti-icon-marquee-off; } -.#{$ti-prefix}-mars:before { content: $ti-icon-mars; } -.#{$ti-prefix}-mask:before { content: $ti-icon-mask; } -.#{$ti-prefix}-mask-off:before { content: $ti-icon-mask-off; } -.#{$ti-prefix}-masks-theater:before { content: $ti-icon-masks-theater; } -.#{$ti-prefix}-massage:before { content: $ti-icon-massage; } -.#{$ti-prefix}-math:before { content: $ti-icon-math; } -.#{$ti-prefix}-math-avg:before { content: $ti-icon-math-avg; } -.#{$ti-prefix}-math-function:before { content: $ti-icon-math-function; } -.#{$ti-prefix}-math-function-off:before { content: $ti-icon-math-function-off; } -.#{$ti-prefix}-math-max:before { content: $ti-icon-math-max; } -.#{$ti-prefix}-math-min:before { content: $ti-icon-math-min; } -.#{$ti-prefix}-math-symbols:before { content: $ti-icon-math-symbols; } -.#{$ti-prefix}-maximize:before { content: $ti-icon-maximize; } -.#{$ti-prefix}-maximize-off:before { content: $ti-icon-maximize-off; } -.#{$ti-prefix}-meat:before { content: $ti-icon-meat; } -.#{$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-off:before { content: $ti-icon-medical-cross-off; } -.#{$ti-prefix}-medicine-syrup:before { content: $ti-icon-medicine-syrup; } -.#{$ti-prefix}-menu:before { content: $ti-icon-menu; } -.#{$ti-prefix}-menu-2:before { content: $ti-icon-menu-2; } -.#{$ti-prefix}-message:before { content: $ti-icon-message; } -.#{$ti-prefix}-message-2:before { content: $ti-icon-message-2; } -.#{$ti-prefix}-message-2-code:before { content: $ti-icon-message-2-code; } -.#{$ti-prefix}-message-2-share:before { content: $ti-icon-message-2-share; } -.#{$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-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; } -.#{$ti-prefix}-message-forward:before { content: $ti-icon-message-forward; } -.#{$ti-prefix}-message-language:before { content: $ti-icon-message-language; } -.#{$ti-prefix}-message-off:before { content: $ti-icon-message-off; } -.#{$ti-prefix}-message-plus:before { content: $ti-icon-message-plus; } -.#{$ti-prefix}-message-report:before { content: $ti-icon-message-report; } -.#{$ti-prefix}-message-share:before { content: $ti-icon-message-share; } -.#{$ti-prefix}-messages:before { content: $ti-icon-messages; } -.#{$ti-prefix}-messages-off:before { content: $ti-icon-messages-off; } -.#{$ti-prefix}-meteor:before { content: $ti-icon-meteor; } -.#{$ti-prefix}-mickey:before { content: $ti-icon-mickey; } -.#{$ti-prefix}-microphone:before { content: $ti-icon-microphone; } -.#{$ti-prefix}-microphone-2:before { content: $ti-icon-microphone-2; } -.#{$ti-prefix}-microphone-off:before { content: $ti-icon-microphone-off; } -.#{$ti-prefix}-microscope:before { content: $ti-icon-microscope; } -.#{$ti-prefix}-microwave:before { content: $ti-icon-microwave; } -.#{$ti-prefix}-microwave-off:before { content: $ti-icon-microwave-off; } -.#{$ti-prefix}-military-award:before { content: $ti-icon-military-award; } -.#{$ti-prefix}-military-rank:before { content: $ti-icon-military-rank; } -.#{$ti-prefix}-milk:before { content: $ti-icon-milk; } -.#{$ti-prefix}-minimize:before { content: $ti-icon-minimize; } -.#{$ti-prefix}-minus:before { content: $ti-icon-minus; } -.#{$ti-prefix}-minus-vertical:before { content: $ti-icon-minus-vertical; } -.#{$ti-prefix}-mist:before { content: $ti-icon-mist; } -.#{$ti-prefix}-mood-boy:before { content: $ti-icon-mood-boy; } -.#{$ti-prefix}-mood-confuzed:before { content: $ti-icon-mood-confuzed; } -.#{$ti-prefix}-mood-crazy-happy:before { content: $ti-icon-mood-crazy-happy; } -.#{$ti-prefix}-mood-cry:before { content: $ti-icon-mood-cry; } -.#{$ti-prefix}-mood-empty:before { content: $ti-icon-mood-empty; } -.#{$ti-prefix}-mood-happy:before { content: $ti-icon-mood-happy; } -.#{$ti-prefix}-mood-kid:before { content: $ti-icon-mood-kid; } -.#{$ti-prefix}-mood-look-left:before { content: $ti-icon-mood-look-left; } -.#{$ti-prefix}-mood-look-right:before { content: $ti-icon-mood-look-right; } -.#{$ti-prefix}-mood-nervous:before { content: $ti-icon-mood-nervous; } -.#{$ti-prefix}-mood-neutral:before { content: $ti-icon-mood-neutral; } -.#{$ti-prefix}-mood-off:before { content: $ti-icon-mood-off; } -.#{$ti-prefix}-mood-sad:before { content: $ti-icon-mood-sad; } -.#{$ti-prefix}-mood-sing:before { content: $ti-icon-mood-sing; } -.#{$ti-prefix}-mood-smile:before { content: $ti-icon-mood-smile; } -.#{$ti-prefix}-mood-suprised:before { content: $ti-icon-mood-suprised; } -.#{$ti-prefix}-mood-tongue:before { content: $ti-icon-mood-tongue; } -.#{$ti-prefix}-moon:before { content: $ti-icon-moon; } -.#{$ti-prefix}-moon-2:before { content: $ti-icon-moon-2; } -.#{$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; } -.#{$ti-prefix}-motorbike:before { content: $ti-icon-motorbike; } -.#{$ti-prefix}-mountain:before { content: $ti-icon-mountain; } -.#{$ti-prefix}-mouse:before { content: $ti-icon-mouse; } -.#{$ti-prefix}-mouse-2:before { content: $ti-icon-mouse-2; } -.#{$ti-prefix}-mouse-off:before { content: $ti-icon-mouse-off; } -.#{$ti-prefix}-movie:before { content: $ti-icon-movie; } -.#{$ti-prefix}-movie-off:before { content: $ti-icon-movie-off; } -.#{$ti-prefix}-mug:before { content: $ti-icon-mug; } -.#{$ti-prefix}-mug-off:before { content: $ti-icon-mug-off; } -.#{$ti-prefix}-multiplier-0-5x:before { content: $ti-icon-multiplier-0-5x; } -.#{$ti-prefix}-multiplier-1-5x:before { content: $ti-icon-multiplier-1-5x; } -.#{$ti-prefix}-multiplier-1x:before { content: $ti-icon-multiplier-1x; } -.#{$ti-prefix}-multiplier-2x:before { content: $ti-icon-multiplier-2x; } -.#{$ti-prefix}-mushroom:before { content: $ti-icon-mushroom; } -.#{$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}-network:before { content: $ti-icon-network; } -.#{$ti-prefix}-new-section:before { content: $ti-icon-new-section; } -.#{$ti-prefix}-news:before { content: $ti-icon-news; } -.#{$ti-prefix}-news-off:before { content: $ti-icon-news-off; } -.#{$ti-prefix}-nfc:before { content: $ti-icon-nfc; } -.#{$ti-prefix}-nfc-off:before { content: $ti-icon-nfc-off; } -.#{$ti-prefix}-no-copyright:before { content: $ti-icon-no-copyright; } -.#{$ti-prefix}-no-creative-commons:before { content: $ti-icon-no-creative-commons; } -.#{$ti-prefix}-no-derivatives:before { content: $ti-icon-no-derivatives; } -.#{$ti-prefix}-north-star:before { content: $ti-icon-north-star; } -.#{$ti-prefix}-note:before { content: $ti-icon-note; } -.#{$ti-prefix}-note-off:before { content: $ti-icon-note-off; } -.#{$ti-prefix}-notebook:before { content: $ti-icon-notebook; } -.#{$ti-prefix}-notes:before { content: $ti-icon-notes; } -.#{$ti-prefix}-notes-off:before { content: $ti-icon-notes-off; } -.#{$ti-prefix}-notification:before { content: $ti-icon-notification; } -.#{$ti-prefix}-notification-off:before { content: $ti-icon-notification-off; } -.#{$ti-prefix}-number:before { content: $ti-icon-number; } -.#{$ti-prefix}-number-0:before { content: $ti-icon-number-0; } -.#{$ti-prefix}-number-1:before { content: $ti-icon-number-1; } -.#{$ti-prefix}-number-2:before { content: $ti-icon-number-2; } -.#{$ti-prefix}-number-3:before { content: $ti-icon-number-3; } -.#{$ti-prefix}-number-4:before { content: $ti-icon-number-4; } -.#{$ti-prefix}-number-5:before { content: $ti-icon-number-5; } -.#{$ti-prefix}-number-6:before { content: $ti-icon-number-6; } -.#{$ti-prefix}-number-7:before { content: $ti-icon-number-7; } -.#{$ti-prefix}-number-8:before { content: $ti-icon-number-8; } -.#{$ti-prefix}-number-9:before { content: $ti-icon-number-9; } -.#{$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-off:before { content: $ti-icon-octagon-off; } -.#{$ti-prefix}-old:before { content: $ti-icon-old; } -.#{$ti-prefix}-olympics:before { content: $ti-icon-olympics; } -.#{$ti-prefix}-omega:before { content: $ti-icon-omega; } -.#{$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-vertical:before { content: $ti-icon-oval-vertical; } -.#{$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; } -.#{$ti-prefix}-packages:before { content: $ti-icon-packages; } -.#{$ti-prefix}-packge-export:before { content: $ti-icon-packge-export; } -.#{$ti-prefix}-packge-import:before { content: $ti-icon-packge-import; } -.#{$ti-prefix}-pacman:before { content: $ti-icon-pacman; } -.#{$ti-prefix}-page-break:before { content: $ti-icon-page-break; } -.#{$ti-prefix}-paint:before { content: $ti-icon-paint; } -.#{$ti-prefix}-paint-off:before { content: $ti-icon-paint-off; } -.#{$ti-prefix}-palette:before { content: $ti-icon-palette; } -.#{$ti-prefix}-palette-off:before { content: $ti-icon-palette-off; } -.#{$ti-prefix}-panorama-horizontal:before { content: $ti-icon-panorama-horizontal; } -.#{$ti-prefix}-panorama-vertical:before { content: $ti-icon-panorama-vertical; } -.#{$ti-prefix}-paper-bag:before { content: $ti-icon-paper-bag; } -.#{$ti-prefix}-paper-bag-off:before { content: $ti-icon-paper-bag-off; } -.#{$ti-prefix}-paperclip:before { content: $ti-icon-paperclip; } -.#{$ti-prefix}-parachute:before { content: $ti-icon-parachute; } -.#{$ti-prefix}-parachute-off:before { content: $ti-icon-parachute-off; } -.#{$ti-prefix}-parentheses:before { content: $ti-icon-parentheses; } -.#{$ti-prefix}-parentheses-off:before { content: $ti-icon-parentheses-off; } -.#{$ti-prefix}-parking:before { content: $ti-icon-parking; } -.#{$ti-prefix}-parking-off:before { content: $ti-icon-parking-off; } -.#{$ti-prefix}-paw:before { content: $ti-icon-paw; } -.#{$ti-prefix}-peace:before { content: $ti-icon-peace; } -.#{$ti-prefix}-pencil:before { content: $ti-icon-pencil; } -.#{$ti-prefix}-pencil-minus:before { content: $ti-icon-pencil-minus; } -.#{$ti-prefix}-pencil-off:before { content: $ti-icon-pencil-off; } -.#{$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-off:before { content: $ti-icon-pennant-off; } -.#{$ti-prefix}-pentagon:before { content: $ti-icon-pentagon; } -.#{$ti-prefix}-pepper:before { content: $ti-icon-pepper; } -.#{$ti-prefix}-pepper-off:before { content: $ti-icon-pepper-off; } -.#{$ti-prefix}-percentage:before { content: $ti-icon-percentage; } -.#{$ti-prefix}-perspective:before { content: $ti-icon-perspective; } -.#{$ti-prefix}-perspective-off:before { content: $ti-icon-perspective-off; } -.#{$ti-prefix}-phone:before { content: $ti-icon-phone; } -.#{$ti-prefix}-phone-call:before { content: $ti-icon-phone-call; } -.#{$ti-prefix}-phone-calling:before { content: $ti-icon-phone-calling; } -.#{$ti-prefix}-phone-check:before { content: $ti-icon-phone-check; } -.#{$ti-prefix}-phone-incoming:before { content: $ti-icon-phone-incoming; } -.#{$ti-prefix}-phone-off:before { content: $ti-icon-phone-off; } -.#{$ti-prefix}-phone-outgoing:before { content: $ti-icon-phone-outgoing; } -.#{$ti-prefix}-phone-pause:before { content: $ti-icon-phone-pause; } -.#{$ti-prefix}-phone-plus:before { content: $ti-icon-phone-plus; } -.#{$ti-prefix}-phone-x:before { content: $ti-icon-phone-x; } -.#{$ti-prefix}-photo:before { content: $ti-icon-photo; } -.#{$ti-prefix}-photo-off:before { content: $ti-icon-photo-off; } -.#{$ti-prefix}-physotherapist:before { content: $ti-icon-physotherapist; } -.#{$ti-prefix}-picture-in-picture:before { content: $ti-icon-picture-in-picture; } -.#{$ti-prefix}-picture-in-picture-off:before { content: $ti-icon-picture-in-picture-off; } -.#{$ti-prefix}-picture-in-picture-on:before { content: $ti-icon-picture-in-picture-on; } -.#{$ti-prefix}-picture-in-picture-top:before { content: $ti-icon-picture-in-picture-top; } -.#{$ti-prefix}-pig:before { content: $ti-icon-pig; } -.#{$ti-prefix}-pig-off:before { content: $ti-icon-pig-off; } -.#{$ti-prefix}-pill:before { content: $ti-icon-pill; } -.#{$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}-pinned:before { content: $ti-icon-pinned; } -.#{$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; } -.#{$ti-prefix}-plane:before { content: $ti-icon-plane; } -.#{$ti-prefix}-plane-arrival:before { content: $ti-icon-plane-arrival; } -.#{$ti-prefix}-plane-departure:before { content: $ti-icon-plane-departure; } -.#{$ti-prefix}-plane-inflight:before { content: $ti-icon-plane-inflight; } -.#{$ti-prefix}-plane-off:before { content: $ti-icon-plane-off; } -.#{$ti-prefix}-plane-tilt:before { content: $ti-icon-plane-tilt; } -.#{$ti-prefix}-planet:before { content: $ti-icon-planet; } -.#{$ti-prefix}-planet-off:before { content: $ti-icon-planet-off; } -.#{$ti-prefix}-plant:before { content: $ti-icon-plant; } -.#{$ti-prefix}-plant-2:before { content: $ti-icon-plant-2; } -.#{$ti-prefix}-plant-2-off:before { content: $ti-icon-plant-2-off; } -.#{$ti-prefix}-plant-off:before { content: $ti-icon-plant-off; } -.#{$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-pause:before { content: $ti-icon-player-pause; } -.#{$ti-prefix}-player-play:before { content: $ti-icon-player-play; } -.#{$ti-prefix}-player-record:before { content: $ti-icon-player-record; } -.#{$ti-prefix}-player-skip-back:before { content: $ti-icon-player-skip-back; } -.#{$ti-prefix}-player-skip-forward:before { content: $ti-icon-player-skip-forward; } -.#{$ti-prefix}-player-stop:before { content: $ti-icon-player-stop; } -.#{$ti-prefix}-player-track-next:before { content: $ti-icon-player-track-next; } -.#{$ti-prefix}-player-track-prev:before { content: $ti-icon-player-track-prev; } -.#{$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; } -.#{$ti-prefix}-playlist-x:before { content: $ti-icon-playlist-x; } -.#{$ti-prefix}-playstation-circle:before { content: $ti-icon-playstation-circle; } -.#{$ti-prefix}-playstation-square:before { content: $ti-icon-playstation-square; } -.#{$ti-prefix}-playstation-triangle:before { content: $ti-icon-playstation-triangle; } -.#{$ti-prefix}-playstation-x:before { content: $ti-icon-playstation-x; } -.#{$ti-prefix}-plug:before { content: $ti-icon-plug; } -.#{$ti-prefix}-plug-connected:before { content: $ti-icon-plug-connected; } -.#{$ti-prefix}-plug-connected-x:before { content: $ti-icon-plug-connected-x; } -.#{$ti-prefix}-plug-off:before { content: $ti-icon-plug-off; } -.#{$ti-prefix}-plug-x:before { content: $ti-icon-plug-x; } -.#{$ti-prefix}-plus:before { content: $ti-icon-plus; } -.#{$ti-prefix}-podium:before { content: $ti-icon-podium; } -.#{$ti-prefix}-point:before { content: $ti-icon-point; } -.#{$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; } -.#{$ti-prefix}-polaroid:before { content: $ti-icon-polaroid; } -.#{$ti-prefix}-polygon:before { content: $ti-icon-polygon; } -.#{$ti-prefix}-polygon-off:before { content: $ti-icon-polygon-off; } -.#{$ti-prefix}-poo:before { content: $ti-icon-poo; } -.#{$ti-prefix}-pool:before { content: $ti-icon-pool; } -.#{$ti-prefix}-power:before { content: $ti-icon-power; } -.#{$ti-prefix}-pray:before { content: $ti-icon-pray; } -.#{$ti-prefix}-premium-rights:before { content: $ti-icon-premium-rights; } -.#{$ti-prefix}-prescription:before { content: $ti-icon-prescription; } -.#{$ti-prefix}-presentation:before { content: $ti-icon-presentation; } -.#{$ti-prefix}-presentation-analytics:before { content: $ti-icon-presentation-analytics; } -.#{$ti-prefix}-presentation-off:before { content: $ti-icon-presentation-off; } -.#{$ti-prefix}-printer:before { content: $ti-icon-printer; } -.#{$ti-prefix}-printer-off:before { content: $ti-icon-printer-off; } -.#{$ti-prefix}-prison:before { content: $ti-icon-prison; } -.#{$ti-prefix}-prompt:before { content: $ti-icon-prompt; } -.#{$ti-prefix}-propeller:before { content: $ti-icon-propeller; } -.#{$ti-prefix}-propeller-off:before { content: $ti-icon-propeller-off; } -.#{$ti-prefix}-puzzle:before { content: $ti-icon-puzzle; } -.#{$ti-prefix}-puzzle-2:before { content: $ti-icon-puzzle-2; } -.#{$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; } -.#{$ti-prefix}-qrcode:before { content: $ti-icon-qrcode; } -.#{$ti-prefix}-question-mark:before { content: $ti-icon-question-mark; } -.#{$ti-prefix}-quote:before { content: $ti-icon-quote; } -.#{$ti-prefix}-quote-off:before { content: $ti-icon-quote-off; } -.#{$ti-prefix}-radar:before { content: $ti-icon-radar; } -.#{$ti-prefix}-radar-2:before { content: $ti-icon-radar-2; } -.#{$ti-prefix}-radio:before { content: $ti-icon-radio; } -.#{$ti-prefix}-radioactive:before { content: $ti-icon-radioactive; } -.#{$ti-prefix}-radioactive-off:before { content: $ti-icon-radioactive-off; } -.#{$ti-prefix}-radius-bottom-left:before { content: $ti-icon-radius-bottom-left; } -.#{$ti-prefix}-radius-bottom-right:before { content: $ti-icon-radius-bottom-right; } -.#{$ti-prefix}-radius-top-left:before { content: $ti-icon-radius-top-left; } -.#{$ti-prefix}-radius-top-right:before { content: $ti-icon-radius-top-right; } -.#{$ti-prefix}-rainbow:before { content: $ti-icon-rainbow; } -.#{$ti-prefix}-rainbow-off:before { content: $ti-icon-rainbow-off; } -.#{$ti-prefix}-rating-12-plus:before { content: $ti-icon-rating-12-plus; } -.#{$ti-prefix}-rating-14-plus:before { content: $ti-icon-rating-14-plus; } -.#{$ti-prefix}-rating-16-plus:before { content: $ti-icon-rating-16-plus; } -.#{$ti-prefix}-rating-18-plus:before { content: $ti-icon-rating-18-plus; } -.#{$ti-prefix}-rating-21-plus:before { content: $ti-icon-rating-21-plus; } -.#{$ti-prefix}-receipt:before { content: $ti-icon-receipt; } -.#{$ti-prefix}-receipt-2:before { content: $ti-icon-receipt-2; } -.#{$ti-prefix}-receipt-off:before { content: $ti-icon-receipt-off; } -.#{$ti-prefix}-receipt-refund:before { content: $ti-icon-receipt-refund; } -.#{$ti-prefix}-receipt-tax:before { content: $ti-icon-receipt-tax; } -.#{$ti-prefix}-recharging:before { content: $ti-icon-recharging; } -.#{$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-vertical:before { content: $ti-icon-rectangle-vertical; } -.#{$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; } -.#{$ti-prefix}-refresh-alert:before { content: $ti-icon-refresh-alert; } -.#{$ti-prefix}-refresh-dot:before { content: $ti-icon-refresh-dot; } -.#{$ti-prefix}-refresh-off:before { content: $ti-icon-refresh-off; } -.#{$ti-prefix}-registered:before { content: $ti-icon-registered; } -.#{$ti-prefix}-relation-many-to-many:before { content: $ti-icon-relation-many-to-many; } -.#{$ti-prefix}-relation-one-to-many:before { content: $ti-icon-relation-one-to-many; } -.#{$ti-prefix}-relation-one-to-one:before { content: $ti-icon-relation-one-to-one; } -.#{$ti-prefix}-repeat:before { content: $ti-icon-repeat; } -.#{$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}-report:before { content: $ti-icon-report; } -.#{$ti-prefix}-report-analytics:before { content: $ti-icon-report-analytics; } -.#{$ti-prefix}-report-medical:before { content: $ti-icon-report-medical; } -.#{$ti-prefix}-report-money:before { content: $ti-icon-report-money; } -.#{$ti-prefix}-report-off:before { content: $ti-icon-report-off; } -.#{$ti-prefix}-report-search:before { content: $ti-icon-report-search; } -.#{$ti-prefix}-resize:before { content: $ti-icon-resize; } -.#{$ti-prefix}-ripple:before { content: $ti-icon-ripple; } -.#{$ti-prefix}-ripple-off:before { content: $ti-icon-ripple-off; } -.#{$ti-prefix}-road:before { content: $ti-icon-road; } -.#{$ti-prefix}-road-off:before { content: $ti-icon-road-off; } -.#{$ti-prefix}-road-sign:before { content: $ti-icon-road-sign; } -.#{$ti-prefix}-robot:before { content: $ti-icon-robot; } -.#{$ti-prefix}-robot-off:before { content: $ti-icon-robot-off; } -.#{$ti-prefix}-rocket:before { content: $ti-icon-rocket; } -.#{$ti-prefix}-rocket-off:before { content: $ti-icon-rocket-off; } -.#{$ti-prefix}-roller-skating:before { content: $ti-icon-roller-skating; } -.#{$ti-prefix}-rollercoaster:before { content: $ti-icon-rollercoaster; } -.#{$ti-prefix}-rotate:before { content: $ti-icon-rotate; } -.#{$ti-prefix}-rotate-2:before { content: $ti-icon-rotate-2; } -.#{$ti-prefix}-rotate-360:before { content: $ti-icon-rotate-360; } -.#{$ti-prefix}-rotate-clockwise:before { content: $ti-icon-rotate-clockwise; } -.#{$ti-prefix}-rotate-clockwise-2:before { content: $ti-icon-rotate-clockwise-2; } -.#{$ti-prefix}-rotate-dot:before { content: $ti-icon-rotate-dot; } -.#{$ti-prefix}-rotate-rectangle:before { content: $ti-icon-rotate-rectangle; } -.#{$ti-prefix}-route:before { content: $ti-icon-route; } -.#{$ti-prefix}-route-off:before { content: $ti-icon-route-off; } -.#{$ti-prefix}-router:before { content: $ti-icon-router; } -.#{$ti-prefix}-row-insert-bottom:before { content: $ti-icon-row-insert-bottom; } -.#{$ti-prefix}-row-insert-top:before { content: $ti-icon-row-insert-top; } -.#{$ti-prefix}-rss:before { content: $ti-icon-rss; } -.#{$ti-prefix}-ruler:before { content: $ti-icon-ruler; } -.#{$ti-prefix}-ruler-2:before { content: $ti-icon-ruler-2; } -.#{$ti-prefix}-ruler-2-off:before { content: $ti-icon-ruler-2-off; } -.#{$ti-prefix}-ruler-3:before { content: $ti-icon-ruler-3; } -.#{$ti-prefix}-ruler-measure:before { content: $ti-icon-ruler-measure; } -.#{$ti-prefix}-ruler-off:before { content: $ti-icon-ruler-off; } -.#{$ti-prefix}-run:before { content: $ti-icon-run; } -.#{$ti-prefix}-sailboat:before { content: $ti-icon-sailboat; } -.#{$ti-prefix}-salt:before { content: $ti-icon-salt; } -.#{$ti-prefix}-satellite:before { content: $ti-icon-satellite; } -.#{$ti-prefix}-satellite-off:before { content: $ti-icon-satellite-off; } -.#{$ti-prefix}-sausage:before { content: $ti-icon-sausage; } -.#{$ti-prefix}-scale:before { content: $ti-icon-scale; } -.#{$ti-prefix}-scale-off:before { content: $ti-icon-scale-off; } -.#{$ti-prefix}-scale-outline:before { content: $ti-icon-scale-outline; } -.#{$ti-prefix}-scale-outline-off:before { content: $ti-icon-scale-outline-off; } -.#{$ti-prefix}-scan:before { content: $ti-icon-scan; } -.#{$ti-prefix}-scan-eye:before { content: $ti-icon-scan-eye; } -.#{$ti-prefix}-schema:before { content: $ti-icon-schema; } -.#{$ti-prefix}-school:before { content: $ti-icon-school; } -.#{$ti-prefix}-school-off:before { content: $ti-icon-school-off; } -.#{$ti-prefix}-scissors:before { content: $ti-icon-scissors; } -.#{$ti-prefix}-scissors-off:before { content: $ti-icon-scissors-off; } -.#{$ti-prefix}-scooter:before { content: $ti-icon-scooter; } -.#{$ti-prefix}-scooter-electric:before { content: $ti-icon-scooter-electric; } -.#{$ti-prefix}-screen-share:before { content: $ti-icon-screen-share; } -.#{$ti-prefix}-screen-share-off:before { content: $ti-icon-screen-share-off; } -.#{$ti-prefix}-screenshot:before { content: $ti-icon-screenshot; } -.#{$ti-prefix}-scribble:before { content: $ti-icon-scribble; } -.#{$ti-prefix}-script:before { content: $ti-icon-script; } -.#{$ti-prefix}-script-minus:before { content: $ti-icon-script-minus; } -.#{$ti-prefix}-script-plus:before { content: $ti-icon-script-plus; } -.#{$ti-prefix}-script-x:before { content: $ti-icon-script-x; } -.#{$ti-prefix}-scuba-mask:before { content: $ti-icon-scuba-mask; } -.#{$ti-prefix}-search:before { content: $ti-icon-search; } -.#{$ti-prefix}-search-off:before { content: $ti-icon-search-off; } -.#{$ti-prefix}-section:before { content: $ti-icon-section; } -.#{$ti-prefix}-section-sign:before { content: $ti-icon-section-sign; } -.#{$ti-prefix}-seeding:before { content: $ti-icon-seeding; } -.#{$ti-prefix}-seeding-off:before { content: $ti-icon-seeding-off; } -.#{$ti-prefix}-select:before { content: $ti-icon-select; } -.#{$ti-prefix}-selector:before { content: $ti-icon-selector; } -.#{$ti-prefix}-send:before { content: $ti-icon-send; } -.#{$ti-prefix}-seo:before { content: $ti-icon-seo; } -.#{$ti-prefix}-separator:before { content: $ti-icon-separator; } -.#{$ti-prefix}-separator-horizontal:before { content: $ti-icon-separator-horizontal; } -.#{$ti-prefix}-separator-vertical:before { content: $ti-icon-separator-vertical; } -.#{$ti-prefix}-server:before { content: $ti-icon-server; } -.#{$ti-prefix}-server-2:before { content: $ti-icon-server-2; } -.#{$ti-prefix}-server-off:before { content: $ti-icon-server-off; } -.#{$ti-prefix}-servicemark:before { content: $ti-icon-servicemark; } -.#{$ti-prefix}-settings:before { content: $ti-icon-settings; } -.#{$ti-prefix}-settings-automation:before { content: $ti-icon-settings-automation; } -.#{$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; } -.#{$ti-prefix}-shape:before { content: $ti-icon-shape; } -.#{$ti-prefix}-shape-2:before { content: $ti-icon-shape-2; } -.#{$ti-prefix}-shape-3:before { content: $ti-icon-shape-3; } -.#{$ti-prefix}-shape-off:before { content: $ti-icon-shape-off; } -.#{$ti-prefix}-share:before { content: $ti-icon-share; } -.#{$ti-prefix}-share-off:before { content: $ti-icon-share-off; } -.#{$ti-prefix}-shield:before { content: $ti-icon-shield; } -.#{$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-lock:before { content: $ti-icon-shield-lock; } -.#{$ti-prefix}-shield-off:before { content: $ti-icon-shield-off; } -.#{$ti-prefix}-shield-x:before { content: $ti-icon-shield-x; } -.#{$ti-prefix}-ship:before { content: $ti-icon-ship; } -.#{$ti-prefix}-shirt:before { content: $ti-icon-shirt; } -.#{$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; } -.#{$ti-prefix}-shoe-off:before { content: $ti-icon-shoe-off; } -.#{$ti-prefix}-shopping-cart:before { content: $ti-icon-shopping-cart; } -.#{$ti-prefix}-shopping-cart-discount:before { content: $ti-icon-shopping-cart-discount; } -.#{$ti-prefix}-shopping-cart-off:before { content: $ti-icon-shopping-cart-off; } -.#{$ti-prefix}-shopping-cart-plus:before { content: $ti-icon-shopping-cart-plus; } -.#{$ti-prefix}-shopping-cart-x:before { content: $ti-icon-shopping-cart-x; } -.#{$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-right:before { content: $ti-icon-sign-right; } -.#{$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; } -.#{$ti-prefix}-signal-5g:before { content: $ti-icon-signal-5g; } -.#{$ti-prefix}-signature:before { content: $ti-icon-signature; } -.#{$ti-prefix}-signature-off:before { content: $ti-icon-signature-off; } -.#{$ti-prefix}-sitemap:before { content: $ti-icon-sitemap; } -.#{$ti-prefix}-sitemap-off:before { content: $ti-icon-sitemap-off; } -.#{$ti-prefix}-skateboard:before { content: $ti-icon-skateboard; } -.#{$ti-prefix}-skull:before { content: $ti-icon-skull; } -.#{$ti-prefix}-sleigh:before { content: $ti-icon-sleigh; } -.#{$ti-prefix}-slice:before { content: $ti-icon-slice; } -.#{$ti-prefix}-slideshow:before { content: $ti-icon-slideshow; } -.#{$ti-prefix}-smart-home:before { content: $ti-icon-smart-home; } -.#{$ti-prefix}-smart-home-off:before { content: $ti-icon-smart-home-off; } -.#{$ti-prefix}-smoking:before { content: $ti-icon-smoking; } -.#{$ti-prefix}-smoking-no:before { content: $ti-icon-smoking-no; } -.#{$ti-prefix}-snowflake:before { content: $ti-icon-snowflake; } -.#{$ti-prefix}-snowflake-off:before { content: $ti-icon-snowflake-off; } -.#{$ti-prefix}-snowman:before { content: $ti-icon-snowman; } -.#{$ti-prefix}-soccer-field:before { content: $ti-icon-soccer-field; } -.#{$ti-prefix}-social:before { content: $ti-icon-social; } -.#{$ti-prefix}-social-off:before { content: $ti-icon-social-off; } -.#{$ti-prefix}-sock:before { content: $ti-icon-sock; } -.#{$ti-prefix}-sofa:before { content: $ti-icon-sofa; } -.#{$ti-prefix}-sort-ascending:before { content: $ti-icon-sort-ascending; } -.#{$ti-prefix}-sort-ascending-2:before { content: $ti-icon-sort-ascending-2; } -.#{$ti-prefix}-sort-ascending-letters:before { content: $ti-icon-sort-ascending-letters; } -.#{$ti-prefix}-sort-ascending-numbers:before { content: $ti-icon-sort-ascending-numbers; } -.#{$ti-prefix}-sort-descending:before { content: $ti-icon-sort-descending; } -.#{$ti-prefix}-sort-descending-2:before { content: $ti-icon-sort-descending-2; } -.#{$ti-prefix}-sort-descending-letters:before { content: $ti-icon-sort-descending-letters; } -.#{$ti-prefix}-sort-descending-numbers:before { content: $ti-icon-sort-descending-numbers; } -.#{$ti-prefix}-sos:before { content: $ti-icon-sos; } -.#{$ti-prefix}-soup:before { content: $ti-icon-soup; } -.#{$ti-prefix}-space:before { content: $ti-icon-space; } -.#{$ti-prefix}-space-off:before { content: $ti-icon-space-off; } -.#{$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}-speakerphone:before { content: $ti-icon-speakerphone; } -.#{$ti-prefix}-speedboat:before { content: $ti-icon-speedboat; } -.#{$ti-prefix}-spider:before { content: $ti-icon-spider; } -.#{$ti-prefix}-spiral:before { content: $ti-icon-spiral; } -.#{$ti-prefix}-sport-billard:before { content: $ti-icon-sport-billard; } -.#{$ti-prefix}-spy:before { content: $ti-icon-spy; } -.#{$ti-prefix}-square:before { content: $ti-icon-square; } -.#{$ti-prefix}-square-0:before { content: $ti-icon-square-0; } -.#{$ti-prefix}-square-1:before { content: $ti-icon-square-1; } -.#{$ti-prefix}-square-2:before { content: $ti-icon-square-2; } -.#{$ti-prefix}-square-3:before { content: $ti-icon-square-3; } -.#{$ti-prefix}-square-4:before { content: $ti-icon-square-4; } -.#{$ti-prefix}-square-5:before { content: $ti-icon-square-5; } -.#{$ti-prefix}-square-6:before { content: $ti-icon-square-6; } -.#{$ti-prefix}-square-7:before { content: $ti-icon-square-7; } -.#{$ti-prefix}-square-8:before { content: $ti-icon-square-8; } -.#{$ti-prefix}-square-9:before { content: $ti-icon-square-9; } -.#{$ti-prefix}-square-asterisk:before { content: $ti-icon-square-asterisk; } -.#{$ti-prefix}-square-check:before { content: $ti-icon-square-check; } -.#{$ti-prefix}-square-dot:before { content: $ti-icon-square-dot; } -.#{$ti-prefix}-square-forbid:before { content: $ti-icon-square-forbid; } -.#{$ti-prefix}-square-forbid-2:before { content: $ti-icon-square-forbid-2; } -.#{$ti-prefix}-square-half:before { content: $ti-icon-square-half; } -.#{$ti-prefix}-square-minus:before { content: $ti-icon-square-minus; } -.#{$ti-prefix}-square-off:before { content: $ti-icon-square-off; } -.#{$ti-prefix}-square-plus:before { content: $ti-icon-square-plus; } -.#{$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-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; } -.#{$ti-prefix}-square-toggle:before { content: $ti-icon-square-toggle; } -.#{$ti-prefix}-square-toggle-horizontal:before { content: $ti-icon-square-toggle-horizontal; } -.#{$ti-prefix}-square-x:before { content: $ti-icon-square-x; } -.#{$ti-prefix}-squares-diagonal:before { content: $ti-icon-squares-diagonal; } -.#{$ti-prefix}-squares-filled:before { content: $ti-icon-squares-filled; } -.#{$ti-prefix}-stack:before { content: $ti-icon-stack; } -.#{$ti-prefix}-stack-2:before { content: $ti-icon-stack-2; } -.#{$ti-prefix}-stack-3:before { content: $ti-icon-stack-3; } -.#{$ti-prefix}-stack-pop:before { content: $ti-icon-stack-pop; } -.#{$ti-prefix}-stack-push:before { content: $ti-icon-stack-push; } -.#{$ti-prefix}-stairs:before { content: $ti-icon-stairs; } -.#{$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-half:before { content: $ti-icon-star-half; } -.#{$ti-prefix}-star-off:before { content: $ti-icon-star-off; } -.#{$ti-prefix}-stars:before { content: $ti-icon-stars; } -.#{$ti-prefix}-steam:before { content: $ti-icon-steam; } -.#{$ti-prefix}-steering-wheel:before { content: $ti-icon-steering-wheel; } -.#{$ti-prefix}-step-into:before { content: $ti-icon-step-into; } -.#{$ti-prefix}-step-out:before { content: $ti-icon-step-out; } -.#{$ti-prefix}-stethoscope:before { content: $ti-icon-stethoscope; } -.#{$ti-prefix}-sticker:before { content: $ti-icon-sticker; } -.#{$ti-prefix}-storm:before { content: $ti-icon-storm; } -.#{$ti-prefix}-stretching:before { content: $ti-icon-stretching; } -.#{$ti-prefix}-strikethrough:before { content: $ti-icon-strikethrough; } -.#{$ti-prefix}-submarine:before { content: $ti-icon-submarine; } -.#{$ti-prefix}-subscript:before { content: $ti-icon-subscript; } -.#{$ti-prefix}-subtask:before { content: $ti-icon-subtask; } -.#{$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-high:before { content: $ti-icon-sun-high; } -.#{$ti-prefix}-sun-low:before { content: $ti-icon-sun-low; } -.#{$ti-prefix}-sun-off:before { content: $ti-icon-sun-off; } -.#{$ti-prefix}-sun-wind:before { content: $ti-icon-sun-wind; } -.#{$ti-prefix}-sunglasses:before { content: $ti-icon-sunglasses; } -.#{$ti-prefix}-sunrise:before { content: $ti-icon-sunrise; } -.#{$ti-prefix}-sunset:before { content: $ti-icon-sunset; } -.#{$ti-prefix}-sunset-2:before { content: $ti-icon-sunset-2; } -.#{$ti-prefix}-superscript:before { content: $ti-icon-superscript; } -.#{$ti-prefix}-svg:before { content: $ti-icon-svg; } -.#{$ti-prefix}-swimming:before { content: $ti-icon-swimming; } -.#{$ti-prefix}-switch:before { content: $ti-icon-switch; } -.#{$ti-prefix}-switch-2:before { content: $ti-icon-switch-2; } -.#{$ti-prefix}-switch-3:before { content: $ti-icon-switch-3; } -.#{$ti-prefix}-switch-horizontal:before { content: $ti-icon-switch-horizontal; } -.#{$ti-prefix}-switch-vertical:before { content: $ti-icon-switch-vertical; } -.#{$ti-prefix}-sword:before { content: $ti-icon-sword; } -.#{$ti-prefix}-sword-off:before { content: $ti-icon-sword-off; } -.#{$ti-prefix}-swords:before { content: $ti-icon-swords; } -.#{$ti-prefix}-table:before { content: $ti-icon-table; } -.#{$ti-prefix}-table-alias:before { content: $ti-icon-table-alias; } -.#{$ti-prefix}-table-export:before { content: $ti-icon-table-export; } -.#{$ti-prefix}-table-import:before { content: $ti-icon-table-import; } -.#{$ti-prefix}-table-off:before { content: $ti-icon-table-off; } -.#{$ti-prefix}-table-options:before { content: $ti-icon-table-options; } -.#{$ti-prefix}-table-shortcut:before { content: $ti-icon-table-shortcut; } -.#{$ti-prefix}-tag:before { content: $ti-icon-tag; } -.#{$ti-prefix}-tag-off:before { content: $ti-icon-tag-off; } -.#{$ti-prefix}-tags:before { content: $ti-icon-tags; } -.#{$ti-prefix}-tags-off:before { content: $ti-icon-tags-off; } -.#{$ti-prefix}-tallymark-1:before { content: $ti-icon-tallymark-1; } -.#{$ti-prefix}-tallymark-2:before { content: $ti-icon-tallymark-2; } -.#{$ti-prefix}-tallymark-3:before { content: $ti-icon-tallymark-3; } -.#{$ti-prefix}-tallymark-4:before { content: $ti-icon-tallymark-4; } -.#{$ti-prefix}-tallymarks:before { content: $ti-icon-tallymarks; } -.#{$ti-prefix}-tank:before { content: $ti-icon-tank; } -.#{$ti-prefix}-target:before { content: $ti-icon-target; } -.#{$ti-prefix}-target-off:before { content: $ti-icon-target-off; } -.#{$ti-prefix}-telescope:before { content: $ti-icon-telescope; } -.#{$ti-prefix}-telescope-off:before { content: $ti-icon-telescope-off; } -.#{$ti-prefix}-temperature:before { content: $ti-icon-temperature; } -.#{$ti-prefix}-temperature-celsius:before { content: $ti-icon-temperature-celsius; } -.#{$ti-prefix}-temperature-fahrenheit:before { content: $ti-icon-temperature-fahrenheit; } -.#{$ti-prefix}-temperature-minus:before { content: $ti-icon-temperature-minus; } -.#{$ti-prefix}-temperature-off:before { content: $ti-icon-temperature-off; } -.#{$ti-prefix}-temperature-plus:before { content: $ti-icon-temperature-plus; } -.#{$ti-prefix}-template:before { content: $ti-icon-template; } -.#{$ti-prefix}-template-off:before { content: $ti-icon-template-off; } -.#{$ti-prefix}-tent:before { content: $ti-icon-tent; } -.#{$ti-prefix}-terminal:before { content: $ti-icon-terminal; } -.#{$ti-prefix}-terminal-2:before { content: $ti-icon-terminal-2; } -.#{$ti-prefix}-test-pipe:before { content: $ti-icon-test-pipe; } -.#{$ti-prefix}-test-pipe-2:before { content: $ti-icon-test-pipe-2; } -.#{$ti-prefix}-test-pipe-off:before { content: $ti-icon-test-pipe-off; } -.#{$ti-prefix}-text-color:before { content: $ti-icon-text-color; } -.#{$ti-prefix}-text-decrease:before { content: $ti-icon-text-decrease; } -.#{$ti-prefix}-text-direction-ltr:before { content: $ti-icon-text-direction-ltr; } -.#{$ti-prefix}-text-direction-rtl:before { content: $ti-icon-text-direction-rtl; } -.#{$ti-prefix}-text-increase:before { content: $ti-icon-text-increase; } -.#{$ti-prefix}-text-orientation:before { content: $ti-icon-text-orientation; } -.#{$ti-prefix}-text-plus:before { content: $ti-icon-text-plus; } -.#{$ti-prefix}-text-recognition:before { content: $ti-icon-text-recognition; } -.#{$ti-prefix}-text-resize:before { content: $ti-icon-text-resize; } -.#{$ti-prefix}-text-size:before { content: $ti-icon-text-size; } -.#{$ti-prefix}-text-spellcheck:before { content: $ti-icon-text-spellcheck; } -.#{$ti-prefix}-text-wrap:before { content: $ti-icon-text-wrap; } -.#{$ti-prefix}-text-wrap-disabled:before { content: $ti-icon-text-wrap-disabled; } -.#{$ti-prefix}-thermometer:before { content: $ti-icon-thermometer; } -.#{$ti-prefix}-thumb-down:before { content: $ti-icon-thumb-down; } -.#{$ti-prefix}-thumb-up:before { content: $ti-icon-thumb-up; } -.#{$ti-prefix}-ticket:before { content: $ti-icon-ticket; } -.#{$ti-prefix}-ticket-off:before { content: $ti-icon-ticket-off; } -.#{$ti-prefix}-tie:before { content: $ti-icon-tie; } -.#{$ti-prefix}-tilt-shift:before { content: $ti-icon-tilt-shift; } -.#{$ti-prefix}-tilt-shift-off:before { content: $ti-icon-tilt-shift-off; } -.#{$ti-prefix}-timeline:before { content: $ti-icon-timeline; } -.#{$ti-prefix}-tir:before { content: $ti-icon-tir; } -.#{$ti-prefix}-toggle-left:before { content: $ti-icon-toggle-left; } -.#{$ti-prefix}-toggle-right:before { content: $ti-icon-toggle-right; } -.#{$ti-prefix}-toilet-paper:before { content: $ti-icon-toilet-paper; } -.#{$ti-prefix}-toilet-paper-off:before { content: $ti-icon-toilet-paper-off; } -.#{$ti-prefix}-tool:before { content: $ti-icon-tool; } -.#{$ti-prefix}-tools:before { content: $ti-icon-tools; } -.#{$ti-prefix}-tools-kitchen:before { content: $ti-icon-tools-kitchen; } -.#{$ti-prefix}-tools-kitchen-2:before { content: $ti-icon-tools-kitchen-2; } -.#{$ti-prefix}-tools-kitchen-2-off:before { content: $ti-icon-tools-kitchen-2-off; } -.#{$ti-prefix}-tools-kitchen-off:before { content: $ti-icon-tools-kitchen-off; } -.#{$ti-prefix}-tools-off:before { content: $ti-icon-tools-off; } -.#{$ti-prefix}-tooltip:before { content: $ti-icon-tooltip; } -.#{$ti-prefix}-tornado:before { content: $ti-icon-tornado; } -.#{$ti-prefix}-tournament:before { content: $ti-icon-tournament; } -.#{$ti-prefix}-tower:before { content: $ti-icon-tower; } -.#{$ti-prefix}-tower-off:before { content: $ti-icon-tower-off; } -.#{$ti-prefix}-track:before { content: $ti-icon-track; } -.#{$ti-prefix}-tractor:before { content: $ti-icon-tractor; } -.#{$ti-prefix}-trademark:before { content: $ti-icon-trademark; } -.#{$ti-prefix}-traffic-cone:before { content: $ti-icon-traffic-cone; } -.#{$ti-prefix}-traffic-cone-off:before { content: $ti-icon-traffic-cone-off; } -.#{$ti-prefix}-traffic-lights:before { content: $ti-icon-traffic-lights; } -.#{$ti-prefix}-traffic-lights-off:before { content: $ti-icon-traffic-lights-off; } -.#{$ti-prefix}-train:before { content: $ti-icon-train; } -.#{$ti-prefix}-transfer-in:before { content: $ti-icon-transfer-in; } -.#{$ti-prefix}-transfer-out:before { content: $ti-icon-transfer-out; } -.#{$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; } -.#{$ti-prefix}-transition-top:before { content: $ti-icon-transition-top; } -.#{$ti-prefix}-trash:before { content: $ti-icon-trash; } -.#{$ti-prefix}-trash-off:before { content: $ti-icon-trash-off; } -.#{$ti-prefix}-trash-x:before { content: $ti-icon-trash-x; } -.#{$ti-prefix}-tree:before { content: $ti-icon-tree; } -.#{$ti-prefix}-trees:before { content: $ti-icon-trees; } -.#{$ti-prefix}-trending-down:before { content: $ti-icon-trending-down; } -.#{$ti-prefix}-trending-down-2:before { content: $ti-icon-trending-down-2; } -.#{$ti-prefix}-trending-down-3:before { content: $ti-icon-trending-down-3; } -.#{$ti-prefix}-trending-up:before { content: $ti-icon-trending-up; } -.#{$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-inverted:before { content: $ti-icon-triangle-inverted; } -.#{$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}-trophy:before { content: $ti-icon-trophy; } -.#{$ti-prefix}-truck:before { content: $ti-icon-truck; } -.#{$ti-prefix}-truck-delivery:before { content: $ti-icon-truck-delivery; } -.#{$ti-prefix}-truck-loading:before { content: $ti-icon-truck-loading; } -.#{$ti-prefix}-truck-off:before { content: $ti-icon-truck-off; } -.#{$ti-prefix}-truck-return:before { content: $ti-icon-truck-return; } -.#{$ti-prefix}-typography:before { content: $ti-icon-typography; } -.#{$ti-prefix}-typography-off:before { content: $ti-icon-typography-off; } -.#{$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-off:before { content: $ti-icon-umbrella-off; } -.#{$ti-prefix}-underline:before { content: $ti-icon-underline; } -.#{$ti-prefix}-unlink:before { content: $ti-icon-unlink; } -.#{$ti-prefix}-upload:before { content: $ti-icon-upload; } -.#{$ti-prefix}-urgent:before { content: $ti-icon-urgent; } -.#{$ti-prefix}-usb:before { content: $ti-icon-usb; } -.#{$ti-prefix}-user:before { content: $ti-icon-user; } -.#{$ti-prefix}-user-check:before { content: $ti-icon-user-check; } -.#{$ti-prefix}-user-circle:before { content: $ti-icon-user-circle; } -.#{$ti-prefix}-user-exclamation:before { content: $ti-icon-user-exclamation; } -.#{$ti-prefix}-user-minus:before { content: $ti-icon-user-minus; } -.#{$ti-prefix}-user-off:before { content: $ti-icon-user-off; } -.#{$ti-prefix}-user-plus:before { content: $ti-icon-user-plus; } -.#{$ti-prefix}-user-search:before { content: $ti-icon-user-search; } -.#{$ti-prefix}-user-x:before { content: $ti-icon-user-x; } -.#{$ti-prefix}-users:before { content: $ti-icon-users; } -.#{$ti-prefix}-vaccine:before { content: $ti-icon-vaccine; } -.#{$ti-prefix}-vaccine-bottle:before { content: $ti-icon-vaccine-bottle; } -.#{$ti-prefix}-vaccine-off:before { content: $ti-icon-vaccine-off; } -.#{$ti-prefix}-variable:before { content: $ti-icon-variable; } -.#{$ti-prefix}-variable-off:before { content: $ti-icon-variable-off; } -.#{$ti-prefix}-vector:before { content: $ti-icon-vector; } -.#{$ti-prefix}-vector-bezier:before { content: $ti-icon-vector-bezier; } -.#{$ti-prefix}-vector-bezier-2:before { content: $ti-icon-vector-bezier-2; } -.#{$ti-prefix}-vector-off:before { content: $ti-icon-vector-off; } -.#{$ti-prefix}-vector-triangle:before { content: $ti-icon-vector-triangle; } -.#{$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-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; } -.#{$ti-prefix}-video-off:before { content: $ti-icon-video-off; } -.#{$ti-prefix}-video-plus:before { content: $ti-icon-video-plus; } -.#{$ti-prefix}-view-360:before { content: $ti-icon-view-360; } -.#{$ti-prefix}-view-360-off:before { content: $ti-icon-view-360-off; } -.#{$ti-prefix}-viewfinder:before { content: $ti-icon-viewfinder; } -.#{$ti-prefix}-viewfinder-off:before { content: $ti-icon-viewfinder-off; } -.#{$ti-prefix}-viewport-narrow:before { content: $ti-icon-viewport-narrow; } -.#{$ti-prefix}-viewport-wide:before { content: $ti-icon-viewport-wide; } -.#{$ti-prefix}-vinyl:before { content: $ti-icon-vinyl; } -.#{$ti-prefix}-virus:before { content: $ti-icon-virus; } -.#{$ti-prefix}-virus-off:before { content: $ti-icon-virus-off; } -.#{$ti-prefix}-virus-search:before { content: $ti-icon-virus-search; } -.#{$ti-prefix}-vocabulary:before { content: $ti-icon-vocabulary; } -.#{$ti-prefix}-volume:before { content: $ti-icon-volume; } -.#{$ti-prefix}-volume-2:before { content: $ti-icon-volume-2; } -.#{$ti-prefix}-volume-3:before { content: $ti-icon-volume-3; } -.#{$ti-prefix}-volume-off:before { content: $ti-icon-volume-off; } -.#{$ti-prefix}-walk:before { content: $ti-icon-walk; } -.#{$ti-prefix}-wall:before { content: $ti-icon-wall; } -.#{$ti-prefix}-wallet:before { content: $ti-icon-wallet; } -.#{$ti-prefix}-wallet-off:before { content: $ti-icon-wallet-off; } -.#{$ti-prefix}-wallpaper:before { content: $ti-icon-wallpaper; } -.#{$ti-prefix}-wallpaper-off:before { content: $ti-icon-wallpaper-off; } -.#{$ti-prefix}-wand:before { content: $ti-icon-wand; } -.#{$ti-prefix}-wand-off:before { content: $ti-icon-wand-off; } -.#{$ti-prefix}-wash-machine:before { content: $ti-icon-wash-machine; } -.#{$ti-prefix}-wave-saw-tool:before { content: $ti-icon-wave-saw-tool; } -.#{$ti-prefix}-wave-sine:before { content: $ti-icon-wave-sine; } -.#{$ti-prefix}-wave-square:before { content: $ti-icon-wave-square; } -.#{$ti-prefix}-webhook:before { content: $ti-icon-webhook; } -.#{$ti-prefix}-wheelchair:before { content: $ti-icon-wheelchair; } -.#{$ti-prefix}-wifi:before { content: $ti-icon-wifi; } -.#{$ti-prefix}-wifi-0:before { content: $ti-icon-wifi-0; } -.#{$ti-prefix}-wifi-1:before { content: $ti-icon-wifi-1; } -.#{$ti-prefix}-wifi-2:before { content: $ti-icon-wifi-2; } -.#{$ti-prefix}-wifi-off:before { content: $ti-icon-wifi-off; } -.#{$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-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; } -.#{$ti-prefix}-window-minimize:before { content: $ti-icon-window-minimize; } -.#{$ti-prefix}-window-off:before { content: $ti-icon-window-off; } -.#{$ti-prefix}-windsock:before { content: $ti-icon-windsock; } -.#{$ti-prefix}-wiper:before { content: $ti-icon-wiper; } -.#{$ti-prefix}-wiper-wash:before { content: $ti-icon-wiper-wash; } -.#{$ti-prefix}-woman:before { content: $ti-icon-woman; } -.#{$ti-prefix}-world:before { content: $ti-icon-world; } -.#{$ti-prefix}-world-download:before { content: $ti-icon-world-download; } -.#{$ti-prefix}-world-latitude:before { content: $ti-icon-world-latitude; } -.#{$ti-prefix}-world-longitude:before { content: $ti-icon-world-longitude; } -.#{$ti-prefix}-world-off:before { content: $ti-icon-world-off; } -.#{$ti-prefix}-world-upload:before { content: $ti-icon-world-upload; } -.#{$ti-prefix}-wrecking-ball:before { content: $ti-icon-wrecking-ball; } -.#{$ti-prefix}-writing:before { content: $ti-icon-writing; } -.#{$ti-prefix}-writing-off:before { content: $ti-icon-writing-off; } -.#{$ti-prefix}-writing-sign:before { content: $ti-icon-writing-sign; } -.#{$ti-prefix}-writing-sign-off:before { content: $ti-icon-writing-sign-off; } -.#{$ti-prefix}-x:before { content: $ti-icon-x; } -.#{$ti-prefix}-xbox-a:before { content: $ti-icon-xbox-a; } -.#{$ti-prefix}-xbox-b:before { content: $ti-icon-xbox-b; } -.#{$ti-prefix}-xbox-x:before { content: $ti-icon-xbox-x; } -.#{$ti-prefix}-xbox-y:before { content: $ti-icon-xbox-y; } -.#{$ti-prefix}-yin-yang:before { content: $ti-icon-yin-yang; } -.#{$ti-prefix}-yoga:before { content: $ti-icon-yoga; } -.#{$ti-prefix}-zeppelin:before { content: $ti-icon-zeppelin; } -.#{$ti-prefix}-zodiac-aquarius:before { content: $ti-icon-zodiac-aquarius; } -.#{$ti-prefix}-zodiac-aries:before { content: $ti-icon-zodiac-aries; } -.#{$ti-prefix}-zodiac-cancer:before { content: $ti-icon-zodiac-cancer; } -.#{$ti-prefix}-zodiac-capricorn:before { content: $ti-icon-zodiac-capricorn; } -.#{$ti-prefix}-zodiac-gemini:before { content: $ti-icon-zodiac-gemini; } -.#{$ti-prefix}-zodiac-leo:before { content: $ti-icon-zodiac-leo; } -.#{$ti-prefix}-zodiac-libra:before { content: $ti-icon-zodiac-libra; } -.#{$ti-prefix}-zodiac-pisces:before { content: $ti-icon-zodiac-pisces; } -.#{$ti-prefix}-zodiac-sagittarius:before { content: $ti-icon-zodiac-sagittarius; } -.#{$ti-prefix}-zodiac-scorpio:before { content: $ti-icon-zodiac-scorpio; } -.#{$ti-prefix}-zodiac-taurus:before { content: $ti-icon-zodiac-taurus; } -.#{$ti-prefix}-zodiac-virgo:before { content: $ti-icon-zodiac-virgo; } -.#{$ti-prefix}-zoom-cancel:before { content: $ti-icon-zoom-cancel; } -.#{$ti-prefix}-zoom-check:before { content: $ti-icon-zoom-check; } -.#{$ti-prefix}-zoom-code:before { content: $ti-icon-zoom-code; } -.#{$ti-prefix}-zoom-exclamation:before { content: $ti-icon-zoom-exclamation; } -.#{$ti-prefix}-zoom-in:before { content: $ti-icon-zoom-in; } -.#{$ti-prefix}-zoom-in-area:before { content: $ti-icon-zoom-in-area; } -.#{$ti-prefix}-zoom-money:before { content: $ti-icon-zoom-money; } -.#{$ti-prefix}-zoom-out:before { content: $ti-icon-zoom-out; } -.#{$ti-prefix}-zoom-out-area:before { content: $ti-icon-zoom-out-area; } -.#{$ti-prefix}-zoom-pan:before { content: $ti-icon-zoom-pan; } -.#{$ti-prefix}-zoom-question:before { content: $ti-icon-zoom-question; } -.#{$ti-prefix}-zoom-replace:before { content: $ti-icon-zoom-replace; } -.#{$ti-prefix}-zoom-reset:before { content: $ti-icon-zoom-reset; } -.#{$ti-prefix}-zzz:before { content: $ti-icon-zzz; } 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/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 6b95e5c4e..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.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/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.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.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/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.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.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-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/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/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.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.png b/icons-png/aperture.png deleted file mode 100644 index e01d9ef2b..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.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.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-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-bottom-bar.png b/icons-png/arrow-bottom-bar.png deleted file mode 100644 index 43202e1a9..000000000 Binary files a/icons-png/arrow-bottom-bar.png and /dev/null differ diff --git a/icons-png/arrow-bottom-circle.png b/icons-png/arrow-bottom-circle.png deleted file mode 100644 index 1dfa3f4a9..000000000 Binary files a/icons-png/arrow-bottom-circle.png and /dev/null differ diff --git a/icons-png/arrow-bottom-square.png b/icons-png/arrow-bottom-square.png deleted file mode 100644 index 5c3be88c1..000000000 Binary files a/icons-png/arrow-bottom-square.png and /dev/null differ diff --git a/icons-png/arrow-bottom-tail.png b/icons-png/arrow-bottom-tail.png deleted file mode 100644 index 35cc776f4..000000000 Binary files a/icons-png/arrow-bottom-tail.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-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-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.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-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-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-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 e2ae98baa..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 53dc0794b..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 66c6dc440..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-top-bar.png b/icons-png/arrow-top-bar.png deleted file mode 100644 index 0ac82b8d2..000000000 Binary files a/icons-png/arrow-top-bar.png and /dev/null differ diff --git a/icons-png/arrow-top-circle.png b/icons-png/arrow-top-circle.png deleted file mode 100644 index 4e20ae70a..000000000 Binary files a/icons-png/arrow-top-circle.png and /dev/null differ diff --git a/icons-png/arrow-top-square.png b/icons-png/arrow-top-square.png deleted file mode 100644 index 7ffdd56c4..000000000 Binary files a/icons-png/arrow-top-square.png and /dev/null differ diff --git a/icons-png/arrow-top-tail.png b/icons-png/arrow-top-tail.png deleted file mode 100644 index 646599146..000000000 Binary files a/icons-png/arrow-top-tail.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-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.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/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.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.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 062a501c9..000000000 Binary files a/icons-png/atom.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 016d8fff7..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-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.png b/icons-png/backpack.png deleted file mode 100644 index 0a35933d1..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-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.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/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 b708c0c84..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.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/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.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/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.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/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/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/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.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/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/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.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.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.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/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-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-amazon.png b/icons-png/brand-amazon.png deleted file mode 100644 index 5a89448ea..000000000 Binary files a/icons-png/brand-amazon.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-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-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-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-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-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-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-chrome.png b/icons-png/brand-chrome.png deleted file mode 100644 index b887d6708..000000000 Binary files a/icons-png/brand-chrome.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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-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-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.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-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-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-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-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-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-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-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-monday.png b/icons-png/brand-monday.png deleted file mode 100644 index 7806c0214..000000000 Binary files a/icons-png/brand-monday.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-netflix.png b/icons-png/brand-netflix.png deleted file mode 100644 index 8a5fadb8b..000000000 Binary files a/icons-png/brand-netflix.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 9a4096d28..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-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-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-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-vue.png b/icons-png/brand-vue.png deleted file mode 100644 index 0608588dc..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-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-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-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-wordpress.png b/icons-png/brand-wordpress.png deleted file mode 100644 index 8400231d2..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-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-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.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.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-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-off.png b/icons-png/bucket-off.png deleted file mode 100644 index e221538f7..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 5511f708d..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-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-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-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-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-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.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-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.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-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/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/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.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/caret-down.png b/icons-png/caret-down.png deleted file mode 100644 index fad386215..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 59739b3df..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 cf405e024..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 c7ac5ff2e..000000000 Binary files a/icons-png/caret-up.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/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/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.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-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.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-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/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.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/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/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-0.png b/icons-png/circle-0.png deleted file mode 100644 index 4cff21f65..000000000 Binary files a/icons-png/circle-0.png and /dev/null differ diff --git a/icons-png/circle-1.png b/icons-png/circle-1.png deleted file mode 100644 index 4475f6cae..000000000 Binary files a/icons-png/circle-1.png and /dev/null differ diff --git a/icons-png/circle-2.png b/icons-png/circle-2.png deleted file mode 100644 index 1ef91e5c5..000000000 Binary files a/icons-png/circle-2.png and /dev/null differ diff --git a/icons-png/circle-3.png b/icons-png/circle-3.png deleted file mode 100644 index 0252a6eee..000000000 Binary files a/icons-png/circle-3.png and /dev/null differ diff --git a/icons-png/circle-4.png b/icons-png/circle-4.png deleted file mode 100644 index d799fc231..000000000 Binary files a/icons-png/circle-4.png and /dev/null differ diff --git a/icons-png/circle-5.png b/icons-png/circle-5.png deleted file mode 100644 index 70e1c7f44..000000000 Binary files a/icons-png/circle-5.png and /dev/null differ diff --git a/icons-png/circle-6.png b/icons-png/circle-6.png deleted file mode 100644 index 416194fb3..000000000 Binary files a/icons-png/circle-6.png and /dev/null differ diff --git a/icons-png/circle-7.png b/icons-png/circle-7.png deleted file mode 100644 index d5a9365bc..000000000 Binary files a/icons-png/circle-7.png and /dev/null differ diff --git a/icons-png/circle-8.png b/icons-png/circle-8.png deleted file mode 100644 index 33e7847b1..000000000 Binary files a/icons-png/circle-8.png and /dev/null differ diff --git a/icons-png/circle-9.png b/icons-png/circle-9.png deleted file mode 100644 index 2a59856ec..000000000 Binary files a/icons-png/circle-9.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-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-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-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.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-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-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-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.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.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-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/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-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/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.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.png b/icons-png/cone.png deleted file mode 100644 index 2fa2cfd80..000000000 Binary files a/icons-png/cone.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/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.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.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/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/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-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-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-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.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-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.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-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-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-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-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-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-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-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-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.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/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/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.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-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.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-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-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.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-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.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.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 cf144a929..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/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/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/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 f68ae1280..000000000 Binary files a/icons-png/egg-cracked.png and /dev/null differ diff --git a/icons-png/egg-off.png b/icons-png/egg-off.png deleted file mode 100644 index 6e62d179b..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 a1e8d20f8..000000000 Binary files a/icons-png/egg.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.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-not.png b/icons-png/equal-not.png deleted file mode 100644 index 6f635f0bc..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 ca883b2d9..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-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.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-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-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-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-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-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-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-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-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/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.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-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 e84b971a3..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-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.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.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.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 77452ac46..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 ff9f28e1c..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 6891e45ff..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 e8cd89f20..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 41ba90aac..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 1b3013359..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 91e6da24f..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 2c86e9b69..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.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.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.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-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/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/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.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/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-off.png b/icons-png/grill-off.png deleted file mode 100644 index e9dcf07c0..000000000 Binary files a/icons-png/grill-off.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/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 44f5dda45..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-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.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 1de819cc9..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/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.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-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.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.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-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-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.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.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.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.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.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/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/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/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/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 087892d58..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 e83af6f3a..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/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/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.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-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 05597bb5c..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.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.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.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-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.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.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.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.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 828dc8259..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.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.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/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-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.png b/icons-png/math-function.png deleted file mode 100644 index ba7b8b321..000000000 Binary files a/icons-png/math-function.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 876bfcacf..000000000 Binary files a/icons-png/math-min.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.png b/icons-png/math.png deleted file mode 100644 index f4595761d..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.png b/icons-png/meat.png deleted file mode 100644 index b9668c8b7..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/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.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-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-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.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.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.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 dff2643d0..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.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/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.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/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 52b4e42bf..000000000 Binary files a/icons-png/mood-look-right.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.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-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.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.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/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.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/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.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.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/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.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.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/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 af0f71426..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 9f7eeeff8..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 3963f2c9e..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 2082621cf..000000000 Binary files a/icons-png/palette.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.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/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.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/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/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-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.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-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/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/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/plane-arrival.png b/icons-png/plane-arrival.png deleted file mode 100644 index 1af62287d..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 3c7d23589..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/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 d3e75030a..000000000 Binary files a/icons-png/pointer.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/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.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/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.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-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.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.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/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 f4af748af..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/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/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.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/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.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/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 4567ab487..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-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.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/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/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/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.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-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.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.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/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.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-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-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-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.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-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.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/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 b5236e9de..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.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-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/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.png b/icons-png/soup.png deleted file mode 100644 index 0da09541a..000000000 Binary files a/icons-png/soup.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.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/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-0.png b/icons-png/square-0.png deleted file mode 100644 index f50dbe7d8..000000000 Binary files a/icons-png/square-0.png and /dev/null differ diff --git a/icons-png/square-1.png b/icons-png/square-1.png deleted file mode 100644 index 59b0a12a4..000000000 Binary files a/icons-png/square-1.png and /dev/null differ diff --git a/icons-png/square-2.png b/icons-png/square-2.png deleted file mode 100644 index 54dd3e321..000000000 Binary files a/icons-png/square-2.png and /dev/null differ diff --git a/icons-png/square-3.png b/icons-png/square-3.png deleted file mode 100644 index 976f06b28..000000000 Binary files a/icons-png/square-3.png and /dev/null differ diff --git a/icons-png/square-4.png b/icons-png/square-4.png deleted file mode 100644 index 094519fd7..000000000 Binary files a/icons-png/square-4.png and /dev/null differ diff --git a/icons-png/square-5.png b/icons-png/square-5.png deleted file mode 100644 index 1d155b627..000000000 Binary files a/icons-png/square-5.png and /dev/null differ diff --git a/icons-png/square-6.png b/icons-png/square-6.png deleted file mode 100644 index 4fff365b2..000000000 Binary files a/icons-png/square-6.png and /dev/null differ diff --git a/icons-png/square-7.png b/icons-png/square-7.png deleted file mode 100644 index f70911505..000000000 Binary files a/icons-png/square-7.png and /dev/null differ diff --git a/icons-png/square-8.png b/icons-png/square-8.png deleted file mode 100644 index 31f78f68a..000000000 Binary files a/icons-png/square-8.png and /dev/null differ diff --git a/icons-png/square-9.png b/icons-png/square-9.png deleted file mode 100644 index 0b1421131..000000000 Binary files a/icons-png/square-9.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-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-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-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-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-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.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/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.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/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.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-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/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 a27ce5132..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-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/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.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/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/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.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.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/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/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.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/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 b4144eae0..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/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/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/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/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/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/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/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.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.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-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 dd1553ef3..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/virus-off.png b/icons-png/virus-off.png deleted file mode 100644 index c50a8eba7..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 cddef39a1..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 370e7dabf..000000000 Binary files a/icons-png/virus.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.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-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/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.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/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/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 e5e726c58..000000000 Binary files a/icons-png/woman.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.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.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/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.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/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/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 b2a8d97f5..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.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/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.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.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/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.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.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-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/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/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.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.js b/icons-react/icons-js/aperture.js deleted file mode 100644 index 86b150a50..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.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.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-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-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-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-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.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-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-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-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 daa4533b6..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 56656cb1a..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 06769f74d..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-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-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.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/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.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.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 a131e6403..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.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 993dc679c..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-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.js b/icons-react/icons-js/backpack.js deleted file mode 100644 index b77cc30c3..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-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.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/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 6270031e2..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.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/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.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/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.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/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/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/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.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/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/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.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.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 6e3630e3d..000000000 --- a/icons-react/icons-js/box-seam.js +++ /dev/null @@ -1,5 +0,0 @@ -import * as React from "react"; - -const IconBoxSeam = (size = 24, color = "currentColor", stroke = 2, ...props) => ; - -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-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/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-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-amazon.js b/icons-react/icons-js/brand-amazon.js deleted file mode 100644 index a14ea62f8..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-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-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-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-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-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-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-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-chrome.js b/icons-react/icons-js/brand-chrome.js deleted file mode 100644 index 52af5b752..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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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-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-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.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-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-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-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-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-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-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-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-monday.js b/icons-react/icons-js/brand-monday.js deleted file mode 100644 index 5f1286bc9..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-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-netflix.js b/icons-react/icons-js/brand-netflix.js deleted file mode 100644 index 9f41fbbee..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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-steam.js b/icons-react/icons-js/brand-steam.js deleted file mode 100644 index 040d01251..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-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-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-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-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-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-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-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-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-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 be7f21702..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-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-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-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-vue.js b/icons-react/icons-js/brand-vue.js deleted file mode 100644 index 3ac725971..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-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-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-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-wordpress.js b/icons-react/icons-js/brand-wordpress.js deleted file mode 100644 index 200fe5995..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-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-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.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.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-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-off.js b/icons-react/icons-js/bucket-off.js deleted file mode 100644 index 8ddea6f14..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 832dbf0d0..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-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-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-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-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-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.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-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.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-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/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/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.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/caret-down.js b/icons-react/icons-js/caret-down.js deleted file mode 100644 index b7fd7a57a..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 e519ca648..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 600d74d1b..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 0fb8a519b..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/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/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/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.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-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.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-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/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.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/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/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 67e6c022c..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 353c163c8..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 04bfccb18..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 34e9e8ddf..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 38380f1f7..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 139528223..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 888933e82..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 a70cf16f9..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 e4e42653d..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 73370fc29..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-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-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-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-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-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-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-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-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-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-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.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.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-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-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-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.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.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-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/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-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/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.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.js b/icons-react/icons-js/cone.js deleted file mode 100644 index b09712f46..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.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/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.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.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/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/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-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-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-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.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-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.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-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-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-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-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-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-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-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-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.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/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/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.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-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.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-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-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.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-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.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.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 cc334c75d..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 3ffeee751..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/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/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/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 51bde7d43..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-off.js b/icons-react/icons-js/egg-off.js deleted file mode 100644 index 25bb0bf35..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 7b3a18cbd..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/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.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-not.js b/icons-react/icons-js/equal-not.js deleted file mode 100644 index c4964359c..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 de94c3941..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-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.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-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-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-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-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-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-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-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-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/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.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-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 9b95f69a4..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-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.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.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.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 e17f2d5c4..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 523670df4..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 ab39c4a78..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 b7952c241..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 46988b2d8..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 33873e955..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 f49782d3d..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 73ea0fcb8..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.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.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.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-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/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/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.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/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-off.js b/icons-react/icons-js/grill-off.js deleted file mode 100644 index e107b0b1a..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.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/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 eb50a6dc3..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-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.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 0cdfb6ccf..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/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.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-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.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.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.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-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-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.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.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.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.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.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/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/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/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/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 2cd0c3a62..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 4567a7eda..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/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/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.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-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 f7ff922ef..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.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.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.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-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.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.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.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.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 4ccf4d8bf..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.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.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/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-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.js b/icons-react/icons-js/math-function.js deleted file mode 100644 index 318898741..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-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 57ba82924..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-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.js b/icons-react/icons-js/math.js deleted file mode 100644 index 409fb2815..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.js b/icons-react/icons-js/meat.js deleted file mode 100644 index c5a25deef..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/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.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-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-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.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.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.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 025a0a005..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.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/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.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/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 f47ad2faf..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-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.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-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.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.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/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.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/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.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.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/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.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.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/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 05915bf57..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 b3f85a2a3..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 5d707086d..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 f0acd5d5b..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.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.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/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.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.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/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/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-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.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 95c229adb..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-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/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/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/plane-arrival.js b/icons-react/icons-js/plane-arrival.js deleted file mode 100644 index 6e84e4168..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 cef43598e..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 a77630135..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/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 e7c9efdcd..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.js b/icons-react/icons-js/pokeball.js deleted file mode 100644 index 0ec6b6921..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/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.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/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.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-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.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.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/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 7d1c43091..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/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/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.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/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.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/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 0b4fa2818..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-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.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/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/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/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.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-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.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.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/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.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-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-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-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.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-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.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/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 4c939b45a..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.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-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/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.js b/icons-react/icons-js/soup.js deleted file mode 100644 index 3447858d2..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/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.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/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 2b3f3959a..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 2e94c0480..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 ff243e838..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 992c871d3..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 71ee674c3..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 01cbf45b3..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 d2570c91f..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 82ac6d3ec..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 703233bc0..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 3f4e1c72b..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-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-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-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-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-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-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-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-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-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-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-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.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.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/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.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/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.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-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/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 4f92f3d2d..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-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/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.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/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/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.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.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/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/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.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/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 5de20e214..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/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/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/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/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/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/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/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.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.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-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 6a67c37a9..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/virus-off.js b/icons-react/icons-js/virus-off.js deleted file mode 100644 index 81864e54b..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 52a522818..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 ae828b4a6..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.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.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-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/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.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/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/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 05728fcda..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/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.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.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/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.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 64aba9190..000000000 --- a/icons-react/index.d.ts +++ /dev/null @@ -1,2238 +0,0 @@ -import { FC, SVGAttributes } from 'react'; - -interface TablerIconProps extends SVGAttributes { color?: string; size?: string | number; stroke?: string | number; } - -type TablerIcon = FC; - -export const Icon2fa: TablerIcon; -export const Icon3dCubeSphere: TablerIcon; -export const Icon3dRotate: TablerIcon; -export const IconAB2: TablerIcon; -export const IconABOff: TablerIcon; -export const IconAB: TablerIcon; -export const IconAbacus: 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 IconAd: 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 IconAlarmOff: TablerIcon; -export const IconAlarm: TablerIcon; -export const IconAlbum: TablerIcon; -export const IconAlertCircle: TablerIcon; -export const IconAlertOctagon: TablerIcon; -export const IconAlertTriangle: TablerIcon; -export const IconAlien: TablerIcon; -export const IconAlignCenter: TablerIcon; -export const IconAlignJustified: TablerIcon; -export const IconAlignLeft: TablerIcon; -export const IconAlignRight: TablerIcon; -export const IconAlphabetCyrillic: TablerIcon; -export const IconAlphabetGreek: TablerIcon; -export const IconAlphabetLatin: TablerIcon; -export const IconAmbulance: TablerIcon; -export const IconAmpersand: 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 IconAntenna: 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 IconArmchair2: 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 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 IconArrowBottomBar: TablerIcon; -export const IconArrowBottomCircle: TablerIcon; -export const IconArrowBottomSquare: TablerIcon; -export const IconArrowBottomTail: TablerIcon; -export const IconArrowCurveLeft: TablerIcon; -export const IconArrowCurveRight: TablerIcon; -export const IconArrowDownCircle: TablerIcon; -export const IconArrowDownLeftCircle: TablerIcon; -export const IconArrowDownLeft: TablerIcon; -export const IconArrowDownRightCircle: TablerIcon; -export const IconArrowDownRight: TablerIcon; -export const IconArrowDown: TablerIcon; -export const IconArrowFork: TablerIcon; -export const IconArrowForwardUp: TablerIcon; -export const IconArrowForward: TablerIcon; -export const IconArrowGuide: TablerIcon; -export const IconArrowLeftBar: TablerIcon; -export const IconArrowLeftCircle: 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 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 IconArrowTopBar: TablerIcon; -export const IconArrowTopCircle: TablerIcon; -export const IconArrowTopSquare: TablerIcon; -export const IconArrowTopTail: TablerIcon; -export const IconArrowUpCircle: TablerIcon; -export const IconArrowUpLeftCircle: TablerIcon; -export const IconArrowUpLeft: TablerIcon; -export const IconArrowUpRightCircle: TablerIcon; -export const IconArrowUpRight: TablerIcon; -export const IconArrowUp: TablerIcon; -export const IconArrowWaveLeftDown: TablerIcon; -export const IconArrowWaveLeftUp: TablerIcon; -export const IconArrowWaveRightDown: TablerIcon; -export const IconArrowWaveRightUp: 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 IconArticle: TablerIcon; -export const IconAspectRatioOff: TablerIcon; -export const IconAspectRatio: 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 IconAugmentedReality: TablerIcon; -export const IconAwardOff: TablerIcon; -export const IconAward: TablerIcon; -export const IconAxe: TablerIcon; -export const IconAxisX: TablerIcon; -export const IconAxisY: TablerIcon; -export const IconBabyCarriage: TablerIcon; -export const IconBackhoe: TablerIcon; -export const IconBackpack: TablerIcon; -export const IconBackspace: TablerIcon; -export const IconBadgeOff: TablerIcon; -export const IconBadge: TablerIcon; -export const IconBadgesOff: TablerIcon; -export const IconBadges: 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 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 IconBible: TablerIcon; -export const IconBikeOff: TablerIcon; -export const IconBike: TablerIcon; -export const IconBinary: TablerIcon; -export const IconBiohazardOff: TablerIcon; -export const IconBiohazard: TablerIcon; -export const IconBlockquote: TablerIcon; -export const IconBluetoothConnected: TablerIcon; -export const IconBluetoothOff: TablerIcon; -export const IconBluetoothX: TablerIcon; -export const IconBluetooth: TablerIcon; -export const IconBlur: TablerIcon; -export const IconBoldOff: TablerIcon; -export const IconBold: TablerIcon; -export const IconBoltOff: TablerIcon; -export const IconBolt: TablerIcon; -export const IconBoneOff: TablerIcon; -export const IconBone: 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 IconBottle: TablerIcon; -export const IconBow: 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 IconBoxModel2: 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 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 IconBrandAdobe: TablerIcon; -export const IconBrandAirbnb: TablerIcon; -export const IconBrandAirtable: TablerIcon; -export const IconBrandAmazon: TablerIcon; -export const IconBrandAmongus: TablerIcon; -export const IconBrandAndroid: TablerIcon; -export const IconBrandAngular: 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 IconBrandBadoo: TablerIcon; -export const IconBrandBandcamp: TablerIcon; -export const IconBrandBeats: TablerIcon; -export const IconBrandBehance: TablerIcon; -export const IconBrandBing: TablerIcon; -export const IconBrandBitbucket: TablerIcon; -export const IconBrandBooking: TablerIcon; -export const IconBrandBootstrap: TablerIcon; -export const IconBrandChrome: TablerIcon; -export const IconBrandCodepen: TablerIcon; -export const IconBrandCodesandbox: TablerIcon; -export const IconBrandCoinbase: TablerIcon; -export const IconBrandComedyCentral: TablerIcon; -export const IconBrandCss3: TablerIcon; -export const IconBrandCucumber: TablerIcon; -export const IconBrandD3: TablerIcon; -export const IconBrandDebian: TablerIcon; -export const IconBrandDeno: TablerIcon; -export const IconBrandDeviantart: TablerIcon; -export const IconBrandDiscord: TablerIcon; -export const IconBrandDisney: TablerIcon; -export const IconBrandDisqus: TablerIcon; -export const IconBrandDocker: TablerIcon; -export const IconBrandDoctrine: TablerIcon; -export const IconBrandDribbble: TablerIcon; -export const IconBrandEdge: 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 IconBrandFlipboard: TablerIcon; -export const IconBrandFortnite: TablerIcon; -export const IconBrandFoursquare: TablerIcon; -export const IconBrandFramer: TablerIcon; -export const IconBrandGit: TablerIcon; -export const IconBrandGithub: TablerIcon; -export const IconBrandGitlab: TablerIcon; -export const IconBrandGmail: TablerIcon; -export const IconBrandGoogleAnalytics: TablerIcon; -export const IconBrandGoogleDrive: TablerIcon; -export const IconBrandGoogleFit: TablerIcon; -export const IconBrandGoogleOne: TablerIcon; -export const IconBrandGooglePhotos: TablerIcon; -export const IconBrandGooglePlay: TablerIcon; -export const IconBrandGoogle: TablerIcon; -export const IconBrandGravatar: TablerIcon; -export const IconBrandGrindr: TablerIcon; -export const IconBrandHipchat: TablerIcon; -export const IconBrandHtml5: TablerIcon; -export const IconBrandInstagram: TablerIcon; -export const IconBrandIntercom: TablerIcon; -export const IconBrandJavascript: TablerIcon; -export const IconBrandKickstarter: TablerIcon; -export const IconBrandKotlin: TablerIcon; -export const IconBrandLastfm: TablerIcon; -export const IconBrandLinkedin: TablerIcon; -export const IconBrandLinktree: TablerIcon; -export const IconBrandLoom: TablerIcon; -export const IconBrandMastercard: TablerIcon; -export const IconBrandMastodon: TablerIcon; -export const IconBrandMcdonalds: TablerIcon; -export const IconBrandMedium: TablerIcon; -export const IconBrandMercedes: TablerIcon; -export const IconBrandMessenger: TablerIcon; -export const IconBrandMeta: TablerIcon; -export const IconBrandMonday: TablerIcon; -export const IconBrandNetbeans: TablerIcon; -export const IconBrandNetflix: TablerIcon; -export const IconBrandNextjs: TablerIcon; -export const IconBrandNotion: TablerIcon; -export const IconBrandNuxt: TablerIcon; -export const IconBrandNytimes: TablerIcon; -export const IconBrandOpenSource: TablerIcon; -export const IconBrandOpera: TablerIcon; -export const IconBrandPagekit: TablerIcon; -export const IconBrandPatreon: TablerIcon; -export const IconBrandPaypal: TablerIcon; -export const IconBrandPepsi: TablerIcon; -export const IconBrandPhp: TablerIcon; -export const IconBrandPinterest: TablerIcon; -export const IconBrandPocket: TablerIcon; -export const IconBrandProducthunt: TablerIcon; -export const IconBrandPushover: TablerIcon; -export const IconBrandPython: TablerIcon; -export const IconBrandReactNative: TablerIcon; -export const IconBrandReddit: TablerIcon; -export const IconBrandSafari: TablerIcon; -export const IconBrandSass: TablerIcon; -export const IconBrandSentry: 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 IconBrandSoundcloud: TablerIcon; -export const IconBrandSpotify: TablerIcon; -export const IconBrandStackoverflow: TablerIcon; -export const IconBrandSteam: TablerIcon; -export const IconBrandStrava: TablerIcon; -export const IconBrandStripe: TablerIcon; -export const IconBrandSublimeText: TablerIcon; -export const IconBrandSurfshark: TablerIcon; -export const IconBrandSvelte: TablerIcon; -export const IconBrandTabler: TablerIcon; -export const IconBrandTailwind: TablerIcon; -export const IconBrandTelegram: TablerIcon; -export const IconBrandTidal: TablerIcon; -export const IconBrandTiktok: TablerIcon; -export const IconBrandTinder: TablerIcon; -export const IconBrandToyota: TablerIcon; -export const IconBrandTripadvisor: TablerIcon; -export const IconBrandTumblr: TablerIcon; -export const IconBrandTwitch: TablerIcon; -export const IconBrandTwitter: TablerIcon; -export const IconBrandUber: TablerIcon; -export const IconBrandUbuntu: TablerIcon; -export const IconBrandUnity: TablerIcon; -export const IconBrandUnsplash: TablerIcon; -export const IconBrandVercel: TablerIcon; -export const IconBrandVimeo: TablerIcon; -export const IconBrandVinted: TablerIcon; -export const IconBrandVisualStudio: TablerIcon; -export const IconBrandVivaldi: TablerIcon; -export const IconBrandVk: TablerIcon; -export const IconBrandVue: TablerIcon; -export const IconBrandWalmart: TablerIcon; -export const IconBrandWebflow: TablerIcon; -export const IconBrandWhatsapp: TablerIcon; -export const IconBrandWindows: TablerIcon; -export const IconBrandWish: 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 IconBrandZoom: TablerIcon; -export const IconBrandZwift: TablerIcon; -export const IconBread: TablerIcon; -export const IconBriefcase: TablerIcon; -export const IconBrightness2: TablerIcon; -export const IconBrightnessDown: TablerIcon; -export const IconBrightnessHalf: 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 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 IconBuildingCarousel: TablerIcon; -export const IconBuildingCastle: TablerIcon; -export const IconBuildingChurch: TablerIcon; -export const IconBuildingCommunity: TablerIcon; -export const IconBuildingCottage: 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 IconBuildingStore: TablerIcon; -export const IconBuildingWarehouse: TablerIcon; -export const IconBuilding: TablerIcon; -export const IconBulbOff: TablerIcon; -export const IconBulb: TablerIcon; -export const IconBulldozer: TablerIcon; -export const IconBusStop: TablerIcon; -export const IconBus: TablerIcon; -export const IconBusinessplan: TablerIcon; -export const IconButterfly: TablerIcon; -export const IconCSharp: TablerIcon; -export const IconCactus: TablerIcon; -export const IconCakeOff: TablerIcon; -export const IconCake: TablerIcon; -export const IconCalculatorOff: TablerIcon; -export const IconCalculator: 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 IconCandle: TablerIcon; -export const IconCandyOff: TablerIcon; -export const IconCandy: TablerIcon; -export const IconCaptureOff: TablerIcon; -export const IconCapture: TablerIcon; -export const IconCarCrane: TablerIcon; -export const IconCarCrash: TablerIcon; -export const IconCarOff: TablerIcon; -export const IconCar: TablerIcon; -export const IconCaravan: TablerIcon; -export const IconCardboardsOff: TablerIcon; -export const IconCardboards: TablerIcon; -export const IconCaretDown: TablerIcon; -export const IconCaretLeft: TablerIcon; -export const IconCaretRight: TablerIcon; -export const IconCaretUp: 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 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 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 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 IconChartInfographic: TablerIcon; -export const IconChartLine: TablerIcon; -export const IconChartPie2: TablerIcon; -export const IconChartPie3: TablerIcon; -export const IconChartPie4: TablerIcon; -export const IconChartPie: TablerIcon; -export const IconChartRadar: 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 IconChefHat: 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 IconChristmasTree: TablerIcon; -export const IconCircle0: TablerIcon; -export const IconCircle1: TablerIcon; -export const IconCircle2: TablerIcon; -export const IconCircle3: TablerIcon; -export const IconCircle4: TablerIcon; -export const IconCircle5: TablerIcon; -export const IconCircle6: TablerIcon; -export const IconCircle7: TablerIcon; -export const IconCircle8: TablerIcon; -export const IconCircle9: TablerIcon; -export const IconCircleCheck: 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 IconCircleMinus: 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 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 IconClipboardList: TablerIcon; -export const IconClipboardOff: TablerIcon; -export const IconClipboardPlus: TablerIcon; -export const IconClipboardText: TablerIcon; -export const IconClipboardX: TablerIcon; -export const IconClipboard: TablerIcon; -export const IconClock2: TablerIcon; -export const IconClockOff: TablerIcon; -export const IconClock: 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 IconCodeMinus: TablerIcon; -export const IconCodeOff: TablerIcon; -export const IconCodePlus: TablerIcon; -export const IconCode: TablerIcon; -export const IconCoffeeOff: TablerIcon; -export const IconCoffee: TablerIcon; -export const IconCoinBitcoin: TablerIcon; -export const IconCoinEuro: 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 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 IconCommand: TablerIcon; -export const IconCompassOff: TablerIcon; -export const IconCompass: TablerIcon; -export const IconComponentsOff: TablerIcon; -export const IconComponents: TablerIcon; -export const IconCone2: TablerIcon; -export const IconCone: TablerIcon; -export const IconConfetti: TablerIcon; -export const IconContainerOff: TablerIcon; -export const IconContainer: TablerIcon; -export const IconContrast2: TablerIcon; -export const IconContrast: 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 IconCupOff: TablerIcon; -export const IconCup: TablerIcon; -export const IconCurling: TablerIcon; -export const IconCurlyLoop: 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 IconCurrencyDollarCanadian: TablerIcon; -export const IconCurrencyDollarSingapore: TablerIcon; -export const IconCurrencyDollar: TablerIcon; -export const IconCurrencyEthereum: TablerIcon; -export const IconCurrencyEuro: TablerIcon; -export const IconCurrencyForint: TablerIcon; -export const IconCurrencyFrank: TablerIcon; -export const IconCurrencyKroneCzech: TablerIcon; -export const IconCurrencyKroneDanish: TablerIcon; -export const IconCurrencyKroneSwedish: TablerIcon; -export const IconCurrencyLeu: TablerIcon; -export const IconCurrencyLira: TablerIcon; -export const IconCurrencyLitecoin: TablerIcon; -export const IconCurrencyNaira: TablerIcon; -export const IconCurrencyPound: TablerIcon; -export const IconCurrencyReal: TablerIcon; -export const IconCurrencyRenminbi: TablerIcon; -export const IconCurrencyRipple: TablerIcon; -export const IconCurrencyRiyal: TablerIcon; -export const IconCurrencyRubel: TablerIcon; -export const IconCurrencyRupee: TablerIcon; -export const IconCurrencyShekel: TablerIcon; -export const IconCurrencyTaka: TablerIcon; -export const IconCurrencyTugrik: TablerIcon; -export const IconCurrencyWon: 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 IconDashboard: TablerIcon; -export const IconDatabaseExport: TablerIcon; -export const IconDatabaseImport: TablerIcon; -export const IconDatabaseOff: TablerIcon; -export const IconDatabase: TablerIcon; -export const IconDentalBroken: TablerIcon; -export const IconDentalOff: TablerIcon; -export const IconDental: TablerIcon; -export const IconDetails: TablerIcon; -export const IconDeviceAnalytics: TablerIcon; -export const IconDeviceAudioTape: TablerIcon; -export const IconDeviceCameraPhone: 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 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 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 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 IconDiscOff: TablerIcon; -export const IconDisc: TablerIcon; -export const IconDiscount2: TablerIcon; -export const IconDiscountCheck: 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 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 IconEarOff: TablerIcon; -export const IconEar: TablerIcon; -export const IconEditCircleOff: TablerIcon; -export const IconEditCircle: TablerIcon; -export const IconEditOff: TablerIcon; -export const IconEdit: TablerIcon; -export const IconEggCracked: TablerIcon; -export const IconEggOff: TablerIcon; -export const IconEgg: TablerIcon; -export const IconElevator: TablerIcon; -export const IconEmergencyBed: TablerIcon; -export const IconEmpathize: TablerIcon; -export const IconEmphasis: TablerIcon; -export const IconEngineOff: TablerIcon; -export const IconEngine: 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 IconExclamationMarkOff: TablerIcon; -export const IconExclamationMark: TablerIcon; -export const IconExplicit: TablerIcon; -export const IconExposure0: TablerIcon; -export const IconExposureMinus1: TablerIcon; -export const IconExposureMinus2: 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 IconFileCertificate: TablerIcon; -export const IconFileChart: TablerIcon; -export const IconFileCheck: TablerIcon; -export const IconFileCode2: TablerIcon; -export const IconFileCode: TablerIcon; -export const IconFileDatabase: 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 IconFileHorizontal: TablerIcon; -export const IconFileImport: TablerIcon; -export const IconFileInfo: TablerIcon; -export const IconFileInvoice: 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 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 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 IconFiretruck: TablerIcon; -export const IconFirstAidKit: TablerIcon; -export const IconFishBone: 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 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 IconFridge: TablerIcon; -export const IconFriendsOff: TablerIcon; -export const IconFriends: TablerIcon; -export const IconFunction: 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 IconGhost: TablerIcon; -export const IconGif: TablerIcon; -export const IconGift: TablerIcon; -export const IconGitBranch: 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 IconGolfOff: TablerIcon; -export const IconGolf: TablerIcon; -export const IconGps: TablerIcon; -export const IconGrain: TablerIcon; -export const IconGraph: TablerIcon; -export const IconGridDots: TablerIcon; -export const IconGridPattern: TablerIcon; -export const IconGrillOff: TablerIcon; -export const IconGrill: TablerIcon; -export const IconGripHorizontal: TablerIcon; -export const IconGripVertical: TablerIcon; -export const IconGrowth: 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 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 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 IconHelicopterLanding: TablerIcon; -export const IconHelicopter: TablerIcon; -export const IconHelmetOff: TablerIcon; -export const IconHelmet: TablerIcon; -export const IconHelp: TablerIcon; -export const IconHexagonOff: TablerIcon; -export const IconHexagon: TablerIcon; -export const IconHexagons: TablerIcon; -export const IconHierarchy2: TablerIcon; -export const IconHierarchy3: TablerIcon; -export const IconHierarchy: TablerIcon; -export const IconHighlightOff: TablerIcon; -export const IconHighlight: TablerIcon; -export const IconHistoryToggle: TablerIcon; -export const IconHistory: TablerIcon; -export const IconHome2: TablerIcon; -export const IconHomeOff: 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 IconIcons: TablerIcon; -export const IconIdBadge2: 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 IconInfinity: TablerIcon; -export const IconInfoCircle: TablerIcon; -export const IconInfoSquare: TablerIcon; -export const IconInputSearch: TablerIcon; -export const IconItalic: TablerIcon; -export const IconJewishStar: 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 IconLadderOff: TablerIcon; -export const IconLadder: 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 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 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 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 IconLink: TablerIcon; -export const IconListCheck: TablerIcon; -export const IconListDetails: TablerIcon; -export const IconListNumbers: TablerIcon; -export const IconListSearch: TablerIcon; -export const IconList: TablerIcon; -export const IconLivePhoto: TablerIcon; -export const IconLiveView: TablerIcon; -export const IconLoader2: TablerIcon; -export const IconLoaderQuarter: TablerIcon; -export const IconLoader: TablerIcon; -export const IconLocationBroken: TablerIcon; -export const IconLocationOff: TablerIcon; -export const IconLocation: TablerIcon; -export const IconLockAccess: TablerIcon; -export const IconLockOff: TablerIcon; -export const IconLockOpenOff: TablerIcon; -export const IconLockOpen: 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 IconLungs: 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 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 IconMasksTheater: TablerIcon; -export const IconMassage: TablerIcon; -export const IconMathAvg: TablerIcon; -export const IconMathFunctionOff: TablerIcon; -export const IconMathFunction: TablerIcon; -export const IconMathMax: TablerIcon; -export const IconMathMin: TablerIcon; -export const IconMathSymbols: TablerIcon; -export const IconMath: TablerIcon; -export const IconMaximizeOff: TablerIcon; -export const IconMaximize: 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 IconMenu2: TablerIcon; -export const IconMenu: TablerIcon; -export const IconMessage2Code: TablerIcon; -export const IconMessage2Share: TablerIcon; -export const IconMessage2: 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 IconMeteor: TablerIcon; -export const IconMickey: TablerIcon; -export const IconMicrophone2: TablerIcon; -export const IconMicrophoneOff: TablerIcon; -export const IconMicrophone: TablerIcon; -export const IconMicroscope: TablerIcon; -export const IconMicrowaveOff: TablerIcon; -export const IconMicrowave: TablerIcon; -export const IconMilitaryAward: TablerIcon; -export const IconMilitaryRank: TablerIcon; -export const IconMilk: TablerIcon; -export const IconMinimize: TablerIcon; -export const IconMinusVertical: TablerIcon; -export const IconMinus: TablerIcon; -export const IconMist: 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 IconMoodNervous: TablerIcon; -export const IconMoodNeutral: TablerIcon; -export const IconMoodOff: TablerIcon; -export const IconMoodSad: TablerIcon; -export const IconMoodSing: TablerIcon; -export const IconMoodSmile: TablerIcon; -export const IconMoodSuprised: TablerIcon; -export const IconMoodTongue: 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 IconMountain: TablerIcon; -export const IconMouse2: TablerIcon; -export const IconMouseOff: TablerIcon; -export const IconMouse: 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 IconMushroom: TablerIcon; -export const IconMusicOff: TablerIcon; -export const IconMusic: TablerIcon; -export const IconNavigation: 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 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 IconOlympics: 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 IconPanoramaHorizontal: 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 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 IconPentagon: TablerIcon; -export const IconPepperOff: TablerIcon; -export const IconPepper: TablerIcon; -export const IconPercentage: 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 IconPhotoOff: 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 IconPigOff: TablerIcon; -export const IconPig: TablerIcon; -export const IconPillOff: TablerIcon; -export const IconPill: TablerIcon; -export const IconPills: TablerIcon; -export const IconPin: TablerIcon; -export const IconPinnedOff: TablerIcon; -export const IconPinned: TablerIcon; -export const IconPizzaOff: TablerIcon; -export const IconPizza: 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 IconPodium: TablerIcon; -export const IconPointOff: TablerIcon; -export const IconPoint: TablerIcon; -export const IconPointer: TablerIcon; -export const IconPokeball: TablerIcon; -export const IconPolaroid: TablerIcon; -export const IconPolygonOff: TablerIcon; -export const IconPolygon: TablerIcon; -export const IconPoo: 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 IconPuzzle2: TablerIcon; -export const IconPuzzleOff: TablerIcon; -export const IconPuzzle: TablerIcon; -export const IconPyramidOff: TablerIcon; -export const IconPyramid: TablerIcon; -export const IconQrcode: TablerIcon; -export const IconQuestionMark: TablerIcon; -export const IconQuoteOff: TablerIcon; -export const IconQuote: TablerIcon; -export const IconRadar2: TablerIcon; -export const IconRadar: 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 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 IconRegistered: TablerIcon; -export const IconRelationManyToMany: TablerIcon; -export const IconRelationOneToMany: TablerIcon; -export const IconRelationOneToOne: TablerIcon; -export const IconRepeatOff: TablerIcon; -export const IconRepeatOnce: TablerIcon; -export const IconRepeat: 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 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 IconRollercoaster: 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 IconRouteOff: TablerIcon; -export const IconRoute: TablerIcon; -export const IconRouter: TablerIcon; -export const IconRowInsertBottom: TablerIcon; -export const IconRowInsertTop: TablerIcon; -export const IconRss: 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 IconSailboat: 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 IconSchema: 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 IconScribble: TablerIcon; -export const IconScriptMinus: TablerIcon; -export const IconScriptPlus: TablerIcon; -export const IconScriptX: TablerIcon; -export const IconScript: TablerIcon; -export const IconScubaMask: 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 IconSend: TablerIcon; -export const IconSeo: TablerIcon; -export const IconSeparatorHorizontal: TablerIcon; -export const IconSeparatorVertical: TablerIcon; -export const IconSeparator: TablerIcon; -export const IconServer2: TablerIcon; -export const IconServerOff: TablerIcon; -export const IconServer: TablerIcon; -export const IconServicemark: 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 IconShieldLock: TablerIcon; -export const IconShieldOff: TablerIcon; -export const IconShieldX: TablerIcon; -export const IconShield: 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 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 IconSkateboard: TablerIcon; -export const IconSkull: 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 IconSofa: 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 IconSos: TablerIcon; -export const IconSoup: 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 IconSpiral: TablerIcon; -export const IconSportBillard: TablerIcon; -export const IconSpy: TablerIcon; -export const IconSquare0: TablerIcon; -export const IconSquare1: TablerIcon; -export const IconSquare2: TablerIcon; -export const IconSquare3: TablerIcon; -export const IconSquare4: TablerIcon; -export const IconSquare5: TablerIcon; -export const IconSquare6: TablerIcon; -export const IconSquare7: TablerIcon; -export const IconSquare8: TablerIcon; -export const IconSquare9: TablerIcon; -export const IconSquareAsterisk: TablerIcon; -export const IconSquareCheck: TablerIcon; -export const IconSquareDot: TablerIcon; -export const IconSquareForbid2: TablerIcon; -export const IconSquareForbid: TablerIcon; -export const IconSquareHalf: TablerIcon; -export const IconSquareMinus: 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 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 IconStars: TablerIcon; -export const IconSteam: TablerIcon; -export const IconSteeringWheel: TablerIcon; -export const IconStepInto: TablerIcon; -export const IconStepOut: TablerIcon; -export const IconStethoscope: TablerIcon; -export const IconSticker: 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 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 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 IconTargetOff: TablerIcon; -export const IconTarget: 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 IconTent: TablerIcon; -export const IconTerminal2: TablerIcon; -export const IconTerminal: TablerIcon; -export const IconTestPipe2: TablerIcon; -export const IconTestPipeOff: TablerIcon; -export const IconTestPipe: 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 IconThermometer: TablerIcon; -export const IconThumbDown: TablerIcon; -export const IconThumbUp: TablerIcon; -export const IconTicketOff: TablerIcon; -export const IconTicket: TablerIcon; -export const IconTie: TablerIcon; -export const IconTiltShiftOff: TablerIcon; -export const IconTiltShift: 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 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 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 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 IconTrophy: TablerIcon; -export const IconTruckDelivery: TablerIcon; -export const IconTruckLoading: TablerIcon; -export const IconTruckOff: TablerIcon; -export const IconTruckReturn: TablerIcon; -export const IconTruck: 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 IconVaccineBottle: TablerIcon; -export const IconVaccineOff: TablerIcon; -export const IconVaccine: TablerIcon; -export const IconVariableOff: TablerIcon; -export const IconVariable: TablerIcon; -export const IconVectorBezier2: TablerIcon; -export const IconVectorBezier: TablerIcon; -export const IconVectorOff: 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 IconVirusOff: TablerIcon; -export const IconVirusSearch: TablerIcon; -export const IconVirus: 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 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 IconWashMachine: TablerIcon; -export const IconWaveSawTool: TablerIcon; -export const IconWaveSine: TablerIcon; -export const IconWaveSquare: TablerIcon; -export const IconWebhook: TablerIcon; -export const IconWheelchair: 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 IconWorldDownload: TablerIcon; -export const IconWorldLatitude: TablerIcon; -export const IconWorldLongitude: TablerIcon; -export const IconWorldOff: TablerIcon; -export const IconWorldUpload: 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 IconZeppelin: 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 IconZzz: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js deleted file mode 100644 index 4fefe8454..000000000 --- a/icons-react/index.js +++ /dev/null @@ -1,2232 +0,0 @@ -export { default as Icon2fa } from './icons-js/2fa.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 IconAbacus } from './icons-js/abacus.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 IconAd } from './icons-js/ad.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 IconAlarmOff } from './icons-js/alarm-off.js'; -export { default as IconAlarm } from './icons-js/alarm.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 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 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 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 IconAntenna } from './icons-js/antenna.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 IconArmchair2 } from './icons-js/armchair-2.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 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 IconArrowBottomBar } from './icons-js/arrow-bottom-bar.js'; -export { default as IconArrowBottomCircle } from './icons-js/arrow-bottom-circle.js'; -export { default as IconArrowBottomSquare } from './icons-js/arrow-bottom-square.js'; -export { default as IconArrowBottomTail } from './icons-js/arrow-bottom-tail.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 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 IconArrowDownRightCircle } from './icons-js/arrow-down-right-circle.js'; -export { default as IconArrowDownRight } from './icons-js/arrow-down-right.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 IconArrowLeftBar } from './icons-js/arrow-left-bar.js'; -export { default as IconArrowLeftCircle } from './icons-js/arrow-left-circle.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 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 IconArrowTopBar } from './icons-js/arrow-top-bar.js'; -export { default as IconArrowTopCircle } from './icons-js/arrow-top-circle.js'; -export { default as IconArrowTopSquare } from './icons-js/arrow-top-square.js'; -export { default as IconArrowTopTail } from './icons-js/arrow-top-tail.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 IconArrowUpRightCircle } from './icons-js/arrow-up-right-circle.js'; -export { default as IconArrowUpRight } from './icons-js/arrow-up-right.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 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 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 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 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 IconBabyCarriage } from './icons-js/baby-carriage.js'; -export { default as IconBackhoe } from './icons-js/backhoe.js'; -export { default as IconBackpack } from './icons-js/backpack.js'; -export { default as IconBackspace } from './icons-js/backspace.js'; -export { default as IconBadgeOff } from './icons-js/badge-off.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 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 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 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 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 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 IconBlur } from './icons-js/blur.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 IconBoneOff } from './icons-js/bone-off.js'; -export { default as IconBone } from './icons-js/bone.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 IconBottle } from './icons-js/bottle.js'; -export { default as IconBow } from './icons-js/bow.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 IconBoxModel2 } from './icons-js/box-model-2.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 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 IconBrandAdobe } from './icons-js/brand-adobe.js'; -export { default as IconBrandAirbnb } from './icons-js/brand-airbnb.js'; -export { default as IconBrandAirtable } from './icons-js/brand-airtable.js'; -export { default as IconBrandAmazon } from './icons-js/brand-amazon.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 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 IconBrandBadoo } from './icons-js/brand-badoo.js'; -export { default as IconBrandBandcamp } from './icons-js/brand-bandcamp.js'; -export { default as IconBrandBeats } from './icons-js/brand-beats.js'; -export { default as IconBrandBehance } from './icons-js/brand-behance.js'; -export { default as IconBrandBing } from './icons-js/brand-bing.js'; -export { default as IconBrandBitbucket } from './icons-js/brand-bitbucket.js'; -export { default as IconBrandBooking } from './icons-js/brand-booking.js'; -export { default as IconBrandBootstrap } from './icons-js/brand-bootstrap.js'; -export { default as IconBrandChrome } from './icons-js/brand-chrome.js'; -export { default as IconBrandCodepen } from './icons-js/brand-codepen.js'; -export { default as IconBrandCodesandbox } from './icons-js/brand-codesandbox.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 IconBrandCss3 } from './icons-js/brand-css3.js'; -export { default as IconBrandCucumber } from './icons-js/brand-cucumber.js'; -export { default as IconBrandD3 } from './icons-js/brand-d3.js'; -export { default as IconBrandDebian } from './icons-js/brand-debian.js'; -export { default as IconBrandDeno } from './icons-js/brand-deno.js'; -export { default as IconBrandDeviantart } from './icons-js/brand-deviantart.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 IconBrandDocker } from './icons-js/brand-docker.js'; -export { default as IconBrandDoctrine } from './icons-js/brand-doctrine.js'; -export { default as IconBrandDribbble } from './icons-js/brand-dribbble.js'; -export { default as IconBrandEdge } from './icons-js/brand-edge.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 IconBrandFlipboard } from './icons-js/brand-flipboard.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 IconBrandGit } from './icons-js/brand-git.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 IconBrandGoogleDrive } from './icons-js/brand-google-drive.js'; -export { default as IconBrandGoogleFit } from './icons-js/brand-google-fit.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 IconBrandGoogle } from './icons-js/brand-google.js'; -export { default as IconBrandGravatar } from './icons-js/brand-gravatar.js'; -export { default as IconBrandGrindr } from './icons-js/brand-grindr.js'; -export { default as IconBrandHipchat } from './icons-js/brand-hipchat.js'; -export { default as IconBrandHtml5 } from './icons-js/brand-html5.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 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 IconBrandLoom } from './icons-js/brand-loom.js'; -export { default as IconBrandMastercard } from './icons-js/brand-mastercard.js'; -export { default as IconBrandMastodon } from './icons-js/brand-mastodon.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 IconBrandMonday } from './icons-js/brand-monday.js'; -export { default as IconBrandNetbeans } from './icons-js/brand-netbeans.js'; -export { default as IconBrandNetflix } from './icons-js/brand-netflix.js'; -export { default as IconBrandNextjs } from './icons-js/brand-nextjs.js'; -export { default as IconBrandNotion } from './icons-js/brand-notion.js'; -export { default as IconBrandNuxt } from './icons-js/brand-nuxt.js'; -export { default as IconBrandNytimes } from './icons-js/brand-nytimes.js'; -export { default as IconBrandOpenSource } from './icons-js/brand-open-source.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 IconBrandPepsi } from './icons-js/brand-pepsi.js'; -export { default as IconBrandPhp } from './icons-js/brand-php.js'; -export { default as IconBrandPinterest } from './icons-js/brand-pinterest.js'; -export { default as IconBrandPocket } from './icons-js/brand-pocket.js'; -export { default as IconBrandProducthunt } from './icons-js/brand-producthunt.js'; -export { default as IconBrandPushover } from './icons-js/brand-pushover.js'; -export { default as IconBrandPython } from './icons-js/brand-python.js'; -export { default as IconBrandReactNative } from './icons-js/brand-react-native.js'; -export { default as IconBrandReddit } from './icons-js/brand-reddit.js'; -export { default as IconBrandSafari } from './icons-js/brand-safari.js'; -export { default as IconBrandSass } from './icons-js/brand-sass.js'; -export { default as IconBrandSentry } from './icons-js/brand-sentry.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 IconBrandSoundcloud } from './icons-js/brand-soundcloud.js'; -export { default as IconBrandSpotify } from './icons-js/brand-spotify.js'; -export { default as IconBrandStackoverflow } from './icons-js/brand-stackoverflow.js'; -export { default as IconBrandSteam } from './icons-js/brand-steam.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 IconBrandSurfshark } from './icons-js/brand-surfshark.js'; -export { default as IconBrandSvelte } from './icons-js/brand-svelte.js'; -export { default as IconBrandTabler } from './icons-js/brand-tabler.js'; -export { default as IconBrandTailwind } from './icons-js/brand-tailwind.js'; -export { default as IconBrandTelegram } from './icons-js/brand-telegram.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 IconBrandToyota } from './icons-js/brand-toyota.js'; -export { default as IconBrandTripadvisor } from './icons-js/brand-tripadvisor.js'; -export { default as IconBrandTumblr } from './icons-js/brand-tumblr.js'; -export { default as IconBrandTwitch } from './icons-js/brand-twitch.js'; -export { default as IconBrandTwitter } from './icons-js/brand-twitter.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 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 IconBrandVisualStudio } from './icons-js/brand-visual-studio.js'; -export { default as IconBrandVivaldi } from './icons-js/brand-vivaldi.js'; -export { default as IconBrandVk } from './icons-js/brand-vk.js'; -export { default as IconBrandVue } from './icons-js/brand-vue.js'; -export { default as IconBrandWalmart } from './icons-js/brand-walmart.js'; -export { default as IconBrandWebflow } from './icons-js/brand-webflow.js'; -export { default as IconBrandWhatsapp } from './icons-js/brand-whatsapp.js'; -export { default as IconBrandWindows } from './icons-js/brand-windows.js'; -export { default as IconBrandWish } from './icons-js/brand-wish.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 IconBrandZoom } from './icons-js/brand-zoom.js'; -export { default as IconBrandZwift } from './icons-js/brand-zwift.js'; -export { default as IconBread } from './icons-js/bread.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 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 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 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 IconBuildingCommunity } from './icons-js/building-community.js'; -export { default as IconBuildingCottage } from './icons-js/building-cottage.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 IconBuildingStore } from './icons-js/building-store.js'; -export { default as IconBuildingWarehouse } from './icons-js/building-warehouse.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 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 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 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 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 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 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 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 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 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 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 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 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 IconChartPie } from './icons-js/chart-pie.js'; -export { default as IconChartRadar } from './icons-js/chart-radar.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 IconChefHat } from './icons-js/chef-hat.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 IconChristmasTree } from './icons-js/christmas-tree.js'; -export { default as IconCircle0 } from './icons-js/circle-0.js'; -export { default as IconCircle1 } from './icons-js/circle-1.js'; -export { default as IconCircle2 } from './icons-js/circle-2.js'; -export { default as IconCircle3 } from './icons-js/circle-3.js'; -export { default as IconCircle4 } from './icons-js/circle-4.js'; -export { default as IconCircle5 } from './icons-js/circle-5.js'; -export { default as IconCircle6 } from './icons-js/circle-6.js'; -export { default as IconCircle7 } from './icons-js/circle-7.js'; -export { default as IconCircle8 } from './icons-js/circle-8.js'; -export { default as IconCircle9 } from './icons-js/circle-9.js'; -export { default as IconCircleCheck } from './icons-js/circle-check.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 IconCircleMinus } from './icons-js/circle-minus.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 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 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 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 IconClockOff } from './icons-js/clock-off.js'; -export { default as IconClock } from './icons-js/clock.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 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 IconCoinBitcoin } from './icons-js/coin-bitcoin.js'; -export { default as IconCoinEuro } from './icons-js/coin-euro.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 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 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 IconCone } from './icons-js/cone.js'; -export { default as IconConfetti } from './icons-js/confetti.js'; -export { default as IconContainerOff } from './icons-js/container-off.js'; -export { default as IconContainer } from './icons-js/container.js'; -export { default as IconContrast2 } from './icons-js/contrast-2.js'; -export { default as IconContrast } from './icons-js/contrast.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 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 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 IconCurrencyDollarCanadian } from './icons-js/currency-dollar-canadian.js'; -export { default as IconCurrencyDollarSingapore } from './icons-js/currency-dollar-singapore.js'; -export { default as IconCurrencyDollar } from './icons-js/currency-dollar.js'; -export { default as IconCurrencyEthereum } from './icons-js/currency-ethereum.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 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 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 IconCurrencyNaira } from './icons-js/currency-naira.js'; -export { default as IconCurrencyPound } from './icons-js/currency-pound.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 IconCurrencyRupee } from './icons-js/currency-rupee.js'; -export { default as IconCurrencyShekel } from './icons-js/currency-shekel.js'; -export { default as IconCurrencyTaka } from './icons-js/currency-taka.js'; -export { default as IconCurrencyTugrik } from './icons-js/currency-tugrik.js'; -export { default as IconCurrencyWon } from './icons-js/currency-won.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 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 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 IconDetails } from './icons-js/details.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 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 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 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 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 IconDiscOff } from './icons-js/disc-off.js'; -export { default as IconDisc } from './icons-js/disc.js'; -export { default as IconDiscount2 } from './icons-js/discount-2.js'; -export { default as IconDiscountCheck } from './icons-js/discount-check.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 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 IconEarOff } from './icons-js/ear-off.js'; -export { default as IconEar } from './icons-js/ear.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 IconEggOff } from './icons-js/egg-off.js'; -export { default as IconEgg } from './icons-js/egg.js'; -export { default as IconElevator } from './icons-js/elevator.js'; -export { default as IconEmergencyBed } from './icons-js/emergency-bed.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 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 IconExclamationMarkOff } from './icons-js/exclamation-mark-off.js'; -export { default as IconExclamationMark } from './icons-js/exclamation-mark.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 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 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 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 IconFileHorizontal } from './icons-js/file-horizontal.js'; -export { default as IconFileImport } from './icons-js/file-import.js'; -export { default as IconFileInfo } from './icons-js/file-info.js'; -export { default as IconFileInvoice } from './icons-js/file-invoice.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 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 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 IconFiretruck } from './icons-js/firetruck.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 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 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 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 IconFunction } from './icons-js/function.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 IconGhost } from './icons-js/ghost.js'; -export { default as IconGif } from './icons-js/gif.js'; -export { default as IconGift } from './icons-js/gift.js'; -export { default as IconGitBranch } from './icons-js/git-branch.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 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 IconGrain } from './icons-js/grain.js'; -export { default as IconGraph } from './icons-js/graph.js'; -export { default as IconGridDots } from './icons-js/grid-dots.js'; -export { default as IconGridPattern } from './icons-js/grid-pattern.js'; -export { default as IconGrillOff } from './icons-js/grill-off.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 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 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 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 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 IconHelp } from './icons-js/help.js'; -export { default as IconHexagonOff } from './icons-js/hexagon-off.js'; -export { default as IconHexagon } from './icons-js/hexagon.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 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 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 IconHomeOff } from './icons-js/home-off.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 IconIcons } from './icons-js/icons.js'; -export { default as IconIdBadge2 } from './icons-js/id-badge-2.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 IconInfinity } from './icons-js/infinity.js'; -export { default as IconInfoCircle } from './icons-js/info-circle.js'; -export { default as IconInfoSquare } from './icons-js/info-square.js'; -export { default as IconInputSearch } from './icons-js/input-search.js'; -export { default as IconItalic } from './icons-js/italic.js'; -export { default as IconJewishStar } from './icons-js/jewish-star.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 IconLadderOff } from './icons-js/ladder-off.js'; -export { default as IconLadder } from './icons-js/ladder.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 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 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 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 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 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 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 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 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 IconLungs } from './icons-js/lungs.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 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 IconMasksTheater } from './icons-js/masks-theater.js'; -export { default as IconMassage } from './icons-js/massage.js'; -export { default as IconMathAvg } from './icons-js/math-avg.js'; -export { default as IconMathFunctionOff } from './icons-js/math-function-off.js'; -export { default as IconMathFunction } from './icons-js/math-function.js'; -export { default as IconMathMax } from './icons-js/math-max.js'; -export { default as IconMathMin } from './icons-js/math-min.js'; -export { default as IconMathSymbols } from './icons-js/math-symbols.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 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 IconMenu2 } from './icons-js/menu-2.js'; -export { default as IconMenu } from './icons-js/menu.js'; -export { default as IconMessage2Code } from './icons-js/message-2-code.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 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 IconMeteor } from './icons-js/meteor.js'; -export { default as IconMickey } from './icons-js/mickey.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 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 IconMilk } from './icons-js/milk.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 IconMist } from './icons-js/mist.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 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 IconMoodSad } from './icons-js/mood-sad.js'; -export { default as IconMoodSing } from './icons-js/mood-sing.js'; -export { default as IconMoodSmile } from './icons-js/mood-smile.js'; -export { default as IconMoodSuprised } from './icons-js/mood-suprised.js'; -export { default as IconMoodTongue } from './icons-js/mood-tongue.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 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 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 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 IconNavigation } from './icons-js/navigation.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 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 IconOlympics } from './icons-js/olympics.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 IconPanoramaHorizontal } from './icons-js/panorama-horizontal.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 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 IconPentagon } from './icons-js/pentagon.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 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 IconPhotoOff } from './icons-js/photo-off.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 IconPigOff } from './icons-js/pig-off.js'; -export { default as IconPig } from './icons-js/pig.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 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 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 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 IconPokeball } from './icons-js/pokeball.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 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 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 IconQrcode } from './icons-js/qrcode.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 IconRadar } from './icons-js/radar.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 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 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 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 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 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 IconRollercoaster } from './icons-js/rollercoaster.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 IconRouteOff } from './icons-js/route-off.js'; -export { default as IconRoute } from './icons-js/route.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 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 IconSailboat } from './icons-js/sailboat.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 IconSchema } from './icons-js/schema.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 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 IconScubaMask } from './icons-js/scuba-mask.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 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 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 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 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 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 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 IconSkateboard } from './icons-js/skateboard.js'; -export { default as IconSkull } from './icons-js/skull.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 IconSofa } from './icons-js/sofa.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 IconSos } from './icons-js/sos.js'; -export { default as IconSoup } from './icons-js/soup.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 IconSpiral } from './icons-js/spiral.js'; -export { default as IconSportBillard } from './icons-js/sport-billard.js'; -export { default as IconSpy } from './icons-js/spy.js'; -export { default as IconSquare0 } from './icons-js/square-0.js'; -export { default as IconSquare1 } from './icons-js/square-1.js'; -export { default as IconSquare2 } from './icons-js/square-2.js'; -export { default as IconSquare3 } from './icons-js/square-3.js'; -export { default as IconSquare4 } from './icons-js/square-4.js'; -export { default as IconSquare5 } from './icons-js/square-5.js'; -export { default as IconSquare6 } from './icons-js/square-6.js'; -export { default as IconSquare7 } from './icons-js/square-7.js'; -export { default as IconSquare8 } from './icons-js/square-8.js'; -export { default as IconSquare9 } from './icons-js/square-9.js'; -export { default as IconSquareAsterisk } from './icons-js/square-asterisk.js'; -export { default as IconSquareCheck } from './icons-js/square-check.js'; -export { default as IconSquareDot } from './icons-js/square-dot.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 IconSquareMinus } from './icons-js/square-minus.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 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 IconStars } from './icons-js/stars.js'; -export { default as IconSteam } from './icons-js/steam.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 IconStethoscope } from './icons-js/stethoscope.js'; -export { default as IconSticker } from './icons-js/sticker.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 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 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 IconTargetOff } from './icons-js/target-off.js'; -export { default as IconTarget } from './icons-js/target.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 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 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 IconThermometer } from './icons-js/thermometer.js'; -export { default as IconThumbDown } from './icons-js/thumb-down.js'; -export { default as IconThumbUp } from './icons-js/thumb-up.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 IconTiltShiftOff } from './icons-js/tilt-shift-off.js'; -export { default as IconTiltShift } from './icons-js/tilt-shift.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 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 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 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 IconTrophy } from './icons-js/trophy.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 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 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 IconVariableOff } from './icons-js/variable-off.js'; -export { default as IconVariable } from './icons-js/variable.js'; -export { default as IconVectorBezier2 } from './icons-js/vector-bezier-2.js'; -export { default as IconVectorBezier } from './icons-js/vector-bezier.js'; -export { default as IconVectorOff } from './icons-js/vector-off.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 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 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 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 IconWashMachine } from './icons-js/wash-machine.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 IconWebhook } from './icons-js/webhook.js'; -export { default as IconWheelchair } from './icons-js/wheelchair.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 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 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 IconZeppelin } from './icons-js/zeppelin.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 IconZzz } from './icons-js/zzz.js'; diff --git a/icons/123.svg b/icons/123.svg new file mode 100644 index 000000000..62040b663 --- /dev/null +++ b/icons/123.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/24-hours.svg b/icons/24-hours.svg new file mode 100644 index 000000000..9c17c5865 --- /dev/null +++ b/icons/24-hours.svg @@ -0,0 +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 new file mode 100644 index 000000000..e29752832 --- /dev/null +++ b/icons/360-view.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/360.svg b/icons/360.svg new file mode 100644 index 000000000..9bdfee5e9 --- /dev/null +++ b/icons/360.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/3d-cube-sphere-off.svg b/icons/3d-cube-sphere-off.svg new file mode 100644 index 000000000..9b2348647 --- /dev/null +++ b/icons/3d-cube-sphere-off.svg @@ -0,0 +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 ce3af3428..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 new file mode 100644 index 000000000..20a8a43f3 --- /dev/null +++ b/icons/abacus-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..01ab3dfea --- /dev/null +++ b/icons/abc.svg @@ -0,0 +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 new file mode 100644 index 000000000..47c286385 --- /dev/null +++ b/icons/ad-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..88f253860 --- /dev/null +++ b/icons/address-book-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b3ad51b73 --- /dev/null +++ b/icons/air-balloon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/air-conditioning-disabled.svg b/icons/air-conditioning-disabled.svg new file mode 100644 index 000000000..9ec1bac4f --- /dev/null +++ b/icons/air-conditioning-disabled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/air-conditioning.svg b/icons/air-conditioning.svg new file mode 100644 index 000000000..f915b89c4 --- /dev/null +++ b/icons/air-conditioning.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/alarm-minus.svg b/icons/alarm-minus.svg new file mode 100644 index 000000000..6c3bbb31c --- /dev/null +++ b/icons/alarm-minus.svg @@ -0,0 +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 new file mode 100644 index 000000000..791b5e2b6 --- /dev/null +++ b/icons/alarm-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/alarm-snooze.svg b/icons/alarm-snooze.svg new file mode 100644 index 000000000..537d70e1f --- /dev/null +++ b/icons/alarm-snooze.svg @@ -0,0 +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 new file mode 100644 index 000000000..54fa3caf6 --- /dev/null +++ b/icons/album-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..09228a651 --- /dev/null +++ b/icons/align-box-bottom-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-bottom-left.svg b/icons/align-box-bottom-left.svg new file mode 100644 index 000000000..f9b2af612 --- /dev/null +++ b/icons/align-box-bottom-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-bottom-right.svg b/icons/align-box-bottom-right.svg new file mode 100644 index 000000000..5a9e6fc73 --- /dev/null +++ b/icons/align-box-bottom-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-left-bottom.svg b/icons/align-box-left-bottom.svg new file mode 100644 index 000000000..cb073537c --- /dev/null +++ b/icons/align-box-left-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-left-middle.svg b/icons/align-box-left-middle.svg new file mode 100644 index 000000000..72f637793 --- /dev/null +++ b/icons/align-box-left-middle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-left-top.svg b/icons/align-box-left-top.svg new file mode 100644 index 000000000..f342931a9 --- /dev/null +++ b/icons/align-box-left-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-right-bottom.svg b/icons/align-box-right-bottom.svg new file mode 100644 index 000000000..edfdc53f1 --- /dev/null +++ b/icons/align-box-right-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-right-middle.svg b/icons/align-box-right-middle.svg new file mode 100644 index 000000000..2513ad977 --- /dev/null +++ b/icons/align-box-right-middle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-right-top.svg b/icons/align-box-right-top.svg new file mode 100644 index 000000000..0a9290ebc --- /dev/null +++ b/icons/align-box-right-top.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-top-center.svg b/icons/align-box-top-center.svg new file mode 100644 index 000000000..ac9d3826f --- /dev/null +++ b/icons/align-box-top-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-top-left.svg b/icons/align-box-top-left.svg new file mode 100644 index 000000000..74e44e3d4 --- /dev/null +++ b/icons/align-box-top-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/align-box-top-right.svg b/icons/align-box-top-right.svg new file mode 100644 index 000000000..07a5498c2 --- /dev/null +++ b/icons/align-box-top-right.svg @@ -0,0 +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/alpha.svg b/icons/alpha.svg new file mode 100644 index 000000000..98bb0cf21 --- /dev/null +++ b/icons/alpha.svg @@ -0,0 +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 new file mode 100644 index 000000000..4b11ea3c9 --- /dev/null +++ b/icons/analyze-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/analyze.svg b/icons/analyze.svg new file mode 100644 index 000000000..c84172512 --- /dev/null +++ b/icons/analyze.svg @@ -0,0 +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 new file mode 100644 index 000000000..e487fd7b1 --- /dev/null +++ b/icons/antenna-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..5b5aa1624 --- /dev/null +++ b/icons/aperture-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/aperture.svg b/icons/aperture.svg index 626908e1a..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 new file mode 100644 index 000000000..94165bcfb --- /dev/null +++ b/icons/armchair-2-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..9d69ef00d --- /dev/null +++ b/icons/armchair-off.svg @@ -0,0 +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-badge-down.svg b/icons/arrow-badge-down.svg new file mode 100644 index 000000000..37c407620 --- /dev/null +++ b/icons/arrow-badge-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-badge-left.svg b/icons/arrow-badge-left.svg new file mode 100644 index 000000000..fb6a71e98 --- /dev/null +++ b/icons/arrow-badge-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-badge-right.svg b/icons/arrow-badge-right.svg new file mode 100644 index 000000000..ed979e947 --- /dev/null +++ b/icons/arrow-badge-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-badge-up.svg b/icons/arrow-badge-up.svg new file mode 100644 index 000000000..7b9b583d8 --- /dev/null +++ b/icons/arrow-badge-up.svg @@ -0,0 +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-bottom-bar.svg b/icons/arrow-bottom-bar.svg deleted file mode 100644 index 30feafedb..000000000 --- a/icons/arrow-bottom-bar.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-bottom-circle.svg b/icons/arrow-bottom-circle.svg deleted file mode 100644 index 0e6c1d35d..000000000 --- a/icons/arrow-bottom-circle.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-bottom-square.svg b/icons/arrow-bottom-square.svg deleted file mode 100644 index 5162c7ed7..000000000 --- a/icons/arrow-bottom-square.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-bottom-tail.svg b/icons/arrow-bottom-tail.svg deleted file mode 100644 index 097fd5b0b..000000000 --- a/icons/arrow-bottom-tail.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-bounce.svg b/icons/arrow-bounce.svg new file mode 100644 index 000000000..3f889e91b --- /dev/null +++ b/icons/arrow-bounce.svg @@ -0,0 +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 new file mode 100644 index 000000000..4ddff4c36 --- /dev/null +++ b/icons/arrow-down-bar.svg @@ -0,0 +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 new file mode 100644 index 000000000..07d9029b1 --- /dev/null +++ b/icons/arrow-down-rhombus.svg @@ -0,0 +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 new file mode 100644 index 000000000..a5e23d5f6 --- /dev/null +++ b/icons/arrow-down-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-down-tail.svg b/icons/arrow-down-tail.svg new file mode 100644 index 000000000..661a99a7e --- /dev/null +++ b/icons/arrow-down-tail.svg @@ -0,0 +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 new file mode 100644 index 000000000..fc4eb1f87 --- /dev/null +++ b/icons/arrow-iteration.svg @@ -0,0 +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 new file mode 100644 index 000000000..f8812a2be --- /dev/null +++ b/icons/arrow-left-rhombus.svg @@ -0,0 +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 new file mode 100644 index 000000000..5dacba19b --- /dev/null +++ b/icons/arrow-right-rhombus.svg @@ -0,0 +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 2c5a7afdb..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 d0e465a37..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 f0172c725..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-top-bar.svg b/icons/arrow-top-bar.svg deleted file mode 100644 index 2ae1e19f0..000000000 --- a/icons/arrow-top-bar.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-top-circle.svg b/icons/arrow-top-circle.svg deleted file mode 100644 index 19c8c6fe2..000000000 --- a/icons/arrow-top-circle.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-top-square.svg b/icons/arrow-top-square.svg deleted file mode 100644 index ab1635637..000000000 --- a/icons/arrow-top-square.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-top-tail.svg b/icons/arrow-top-tail.svg deleted file mode 100644 index 3c5f657b2..000000000 --- a/icons/arrow-top-tail.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/arrow-up-bar.svg b/icons/arrow-up-bar.svg new file mode 100644 index 000000000..e0dd0fd9d --- /dev/null +++ b/icons/arrow-up-bar.svg @@ -0,0 +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 new file mode 100644 index 000000000..08ce33ede --- /dev/null +++ b/icons/arrow-up-rhombus.svg @@ -0,0 +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 new file mode 100644 index 000000000..c3d9c949b --- /dev/null +++ b/icons/arrow-up-square.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-up-tail.svg b/icons/arrow-up-tail.svg new file mode 100644 index 000000000..3d8432d08 --- /dev/null +++ b/icons/arrow-up-tail.svg @@ -0,0 +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 new file mode 100644 index 000000000..8109f6c54 --- /dev/null +++ b/icons/arrow-zig-zag.svg @@ -0,0 +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 new file mode 100644 index 000000000..7f6ff0902 --- /dev/null +++ b/icons/article-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..eb82eb213 --- /dev/null +++ b/icons/assembly-off.svg @@ -0,0 +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 b805a7311..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 new file mode 100644 index 000000000..850f5c61f --- /dev/null +++ b/icons/augmented-reality-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/augmented-reality-off.svg b/icons/augmented-reality-off.svg new file mode 100644 index 000000000..804c65dd3 --- /dev/null +++ b/icons/augmented-reality-off.svg @@ -0,0 +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 3b87eb982..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 new file mode 100644 index 000000000..7c6cfddee --- /dev/null +++ b/icons/baby-bottle.svg @@ -0,0 +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 new file mode 100644 index 000000000..4fb9beb72 --- /dev/null +++ b/icons/backpack-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/backpack.svg b/icons/backpack.svg index a82fcad9a..3e4be3414 100644 --- a/icons/backpack.svg +++ b/icons/backpack.svg @@ -1,8 +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 new file mode 100644 index 000000000..b9ed78186 --- /dev/null +++ b/icons/badge-3d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-4k.svg b/icons/badge-4k.svg new file mode 100644 index 000000000..c24e0b758 --- /dev/null +++ b/icons/badge-4k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-8k.svg b/icons/badge-8k.svg new file mode 100644 index 000000000..fa60ad4bd --- /dev/null +++ b/icons/badge-8k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-ad.svg b/icons/badge-ad.svg new file mode 100644 index 000000000..974caf873 --- /dev/null +++ b/icons/badge-ad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-ar.svg b/icons/badge-ar.svg new file mode 100644 index 000000000..79860c970 --- /dev/null +++ b/icons/badge-ar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-cc.svg b/icons/badge-cc.svg new file mode 100644 index 000000000..7861e259b --- /dev/null +++ b/icons/badge-cc.svg @@ -0,0 +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 new file mode 100644 index 000000000..060d36522 --- /dev/null +++ b/icons/badge-hd.svg @@ -0,0 +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 new file mode 100644 index 000000000..c15799fae --- /dev/null +++ b/icons/badge-sd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-tm.svg b/icons/badge-tm.svg new file mode 100644 index 000000000..da9bc5892 --- /dev/null +++ b/icons/badge-tm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-vo.svg b/icons/badge-vo.svg new file mode 100644 index 000000000..c6744e6cf --- /dev/null +++ b/icons/badge-vo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-vr.svg b/icons/badge-vr.svg new file mode 100644 index 000000000..52e2987cd --- /dev/null +++ b/icons/badge-vr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/badge-wc.svg b/icons/badge-wc.svg new file mode 100644 index 000000000..c7ff08499 --- /dev/null +++ b/icons/badge-wc.svg @@ -0,0 +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 new file mode 100644 index 000000000..bd6a30fc2 --- /dev/null +++ b/icons/baguette.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ball-american-football-off.svg b/icons/ball-american-football-off.svg new file mode 100644 index 000000000..abc933ae7 --- /dev/null +++ b/icons/ball-american-football-off.svg @@ -0,0 +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 fa03578bc..e866f5f47 100644 --- a/icons/ball-volleyball.svg +++ b/icons/ball-volleyball.svg @@ -1,9 +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 new file mode 100644 index 000000000..766353e02 --- /dev/null +++ b/icons/bandage-off.svg @@ -0,0 +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/beta.svg b/icons/beta.svg new file mode 100644 index 000000000..a46ef866c --- /dev/null +++ b/icons/beta.svg @@ -0,0 +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 new file mode 100644 index 000000000..14b2e9546 --- /dev/null +++ b/icons/binary-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/binary-tree-2.svg b/icons/binary-tree-2.svg new file mode 100644 index 000000000..fde6a5995 --- /dev/null +++ b/icons/binary-tree-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/binary-tree.svg b/icons/binary-tree.svg new file mode 100644 index 000000000..af4a6e762 --- /dev/null +++ b/icons/binary-tree.svg @@ -0,0 +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 new file mode 100644 index 000000000..3359290ec --- /dev/null +++ b/icons/blade.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bleach-chlorine.svg b/icons/bleach-chlorine.svg new file mode 100644 index 000000000..d0009fcc6 --- /dev/null +++ b/icons/bleach-chlorine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bleach-no-chlorine.svg b/icons/bleach-no-chlorine.svg new file mode 100644 index 000000000..5d84f901f --- /dev/null +++ b/icons/bleach-no-chlorine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bleach-off.svg b/icons/bleach-off.svg new file mode 100644 index 000000000..756c59fd2 --- /dev/null +++ b/icons/bleach-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bleach.svg b/icons/bleach.svg new file mode 100644 index 000000000..b425546ae --- /dev/null +++ b/icons/bleach.svg @@ -0,0 +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 new file mode 100644 index 000000000..1552924a4 --- /dev/null +++ b/icons/blur-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..7616f4e2d --- /dev/null +++ b/icons/bmp.svg @@ -0,0 +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 new file mode 100644 index 000000000..7045b9106 --- /dev/null +++ b/icons/bomb.svg @@ -0,0 +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 new file mode 100644 index 000000000..f821faf1e --- /dev/null +++ b/icons/bong-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bong.svg b/icons/bong.svg new file mode 100644 index 000000000..8ea4418ae --- /dev/null +++ b/icons/bong.svg @@ -0,0 +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 new file mode 100644 index 000000000..3d2cfcb95 --- /dev/null +++ b/icons/bottle-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..7a56b1184 --- /dev/null +++ b/icons/bounce-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bounce-right.svg b/icons/bounce-right.svg new file mode 100644 index 000000000..818118e70 --- /dev/null +++ b/icons/bounce-right.svg @@ -0,0 +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/bowl.svg b/icons/bowl.svg new file mode 100644 index 000000000..da9fbdcfd --- /dev/null +++ b/icons/bowl.svg @@ -0,0 +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 new file mode 100644 index 000000000..488a147cb --- /dev/null +++ b/icons/box-model-2-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..e79378ceb --- /dev/null +++ b/icons/box-model-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..78bf0a556 --- /dev/null +++ b/icons/box-seam.svg @@ -0,0 +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 new file mode 100644 index 000000000..16aa9b0c0 --- /dev/null +++ b/icons/braile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brain.svg b/icons/brain.svg new file mode 100644 index 000000000..1e5bb9afd --- /dev/null +++ b/icons/brain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-4chan.svg b/icons/brand-4chan.svg new file mode 100644 index 000000000..f36b006f8 --- /dev/null +++ b/icons/brand-4chan.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-abstract.svg b/icons/brand-abstract.svg new file mode 100644 index 000000000..01d24c573 --- /dev/null +++ b/icons/brand-abstract.svg @@ -0,0 +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 new file mode 100644 index 000000000..391461127 --- /dev/null +++ b/icons/brand-adonis-js.svg @@ -0,0 +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 new file mode 100644 index 000000000..3be321d9c --- /dev/null +++ b/icons/brand-algolia.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-alpine-js.svg b/icons/brand-alpine-js.svg new file mode 100644 index 000000000..d06b0fc47 --- /dev/null +++ b/icons/brand-alpine-js.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-amazon.svg b/icons/brand-amazon.svg index f9bc4c43c..23d130292 100644 --- a/icons/brand-amazon.svg +++ b/icons/brand-amazon.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/brand-amd.svg b/icons/brand-amd.svg new file mode 100644 index 000000000..b218341ac --- /dev/null +++ b/icons/brand-amd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-amigo.svg b/icons/brand-amigo.svg new file mode 100644 index 000000000..716737fbe --- /dev/null +++ b/icons/brand-amigo.svg @@ -0,0 +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 new file mode 100644 index 000000000..9ea22817c --- /dev/null +++ b/icons/brand-ao3.svg @@ -0,0 +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 new file mode 100644 index 000000000..09546026c --- /dev/null +++ b/icons/brand-backbone.svg @@ -0,0 +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 new file mode 100644 index 000000000..b6fc799f8 --- /dev/null +++ b/icons/brand-baidu.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-bandlab.svg b/icons/brand-bandlab.svg new file mode 100644 index 000000000..bb2fb61e9 --- /dev/null +++ b/icons/brand-bandlab.svg @@ -0,0 +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 new file mode 100644 index 000000000..8b3522f39 --- /dev/null +++ b/icons/brand-binance.svg @@ -0,0 +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 new file mode 100644 index 000000000..05fd24611 --- /dev/null +++ b/icons/brand-blackbery.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-blender.svg b/icons/brand-blender.svg new file mode 100644 index 000000000..f9519c8e7 --- /dev/null +++ b/icons/brand-blender.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-blogger.svg b/icons/brand-blogger.svg new file mode 100644 index 000000000..68520c70a --- /dev/null +++ b/icons/brand-blogger.svg @@ -0,0 +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-bulma.svg b/icons/brand-bulma.svg new file mode 100644 index 000000000..9ffa01a60 --- /dev/null +++ b/icons/brand-bulma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-bumble.svg b/icons/brand-bumble.svg new file mode 100644 index 000000000..bb3586f72 --- /dev/null +++ b/icons/brand-bumble.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-bunpo.svg b/icons/brand-bunpo.svg new file mode 100644 index 000000000..84bce62f6 --- /dev/null +++ b/icons/brand-bunpo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-c-sharp.svg b/icons/brand-c-sharp.svg new file mode 100644 index 000000000..eb7e385bb --- /dev/null +++ b/icons/brand-c-sharp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-campaignmonitor.svg b/icons/brand-campaignmonitor.svg new file mode 100644 index 000000000..4b0f6fb7f --- /dev/null +++ b/icons/brand-campaignmonitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-carbon.svg b/icons/brand-carbon.svg new file mode 100644 index 000000000..1c7a67225 --- /dev/null +++ b/icons/brand-carbon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-cashapp.svg b/icons/brand-cashapp.svg new file mode 100644 index 000000000..9a0ead5b2 --- /dev/null +++ b/icons/brand-cashapp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-chrome.svg b/icons/brand-chrome.svg index ad4033b73..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 new file mode 100644 index 000000000..76db2f9b6 --- /dev/null +++ b/icons/brand-citymapper.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-codecov.svg b/icons/brand-codecov.svg new file mode 100644 index 000000000..8252d8a45 --- /dev/null +++ b/icons/brand-codecov.svg @@ -0,0 +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 new file mode 100644 index 000000000..95d391b61 --- /dev/null +++ b/icons/brand-cohost.svg @@ -0,0 +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 new file mode 100644 index 000000000..e7e004894 --- /dev/null +++ b/icons/brand-coreos.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-couchdb.svg b/icons/brand-couchdb.svg new file mode 100644 index 000000000..79c1fad25 --- /dev/null +++ b/icons/brand-couchdb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-couchsurfing.svg b/icons/brand-couchsurfing.svg new file mode 100644 index 000000000..5989f674e --- /dev/null +++ b/icons/brand-couchsurfing.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-cpp.svg b/icons/brand-cpp.svg new file mode 100644 index 000000000..f55d07c64 --- /dev/null +++ b/icons/brand-cpp.svg @@ -0,0 +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 new file mode 100644 index 000000000..d2a4a0d12 --- /dev/null +++ b/icons/brand-ctemplar.svg @@ -0,0 +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 new file mode 100644 index 000000000..04f7e63d6 --- /dev/null +++ b/icons/brand-cupra.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-cypress.svg b/icons/brand-cypress.svg new file mode 100644 index 000000000..8f5b9c263 --- /dev/null +++ b/icons/brand-cypress.svg @@ -0,0 +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 new file mode 100644 index 000000000..d25007b9c --- /dev/null +++ b/icons/brand-days-counter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-dcos.svg b/icons/brand-dcos.svg new file mode 100644 index 000000000..9f77e54c4 --- /dev/null +++ b/icons/brand-dcos.svg @@ -0,0 +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 new file mode 100644 index 000000000..8f839eeac --- /dev/null +++ b/icons/brand-deliveroo.svg @@ -0,0 +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 new file mode 100644 index 000000000..47cb3b459 --- /dev/null +++ b/icons/brand-denodo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-dingtalk.svg b/icons/brand-dingtalk.svg new file mode 100644 index 000000000..bb07afb34 --- /dev/null +++ b/icons/brand-dingtalk.svg @@ -0,0 +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 new file mode 100644 index 000000000..a67af6040 --- /dev/null +++ b/icons/brand-django.svg @@ -0,0 +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 new file mode 100644 index 000000000..7e87778c2 --- /dev/null +++ b/icons/brand-dolby-digital.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-douban.svg b/icons/brand-douban.svg new file mode 100644 index 000000000..ffd4fda68 --- /dev/null +++ b/icons/brand-douban.svg @@ -0,0 +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 new file mode 100644 index 000000000..4c37876d9 --- /dev/null +++ b/icons/brand-drops.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-drupal.svg b/icons/brand-drupal.svg new file mode 100644 index 000000000..1597c164b --- /dev/null +++ b/icons/brand-drupal.svg @@ -0,0 +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 new file mode 100644 index 000000000..813736494 --- /dev/null +++ b/icons/brand-elastic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-ember.svg b/icons/brand-ember.svg new file mode 100644 index 000000000..52ba09f31 --- /dev/null +++ b/icons/brand-ember.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-envato.svg b/icons/brand-envato.svg new file mode 100644 index 000000000..24f765472 --- /dev/null +++ b/icons/brand-envato.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-etsy.svg b/icons/brand-etsy.svg new file mode 100644 index 000000000..444525789 --- /dev/null +++ b/icons/brand-etsy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-evernote.svg b/icons/brand-evernote.svg new file mode 100644 index 000000000..58f2cc1d0 --- /dev/null +++ b/icons/brand-evernote.svg @@ -0,0 +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 new file mode 100644 index 000000000..790c48d41 --- /dev/null +++ b/icons/brand-flightradar24.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-flutter.svg b/icons/brand-flutter.svg new file mode 100644 index 000000000..b2bcf260e --- /dev/null +++ b/icons/brand-flutter.svg @@ -0,0 +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 new file mode 100644 index 000000000..7f6c62e8f --- /dev/null +++ b/icons/brand-funimation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-gatsby.svg b/icons/brand-gatsby.svg new file mode 100644 index 000000000..94756808b --- /dev/null +++ b/icons/brand-gatsby.svg @@ -0,0 +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 new file mode 100644 index 000000000..fdda2018a --- /dev/null +++ b/icons/brand-github-copilot.svg @@ -0,0 +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 new file mode 100644 index 000000000..79ab9d026 --- /dev/null +++ b/icons/brand-google-big-query.svg @@ -0,0 +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 new file mode 100644 index 000000000..79938dfdc --- /dev/null +++ b/icons/brand-google-home.svg @@ -0,0 +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 new file mode 100644 index 000000000..8c45e68b1 --- /dev/null +++ b/icons/brand-google-podcasts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-grammarly.svg b/icons/brand-grammarly.svg new file mode 100644 index 000000000..d25c0d9fa --- /dev/null +++ b/icons/brand-grammarly.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-graphql.svg b/icons/brand-graphql.svg new file mode 100644 index 000000000..70299d871 --- /dev/null +++ b/icons/brand-graphql.svg @@ -0,0 +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 new file mode 100644 index 000000000..47da8a5fe --- /dev/null +++ b/icons/brand-guardian.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-gumroad.svg b/icons/brand-gumroad.svg new file mode 100644 index 000000000..380437e3b --- /dev/null +++ b/icons/brand-gumroad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-hbo.svg b/icons/brand-hbo.svg new file mode 100644 index 000000000..5a5651153 --- /dev/null +++ b/icons/brand-hbo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-headlessui.svg b/icons/brand-headlessui.svg new file mode 100644 index 000000000..dba47563e --- /dev/null +++ b/icons/brand-headlessui.svg @@ -0,0 +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 new file mode 100644 index 000000000..17dbfc2c6 --- /dev/null +++ b/icons/brand-inertia.svg @@ -0,0 +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 new file mode 100644 index 000000000..fad53337a --- /dev/null +++ b/icons/brand-laravel.svg @@ -0,0 +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-linqpad.svg b/icons/brand-linqpad.svg new file mode 100644 index 000000000..1dfb68a20 --- /dev/null +++ b/icons/brand-linqpad.svg @@ -0,0 +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 new file mode 100644 index 000000000..345983e39 --- /dev/null +++ b/icons/brand-mailgun.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-mantine.svg b/icons/brand-mantine.svg new file mode 100644 index 000000000..b8e389e3c --- /dev/null +++ b/icons/brand-mantine.svg @@ -0,0 +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 new file mode 100644 index 000000000..f8644e0db --- /dev/null +++ b/icons/brand-matrix.svg @@ -0,0 +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 new file mode 100644 index 000000000..4ea99f25f --- /dev/null +++ b/icons/brand-miniprogram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-mixpanel.svg b/icons/brand-mixpanel.svg new file mode 100644 index 000000000..8338ae933 --- /dev/null +++ b/icons/brand-mixpanel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-monday.svg b/icons/brand-monday.svg index 605f588d4..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 new file mode 100644 index 000000000..f7630ce4e --- /dev/null +++ b/icons/brand-mongodb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-my-oppo.svg b/icons/brand-my-oppo.svg new file mode 100644 index 000000000..36e467eb4 --- /dev/null +++ b/icons/brand-my-oppo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-mysql.svg b/icons/brand-mysql.svg new file mode 100644 index 000000000..54aa6fb83 --- /dev/null +++ b/icons/brand-mysql.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-national-geographic.svg b/icons/brand-national-geographic.svg new file mode 100644 index 000000000..eaa8d7793 --- /dev/null +++ b/icons/brand-national-geographic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-nem.svg b/icons/brand-nem.svg new file mode 100644 index 000000000..e8d73de84 --- /dev/null +++ b/icons/brand-nem.svg @@ -0,0 +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 new file mode 100644 index 000000000..0567f62d3 --- /dev/null +++ b/icons/brand-netease-music.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-netflix.svg b/icons/brand-netflix.svg index d3a488285..1b2d1679b 100644 --- a/icons/brand-netflix.svg +++ b/icons/brand-netflix.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/brand-nexo.svg b/icons/brand-nexo.svg new file mode 100644 index 000000000..60e6fcfdc --- /dev/null +++ b/icons/brand-nexo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-nextcloud.svg b/icons/brand-nextcloud.svg new file mode 100644 index 000000000..c0979b033 --- /dev/null +++ b/icons/brand-nextcloud.svg @@ -0,0 +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 new file mode 100644 index 000000000..d8a968802 --- /dev/null +++ b/icons/brand-nord-vpn.svg @@ -0,0 +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 new file mode 100644 index 000000000..5ef7679ac --- /dev/null +++ b/icons/brand-npm.svg @@ -0,0 +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-office.svg b/icons/brand-office.svg new file mode 100644 index 000000000..d887cedda --- /dev/null +++ b/icons/brand-office.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-ok-ru.svg b/icons/brand-ok-ru.svg new file mode 100644 index 000000000..426de5a2e --- /dev/null +++ b/icons/brand-ok-ru.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-onedrive.svg b/icons/brand-onedrive.svg new file mode 100644 index 000000000..e5f099ddd --- /dev/null +++ b/icons/brand-onedrive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-onlyfans.svg b/icons/brand-onlyfans.svg new file mode 100644 index 000000000..0dc915e1d --- /dev/null +++ b/icons/brand-onlyfans.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-openvpn.svg b/icons/brand-openvpn.svg new file mode 100644 index 000000000..6d435c77d --- /dev/null +++ b/icons/brand-openvpn.svg @@ -0,0 +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 new file mode 100644 index 000000000..2c2044678 --- /dev/null +++ b/icons/brand-paypay.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-peanut.svg b/icons/brand-peanut.svg new file mode 100644 index 000000000..9c4c134b2 --- /dev/null +++ b/icons/brand-peanut.svg @@ -0,0 +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 8c514ff22..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 new file mode 100644 index 000000000..752beb698 --- /dev/null +++ b/icons/brand-picsart.svg @@ -0,0 +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-polymer.svg b/icons/brand-polymer.svg new file mode 100644 index 000000000..f64be842c --- /dev/null +++ b/icons/brand-polymer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-powershell.svg b/icons/brand-powershell.svg new file mode 100644 index 000000000..b60489bac --- /dev/null +++ b/icons/brand-powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-prisma.svg b/icons/brand-prisma.svg new file mode 100644 index 000000000..08428c2ff --- /dev/null +++ b/icons/brand-prisma.svg @@ -0,0 +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 new file mode 100644 index 000000000..58add1abb --- /dev/null +++ b/icons/brand-pushbullet.svg @@ -0,0 +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 new file mode 100644 index 000000000..b7eef5338 --- /dev/null +++ b/icons/brand-qq.svg @@ -0,0 +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 new file mode 100644 index 000000000..dd8172898 --- /dev/null +++ b/icons/brand-react.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-reason.svg b/icons/brand-reason.svg new file mode 100644 index 000000000..fbec60863 --- /dev/null +++ b/icons/brand-reason.svg @@ -0,0 +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 new file mode 100644 index 000000000..08abd3907 --- /dev/null +++ b/icons/brand-redhat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-redux.svg b/icons/brand-redux.svg new file mode 100644 index 000000000..e9473e697 --- /dev/null +++ b/icons/brand-redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-revolut.svg b/icons/brand-revolut.svg new file mode 100644 index 000000000..f42762bac --- /dev/null +++ b/icons/brand-revolut.svg @@ -0,0 +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 new file mode 100644 index 000000000..24e51160d --- /dev/null +++ b/icons/brand-samsungpass.svg @@ -0,0 +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-sharik.svg b/icons/brand-sharik.svg new file mode 100644 index 000000000..4b6ef23f8 --- /dev/null +++ b/icons/brand-sharik.svg @@ -0,0 +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 new file mode 100644 index 000000000..370366028 --- /dev/null +++ b/icons/brand-snowflake.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-socket-io.svg b/icons/brand-socket-io.svg new file mode 100644 index 000000000..d4ec822eb --- /dev/null +++ b/icons/brand-socket-io.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-solidjs.svg b/icons/brand-solidjs.svg new file mode 100644 index 000000000..20acff2c1 --- /dev/null +++ b/icons/brand-solidjs.svg @@ -0,0 +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 new file mode 100644 index 000000000..7b1a3c5c3 --- /dev/null +++ b/icons/brand-spacehey.svg @@ -0,0 +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 new file mode 100644 index 000000000..16614899c --- /dev/null +++ b/icons/brand-stackshare.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-steam.svg b/icons/brand-steam.svg index e460beff3..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 new file mode 100644 index 000000000..4e20714e4 --- /dev/null +++ b/icons/brand-storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-storytel.svg b/icons/brand-storytel.svg new file mode 100644 index 000000000..a4528375f --- /dev/null +++ b/icons/brand-storytel.svg @@ -0,0 +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 new file mode 100644 index 000000000..6eebe5964 --- /dev/null +++ b/icons/brand-superhuman.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-supernova.svg b/icons/brand-supernova.svg new file mode 100644 index 000000000..f9f742e7f --- /dev/null +++ b/icons/brand-supernova.svg @@ -0,0 +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 new file mode 100644 index 000000000..ed6ef4cdd --- /dev/null +++ b/icons/brand-symfony.svg @@ -0,0 +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 new file mode 100644 index 000000000..0375359f6 --- /dev/null +++ b/icons/brand-taobao.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-ted.svg b/icons/brand-ted.svg new file mode 100644 index 000000000..f1d9ede20 --- /dev/null +++ b/icons/brand-ted.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-tether.svg b/icons/brand-tether.svg new file mode 100644 index 000000000..1b2d31601 --- /dev/null +++ b/icons/brand-tether.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-threejs.svg b/icons/brand-threejs.svg new file mode 100644 index 000000000..9485533d7 --- /dev/null +++ b/icons/brand-threejs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-topbuzz.svg b/icons/brand-topbuzz.svg new file mode 100644 index 000000000..2723d3f91 --- /dev/null +++ b/icons/brand-topbuzz.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-torchain.svg b/icons/brand-torchain.svg new file mode 100644 index 000000000..8233521cc --- /dev/null +++ b/icons/brand-torchain.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-toyota.svg b/icons/brand-toyota.svg index 8ebf1ebd8..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 new file mode 100644 index 000000000..c9868a68c --- /dev/null +++ b/icons/brand-trello.svg @@ -0,0 +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 new file mode 100644 index 000000000..9a5be033c --- /dev/null +++ b/icons/brand-twilio.svg @@ -0,0 +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 new file mode 100644 index 000000000..2a7fad6c5 --- /dev/null +++ b/icons/brand-typescript.svg @@ -0,0 +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 b63c90850..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 new file mode 100644 index 000000000..493862e7e --- /dev/null +++ b/icons/brand-upwork.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-valorant.svg b/icons/brand-valorant.svg new file mode 100644 index 000000000..666df0a7a --- /dev/null +++ b/icons/brand-valorant.svg @@ -0,0 +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 new file mode 100644 index 000000000..191fa4cc7 --- /dev/null +++ b/icons/brand-visa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-vite.svg b/icons/brand-vite.svg new file mode 100644 index 000000000..8f72fd37a --- /dev/null +++ b/icons/brand-vite.svg @@ -0,0 +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 new file mode 100644 index 000000000..c3eb169da --- /dev/null +++ b/icons/brand-volkswagen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-vsco.svg b/icons/brand-vsco.svg new file mode 100644 index 000000000..fd3b87544 --- /dev/null +++ b/icons/brand-vsco.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-vscode.svg b/icons/brand-vscode.svg new file mode 100644 index 000000000..7f35c359f --- /dev/null +++ b/icons/brand-vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-vue.svg b/icons/brand-vue.svg index ac130dfbb..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 new file mode 100644 index 000000000..14e3c70b7 --- /dev/null +++ b/icons/brand-waze.svg @@ -0,0 +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 new file mode 100644 index 000000000..8faa1821b --- /dev/null +++ b/icons/brand-wechat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-weibo.svg b/icons/brand-weibo.svg new file mode 100644 index 000000000..8ec36b999 --- /dev/null +++ b/icons/brand-weibo.svg @@ -0,0 +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 new file mode 100644 index 000000000..3932462f8 --- /dev/null +++ b/icons/brand-windy.svg @@ -0,0 +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 new file mode 100644 index 000000000..c465999aa --- /dev/null +++ b/icons/brand-wix.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-wordpress.svg b/icons/brand-wordpress.svg index 2249992fc..587ff2481 100644 --- a/icons/brand-wordpress.svg +++ b/icons/brand-wordpress.svg @@ -1,12 +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 new file mode 100644 index 000000000..387f65864 --- /dev/null +++ b/icons/brand-zalando.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-zapier.svg b/icons/brand-zapier.svg new file mode 100644 index 000000000..ff8d5ead3 --- /dev/null +++ b/icons/brand-zapier.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-zeit.svg b/icons/brand-zeit.svg new file mode 100644 index 000000000..9e5f59bb1 --- /dev/null +++ b/icons/brand-zeit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/brand-zhihu.svg b/icons/brand-zhihu.svg new file mode 100644 index 000000000..ea427e8c6 --- /dev/null +++ b/icons/brand-zhihu.svg @@ -0,0 +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 new file mode 100644 index 000000000..4b28f0803 --- /dev/null +++ b/icons/brand-zulip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bread-off.svg b/icons/bread-off.svg new file mode 100644 index 000000000..f4a5c132a --- /dev/null +++ b/icons/bread-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..1d602d329 --- /dev/null +++ b/icons/briefcase-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..f8f71fa46 --- /dev/null +++ b/icons/brightness-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..56da22dad --- /dev/null +++ b/icons/bucket-droplet.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/bucket-off.svg b/icons/bucket-off.svg index a2bcb1d24..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 2cab1f6be..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 new file mode 100644 index 000000000..50f5d1fa3 --- /dev/null +++ b/icons/building-broadcast-tower.svg @@ -0,0 +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 new file mode 100644 index 000000000..1d89c8615 --- /dev/null +++ b/icons/building-circus.svg @@ -0,0 +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 new file mode 100644 index 000000000..cf3a974bc --- /dev/null +++ b/icons/building-estate.svg @@ -0,0 +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 new file mode 100644 index 000000000..802166a32 --- /dev/null +++ b/icons/building-stadium.svg @@ -0,0 +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 new file mode 100644 index 000000000..6480dea98 --- /dev/null +++ b/icons/building-tunnel.svg @@ -0,0 +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 new file mode 100644 index 000000000..96c72a83f --- /dev/null +++ b/icons/building-wind-turbine.svg @@ -0,0 +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 new file mode 100644 index 000000000..097f5f9c7 --- /dev/null +++ b/icons/bus-off.svg @@ -0,0 +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 1b718febc..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 deleted file mode 100644 index 3d39c0de9..000000000 --- a/icons/c-sharp.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/cactus-off.svg b/icons/cactus-off.svg new file mode 100644 index 000000000..28d7bd0f9 --- /dev/null +++ b/icons/cactus-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..0e71c1ea0 --- /dev/null +++ b/icons/calendar-due.svg @@ -0,0 +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 new file mode 100644 index 000000000..d63d840c9 --- /dev/null +++ b/icons/campfire.svg @@ -0,0 +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/cane.svg b/icons/cane.svg new file mode 100644 index 000000000..580a1e6db --- /dev/null +++ b/icons/cane.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cannabis.svg b/icons/cannabis.svg new file mode 100644 index 000000000..60f1d6a56 --- /dev/null +++ b/icons/cannabis.svg @@ -0,0 +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 new file mode 100644 index 000000000..d47bd2b19 --- /dev/null +++ b/icons/car-turbine.svg @@ -0,0 +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 new file mode 100644 index 000000000..53c3a5b02 --- /dev/null +++ b/icons/cards.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/caret-down.svg b/icons/caret-down.svg index 471f4b288..6c4a3bd76 100644 --- a/icons/caret-down.svg +++ b/icons/caret-down.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/caret-left.svg b/icons/caret-left.svg index ddc2b3705..3582a3fb4 100644 --- a/icons/caret-left.svg +++ b/icons/caret-left.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/caret-right.svg b/icons/caret-right.svg index 20581e8ee..1f60339f4 100644 --- a/icons/caret-right.svg +++ b/icons/caret-right.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/caret-up.svg b/icons/caret-up.svg index 09a0d8bfa..398017071 100644 --- a/icons/caret-up.svg +++ b/icons/caret-up.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/carousel-horizontal.svg b/icons/carousel-horizontal.svg new file mode 100644 index 000000000..d6ba481d6 --- /dev/null +++ b/icons/carousel-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/carousel-vertical.svg b/icons/carousel-vertical.svg new file mode 100644 index 000000000..4e09f0794 --- /dev/null +++ b/icons/carousel-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/carrot-off.svg b/icons/carrot-off.svg new file mode 100644 index 000000000..87997d3bd --- /dev/null +++ b/icons/carrot-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..eee1bce49 --- /dev/null +++ b/icons/cat.svg @@ -0,0 +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 new file mode 100644 index 000000000..479c6899a --- /dev/null +++ b/icons/chalkboard-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chalkboard.svg b/icons/chalkboard.svg new file mode 100644 index 000000000..97825e863 --- /dev/null +++ b/icons/chalkboard.svg @@ -0,0 +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 new file mode 100644 index 000000000..efa5c9ae5 --- /dev/null +++ b/icons/chart-bar-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..15537f142 --- /dev/null +++ b/icons/chart-grid-dots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chart-histogram.svg b/icons/chart-histogram.svg new file mode 100644 index 000000000..42b58db1b --- /dev/null +++ b/icons/chart-histogram.svg @@ -0,0 +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 new file mode 100644 index 000000000..522fbeaee --- /dev/null +++ b/icons/chart-pie-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..5c4cb47fa --- /dev/null +++ b/icons/chart-ppf.svg @@ -0,0 +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 new file mode 100644 index 000000000..62c313fb1 --- /dev/null +++ b/icons/chart-sankey.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chart-treemap.svg b/icons/chart-treemap.svg new file mode 100644 index 000000000..087d7f515 --- /dev/null +++ b/icons/chart-treemap.svg @@ -0,0 +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 new file mode 100644 index 000000000..fb86bc91b --- /dev/null +++ b/icons/chef-hat-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..90484f648 --- /dev/null +++ b/icons/cherry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chess-bishop.svg b/icons/chess-bishop.svg new file mode 100644 index 000000000..9bf610c35 --- /dev/null +++ b/icons/chess-bishop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chess-king.svg b/icons/chess-king.svg new file mode 100644 index 000000000..07bb65ec7 --- /dev/null +++ b/icons/chess-king.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chess-knight.svg b/icons/chess-knight.svg new file mode 100644 index 000000000..47bf792b8 --- /dev/null +++ b/icons/chess-knight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chess-queen.svg b/icons/chess-queen.svg new file mode 100644 index 000000000..2f04949bf --- /dev/null +++ b/icons/chess-queen.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chess-rook.svg b/icons/chess-rook.svg new file mode 100644 index 000000000..5e75b7e5b --- /dev/null +++ b/icons/chess-rook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/chess.svg b/icons/chess.svg new file mode 100644 index 000000000..6d7279260 --- /dev/null +++ b/icons/chess.svg @@ -0,0 +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 new file mode 100644 index 000000000..5068a3ab9 --- /dev/null +++ b/icons/chisel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/christmas-tree-off.svg b/icons/christmas-tree-off.svg new file mode 100644 index 000000000..565906c03 --- /dev/null +++ b/icons/christmas-tree-off.svg @@ -0,0 +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-0.svg b/icons/circle-0.svg deleted file mode 100644 index eaadc7eb5..000000000 --- a/icons/circle-0.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/circle-1.svg b/icons/circle-1.svg deleted file mode 100644 index ce1c84c6f..000000000 --- a/icons/circle-1.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/circle-2.svg b/icons/circle-2.svg deleted file mode 100644 index 4387c54ed..000000000 --- a/icons/circle-2.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/circle-3.svg b/icons/circle-3.svg deleted file mode 100644 index 126d600e5..000000000 --- a/icons/circle-3.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/circle-4.svg b/icons/circle-4.svg deleted file mode 100644 index 0513140b2..000000000 --- a/icons/circle-4.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/circle-5.svg b/icons/circle-5.svg deleted file mode 100644 index b6393b323..000000000 --- a/icons/circle-5.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/circle-6.svg b/icons/circle-6.svg deleted file mode 100644 index e4d072622..000000000 --- a/icons/circle-6.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/circle-7.svg b/icons/circle-7.svg deleted file mode 100644 index 535a976ab..000000000 --- a/icons/circle-7.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/circle-8.svg b/icons/circle-8.svg deleted file mode 100644 index 629fa75c6..000000000 --- a/icons/circle-8.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/circle-9.svg b/icons/circle-9.svg deleted file mode 100644 index a25ca90bc..000000000 --- a/icons/circle-9.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/circle-caret-down.svg b/icons/circle-caret-down.svg new file mode 100644 index 000000000..fccc1e0f3 --- /dev/null +++ b/icons/circle-caret-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-caret-left.svg b/icons/circle-caret-left.svg new file mode 100644 index 000000000..babc29f4e --- /dev/null +++ b/icons/circle-caret-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-caret-right.svg b/icons/circle-caret-right.svg new file mode 100644 index 000000000..d712f0bf2 --- /dev/null +++ b/icons/circle-caret-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-caret-up.svg b/icons/circle-caret-up.svg new file mode 100644 index 000000000..0ba898171 --- /dev/null +++ b/icons/circle-caret-up.svg @@ -0,0 +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 new file mode 100644 index 000000000..8472bb548 --- /dev/null +++ b/icons/circle-chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevron-left.svg b/icons/circle-chevron-left.svg new file mode 100644 index 000000000..503391e87 --- /dev/null +++ b/icons/circle-chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevron-right.svg b/icons/circle-chevron-right.svg new file mode 100644 index 000000000..c32d56e21 --- /dev/null +++ b/icons/circle-chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevron-up.svg b/icons/circle-chevron-up.svg new file mode 100644 index 000000000..9375168ec --- /dev/null +++ b/icons/circle-chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevrons-down.svg b/icons/circle-chevrons-down.svg new file mode 100644 index 000000000..4d7b94313 --- /dev/null +++ b/icons/circle-chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevrons-left.svg b/icons/circle-chevrons-left.svg new file mode 100644 index 000000000..aa283b655 --- /dev/null +++ b/icons/circle-chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevrons-right.svg b/icons/circle-chevrons-right.svg new file mode 100644 index 000000000..a6b9540ef --- /dev/null +++ b/icons/circle-chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-chevrons-up.svg b/icons/circle-chevrons-up.svg new file mode 100644 index 000000000..a45e8f43f --- /dev/null +++ b/icons/circle-chevrons-up.svg @@ -0,0 +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 new file mode 100644 index 000000000..bc543e88f --- /dev/null +++ b/icons/circle-key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-a.svg b/icons/circle-letter-a.svg new file mode 100644 index 000000000..ea144422a --- /dev/null +++ b/icons/circle-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-b.svg b/icons/circle-letter-b.svg new file mode 100644 index 000000000..f2bb985aa --- /dev/null +++ b/icons/circle-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-c.svg b/icons/circle-letter-c.svg new file mode 100644 index 000000000..1f58c5c32 --- /dev/null +++ b/icons/circle-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-d.svg b/icons/circle-letter-d.svg new file mode 100644 index 000000000..4a7b89ace --- /dev/null +++ b/icons/circle-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-e.svg b/icons/circle-letter-e.svg new file mode 100644 index 000000000..e93c7b74a --- /dev/null +++ b/icons/circle-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-f.svg b/icons/circle-letter-f.svg new file mode 100644 index 000000000..8436ede13 --- /dev/null +++ b/icons/circle-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-g.svg b/icons/circle-letter-g.svg new file mode 100644 index 000000000..7952cc01e --- /dev/null +++ b/icons/circle-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-h.svg b/icons/circle-letter-h.svg new file mode 100644 index 000000000..68f895772 --- /dev/null +++ b/icons/circle-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-i.svg b/icons/circle-letter-i.svg new file mode 100644 index 000000000..8163bf06c --- /dev/null +++ b/icons/circle-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-j.svg b/icons/circle-letter-j.svg new file mode 100644 index 000000000..dc3ac9516 --- /dev/null +++ b/icons/circle-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-k.svg b/icons/circle-letter-k.svg new file mode 100644 index 000000000..ff0e0c513 --- /dev/null +++ b/icons/circle-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-l.svg b/icons/circle-letter-l.svg new file mode 100644 index 000000000..d34af4dae --- /dev/null +++ b/icons/circle-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-m.svg b/icons/circle-letter-m.svg new file mode 100644 index 000000000..53307b7fe --- /dev/null +++ b/icons/circle-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-n.svg b/icons/circle-letter-n.svg new file mode 100644 index 000000000..78ca2cf57 --- /dev/null +++ b/icons/circle-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-o.svg b/icons/circle-letter-o.svg new file mode 100644 index 000000000..c0aa016da --- /dev/null +++ b/icons/circle-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-p.svg b/icons/circle-letter-p.svg new file mode 100644 index 000000000..b1a2fd1e7 --- /dev/null +++ b/icons/circle-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-q.svg b/icons/circle-letter-q.svg new file mode 100644 index 000000000..962d71bd1 --- /dev/null +++ b/icons/circle-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-r.svg b/icons/circle-letter-r.svg new file mode 100644 index 000000000..b41e3ff65 --- /dev/null +++ b/icons/circle-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-s.svg b/icons/circle-letter-s.svg new file mode 100644 index 000000000..d8e9d629d --- /dev/null +++ b/icons/circle-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-t.svg b/icons/circle-letter-t.svg new file mode 100644 index 000000000..fcab751ac --- /dev/null +++ b/icons/circle-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-u.svg b/icons/circle-letter-u.svg new file mode 100644 index 000000000..cf650120e --- /dev/null +++ b/icons/circle-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-v.svg b/icons/circle-letter-v.svg new file mode 100644 index 000000000..faa2aa3c9 --- /dev/null +++ b/icons/circle-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-w.svg b/icons/circle-letter-w.svg new file mode 100644 index 000000000..7067e0b0e --- /dev/null +++ b/icons/circle-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-x.svg b/icons/circle-letter-x.svg new file mode 100644 index 000000000..ef2c8fb29 --- /dev/null +++ b/icons/circle-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-y.svg b/icons/circle-letter-y.svg new file mode 100644 index 000000000..b82cfca78 --- /dev/null +++ b/icons/circle-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-letter-z.svg b/icons/circle-letter-z.svg new file mode 100644 index 000000000..34e580553 --- /dev/null +++ b/icons/circle-letter-z.svg @@ -0,0 +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 new file mode 100644 index 000000000..e4e484c09 --- /dev/null +++ b/icons/circle-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-1.svg b/icons/circle-number-1.svg new file mode 100644 index 000000000..f5745e348 --- /dev/null +++ b/icons/circle-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-2.svg b/icons/circle-number-2.svg new file mode 100644 index 000000000..b3e8d0ad3 --- /dev/null +++ b/icons/circle-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-3.svg b/icons/circle-number-3.svg new file mode 100644 index 000000000..a4540f9ee --- /dev/null +++ b/icons/circle-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-4.svg b/icons/circle-number-4.svg new file mode 100644 index 000000000..35306fc4d --- /dev/null +++ b/icons/circle-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-5.svg b/icons/circle-number-5.svg new file mode 100644 index 000000000..9fa60f2da --- /dev/null +++ b/icons/circle-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-6.svg b/icons/circle-number-6.svg new file mode 100644 index 000000000..391d9760c --- /dev/null +++ b/icons/circle-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-7.svg b/icons/circle-number-7.svg new file mode 100644 index 000000000..ec1ae9c3a --- /dev/null +++ b/icons/circle-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-8.svg b/icons/circle-number-8.svg new file mode 100644 index 000000000..9fdf2a3df --- /dev/null +++ b/icons/circle-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/circle-number-9.svg b/icons/circle-number-9.svg new file mode 100644 index 000000000..f60f240f5 --- /dev/null +++ b/icons/circle-number-9.svg @@ -0,0 +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 new file mode 100644 index 000000000..122be4d01 --- /dev/null +++ b/icons/circles-relation.svg @@ -0,0 +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 new file mode 100644 index 000000000..3f8226534 --- /dev/null +++ b/icons/clipboard-data.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clipboard-heart.svg b/icons/clipboard-heart.svg new file mode 100644 index 000000000..13a4bf86b --- /dev/null +++ b/icons/clipboard-heart.svg @@ -0,0 +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 new file mode 100644 index 000000000..9c46ff80c --- /dev/null +++ b/icons/clipboard-typography.svg @@ -0,0 +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 new file mode 100644 index 000000000..ba0566de6 --- /dev/null +++ b/icons/clock-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-edit.svg b/icons/clock-edit.svg new file mode 100644 index 000000000..2294da724 --- /dev/null +++ b/icons/clock-edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-1.svg b/icons/clock-hour-1.svg new file mode 100644 index 000000000..ed4aceec2 --- /dev/null +++ b/icons/clock-hour-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-10.svg b/icons/clock-hour-10.svg new file mode 100644 index 000000000..8cd0429df --- /dev/null +++ b/icons/clock-hour-10.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-11.svg b/icons/clock-hour-11.svg new file mode 100644 index 000000000..6d277752c --- /dev/null +++ b/icons/clock-hour-11.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-12.svg b/icons/clock-hour-12.svg new file mode 100644 index 000000000..0bff5722c --- /dev/null +++ b/icons/clock-hour-12.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-2.svg b/icons/clock-hour-2.svg new file mode 100644 index 000000000..7381903e2 --- /dev/null +++ b/icons/clock-hour-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-3.svg b/icons/clock-hour-3.svg new file mode 100644 index 000000000..a6857a6cb --- /dev/null +++ b/icons/clock-hour-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-4.svg b/icons/clock-hour-4.svg new file mode 100644 index 000000000..fc1653886 --- /dev/null +++ b/icons/clock-hour-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-5.svg b/icons/clock-hour-5.svg new file mode 100644 index 000000000..d29d9d450 --- /dev/null +++ b/icons/clock-hour-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-6.svg b/icons/clock-hour-6.svg new file mode 100644 index 000000000..fb72377a0 --- /dev/null +++ b/icons/clock-hour-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-7.svg b/icons/clock-hour-7.svg new file mode 100644 index 000000000..95c3526e0 --- /dev/null +++ b/icons/clock-hour-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-8.svg b/icons/clock-hour-8.svg new file mode 100644 index 000000000..a2bb42ddd --- /dev/null +++ b/icons/clock-hour-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-hour-9.svg b/icons/clock-hour-9.svg new file mode 100644 index 000000000..6a58fbe2f --- /dev/null +++ b/icons/clock-hour-9.svg @@ -0,0 +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 new file mode 100644 index 000000000..599f881c7 --- /dev/null +++ b/icons/clock-pause.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-play.svg b/icons/clock-play.svg new file mode 100644 index 000000000..86d793272 --- /dev/null +++ b/icons/clock-play.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-record.svg b/icons/clock-record.svg new file mode 100644 index 000000000..c2eeaf613 --- /dev/null +++ b/icons/clock-record.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/clock-stop.svg b/icons/clock-stop.svg new file mode 100644 index 000000000..143baab04 --- /dev/null +++ b/icons/clock-stop.svg @@ -0,0 +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 new file mode 100644 index 000000000..409f8e2a5 --- /dev/null +++ b/icons/clothes-rack-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..98e5c3164 --- /dev/null +++ b/icons/code-asterix.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/code-circle-2.svg b/icons/code-circle-2.svg new file mode 100644 index 000000000..c7100112e --- /dev/null +++ b/icons/code-circle-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/code-circle.svg b/icons/code-circle.svg new file mode 100644 index 000000000..9dfe9219d --- /dev/null +++ b/icons/code-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/code-dots.svg b/icons/code-dots.svg new file mode 100644 index 000000000..d937fd402 --- /dev/null +++ b/icons/code-dots.svg @@ -0,0 +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 new file mode 100644 index 000000000..a35d9036a --- /dev/null +++ b/icons/coffin.svg @@ -0,0 +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 new file mode 100644 index 000000000..73c9e48d9 --- /dev/null +++ b/icons/coin-monero.svg @@ -0,0 +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 new file mode 100644 index 000000000..a8c36a821 --- /dev/null +++ b/icons/coins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/color-filter.svg b/icons/color-filter.svg new file mode 100644 index 000000000..45d1a1447 --- /dev/null +++ b/icons/color-filter.svg @@ -0,0 +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 new file mode 100644 index 000000000..d2260933d --- /dev/null +++ b/icons/command-off.svg @@ -0,0 +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 d57ec3c82..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 new file mode 100644 index 000000000..3a55927fd --- /dev/null +++ b/icons/cone-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cone.svg b/icons/cone.svg index 05370b62d..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 new file mode 100644 index 000000000..c13e41dde --- /dev/null +++ b/icons/confetti-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..774d323ef --- /dev/null +++ b/icons/confucius.svg @@ -0,0 +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 new file mode 100644 index 000000000..630510180 --- /dev/null +++ b/icons/contrast-2-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..dda47fcc1 --- /dev/null +++ b/icons/contrast-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..70c01eb50 --- /dev/null +++ b/icons/cooker.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cookie-man.svg b/icons/cookie-man.svg new file mode 100644 index 000000000..d074c5093 --- /dev/null +++ b/icons/cookie-man.svg @@ -0,0 +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 d1643e124..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 new file mode 100644 index 000000000..dd94bbb2e --- /dev/null +++ b/icons/crystal-ball.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cube-send.svg b/icons/cube-send.svg new file mode 100644 index 000000000..93e00396c --- /dev/null +++ b/icons/cube-send.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/cube-unfolded.svg b/icons/cube-unfolded.svg new file mode 100644 index 000000000..dd984ca4a --- /dev/null +++ b/icons/cube-unfolded.svg @@ -0,0 +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 new file mode 100644 index 000000000..0968b15cd --- /dev/null +++ b/icons/currency-afghani.svg @@ -0,0 +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 new file mode 100644 index 000000000..9b03461bf --- /dev/null +++ b/icons/currency-dollar-brunei.svg @@ -0,0 +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 new file mode 100644 index 000000000..c0bc1c14f --- /dev/null +++ b/icons/currency-dollar-guyanese.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-dollar-off.svg b/icons/currency-dollar-off.svg new file mode 100644 index 000000000..fda979401 --- /dev/null +++ b/icons/currency-dollar-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b04621ae7 --- /dev/null +++ b/icons/currency-dollar-zimbabwean.svg @@ -0,0 +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 new file mode 100644 index 000000000..905531c12 --- /dev/null +++ b/icons/currency-dong.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-dram.svg b/icons/currency-dram.svg new file mode 100644 index 000000000..3a44e52eb --- /dev/null +++ b/icons/currency-dram.svg @@ -0,0 +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 new file mode 100644 index 000000000..662dbab37 --- /dev/null +++ b/icons/currency-euro-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b9f4fe7ac --- /dev/null +++ b/icons/currency-guarani.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-hryvnia.svg b/icons/currency-hryvnia.svg new file mode 100644 index 000000000..e39cfae11 --- /dev/null +++ b/icons/currency-hryvnia.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-kip.svg b/icons/currency-kip.svg new file mode 100644 index 000000000..0b2f1a33a --- /dev/null +++ b/icons/currency-kip.svg @@ -0,0 +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 new file mode 100644 index 000000000..b1e7b7602 --- /dev/null +++ b/icons/currency-lari.svg @@ -0,0 +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 new file mode 100644 index 000000000..dd0541d3e --- /dev/null +++ b/icons/currency-lyd.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-manat.svg b/icons/currency-manat.svg new file mode 100644 index 000000000..ea5ca24d4 --- /dev/null +++ b/icons/currency-manat.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-monero.svg b/icons/currency-monero.svg new file mode 100644 index 000000000..da57d8209 --- /dev/null +++ b/icons/currency-monero.svg @@ -0,0 +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 new file mode 100644 index 000000000..8715e6996 --- /dev/null +++ b/icons/currency-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-paanga.svg b/icons/currency-paanga.svg new file mode 100644 index 000000000..e4c972bd9 --- /dev/null +++ b/icons/currency-paanga.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-peso.svg b/icons/currency-peso.svg new file mode 100644 index 000000000..1e8ddc652 --- /dev/null +++ b/icons/currency-peso.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-pound-off.svg b/icons/currency-pound-off.svg new file mode 100644 index 000000000..04a261616 --- /dev/null +++ b/icons/currency-pound-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-quetzal.svg b/icons/currency-quetzal.svg new file mode 100644 index 000000000..7c9b45278 --- /dev/null +++ b/icons/currency-quetzal.svg @@ -0,0 +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 new file mode 100644 index 000000000..9395d758b --- /dev/null +++ b/icons/currency-rufiyaa.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-rupee-nepalese.svg b/icons/currency-rupee-nepalese.svg new file mode 100644 index 000000000..2bbb4e3aa --- /dev/null +++ b/icons/currency-rupee-nepalese.svg @@ -0,0 +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 new file mode 100644 index 000000000..52776843d --- /dev/null +++ b/icons/currency-solana.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/currency-som.svg b/icons/currency-som.svg new file mode 100644 index 000000000..8e5f9c469 --- /dev/null +++ b/icons/currency-som.svg @@ -0,0 +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 new file mode 100644 index 000000000..9aaddfc9a --- /dev/null +++ b/icons/currency-tenge.svg @@ -0,0 +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 new file mode 100644 index 000000000..9935a899f --- /dev/null +++ b/icons/currency-yen-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..695df42b5 --- /dev/null +++ b/icons/cylinder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/dashboard-off.svg b/icons/dashboard-off.svg new file mode 100644 index 000000000..858e0ff93 --- /dev/null +++ b/icons/dashboard-off.svg @@ -0,0 +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 c7f302d1c..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 d9e455def..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 bcd13818f..124b3cecf 100644 --- a/icons/database.svg +++ b/icons/database.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/deer.svg b/icons/deer.svg new file mode 100644 index 000000000..95bf9c0c2 --- /dev/null +++ b/icons/deer.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/delta.svg b/icons/delta.svg new file mode 100644 index 000000000..2c10373b2 --- /dev/null +++ b/icons/delta.svg @@ -0,0 +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 new file mode 100644 index 000000000..43f6c5c95 --- /dev/null +++ b/icons/details-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..30073c519 --- /dev/null +++ b/icons/device-airpods-case.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-airpods.svg b/icons/device-airpods.svg new file mode 100644 index 000000000..a0a0a2295 --- /dev/null +++ b/icons/device-airpods.svg @@ -0,0 +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 new file mode 100644 index 000000000..664d726cc --- /dev/null +++ b/icons/device-cctv-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..cca152bf5 --- /dev/null +++ b/icons/device-ipad-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-ipad.svg b/icons/device-ipad.svg new file mode 100644 index 000000000..89e099d9a --- /dev/null +++ b/icons/device-ipad.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-landline-phone.svg b/icons/device-landline-phone.svg new file mode 100644 index 000000000..d30d749ab --- /dev/null +++ b/icons/device-landline-phone.svg @@ -0,0 +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 new file mode 100644 index 000000000..d2c79ece2 --- /dev/null +++ b/icons/device-sd-card.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-sim-1.svg b/icons/device-sim-1.svg new file mode 100644 index 000000000..4ec260a91 --- /dev/null +++ b/icons/device-sim-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-sim-2.svg b/icons/device-sim-2.svg new file mode 100644 index 000000000..9e4354d85 --- /dev/null +++ b/icons/device-sim-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-sim-3.svg b/icons/device-sim-3.svg new file mode 100644 index 000000000..1644fa7c8 --- /dev/null +++ b/icons/device-sim-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/device-sim.svg b/icons/device-sim.svg new file mode 100644 index 000000000..f551937c7 --- /dev/null +++ b/icons/device-sim.svg @@ -0,0 +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 new file mode 100644 index 000000000..62d41c143 --- /dev/null +++ b/icons/direction-sign-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..a368552c7 --- /dev/null +++ b/icons/disc-golf.svg @@ -0,0 +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 new file mode 100644 index 000000000..80f78383b --- /dev/null +++ b/icons/discount-2-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..c39cabcce --- /dev/null +++ b/icons/discount-off.svg @@ -0,0 +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 7cf299c8c..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 fb73b9dae..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 new file mode 100644 index 000000000..852949fd7 --- /dev/null +++ b/icons/dog.svg @@ -0,0 +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 new file mode 100644 index 000000000..c878bcf3d --- /dev/null +++ b/icons/e-passport.svg @@ -0,0 +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 new file mode 100644 index 000000000..4c0582e9a --- /dev/null +++ b/icons/ease-in-control-point.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ease-in-out-control-points.svg b/icons/ease-in-out-control-points.svg new file mode 100644 index 000000000..04eaa3176 --- /dev/null +++ b/icons/ease-in-out-control-points.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ease-in-out.svg b/icons/ease-in-out.svg new file mode 100644 index 000000000..6a98dd8e0 --- /dev/null +++ b/icons/ease-in-out.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ease-in.svg b/icons/ease-in.svg new file mode 100644 index 000000000..0706343b3 --- /dev/null +++ b/icons/ease-in.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ease-out-control-point.svg b/icons/ease-out-control-point.svg new file mode 100644 index 000000000..3a6727a53 --- /dev/null +++ b/icons/ease-out-control-point.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ease-out.svg b/icons/ease-out.svg new file mode 100644 index 000000000..b27181b8b --- /dev/null +++ b/icons/ease-out.svg @@ -0,0 +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 8eacf2ef5..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 new file mode 100644 index 000000000..6cb7e2fde --- /dev/null +++ b/icons/egg-fried.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/egg-off.svg b/icons/egg-off.svg index db413369f..00ba768ec 100644 --- a/icons/egg-off.svg +++ b/icons/egg-off.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/egg.svg b/icons/egg.svg index 2285f4a2f..72658dbbf 100644 --- a/icons/egg.svg +++ b/icons/egg.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/eggs.svg b/icons/eggs.svg new file mode 100644 index 000000000..049040f4d --- /dev/null +++ b/icons/eggs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/elevator-off.svg b/icons/elevator-off.svg new file mode 100644 index 000000000..3cda4ba35 --- /dev/null +++ b/icons/elevator-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..334b8ca45 --- /dev/null +++ b/icons/empathize-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..2e5723e83 --- /dev/null +++ b/icons/equal-double.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/equal-not.svg b/icons/equal-not.svg index 20e232f66..ad699983c 100644 --- a/icons/equal-not.svg +++ b/icons/equal-not.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/equal.svg b/icons/equal.svg index 92219f2ad..6136a9fc4 100644 --- a/icons/equal.svg +++ b/icons/equal.svg @@ -1,6 +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 new file mode 100644 index 000000000..8ae928e54 --- /dev/null +++ b/icons/exclamation-circle.svg @@ -0,0 +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 new file mode 100644 index 000000000..591110f0c --- /dev/null +++ b/icons/explicit-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..160c49e97 --- /dev/null +++ b/icons/exposure-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..999173f94 --- /dev/null +++ b/icons/file-broken.svg @@ -0,0 +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 548b02392..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 new file mode 100644 index 000000000..5beab84dd --- /dev/null +++ b/icons/file-delta.svg @@ -0,0 +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 new file mode 100644 index 000000000..fb1f94af7 --- /dev/null +++ b/icons/file-function.svg @@ -0,0 +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 new file mode 100644 index 000000000..66722b119 --- /dev/null +++ b/icons/file-infinity.svg @@ -0,0 +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 new file mode 100644 index 000000000..00aec2555 --- /dev/null +++ b/icons/file-lambda.svg @@ -0,0 +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 new file mode 100644 index 000000000..d38a1938a --- /dev/null +++ b/icons/file-percent.svg @@ -0,0 +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 new file mode 100644 index 000000000..933b93111 --- /dev/null +++ b/icons/file-stack.svg @@ -0,0 +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 new file mode 100644 index 000000000..a14a53c86 --- /dev/null +++ b/icons/fire-hydrant-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/fire-hydrant.svg b/icons/fire-hydrant.svg new file mode 100644 index 000000000..b3fb05f80 --- /dev/null +++ b/icons/fire-hydrant.svg @@ -0,0 +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 new file mode 100644 index 000000000..96218460b --- /dev/null +++ b/icons/first-aid-kit-off.svg @@ -0,0 +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-christianity.svg b/icons/fish-christianity.svg new file mode 100644 index 000000000..7c0b465c9 --- /dev/null +++ b/icons/fish-christianity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/fish-hook-off.svg b/icons/fish-hook-off.svg new file mode 100644 index 000000000..bb184f512 --- /dev/null +++ b/icons/fish-hook-off.svg @@ -0,0 +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/flare.svg b/icons/flare.svg index 548ea819d..97fb553e8 100644 --- a/icons/flare.svg +++ b/icons/flare.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 new file mode 100644 index 000000000..2caefc3cc --- /dev/null +++ b/icons/flip-flops.svg @@ -0,0 +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 new file mode 100644 index 000000000..8cb079116 --- /dev/null +++ b/icons/fridge-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..5487e413e --- /dev/null +++ b/icons/function-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b9df049e7 --- /dev/null +++ b/icons/garden-cart-off.svg @@ -0,0 +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 2067cdc2b..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 1a274d944..bb1ed1ac7 100644 --- a/icons/gender-genderfluid.svg +++ b/icons/gender-genderfluid.svg @@ -1,16 +1,6 @@ - - - - - - - - - - - + diff --git a/icons/gender-genderless.svg b/icons/gender-genderless.svg index 9effa8b55..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 309f9025c..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 b0a96428d..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 b1891adda..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 840e3123a..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 8c93c6e5f..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 new file mode 100644 index 000000000..e51c45d6f --- /dev/null +++ b/icons/ghost-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ghost-off.svg b/icons/ghost-off.svg new file mode 100644 index 000000000..692552621 --- /dev/null +++ b/icons/ghost-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..5d0b98f89 --- /dev/null +++ b/icons/gift-card.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/gift-off.svg b/icons/gift-off.svg new file mode 100644 index 000000000..1a4fb8ec3 --- /dev/null +++ b/icons/gift-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..2176bd288 --- /dev/null +++ b/icons/git-branch-deleted.svg @@ -0,0 +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 new file mode 100644 index 000000000..e0f06c22b --- /dev/null +++ b/icons/git-cherry-pick.svg @@ -0,0 +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 new file mode 100644 index 000000000..f7eb955be --- /dev/null +++ b/icons/go-game.svg @@ -0,0 +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 new file mode 100644 index 000000000..d767f0398 --- /dev/null +++ b/icons/gradienter.svg @@ -0,0 +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 new file mode 100644 index 000000000..8ddaeeb68 --- /dev/null +++ b/icons/graph-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..6eec73240 --- /dev/null +++ b/icons/grave-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/grave.svg b/icons/grave.svg new file mode 100644 index 000000000..1f296990e --- /dev/null +++ b/icons/grave.svg @@ -0,0 +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 new file mode 100644 index 000000000..09fce2a5a --- /dev/null +++ b/icons/grill-fork.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/grill-off.svg b/icons/grill-off.svg index c99ea9f3f..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 new file mode 100644 index 000000000..cb8ad3e6c --- /dev/null +++ b/icons/grill-spatula.svg @@ -0,0 +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/guitar-pick.svg b/icons/guitar-pick.svg new file mode 100644 index 000000000..c31e8534a --- /dev/null +++ b/icons/guitar-pick.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 d7496955e..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 new file mode 100644 index 000000000..96a7cb74f --- /dev/null +++ b/icons/hand-sanitizer.svg @@ -0,0 +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 new file mode 100644 index 000000000..d904c09b4 --- /dev/null +++ b/icons/headset-off.svg @@ -0,0 +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 d34c3be29..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 new file mode 100644 index 000000000..b78e38a35 --- /dev/null +++ b/icons/hearts-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hearts.svg b/icons/hearts.svg new file mode 100644 index 000000000..5563fd641 --- /dev/null +++ b/icons/hearts.svg @@ -0,0 +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 new file mode 100644 index 000000000..0b19253d9 --- /dev/null +++ b/icons/help-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..4006c9e6e --- /dev/null +++ b/icons/hexagon-3d.svg @@ -0,0 +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 new file mode 100644 index 000000000..9f3f3afd1 --- /dev/null +++ b/icons/hexagon-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-b.svg b/icons/hexagon-letter-b.svg new file mode 100644 index 000000000..d78bc86d0 --- /dev/null +++ b/icons/hexagon-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-c.svg b/icons/hexagon-letter-c.svg new file mode 100644 index 000000000..f70aa86ec --- /dev/null +++ b/icons/hexagon-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-d.svg b/icons/hexagon-letter-d.svg new file mode 100644 index 000000000..8be60f4db --- /dev/null +++ b/icons/hexagon-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-e.svg b/icons/hexagon-letter-e.svg new file mode 100644 index 000000000..8f450e4ae --- /dev/null +++ b/icons/hexagon-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-f.svg b/icons/hexagon-letter-f.svg new file mode 100644 index 000000000..c5e6b1ba9 --- /dev/null +++ b/icons/hexagon-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-g.svg b/icons/hexagon-letter-g.svg new file mode 100644 index 000000000..1489b8f60 --- /dev/null +++ b/icons/hexagon-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-h.svg b/icons/hexagon-letter-h.svg new file mode 100644 index 000000000..159fcc3d7 --- /dev/null +++ b/icons/hexagon-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-i.svg b/icons/hexagon-letter-i.svg new file mode 100644 index 000000000..195404baa --- /dev/null +++ b/icons/hexagon-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-j.svg b/icons/hexagon-letter-j.svg new file mode 100644 index 000000000..f1654ba6e --- /dev/null +++ b/icons/hexagon-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-k.svg b/icons/hexagon-letter-k.svg new file mode 100644 index 000000000..a292c87e5 --- /dev/null +++ b/icons/hexagon-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-l.svg b/icons/hexagon-letter-l.svg new file mode 100644 index 000000000..d9e964b11 --- /dev/null +++ b/icons/hexagon-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-m.svg b/icons/hexagon-letter-m.svg new file mode 100644 index 000000000..aefc63956 --- /dev/null +++ b/icons/hexagon-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-n.svg b/icons/hexagon-letter-n.svg new file mode 100644 index 000000000..2d19e1d1e --- /dev/null +++ b/icons/hexagon-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-o.svg b/icons/hexagon-letter-o.svg new file mode 100644 index 000000000..4e319d1e4 --- /dev/null +++ b/icons/hexagon-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-p.svg b/icons/hexagon-letter-p.svg new file mode 100644 index 000000000..24662bfa8 --- /dev/null +++ b/icons/hexagon-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-q.svg b/icons/hexagon-letter-q.svg new file mode 100644 index 000000000..2326cf8f1 --- /dev/null +++ b/icons/hexagon-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-r.svg b/icons/hexagon-letter-r.svg new file mode 100644 index 000000000..210a4f003 --- /dev/null +++ b/icons/hexagon-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-s.svg b/icons/hexagon-letter-s.svg new file mode 100644 index 000000000..6c841454a --- /dev/null +++ b/icons/hexagon-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-t.svg b/icons/hexagon-letter-t.svg new file mode 100644 index 000000000..6eeb3b497 --- /dev/null +++ b/icons/hexagon-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-u.svg b/icons/hexagon-letter-u.svg new file mode 100644 index 000000000..e0ab4381e --- /dev/null +++ b/icons/hexagon-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-v.svg b/icons/hexagon-letter-v.svg new file mode 100644 index 000000000..e16891388 --- /dev/null +++ b/icons/hexagon-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-w.svg b/icons/hexagon-letter-w.svg new file mode 100644 index 000000000..960b905af --- /dev/null +++ b/icons/hexagon-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-x.svg b/icons/hexagon-letter-x.svg new file mode 100644 index 000000000..da5b7aaef --- /dev/null +++ b/icons/hexagon-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-y.svg b/icons/hexagon-letter-y.svg new file mode 100644 index 000000000..8290d04c0 --- /dev/null +++ b/icons/hexagon-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-letter-z.svg b/icons/hexagon-letter-z.svg new file mode 100644 index 000000000..cfb15055d --- /dev/null +++ b/icons/hexagon-letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-0.svg b/icons/hexagon-number-0.svg new file mode 100644 index 000000000..a6084b637 --- /dev/null +++ b/icons/hexagon-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-1.svg b/icons/hexagon-number-1.svg new file mode 100644 index 000000000..46ba852d6 --- /dev/null +++ b/icons/hexagon-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-2.svg b/icons/hexagon-number-2.svg new file mode 100644 index 000000000..c31484bd5 --- /dev/null +++ b/icons/hexagon-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-3.svg b/icons/hexagon-number-3.svg new file mode 100644 index 000000000..f3b4870e2 --- /dev/null +++ b/icons/hexagon-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-4.svg b/icons/hexagon-number-4.svg new file mode 100644 index 000000000..80d47fd3b --- /dev/null +++ b/icons/hexagon-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-5.svg b/icons/hexagon-number-5.svg new file mode 100644 index 000000000..bac3d3c6e --- /dev/null +++ b/icons/hexagon-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-6.svg b/icons/hexagon-number-6.svg new file mode 100644 index 000000000..58e379458 --- /dev/null +++ b/icons/hexagon-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-7.svg b/icons/hexagon-number-7.svg new file mode 100644 index 000000000..d58b2eb3b --- /dev/null +++ b/icons/hexagon-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-8.svg b/icons/hexagon-number-8.svg new file mode 100644 index 000000000..812f43082 --- /dev/null +++ b/icons/hexagon-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/hexagon-number-9.svg b/icons/hexagon-number-9.svg new file mode 100644 index 000000000..54a3a3ac7 --- /dev/null +++ b/icons/hexagon-number-9.svg @@ -0,0 +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 new file mode 100644 index 000000000..5f21b6538 --- /dev/null +++ b/icons/hexagons-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..815b42bb2 --- /dev/null +++ b/icons/hierarchy-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..79529ce37 --- /dev/null +++ b/icons/history-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..81b493c50 --- /dev/null +++ b/icons/home-bolt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-cancel.svg b/icons/home-cancel.svg new file mode 100644 index 000000000..4a5701aba --- /dev/null +++ b/icons/home-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-check.svg b/icons/home-check.svg new file mode 100644 index 000000000..3b9fb9e3d --- /dev/null +++ b/icons/home-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-cog.svg b/icons/home-cog.svg new file mode 100644 index 000000000..c457e1eeb --- /dev/null +++ b/icons/home-cog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-dollar.svg b/icons/home-dollar.svg new file mode 100644 index 000000000..5d48271d5 --- /dev/null +++ b/icons/home-dollar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-dot.svg b/icons/home-dot.svg new file mode 100644 index 000000000..0a87893b1 --- /dev/null +++ b/icons/home-dot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-down.svg b/icons/home-down.svg new file mode 100644 index 000000000..1abf790a9 --- /dev/null +++ b/icons/home-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-eco.svg b/icons/home-eco.svg new file mode 100644 index 000000000..6f64e5b4d --- /dev/null +++ b/icons/home-eco.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-edit.svg b/icons/home-edit.svg new file mode 100644 index 000000000..ca04810ce --- /dev/null +++ b/icons/home-edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-exclamation.svg b/icons/home-exclamation.svg new file mode 100644 index 000000000..7ed6460a8 --- /dev/null +++ b/icons/home-exclamation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-hand.svg b/icons/home-hand.svg new file mode 100644 index 000000000..551402fd4 --- /dev/null +++ b/icons/home-hand.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-heart.svg b/icons/home-heart.svg new file mode 100644 index 000000000..5d66c3538 --- /dev/null +++ b/icons/home-heart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-infinity.svg b/icons/home-infinity.svg new file mode 100644 index 000000000..45feab47d --- /dev/null +++ b/icons/home-infinity.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-link.svg b/icons/home-link.svg new file mode 100644 index 000000000..0ae4c7076 --- /dev/null +++ b/icons/home-link.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-minus.svg b/icons/home-minus.svg new file mode 100644 index 000000000..cbd0c9ba0 --- /dev/null +++ b/icons/home-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-move.svg b/icons/home-move.svg new file mode 100644 index 000000000..06d08c234 --- /dev/null +++ b/icons/home-move.svg @@ -0,0 +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 new file mode 100644 index 000000000..c21b65ead --- /dev/null +++ b/icons/home-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-question.svg b/icons/home-question.svg new file mode 100644 index 000000000..d4c1500bd --- /dev/null +++ b/icons/home-question.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-ribbon.svg b/icons/home-ribbon.svg new file mode 100644 index 000000000..c922027e3 --- /dev/null +++ b/icons/home-ribbon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-search.svg b/icons/home-search.svg new file mode 100644 index 000000000..2893218ce --- /dev/null +++ b/icons/home-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-share.svg b/icons/home-share.svg new file mode 100644 index 000000000..b8fc9c7bb --- /dev/null +++ b/icons/home-share.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-shield.svg b/icons/home-shield.svg new file mode 100644 index 000000000..4663c021c --- /dev/null +++ b/icons/home-shield.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-signal.svg b/icons/home-signal.svg new file mode 100644 index 000000000..5bf040d08 --- /dev/null +++ b/icons/home-signal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-star.svg b/icons/home-star.svg new file mode 100644 index 000000000..1b055bcef --- /dev/null +++ b/icons/home-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-stats.svg b/icons/home-stats.svg new file mode 100644 index 000000000..d2b7c19c1 --- /dev/null +++ b/icons/home-stats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-up.svg b/icons/home-up.svg new file mode 100644 index 000000000..ebf0dae7a --- /dev/null +++ b/icons/home-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/home-x.svg b/icons/home-x.svg new file mode 100644 index 000000000..79e4e9b52 --- /dev/null +++ b/icons/home-x.svg @@ -0,0 +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 new file mode 100644 index 000000000..a80eedffd --- /dev/null +++ b/icons/icons-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..e729fed42 --- /dev/null +++ b/icons/id-badge-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..191873581 --- /dev/null +++ b/icons/infinity-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..4da3dda09 --- /dev/null +++ b/icons/info-square-rounded.svg @@ -0,0 +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 new file mode 100644 index 000000000..31011228e --- /dev/null +++ b/icons/inner-shadow-bottom-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-bottom-right.svg b/icons/inner-shadow-bottom-right.svg new file mode 100644 index 000000000..e973d9423 --- /dev/null +++ b/icons/inner-shadow-bottom-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-bottom.svg b/icons/inner-shadow-bottom.svg new file mode 100644 index 000000000..74b503efe --- /dev/null +++ b/icons/inner-shadow-bottom.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-left.svg b/icons/inner-shadow-left.svg new file mode 100644 index 000000000..40da91a0b --- /dev/null +++ b/icons/inner-shadow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-right.svg b/icons/inner-shadow-right.svg new file mode 100644 index 000000000..5880e4797 --- /dev/null +++ b/icons/inner-shadow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-top-left.svg b/icons/inner-shadow-top-left.svg new file mode 100644 index 000000000..30402104b --- /dev/null +++ b/icons/inner-shadow-top-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-top-right.svg b/icons/inner-shadow-top-right.svg new file mode 100644 index 000000000..9a75d71bf --- /dev/null +++ b/icons/inner-shadow-top-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/inner-shadow-top.svg b/icons/inner-shadow-top.svg new file mode 100644 index 000000000..277834b47 --- /dev/null +++ b/icons/inner-shadow-top.svg @@ -0,0 +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 new file mode 100644 index 000000000..5d6690c3e --- /dev/null +++ b/icons/ironing-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ironing-2.svg b/icons/ironing-2.svg new file mode 100644 index 000000000..02b0b4de0 --- /dev/null +++ b/icons/ironing-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ironing-3.svg b/icons/ironing-3.svg new file mode 100644 index 000000000..5b4bffd28 --- /dev/null +++ b/icons/ironing-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ironing-off.svg b/icons/ironing-off.svg new file mode 100644 index 000000000..00c7e8f44 --- /dev/null +++ b/icons/ironing-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ironing-steam-off.svg b/icons/ironing-steam-off.svg new file mode 100644 index 000000000..23571b958 --- /dev/null +++ b/icons/ironing-steam-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ironing-steam.svg b/icons/ironing-steam.svg new file mode 100644 index 000000000..874b9e21f --- /dev/null +++ b/icons/ironing-steam.svg @@ -0,0 +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 new file mode 100644 index 000000000..802e6204e --- /dev/null +++ b/icons/jacket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/jetpack.svg b/icons/jetpack.svg new file mode 100644 index 000000000..e7f7cd88d --- /dev/null +++ b/icons/jetpack.svg @@ -0,0 +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 new file mode 100644 index 000000000..272c6fcc0 --- /dev/null +++ b/icons/jpg.svg @@ -0,0 +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 54f407dcc..9b679de4c 100644 --- a/icons/key-off.svg +++ b/icons/key-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/key.svg b/icons/key.svg index 46c270314..7aaa48a65 100644 --- a/icons/key.svg +++ b/icons/key.svg @@ -1,9 +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 new file mode 100644 index 000000000..3de93f61b --- /dev/null +++ b/icons/keyframe-align-center.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/keyframe-align-horizontal.svg b/icons/keyframe-align-horizontal.svg new file mode 100644 index 000000000..0197e84ba --- /dev/null +++ b/icons/keyframe-align-horizontal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/keyframe-align-vertical.svg b/icons/keyframe-align-vertical.svg new file mode 100644 index 000000000..64d8a4d4c --- /dev/null +++ b/icons/keyframe-align-vertical.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/keyframe.svg b/icons/keyframe.svg new file mode 100644 index 000000000..8ae184818 --- /dev/null +++ b/icons/keyframe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/keyframes.svg b/icons/keyframes.svg new file mode 100644 index 000000000..0a19f50af --- /dev/null +++ b/icons/keyframes.svg @@ -0,0 +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 new file mode 100644 index 000000000..908bc7ec7 --- /dev/null +++ b/icons/lambda.svg @@ -0,0 +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 new file mode 100644 index 000000000..1f4e86a7f --- /dev/null +++ b/icons/lasso-polygon.svg @@ -0,0 +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 new file mode 100644 index 000000000..076851aea --- /dev/null +++ b/icons/layout-collage.svg @@ -0,0 +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 315db6d92..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 new file mode 100644 index 000000000..1b7b03832 --- /dev/null +++ b/icons/lego-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..3be527a0a --- /dev/null +++ b/icons/link-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b647c8e2a --- /dev/null +++ b/icons/live-photo-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..e54631406 --- /dev/null +++ b/icons/loader-3.svg @@ -0,0 +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 new file mode 100644 index 000000000..695ef444a --- /dev/null +++ b/icons/lock-access-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..6be9ecda3 --- /dev/null +++ b/icons/lock-square-rounded.svg @@ -0,0 +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 new file mode 100644 index 000000000..a2ba7ccf7 --- /dev/null +++ b/icons/lungs-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..c17dc895d --- /dev/null +++ b/icons/macro-off.svg @@ -0,0 +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 76db32686..4210de39c 100644 --- a/icons/man.svg +++ b/icons/man.svg @@ -1,7 +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 new file mode 100644 index 000000000..acb3a2332 --- /dev/null +++ b/icons/markdown-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..02f4b390e --- /dev/null +++ b/icons/masks-theater-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..502e442c2 --- /dev/null +++ b/icons/matchstick.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-1-divide-2.svg b/icons/math-1-divide-2.svg new file mode 100644 index 000000000..255ca4fa8 --- /dev/null +++ b/icons/math-1-divide-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-1-divide-3.svg b/icons/math-1-divide-3.svg new file mode 100644 index 000000000..5cb904ef1 --- /dev/null +++ b/icons/math-1-divide-3.svg @@ -0,0 +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 new file mode 100644 index 000000000..9d28f0f86 --- /dev/null +++ b/icons/math-equal-greater.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-equal-lower.svg b/icons/math-equal-lower.svg new file mode 100644 index 000000000..e301300a4 --- /dev/null +++ b/icons/math-equal-lower.svg @@ -0,0 +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 new file mode 100644 index 000000000..04184f0d4 --- /dev/null +++ b/icons/math-function-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-function.svg b/icons/math-function.svg index 7692ae057..e1c932c72 100644 --- a/icons/math-function.svg +++ b/icons/math-function.svg @@ -1,9 +1,6 @@ - - - - + diff --git a/icons/math-greater.svg b/icons/math-greater.svg new file mode 100644 index 000000000..3915770ef --- /dev/null +++ b/icons/math-greater.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-integral-x.svg b/icons/math-integral-x.svg new file mode 100644 index 000000000..cfc05f1c1 --- /dev/null +++ b/icons/math-integral-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-integral.svg b/icons/math-integral.svg new file mode 100644 index 000000000..a45d45e4e --- /dev/null +++ b/icons/math-integral.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-integrals.svg b/icons/math-integrals.svg new file mode 100644 index 000000000..dec3da243 --- /dev/null +++ b/icons/math-integrals.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-lower.svg b/icons/math-lower.svg new file mode 100644 index 000000000..553932203 --- /dev/null +++ b/icons/math-lower.svg @@ -0,0 +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 9965b1c9b..cfc186df0 100644 --- a/icons/math-min.svg +++ b/icons/math-min.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/math-not.svg b/icons/math-not.svg new file mode 100644 index 000000000..b2d9c7f30 --- /dev/null +++ b/icons/math-not.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-off.svg b/icons/math-off.svg new file mode 100644 index 000000000..474648ef9 --- /dev/null +++ b/icons/math-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-pi-divide-2.svg b/icons/math-pi-divide-2.svg new file mode 100644 index 000000000..cd02cf4c1 --- /dev/null +++ b/icons/math-pi-divide-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-pi.svg b/icons/math-pi.svg new file mode 100644 index 000000000..02dcd63c3 --- /dev/null +++ b/icons/math-pi.svg @@ -0,0 +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 new file mode 100644 index 000000000..dc5017acf --- /dev/null +++ b/icons/math-x-divide-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-x-divide-y-2.svg b/icons/math-x-divide-y-2.svg new file mode 100644 index 000000000..6636d4e64 --- /dev/null +++ b/icons/math-x-divide-y-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-x-divide-y.svg b/icons/math-x-divide-y.svg new file mode 100644 index 000000000..0de2b62f6 --- /dev/null +++ b/icons/math-x-divide-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-x-minus-x.svg b/icons/math-x-minus-x.svg new file mode 100644 index 000000000..301ba8b27 --- /dev/null +++ b/icons/math-x-minus-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-x-minus-y.svg b/icons/math-x-minus-y.svg new file mode 100644 index 000000000..56b6aeacc --- /dev/null +++ b/icons/math-x-minus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-x-plus-x.svg b/icons/math-x-plus-x.svg new file mode 100644 index 000000000..fbd3445dc --- /dev/null +++ b/icons/math-x-plus-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-x-plus-y.svg b/icons/math-x-plus-y.svg new file mode 100644 index 000000000..0de3d0dc7 --- /dev/null +++ b/icons/math-x-plus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-xy.svg b/icons/math-xy.svg new file mode 100644 index 000000000..e81ef7f4a --- /dev/null +++ b/icons/math-xy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-y-minus-y.svg b/icons/math-y-minus-y.svg new file mode 100644 index 000000000..c0cab50e0 --- /dev/null +++ b/icons/math-y-minus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math-y-plus-y.svg b/icons/math-y-plus-y.svg new file mode 100644 index 000000000..0bf1a5259 --- /dev/null +++ b/icons/math-y-plus-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/math.svg b/icons/math.svg index 5ae13d6f6..77a43d613 100644 --- a/icons/math.svg +++ b/icons/math.svg @@ -1,7 +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 new file mode 100644 index 000000000..fa08a2095 --- /dev/null +++ b/icons/meat-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/meat.svg b/icons/meat.svg index 8e05f5ab1..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/meeple.svg b/icons/meeple.svg new file mode 100644 index 000000000..9ef1a35ed --- /dev/null +++ b/icons/meeple.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/menorah.svg b/icons/menorah.svg new file mode 100644 index 000000000..caba61894 --- /dev/null +++ b/icons/menorah.svg @@ -0,0 +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 new file mode 100644 index 000000000..e2bed8923 --- /dev/null +++ b/icons/menu-order.svg @@ -0,0 +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 new file mode 100644 index 000000000..de5910805 --- /dev/null +++ b/icons/message-2-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..7f55ee546 --- /dev/null +++ b/icons/message-chatbot.svg @@ -0,0 +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 new file mode 100644 index 000000000..b60cd17ed --- /dev/null +++ b/icons/meteor-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..5c728aa32 --- /dev/null +++ b/icons/microphone-2-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..c30f1bb78 --- /dev/null +++ b/icons/microscope-off.svg @@ -0,0 +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 0763925f3..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 new file mode 100644 index 000000000..26735fe81 --- /dev/null +++ b/icons/milk-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..6400e3615 --- /dev/null +++ b/icons/milkshake.svg @@ -0,0 +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 new file mode 100644 index 000000000..925590c01 --- /dev/null +++ b/icons/mist-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..f83aac50d --- /dev/null +++ b/icons/moneybag.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-angry.svg b/icons/mood-angry.svg new file mode 100644 index 000000000..e376ab67a --- /dev/null +++ b/icons/mood-angry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-annoyed-2.svg b/icons/mood-annoyed-2.svg new file mode 100644 index 000000000..5d9b8490b --- /dev/null +++ b/icons/mood-annoyed-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-annoyed.svg b/icons/mood-annoyed.svg new file mode 100644 index 000000000..930c2b47e --- /dev/null +++ b/icons/mood-annoyed.svg @@ -0,0 +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 3688af361..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 new file mode 100644 index 000000000..c3ce86442 --- /dev/null +++ b/icons/mood-nerd.svg @@ -0,0 +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 new file mode 100644 index 000000000..0aaa49c60 --- /dev/null +++ b/icons/mood-sad-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-sad-dizzy.svg b/icons/mood-sad-dizzy.svg new file mode 100644 index 000000000..af30706be --- /dev/null +++ b/icons/mood-sad-dizzy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-sad-squint.svg b/icons/mood-sad-squint.svg new file mode 100644 index 000000000..5e25a73fc --- /dev/null +++ b/icons/mood-sad-squint.svg @@ -0,0 +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 new file mode 100644 index 000000000..e49de7ef3 --- /dev/null +++ b/icons/mood-sick.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-silence.svg b/icons/mood-silence.svg new file mode 100644 index 000000000..7beda5ae5 --- /dev/null +++ b/icons/mood-silence.svg @@ -0,0 +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 new file mode 100644 index 000000000..4a25b24c7 --- /dev/null +++ b/icons/mood-smile-beam.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-smile-dizzy.svg b/icons/mood-smile-dizzy.svg new file mode 100644 index 000000000..8810837f2 --- /dev/null +++ b/icons/mood-smile-dizzy.svg @@ -0,0 +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 new file mode 100644 index 000000000..039ba6bf7 --- /dev/null +++ b/icons/mood-tongue-wink-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-tongue-wink.svg b/icons/mood-tongue-wink.svg new file mode 100644 index 000000000..0d7701c2c --- /dev/null +++ b/icons/mood-tongue-wink.svg @@ -0,0 +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 new file mode 100644 index 000000000..0ba688ba5 --- /dev/null +++ b/icons/mood-unamused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-wink-2.svg b/icons/mood-wink-2.svg new file mode 100644 index 000000000..6421e55c6 --- /dev/null +++ b/icons/mood-wink-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-wink.svg b/icons/mood-wink.svg new file mode 100644 index 000000000..03625d2cd --- /dev/null +++ b/icons/mood-wink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-wrrr.svg b/icons/mood-wrrr.svg new file mode 100644 index 000000000..298a3a575 --- /dev/null +++ b/icons/mood-wrrr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mood-xd.svg b/icons/mood-xd.svg new file mode 100644 index 000000000..b1730075d --- /dev/null +++ b/icons/mood-xd.svg @@ -0,0 +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 new file mode 100644 index 000000000..b19a59759 --- /dev/null +++ b/icons/mountain-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..fb150273b --- /dev/null +++ b/icons/moustache.svg @@ -0,0 +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 new file mode 100644 index 000000000..2ec3ba303 --- /dev/null +++ b/icons/mushroom-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..d2cd4939b --- /dev/null +++ b/icons/navigation-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/needle-thread.svg b/icons/needle-thread.svg new file mode 100644 index 000000000..8ba912daf --- /dev/null +++ b/icons/needle-thread.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/needle.svg b/icons/needle.svg new file mode 100644 index 000000000..5558793db --- /dev/null +++ b/icons/needle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/network-off.svg b/icons/network-off.svg new file mode 100644 index 000000000..b23e9cd12 --- /dev/null +++ b/icons/network-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..a8fd62ad3 --- /dev/null +++ b/icons/notebook-off.svg @@ -0,0 +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 ec8cbbd17..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 new file mode 100644 index 000000000..168918737 --- /dev/null +++ b/icons/olympics-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..9fae2f1c0 --- /dev/null +++ b/icons/om.svg @@ -0,0 +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-vertical.svg b/icons/oval-vertical.svg index 4b28ff207..1c59fa1df 100644 --- a/icons/oval-vertical.svg +++ b/icons/oval-vertical.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/oval.svg b/icons/oval.svg index 518f28b6a..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 9022ba93f..8ecb5b4f3 100644 --- a/icons/packages.svg +++ b/icons/packages.svg @@ -1,11 +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 185c32cc9..24ae904cd 100644 --- a/icons/palette-off.svg +++ b/icons/palette-off.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/palette.svg b/icons/palette.svg index 167a6e80a..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 new file mode 100644 index 000000000..024757450 --- /dev/null +++ b/icons/panorama-horizontal-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..f63f2b12c --- /dev/null +++ b/icons/panorama-vertical-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..e28cdd077 --- /dev/null +++ b/icons/password.svg @@ -0,0 +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 new file mode 100644 index 000000000..9f10c6b2b --- /dev/null +++ b/icons/paw-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..6440fee55 --- /dev/null +++ b/icons/pentagon-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..3608abb60 --- /dev/null +++ b/icons/pentagram.svg @@ -0,0 +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 new file mode 100644 index 000000000..25f23cb03 --- /dev/null +++ b/icons/perfume.svg @@ -0,0 +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 new file mode 100644 index 000000000..72cea050f --- /dev/null +++ b/icons/photo-cancel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-check.svg b/icons/photo-check.svg new file mode 100644 index 000000000..6ec415e07 --- /dev/null +++ b/icons/photo-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-down.svg b/icons/photo-down.svg new file mode 100644 index 000000000..c3d3e7ca3 --- /dev/null +++ b/icons/photo-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-edit.svg b/icons/photo-edit.svg new file mode 100644 index 000000000..671faf159 --- /dev/null +++ b/icons/photo-edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-heart.svg b/icons/photo-heart.svg new file mode 100644 index 000000000..b05ef0e4a --- /dev/null +++ b/icons/photo-heart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-minus.svg b/icons/photo-minus.svg new file mode 100644 index 000000000..76d96b84a --- /dev/null +++ b/icons/photo-minus.svg @@ -0,0 +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 new file mode 100644 index 000000000..3dde471e6 --- /dev/null +++ b/icons/photo-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-search.svg b/icons/photo-search.svg new file mode 100644 index 000000000..a7fd13234 --- /dev/null +++ b/icons/photo-search.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-shield.svg b/icons/photo-shield.svg new file mode 100644 index 000000000..95dd5737e --- /dev/null +++ b/icons/photo-shield.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-star.svg b/icons/photo-star.svg new file mode 100644 index 000000000..558453e4e --- /dev/null +++ b/icons/photo-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-up.svg b/icons/photo-up.svg new file mode 100644 index 000000000..7bfd55711 --- /dev/null +++ b/icons/photo-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/photo-x.svg b/icons/photo-x.svg new file mode 100644 index 000000000..450ed6442 --- /dev/null +++ b/icons/photo-x.svg @@ -0,0 +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 e5fa9538c..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 new file mode 100644 index 000000000..5fb36a8f8 --- /dev/null +++ b/icons/pig-money.svg @@ -0,0 +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 new file mode 100644 index 000000000..7433df8e7 --- /dev/null +++ b/icons/pilcrow.svg @@ -0,0 +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 new file mode 100644 index 000000000..d85883dff --- /dev/null +++ b/icons/ping-pong.svg @@ -0,0 +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 new file mode 100644 index 000000000..e1956133f --- /dev/null +++ b/icons/placeholder.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/plane-arrival.svg b/icons/plane-arrival.svg index 5b4fba99a..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 d2785a97c..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 c8a53e6ea..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 new file mode 100644 index 000000000..5b95a7eca --- /dev/null +++ b/icons/png.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/podium-off.svg b/icons/podium-off.svg new file mode 100644 index 000000000..fa004ce9a --- /dev/null +++ b/icons/podium-off.svg @@ -0,0 +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/pointer.svg b/icons/pointer.svg index 2d926097d..d3f86f679 100644 --- a/icons/pointer.svg +++ b/icons/pointer.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/pokeball-off.svg b/icons/pokeball-off.svg new file mode 100644 index 000000000..736bb082b --- /dev/null +++ b/icons/pokeball-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/pokeball.svg b/icons/pokeball.svg index 497f8b83d..51a59bc24 100644 --- a/icons/pokeball.svg +++ b/icons/pokeball.svg @@ -1,8 +1,6 @@ - - - + diff --git a/icons/poker-chip.svg b/icons/poker-chip.svg new file mode 100644 index 000000000..c12af27a0 --- /dev/null +++ b/icons/poker-chip.svg @@ -0,0 +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 new file mode 100644 index 000000000..6614fcb41 --- /dev/null +++ b/icons/pool-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..1e54372ca --- /dev/null +++ b/icons/pumpkin-scary.svg @@ -0,0 +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 new file mode 100644 index 000000000..33d4a8bfb --- /dev/null +++ b/icons/qrcode-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..86e8f9269 --- /dev/null +++ b/icons/question-circle.svg @@ -0,0 +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 new file mode 100644 index 000000000..f2470d7aa --- /dev/null +++ b/icons/radar-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..22482022e --- /dev/null +++ b/icons/radio-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..0c5947ace --- /dev/null +++ b/icons/razor-electric.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/razor.svg b/icons/razor.svg new file mode 100644 index 000000000..31b57b53f --- /dev/null +++ b/icons/razor.svg @@ -0,0 +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 7b44b6635..7b701acf4 100644 --- a/icons/recycle.svg +++ b/icons/recycle.svg @@ -1,8 +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 new file mode 100644 index 000000000..e9190ad6e --- /dev/null +++ b/icons/regex-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/regex.svg b/icons/regex.svg new file mode 100644 index 000000000..9463134d4 --- /dev/null +++ b/icons/regex.svg @@ -0,0 +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 new file mode 100644 index 000000000..7e21e6385 --- /dev/null +++ b/icons/reload.svg @@ -0,0 +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 new file mode 100644 index 000000000..330062060 --- /dev/null +++ b/icons/replace-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..8558cbe13 --- /dev/null +++ b/icons/ribbon-health.svg @@ -0,0 +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 new file mode 100644 index 000000000..44e758baa --- /dev/null +++ b/icons/rollercoaster-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..d5ee42856 --- /dev/null +++ b/icons/rosette-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-1.svg b/icons/rosette-number-1.svg new file mode 100644 index 000000000..1a3928047 --- /dev/null +++ b/icons/rosette-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-2.svg b/icons/rosette-number-2.svg new file mode 100644 index 000000000..797d3258e --- /dev/null +++ b/icons/rosette-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-3.svg b/icons/rosette-number-3.svg new file mode 100644 index 000000000..71742e0de --- /dev/null +++ b/icons/rosette-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-4.svg b/icons/rosette-number-4.svg new file mode 100644 index 000000000..554934608 --- /dev/null +++ b/icons/rosette-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-5.svg b/icons/rosette-number-5.svg new file mode 100644 index 000000000..7d5499cc2 --- /dev/null +++ b/icons/rosette-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-6.svg b/icons/rosette-number-6.svg new file mode 100644 index 000000000..277f1d85d --- /dev/null +++ b/icons/rosette-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-7.svg b/icons/rosette-number-7.svg new file mode 100644 index 000000000..a614545fc --- /dev/null +++ b/icons/rosette-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-8.svg b/icons/rosette-number-8.svg new file mode 100644 index 000000000..105db064d --- /dev/null +++ b/icons/rosette-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette-number-9.svg b/icons/rosette-number-9.svg new file mode 100644 index 000000000..6f331ff11 --- /dev/null +++ b/icons/rosette-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rosette.svg b/icons/rosette.svg new file mode 100644 index 000000000..61d1e62d3 --- /dev/null +++ b/icons/rosette.svg @@ -0,0 +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 559d07f03..b71c28a10 100644 --- a/icons/rotate-rectangle.svg +++ b/icons/rotate-rectangle.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/route-2.svg b/icons/route-2.svg new file mode 100644 index 000000000..350f2249e --- /dev/null +++ b/icons/route-2.svg @@ -0,0 +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 new file mode 100644 index 000000000..a65c0220d --- /dev/null +++ b/icons/router-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..bceb82e8c --- /dev/null +++ b/icons/rubber-stamp-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/rubber-stamp.svg b/icons/rubber-stamp.svg new file mode 100644 index 000000000..15ff40c38 --- /dev/null +++ b/icons/rubber-stamp.svg @@ -0,0 +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 new file mode 100644 index 000000000..ba06064ad --- /dev/null +++ b/icons/s-turn-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/s-turn-left.svg b/icons/s-turn-left.svg new file mode 100644 index 000000000..26e79c8ca --- /dev/null +++ b/icons/s-turn-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/s-turn-right.svg b/icons/s-turn-right.svg new file mode 100644 index 000000000..44ad0dad1 --- /dev/null +++ b/icons/s-turn-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/s-turn-up.svg b/icons/s-turn-up.svg new file mode 100644 index 000000000..b5226dc9d --- /dev/null +++ b/icons/s-turn-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/sailboat-2.svg b/icons/sailboat-2.svg new file mode 100644 index 000000000..c32c6eef3 --- /dev/null +++ b/icons/sailboat-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/sailboat-off.svg b/icons/sailboat-off.svg new file mode 100644 index 000000000..12a974595 --- /dev/null +++ b/icons/sailboat-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..3f6e561b7 --- /dev/null +++ b/icons/salad.svg @@ -0,0 +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 new file mode 100644 index 000000000..26a731d7e --- /dev/null +++ b/icons/schema-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..4448261e7 --- /dev/null +++ b/icons/school-bell.svg @@ -0,0 +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 new file mode 100644 index 000000000..2a010ceec --- /dev/null +++ b/icons/scribble-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..d4b09c10f --- /dev/null +++ b/icons/scuba-mask-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..adabe1ca1 --- /dev/null +++ b/icons/sdk.svg @@ -0,0 +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 new file mode 100644 index 000000000..107af1d7f --- /dev/null +++ b/icons/send-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..6af072695 --- /dev/null +++ b/icons/server-bolt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/server-cog.svg b/icons/server-cog.svg new file mode 100644 index 000000000..1f50a3d6a --- /dev/null +++ b/icons/server-cog.svg @@ -0,0 +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 new file mode 100644 index 000000000..0fe32d5fa --- /dev/null +++ b/icons/settings-2.svg @@ -0,0 +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 new file mode 100644 index 000000000..582c5645c --- /dev/null +++ b/icons/shield-half-filled.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/shield-half.svg b/icons/shield-half.svg new file mode 100644 index 000000000..f94b2b90f --- /dev/null +++ b/icons/shield-half.svg @@ -0,0 +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 new file mode 100644 index 000000000..cb1295652 --- /dev/null +++ b/icons/ship-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..bb57f6b59 --- /dev/null +++ b/icons/shopping-bag.svg @@ -0,0 +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 new file mode 100644 index 000000000..3d00cffaf --- /dev/null +++ b/icons/skateboard-off.svg @@ -0,0 +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/slash.svg b/icons/slash.svg new file mode 100644 index 000000000..bef76a3c3 --- /dev/null +++ b/icons/slash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/slashes.svg b/icons/slashes.svg new file mode 100644 index 000000000..9dde373ec --- /dev/null +++ b/icons/slashes.svg @@ -0,0 +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 c508e9502..f70a6b07c 100644 --- a/icons/snowflake.svg +++ b/icons/snowflake.svg @@ -1,11 +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 new file mode 100644 index 000000000..8602ee066 --- /dev/null +++ b/icons/sofa-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..36b21c86a --- /dev/null +++ b/icons/sort-0-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/sort-9-0.svg b/icons/sort-9-0.svg new file mode 100644 index 000000000..a5e6e8f8a --- /dev/null +++ b/icons/sort-9-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/sort-a-z.svg b/icons/sort-a-z.svg new file mode 100644 index 000000000..477263d32 --- /dev/null +++ b/icons/sort-a-z.svg @@ -0,0 +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 new file mode 100644 index 000000000..30c6f0c98 --- /dev/null +++ b/icons/sort-z-a.svg @@ -0,0 +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 new file mode 100644 index 000000000..ec03bd0c4 --- /dev/null +++ b/icons/soup-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/soup.svg b/icons/soup.svg index 854364f80..970032b60 100644 --- a/icons/soup.svg +++ b/icons/soup.svg @@ -1,10 +1,6 @@ - - - - - + diff --git a/icons/source-code.svg b/icons/source-code.svg new file mode 100644 index 000000000..97002f226 --- /dev/null +++ b/icons/source-code.svg @@ -0,0 +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 new file mode 100644 index 000000000..30d2536cc --- /dev/null +++ b/icons/spiral-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..8a44be52a --- /dev/null +++ b/icons/spray.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/spy-off.svg b/icons/spy-off.svg new file mode 100644 index 000000000..a52826548 --- /dev/null +++ b/icons/spy-off.svg @@ -0,0 +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-0.svg b/icons/square-0.svg deleted file mode 100644 index 8dea7a873..000000000 --- a/icons/square-0.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/square-1.svg b/icons/square-1.svg deleted file mode 100644 index 210b3ad84..000000000 --- a/icons/square-1.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/square-2.svg b/icons/square-2.svg deleted file mode 100644 index e91beeeb5..000000000 --- a/icons/square-2.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/square-3.svg b/icons/square-3.svg deleted file mode 100644 index 6050f9ce2..000000000 --- a/icons/square-3.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/square-4.svg b/icons/square-4.svg deleted file mode 100644 index 81aaf5379..000000000 --- a/icons/square-4.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/square-5.svg b/icons/square-5.svg deleted file mode 100644 index 70073b6f7..000000000 --- a/icons/square-5.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/square-6.svg b/icons/square-6.svg deleted file mode 100644 index cae013755..000000000 --- a/icons/square-6.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/square-7.svg b/icons/square-7.svg deleted file mode 100644 index a20515d26..000000000 --- a/icons/square-7.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/square-8.svg b/icons/square-8.svg deleted file mode 100644 index 8ee96b513..000000000 --- a/icons/square-8.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/square-9.svg b/icons/square-9.svg deleted file mode 100644 index 913ac82cf..000000000 --- a/icons/square-9.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/square-arrow-down.svg b/icons/square-arrow-down.svg new file mode 100644 index 000000000..345a0393a --- /dev/null +++ b/icons/square-arrow-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-arrow-left.svg b/icons/square-arrow-left.svg new file mode 100644 index 000000000..3f1f771ff --- /dev/null +++ b/icons/square-arrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-arrow-right.svg b/icons/square-arrow-right.svg new file mode 100644 index 000000000..03a7ee446 --- /dev/null +++ b/icons/square-arrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-arrow-up.svg b/icons/square-arrow-up.svg new file mode 100644 index 000000000..9ce498a6a --- /dev/null +++ b/icons/square-arrow-up.svg @@ -0,0 +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 new file mode 100644 index 000000000..f04bdffd0 --- /dev/null +++ b/icons/square-chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevron-left.svg b/icons/square-chevron-left.svg new file mode 100644 index 000000000..07579b60d --- /dev/null +++ b/icons/square-chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevron-right.svg b/icons/square-chevron-right.svg new file mode 100644 index 000000000..d24086af9 --- /dev/null +++ b/icons/square-chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevron-up.svg b/icons/square-chevron-up.svg new file mode 100644 index 000000000..6b6d2aacc --- /dev/null +++ b/icons/square-chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevrons-down.svg b/icons/square-chevrons-down.svg new file mode 100644 index 000000000..7a5d2ce59 --- /dev/null +++ b/icons/square-chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevrons-left.svg b/icons/square-chevrons-left.svg new file mode 100644 index 000000000..0bbbde092 --- /dev/null +++ b/icons/square-chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevrons-right.svg b/icons/square-chevrons-right.svg new file mode 100644 index 000000000..5dfb84bdc --- /dev/null +++ b/icons/square-chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-chevrons-up.svg b/icons/square-chevrons-up.svg new file mode 100644 index 000000000..330fecf22 --- /dev/null +++ b/icons/square-chevrons-up.svg @@ -0,0 +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 new file mode 100644 index 000000000..75f0438e3 --- /dev/null +++ b/icons/square-f0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f1.svg b/icons/square-f1.svg new file mode 100644 index 000000000..bbe164af5 --- /dev/null +++ b/icons/square-f1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f2.svg b/icons/square-f2.svg new file mode 100644 index 000000000..5062e07e5 --- /dev/null +++ b/icons/square-f2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f3.svg b/icons/square-f3.svg new file mode 100644 index 000000000..b1e342510 --- /dev/null +++ b/icons/square-f3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f4.svg b/icons/square-f4.svg new file mode 100644 index 000000000..1deecc1ad --- /dev/null +++ b/icons/square-f4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f5.svg b/icons/square-f5.svg new file mode 100644 index 000000000..e117297ad --- /dev/null +++ b/icons/square-f5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f6.svg b/icons/square-f6.svg new file mode 100644 index 000000000..f3233a8f3 --- /dev/null +++ b/icons/square-f6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f7.svg b/icons/square-f7.svg new file mode 100644 index 000000000..f85eb889a --- /dev/null +++ b/icons/square-f7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f8.svg b/icons/square-f8.svg new file mode 100644 index 000000000..047c10610 --- /dev/null +++ b/icons/square-f8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-f9.svg b/icons/square-f9.svg new file mode 100644 index 000000000..40e91fd8f --- /dev/null +++ b/icons/square-f9.svg @@ -0,0 +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 new file mode 100644 index 000000000..478e556a4 --- /dev/null +++ b/icons/square-key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-a.svg b/icons/square-letter-a.svg new file mode 100644 index 000000000..72d5210a2 --- /dev/null +++ b/icons/square-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-b.svg b/icons/square-letter-b.svg new file mode 100644 index 000000000..895bbd456 --- /dev/null +++ b/icons/square-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-c.svg b/icons/square-letter-c.svg new file mode 100644 index 000000000..6500a0d60 --- /dev/null +++ b/icons/square-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-d.svg b/icons/square-letter-d.svg new file mode 100644 index 000000000..240fdebdc --- /dev/null +++ b/icons/square-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-e.svg b/icons/square-letter-e.svg new file mode 100644 index 000000000..00fddc5d5 --- /dev/null +++ b/icons/square-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-f.svg b/icons/square-letter-f.svg new file mode 100644 index 000000000..bed938f16 --- /dev/null +++ b/icons/square-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-g.svg b/icons/square-letter-g.svg new file mode 100644 index 000000000..49c7ab201 --- /dev/null +++ b/icons/square-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-h.svg b/icons/square-letter-h.svg new file mode 100644 index 000000000..ddd495117 --- /dev/null +++ b/icons/square-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-i.svg b/icons/square-letter-i.svg new file mode 100644 index 000000000..c3de39bbe --- /dev/null +++ b/icons/square-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-j.svg b/icons/square-letter-j.svg new file mode 100644 index 000000000..ef79cb032 --- /dev/null +++ b/icons/square-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-k.svg b/icons/square-letter-k.svg new file mode 100644 index 000000000..b03e7e948 --- /dev/null +++ b/icons/square-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-l.svg b/icons/square-letter-l.svg new file mode 100644 index 000000000..f89dad7d1 --- /dev/null +++ b/icons/square-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-m.svg b/icons/square-letter-m.svg new file mode 100644 index 000000000..d612c63e2 --- /dev/null +++ b/icons/square-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-n.svg b/icons/square-letter-n.svg new file mode 100644 index 000000000..7dc9f9b2d --- /dev/null +++ b/icons/square-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-o.svg b/icons/square-letter-o.svg new file mode 100644 index 000000000..533382311 --- /dev/null +++ b/icons/square-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-p.svg b/icons/square-letter-p.svg new file mode 100644 index 000000000..ce85c476d --- /dev/null +++ b/icons/square-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-q.svg b/icons/square-letter-q.svg new file mode 100644 index 000000000..d6cd4950b --- /dev/null +++ b/icons/square-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-r.svg b/icons/square-letter-r.svg new file mode 100644 index 000000000..420500c42 --- /dev/null +++ b/icons/square-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-s.svg b/icons/square-letter-s.svg new file mode 100644 index 000000000..c615ea60f --- /dev/null +++ b/icons/square-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-t.svg b/icons/square-letter-t.svg new file mode 100644 index 000000000..5d4eaba85 --- /dev/null +++ b/icons/square-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-u.svg b/icons/square-letter-u.svg new file mode 100644 index 000000000..e5197868c --- /dev/null +++ b/icons/square-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-v.svg b/icons/square-letter-v.svg new file mode 100644 index 000000000..5cc367f3e --- /dev/null +++ b/icons/square-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-w.svg b/icons/square-letter-w.svg new file mode 100644 index 000000000..5e5517485 --- /dev/null +++ b/icons/square-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-x.svg b/icons/square-letter-x.svg new file mode 100644 index 000000000..7b9c10e4f --- /dev/null +++ b/icons/square-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-y.svg b/icons/square-letter-y.svg new file mode 100644 index 000000000..c07506de5 --- /dev/null +++ b/icons/square-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-letter-z.svg b/icons/square-letter-z.svg new file mode 100644 index 000000000..702d382b8 --- /dev/null +++ b/icons/square-letter-z.svg @@ -0,0 +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 new file mode 100644 index 000000000..88bb97f18 --- /dev/null +++ b/icons/square-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-1.svg b/icons/square-number-1.svg new file mode 100644 index 000000000..55cd9a0f8 --- /dev/null +++ b/icons/square-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-2.svg b/icons/square-number-2.svg new file mode 100644 index 000000000..3814e51d2 --- /dev/null +++ b/icons/square-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-3.svg b/icons/square-number-3.svg new file mode 100644 index 000000000..59921de6f --- /dev/null +++ b/icons/square-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-4.svg b/icons/square-number-4.svg new file mode 100644 index 000000000..54fbc2c75 --- /dev/null +++ b/icons/square-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-5.svg b/icons/square-number-5.svg new file mode 100644 index 000000000..74cbfb01e --- /dev/null +++ b/icons/square-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-6.svg b/icons/square-number-6.svg new file mode 100644 index 000000000..bdd3a1137 --- /dev/null +++ b/icons/square-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-7.svg b/icons/square-number-7.svg new file mode 100644 index 000000000..82b3fa40a --- /dev/null +++ b/icons/square-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-8.svg b/icons/square-number-8.svg new file mode 100644 index 000000000..baefd650a --- /dev/null +++ b/icons/square-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-number-9.svg b/icons/square-number-9.svg new file mode 100644 index 000000000..5b85fcb1b --- /dev/null +++ b/icons/square-number-9.svg @@ -0,0 +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 new file mode 100644 index 000000000..de605d08d --- /dev/null +++ b/icons/square-rounded-arrow-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-arrow-left.svg b/icons/square-rounded-arrow-left.svg new file mode 100644 index 000000000..a779edbdf --- /dev/null +++ b/icons/square-rounded-arrow-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-arrow-right.svg b/icons/square-rounded-arrow-right.svg new file mode 100644 index 000000000..6c447942e --- /dev/null +++ b/icons/square-rounded-arrow-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-arrow-up.svg b/icons/square-rounded-arrow-up.svg new file mode 100644 index 000000000..0ba2c9d4f --- /dev/null +++ b/icons/square-rounded-arrow-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-check.svg b/icons/square-rounded-check.svg new file mode 100644 index 000000000..3d7c50ecd --- /dev/null +++ b/icons/square-rounded-check.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevron-down.svg b/icons/square-rounded-chevron-down.svg new file mode 100644 index 000000000..814e7a681 --- /dev/null +++ b/icons/square-rounded-chevron-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevron-left.svg b/icons/square-rounded-chevron-left.svg new file mode 100644 index 000000000..60203bbfb --- /dev/null +++ b/icons/square-rounded-chevron-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevron-right.svg b/icons/square-rounded-chevron-right.svg new file mode 100644 index 000000000..e3a73adb1 --- /dev/null +++ b/icons/square-rounded-chevron-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevron-up.svg b/icons/square-rounded-chevron-up.svg new file mode 100644 index 000000000..dca912567 --- /dev/null +++ b/icons/square-rounded-chevron-up.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevrons-down.svg b/icons/square-rounded-chevrons-down.svg new file mode 100644 index 000000000..0febfb4cc --- /dev/null +++ b/icons/square-rounded-chevrons-down.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevrons-left.svg b/icons/square-rounded-chevrons-left.svg new file mode 100644 index 000000000..fc9af3e04 --- /dev/null +++ b/icons/square-rounded-chevrons-left.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevrons-right.svg b/icons/square-rounded-chevrons-right.svg new file mode 100644 index 000000000..ff1df38cb --- /dev/null +++ b/icons/square-rounded-chevrons-right.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-chevrons-up.svg b/icons/square-rounded-chevrons-up.svg new file mode 100644 index 000000000..15f7a3f32 --- /dev/null +++ b/icons/square-rounded-chevrons-up.svg @@ -0,0 +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 new file mode 100644 index 000000000..58c64cba4 --- /dev/null +++ b/icons/square-rounded-letter-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-b.svg b/icons/square-rounded-letter-b.svg new file mode 100644 index 000000000..1a19742d6 --- /dev/null +++ b/icons/square-rounded-letter-b.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-c.svg b/icons/square-rounded-letter-c.svg new file mode 100644 index 000000000..3b8520b37 --- /dev/null +++ b/icons/square-rounded-letter-c.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-d.svg b/icons/square-rounded-letter-d.svg new file mode 100644 index 000000000..e1f321395 --- /dev/null +++ b/icons/square-rounded-letter-d.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-e.svg b/icons/square-rounded-letter-e.svg new file mode 100644 index 000000000..135f4358d --- /dev/null +++ b/icons/square-rounded-letter-e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-f.svg b/icons/square-rounded-letter-f.svg new file mode 100644 index 000000000..6c73f8b46 --- /dev/null +++ b/icons/square-rounded-letter-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-g.svg b/icons/square-rounded-letter-g.svg new file mode 100644 index 000000000..8ec27e9a6 --- /dev/null +++ b/icons/square-rounded-letter-g.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-h.svg b/icons/square-rounded-letter-h.svg new file mode 100644 index 000000000..cdea01e34 --- /dev/null +++ b/icons/square-rounded-letter-h.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-i.svg b/icons/square-rounded-letter-i.svg new file mode 100644 index 000000000..004051b3d --- /dev/null +++ b/icons/square-rounded-letter-i.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-j.svg b/icons/square-rounded-letter-j.svg new file mode 100644 index 000000000..6b705ae4d --- /dev/null +++ b/icons/square-rounded-letter-j.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-k.svg b/icons/square-rounded-letter-k.svg new file mode 100644 index 000000000..1922be83d --- /dev/null +++ b/icons/square-rounded-letter-k.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-l.svg b/icons/square-rounded-letter-l.svg new file mode 100644 index 000000000..83d979bf8 --- /dev/null +++ b/icons/square-rounded-letter-l.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-m.svg b/icons/square-rounded-letter-m.svg new file mode 100644 index 000000000..b9d935ef0 --- /dev/null +++ b/icons/square-rounded-letter-m.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-n.svg b/icons/square-rounded-letter-n.svg new file mode 100644 index 000000000..16acfadbf --- /dev/null +++ b/icons/square-rounded-letter-n.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-o.svg b/icons/square-rounded-letter-o.svg new file mode 100644 index 000000000..53ca9cf55 --- /dev/null +++ b/icons/square-rounded-letter-o.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-p.svg b/icons/square-rounded-letter-p.svg new file mode 100644 index 000000000..d3ace29ad --- /dev/null +++ b/icons/square-rounded-letter-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-q.svg b/icons/square-rounded-letter-q.svg new file mode 100644 index 000000000..33262fedf --- /dev/null +++ b/icons/square-rounded-letter-q.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-r.svg b/icons/square-rounded-letter-r.svg new file mode 100644 index 000000000..f6cd2f23b --- /dev/null +++ b/icons/square-rounded-letter-r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-s.svg b/icons/square-rounded-letter-s.svg new file mode 100644 index 000000000..e6ff2847e --- /dev/null +++ b/icons/square-rounded-letter-s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-t.svg b/icons/square-rounded-letter-t.svg new file mode 100644 index 000000000..4c5a9a555 --- /dev/null +++ b/icons/square-rounded-letter-t.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-u.svg b/icons/square-rounded-letter-u.svg new file mode 100644 index 000000000..f7d10a420 --- /dev/null +++ b/icons/square-rounded-letter-u.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-v.svg b/icons/square-rounded-letter-v.svg new file mode 100644 index 000000000..7e273c1ea --- /dev/null +++ b/icons/square-rounded-letter-v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-w.svg b/icons/square-rounded-letter-w.svg new file mode 100644 index 000000000..0e9d78c63 --- /dev/null +++ b/icons/square-rounded-letter-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-x.svg b/icons/square-rounded-letter-x.svg new file mode 100644 index 000000000..3cda118d9 --- /dev/null +++ b/icons/square-rounded-letter-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-y.svg b/icons/square-rounded-letter-y.svg new file mode 100644 index 000000000..8a7643780 --- /dev/null +++ b/icons/square-rounded-letter-y.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-letter-z.svg b/icons/square-rounded-letter-z.svg new file mode 100644 index 000000000..fe11e97a1 --- /dev/null +++ b/icons/square-rounded-letter-z.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-minus.svg b/icons/square-rounded-minus.svg new file mode 100644 index 000000000..ea9e70b5d --- /dev/null +++ b/icons/square-rounded-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-0.svg b/icons/square-rounded-number-0.svg new file mode 100644 index 000000000..aa9e8f78b --- /dev/null +++ b/icons/square-rounded-number-0.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-1.svg b/icons/square-rounded-number-1.svg new file mode 100644 index 000000000..b80f3f1f3 --- /dev/null +++ b/icons/square-rounded-number-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-2.svg b/icons/square-rounded-number-2.svg new file mode 100644 index 000000000..d1e63923e --- /dev/null +++ b/icons/square-rounded-number-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-3.svg b/icons/square-rounded-number-3.svg new file mode 100644 index 000000000..13a53a029 --- /dev/null +++ b/icons/square-rounded-number-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-4.svg b/icons/square-rounded-number-4.svg new file mode 100644 index 000000000..fbe9f5adc --- /dev/null +++ b/icons/square-rounded-number-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-5.svg b/icons/square-rounded-number-5.svg new file mode 100644 index 000000000..a42ee3e5b --- /dev/null +++ b/icons/square-rounded-number-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-6.svg b/icons/square-rounded-number-6.svg new file mode 100644 index 000000000..39b05e81a --- /dev/null +++ b/icons/square-rounded-number-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-7.svg b/icons/square-rounded-number-7.svg new file mode 100644 index 000000000..62775da47 --- /dev/null +++ b/icons/square-rounded-number-7.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-8.svg b/icons/square-rounded-number-8.svg new file mode 100644 index 000000000..e7da8e851 --- /dev/null +++ b/icons/square-rounded-number-8.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-number-9.svg b/icons/square-rounded-number-9.svg new file mode 100644 index 000000000..009ffc70c --- /dev/null +++ b/icons/square-rounded-number-9.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-plus.svg b/icons/square-rounded-plus.svg new file mode 100644 index 000000000..69b491002 --- /dev/null +++ b/icons/square-rounded-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded-x.svg b/icons/square-rounded-x.svg new file mode 100644 index 000000000..298893bfc --- /dev/null +++ b/icons/square-rounded-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/square-rounded.svg b/icons/square-rounded.svg new file mode 100644 index 000000000..16f9a0031 --- /dev/null +++ b/icons/square-rounded.svg @@ -0,0 +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 new file mode 100644 index 000000000..afad5bd65 --- /dev/null +++ b/icons/stars-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..c965d8975 --- /dev/null +++ b/icons/status-change.svg @@ -0,0 +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 new file mode 100644 index 000000000..99afe4303 --- /dev/null +++ b/icons/steering-wheel-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..0ed754522 --- /dev/null +++ b/icons/stereo-glasses.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/stethoscope-off.svg b/icons/stethoscope-off.svg new file mode 100644 index 000000000..355251d2c --- /dev/null +++ b/icons/stethoscope-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..380d923d3 --- /dev/null +++ b/icons/storm-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..de4933db0 --- /dev/null +++ b/icons/sun-moon.svg @@ -0,0 +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 new file mode 100644 index 000000000..6c9885e17 --- /dev/null +++ b/icons/swipe.svg @@ -0,0 +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 e7e408c05..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 new file mode 100644 index 000000000..34f313179 --- /dev/null +++ b/icons/target-arrow.svg @@ -0,0 +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 new file mode 100644 index 000000000..7e38bb5f7 --- /dev/null +++ b/icons/teapot.svg @@ -0,0 +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 new file mode 100644 index 000000000..1ec5c250c --- /dev/null +++ b/icons/tent-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..891566356 --- /dev/null +++ b/icons/tex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/text-caption.svg b/icons/text-caption.svg new file mode 100644 index 000000000..91b6f61a6 --- /dev/null +++ b/icons/text-caption.svg @@ -0,0 +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 new file mode 100644 index 000000000..0c6ab0eba --- /dev/null +++ b/icons/texture.svg @@ -0,0 +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 new file mode 100644 index 000000000..90ac94ef7 --- /dev/null +++ b/icons/thumb-down-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..6966a98a8 --- /dev/null +++ b/icons/thumb-up-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/tic-tac.svg b/icons/tic-tac.svg new file mode 100644 index 000000000..92a2da381 --- /dev/null +++ b/icons/tic-tac.svg @@ -0,0 +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/tilde.svg b/icons/tilde.svg new file mode 100644 index 000000000..c863130f3 --- /dev/null +++ b/icons/tilde.svg @@ -0,0 +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 new file mode 100644 index 000000000..5d485cbfc --- /dev/null +++ b/icons/timeline-event-exclamation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/timeline-event-minus.svg b/icons/timeline-event-minus.svg new file mode 100644 index 000000000..344d3234c --- /dev/null +++ b/icons/timeline-event-minus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/timeline-event-plus.svg b/icons/timeline-event-plus.svg new file mode 100644 index 000000000..41cc27b2c --- /dev/null +++ b/icons/timeline-event-plus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/timeline-event-text.svg b/icons/timeline-event-text.svg new file mode 100644 index 000000000..1661a7b3c --- /dev/null +++ b/icons/timeline-event-text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/timeline-event-x.svg b/icons/timeline-event-x.svg new file mode 100644 index 000000000..42268701a --- /dev/null +++ b/icons/timeline-event-x.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/timeline-event.svg b/icons/timeline-event.svg new file mode 100644 index 000000000..a640f09e7 --- /dev/null +++ b/icons/timeline-event.svg @@ -0,0 +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 ecd8db3b9..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 new file mode 100644 index 000000000..93fe1e634 --- /dev/null +++ b/icons/topology-bus.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-complex.svg b/icons/topology-complex.svg new file mode 100644 index 000000000..a5027565f --- /dev/null +++ b/icons/topology-complex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-full-hierarchy.svg b/icons/topology-full-hierarchy.svg new file mode 100644 index 000000000..3727dcb3e --- /dev/null +++ b/icons/topology-full-hierarchy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-full.svg b/icons/topology-full.svg new file mode 100644 index 000000000..06b96a265 --- /dev/null +++ b/icons/topology-full.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-ring-2.svg b/icons/topology-ring-2.svg new file mode 100644 index 000000000..413d65faf --- /dev/null +++ b/icons/topology-ring-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-ring-3.svg b/icons/topology-ring-3.svg new file mode 100644 index 000000000..3680c5752 --- /dev/null +++ b/icons/topology-ring-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-ring.svg b/icons/topology-ring.svg new file mode 100644 index 000000000..8f5f6f910 --- /dev/null +++ b/icons/topology-ring.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-star-2.svg b/icons/topology-star-2.svg new file mode 100644 index 000000000..e4f3e225f --- /dev/null +++ b/icons/topology-star-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-star-3.svg b/icons/topology-star-3.svg new file mode 100644 index 000000000..0fbc83674 --- /dev/null +++ b/icons/topology-star-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-star-ring-2.svg b/icons/topology-star-ring-2.svg new file mode 100644 index 000000000..778ea37a9 --- /dev/null +++ b/icons/topology-star-ring-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-star-ring-3.svg b/icons/topology-star-ring-3.svg new file mode 100644 index 000000000..9ed233204 --- /dev/null +++ b/icons/topology-star-ring-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-star-ring.svg b/icons/topology-star-ring.svg new file mode 100644 index 000000000..50f4e66f3 --- /dev/null +++ b/icons/topology-star-ring.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/topology-star.svg b/icons/topology-star.svg new file mode 100644 index 000000000..0014a1e4e --- /dev/null +++ b/icons/topology-star.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/torii.svg b/icons/torii.svg new file mode 100644 index 000000000..9ab644c03 --- /dev/null +++ b/icons/torii.svg @@ -0,0 +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 e0b03d406..1ced015eb 100644 --- a/icons/tournament.svg +++ b/icons/tournament.svg @@ -1,9 +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 new file mode 100644 index 000000000..d86223fcb --- /dev/null +++ b/icons/transform.svg @@ -0,0 +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 new file mode 100644 index 000000000..3a193449b --- /dev/null +++ b/icons/trekking.svg @@ -0,0 +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 new file mode 100644 index 000000000..7e0c8a031 --- /dev/null +++ b/icons/trolley.svg @@ -0,0 +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 new file mode 100644 index 000000000..fd31db464 --- /dev/null +++ b/icons/trophy-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..9d6e815fe --- /dev/null +++ b/icons/trowel.svg @@ -0,0 +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 new file mode 100644 index 000000000..c63ecfb36 --- /dev/null +++ b/icons/txt.svg @@ -0,0 +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 deleted file mode 100644 index e7fd1728b..000000000 --- a/icons/uf-off.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/icons/ufo-off.svg b/icons/ufo-off.svg new file mode 100644 index 000000000..1b7d7a127 --- /dev/null +++ b/icons/ufo-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..4289b2018 --- /dev/null +++ b/icons/uv-index.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/ux-circle.svg b/icons/ux-circle.svg new file mode 100644 index 000000000..1016c2ee3 --- /dev/null +++ b/icons/ux-circle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/vaccine-bottle-off.svg b/icons/vaccine-bottle-off.svg new file mode 100644 index 000000000..bcf3cc882 --- /dev/null +++ b/icons/vaccine-bottle-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..d3b271c12 --- /dev/null +++ b/icons/vacuum-cleaner.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/variable-minus.svg b/icons/variable-minus.svg new file mode 100644 index 000000000..5e6ad8f78 --- /dev/null +++ b/icons/variable-minus.svg @@ -0,0 +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 new file mode 100644 index 000000000..4cab86b54 --- /dev/null +++ b/icons/variable-plus.svg @@ -0,0 +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 new file mode 100644 index 000000000..b0bdc4c50 --- /dev/null +++ b/icons/vector-bezier-arc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/vector-bezier-circle.svg b/icons/vector-bezier-circle.svg new file mode 100644 index 000000000..fb7ad5beb --- /dev/null +++ b/icons/vector-bezier-circle.svg @@ -0,0 +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 new file mode 100644 index 000000000..7da64b6cf --- /dev/null +++ b/icons/vector-spline.svg @@ -0,0 +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 5e1a3707c..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 new file mode 100644 index 000000000..d608f1cab --- /dev/null +++ b/icons/vip-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/vip.svg b/icons/vip.svg new file mode 100644 index 000000000..545a8db7e --- /dev/null +++ b/icons/vip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/virus-off.svg b/icons/virus-off.svg index ca3f7c8bb..9308892a4 100644 --- a/icons/virus-off.svg +++ b/icons/virus-off.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/virus-search.svg b/icons/virus-search.svg index 71a8ff169..d97c97fc6 100644 --- a/icons/virus-search.svg +++ b/icons/virus-search.svg @@ -1,15 +1,6 @@ - - - - - - - - - - + diff --git a/icons/virus.svg b/icons/virus.svg index 1573c02b5..f33bd02d1 100644 --- a/icons/virus.svg +++ b/icons/virus.svg @@ -1,14 +1,6 @@ - - - - - - - - - + diff --git a/icons/vocabulary-off.svg b/icons/vocabulary-off.svg new file mode 100644 index 000000000..2b39e65bc --- /dev/null +++ b/icons/vocabulary-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b7a19ecc6 --- /dev/null +++ b/icons/wall-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..a1132e893 --- /dev/null +++ b/icons/wash-dry-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-2.svg b/icons/wash-dry-2.svg new file mode 100644 index 000000000..7773164df --- /dev/null +++ b/icons/wash-dry-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-3.svg b/icons/wash-dry-3.svg new file mode 100644 index 000000000..82bd9dc83 --- /dev/null +++ b/icons/wash-dry-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-a.svg b/icons/wash-dry-a.svg new file mode 100644 index 000000000..d353d0e33 --- /dev/null +++ b/icons/wash-dry-a.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-dip.svg b/icons/wash-dry-dip.svg new file mode 100644 index 000000000..7452f0844 --- /dev/null +++ b/icons/wash-dry-dip.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-f.svg b/icons/wash-dry-f.svg new file mode 100644 index 000000000..5bd606949 --- /dev/null +++ b/icons/wash-dry-f.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-hang.svg b/icons/wash-dry-hang.svg new file mode 100644 index 000000000..4e936f6c1 --- /dev/null +++ b/icons/wash-dry-hang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-off.svg b/icons/wash-dry-off.svg new file mode 100644 index 000000000..8526a3f86 --- /dev/null +++ b/icons/wash-dry-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-p.svg b/icons/wash-dry-p.svg new file mode 100644 index 000000000..2b59d0a28 --- /dev/null +++ b/icons/wash-dry-p.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-shade.svg b/icons/wash-dry-shade.svg new file mode 100644 index 000000000..2e5ce15af --- /dev/null +++ b/icons/wash-dry-shade.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry-w.svg b/icons/wash-dry-w.svg new file mode 100644 index 000000000..b8ff78511 --- /dev/null +++ b/icons/wash-dry-w.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dry.svg b/icons/wash-dry.svg new file mode 100644 index 000000000..059d0b340 --- /dev/null +++ b/icons/wash-dry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dryclean-off.svg b/icons/wash-dryclean-off.svg new file mode 100644 index 000000000..014ee81db --- /dev/null +++ b/icons/wash-dryclean-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-dryclean.svg b/icons/wash-dryclean.svg new file mode 100644 index 000000000..85cfe420e --- /dev/null +++ b/icons/wash-dryclean.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-gentle.svg b/icons/wash-gentle.svg new file mode 100644 index 000000000..1015de2fb --- /dev/null +++ b/icons/wash-gentle.svg @@ -0,0 +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 new file mode 100644 index 000000000..99b6748d8 --- /dev/null +++ b/icons/wash-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-press.svg b/icons/wash-press.svg new file mode 100644 index 000000000..007f3f9ed --- /dev/null +++ b/icons/wash-press.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-temperature-1.svg b/icons/wash-temperature-1.svg new file mode 100644 index 000000000..030c49427 --- /dev/null +++ b/icons/wash-temperature-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-temperature-2.svg b/icons/wash-temperature-2.svg new file mode 100644 index 000000000..cf7c8b5e5 --- /dev/null +++ b/icons/wash-temperature-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-temperature-3.svg b/icons/wash-temperature-3.svg new file mode 100644 index 000000000..be2ef6a82 --- /dev/null +++ b/icons/wash-temperature-3.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-temperature-4.svg b/icons/wash-temperature-4.svg new file mode 100644 index 000000000..4220a5cdc --- /dev/null +++ b/icons/wash-temperature-4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-temperature-5.svg b/icons/wash-temperature-5.svg new file mode 100644 index 000000000..7b194eea5 --- /dev/null +++ b/icons/wash-temperature-5.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-temperature-6.svg b/icons/wash-temperature-6.svg new file mode 100644 index 000000000..e30867554 --- /dev/null +++ b/icons/wash-temperature-6.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-tumble-dry.svg b/icons/wash-tumble-dry.svg new file mode 100644 index 000000000..22f6a0fc2 --- /dev/null +++ b/icons/wash-tumble-dry.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash-tumble-off.svg b/icons/wash-tumble-off.svg new file mode 100644 index 000000000..31552f6bb --- /dev/null +++ b/icons/wash-tumble-off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wash.svg b/icons/wash.svg new file mode 100644 index 000000000..94a47c75d --- /dev/null +++ b/icons/wash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/webhook-off.svg b/icons/webhook-off.svg new file mode 100644 index 000000000..de7b6f338 --- /dev/null +++ b/icons/webhook-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..887e2f88f --- /dev/null +++ b/icons/weight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/wheelchair-off.svg b/icons/wheelchair-off.svg new file mode 100644 index 000000000..49cfb2ed4 --- /dev/null +++ b/icons/wheelchair-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..b8b950f64 --- /dev/null +++ b/icons/whirl.svg @@ -0,0 +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 afc1ffb22..d31bd7eb1 100644 --- a/icons/woman.svg +++ b/icons/woman.svg @@ -1,7 +1,6 @@ - - + diff --git a/icons/wood.svg b/icons/wood.svg new file mode 100644 index 000000000..632e2d260 --- /dev/null +++ b/icons/wood.svg @@ -0,0 +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 new file mode 100644 index 000000000..3446cceae --- /dev/null +++ b/icons/world-www.svg @@ -0,0 +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 new file mode 100644 index 000000000..3f2f0b82d --- /dev/null +++ b/icons/zeppelin-off.svg @@ -0,0 +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 new file mode 100644 index 000000000..ff349334e --- /dev/null +++ b/icons/zip.svg @@ -0,0 +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 new file mode 100644 index 000000000..fc1c1f31e --- /dev/null +++ b/icons/zzz-off.svg @@ -0,0 +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 8865eddd5..98f9b60a5 100644 --- a/package.json +++ b/package.json @@ -1,124 +1,110 @@ { - "name": "@tabler/icons", - "version": "1.82.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", "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" - }, - "./*": [ - "./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", - "optimize": "gulp optimize", - "release": "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" }, - "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", - "clean-css": "4.2.3", + "@vue/babel-plugin-jsx": "^1.1.1", + "adm-zip": "^0.5.10", + "cheerio": "^1.0.0-rc.12", "csv-parser": "^3.0.0", + "fs-extra": "^10.1.0", "glob": "7.1.6", - "gulp": "4.0.2", - "gulp-iconfont": "10.0.3", - "gulp-svgo": "^2.2.1", - "gulp-zip": "5.0.2", + "html-minifier": "^4.0.0", "lodash.template": "4.5.0", "minimist": "1.2.6", - "node-sass": "7.0.1", + "node-sass": "8.0.0", "parse-svg-path": "^0.1.2", - "release-it": "14.12.5", - "rollup": "2.70.1", + "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-terser": "7.0.2", - "rollup-plugin-uglify": "6.0.4", - "svg-outline-stroke": "1.3.1" + "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", + "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..ec48a00e1 --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler 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..40fc1d22a --- /dev/null +++ b/packages/icons-eps/package.json @@ -0,0 +1,41 @@ +{ + "name": "@tabler/icons-eps", + "version": "2.0.0", + "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" + }, + "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..b5c1a9b4c --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler 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..2a8b03328 --- /dev/null +++ b/packages/icons-pdf/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tabler/icons-pdf", + "version": "2.0.0", + "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" + }, + "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..e294a2e3c --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler 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..b8d275a85 --- /dev/null +++ b/packages/icons-png/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tabler/icons-png", + "version": "2.0.0", + "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" + }, + "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..2630bd281 --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler diff --git a/packages/icons-preact/build.mjs b/packages/icons-preact/build.mjs new file mode 100644 index 000000000..7ab5eb255 --- /dev/null +++ b/packages/icons-preact/build.mjs @@ -0,0 +1,41 @@ +#!/usr/bin/env node + +import { buildIcons } from '../../.build/build-icons.mjs' + +const componentTemplate = ({ + name, + namePascal, + children +}) => `\ +import createPreactComponent from '../createPreactComponent'; +export default createPreactComponent('${name}', '${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..3c7150b48 --- /dev/null +++ b/packages/icons-preact/package.json @@ -0,0 +1,44 @@ +{ + "name": "@tabler/icons-preact", + "version": "2.0.0", + "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" + }, + "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..9072dd53f --- /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, iconNamePascal, 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 = `${iconNamePascal}`; + + 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..7c98b1451 --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler diff --git a/packages/icons-react/build.mjs b/packages/icons-react/build.mjs new file mode 100644 index 000000000..6305ede21 --- /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('${name}', '${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..8ca83119f --- /dev/null +++ b/packages/icons-react/package.json @@ -0,0 +1,44 @@ +{ + "name": "@tabler/icons-react", + "version": "2.0.0", + "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" + }, + "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..969932c4c --- /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, iconNamePascal, 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 = `${iconNamePascal}`; + + 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..892b6949e --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler diff --git a/packages/icons-solidjs/build.mjs b/packages/icons-solidjs/build.mjs new file mode 100644 index 000000000..e20cf97d2 --- /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('${name}', '${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..8b1e1e7d1 --- /dev/null +++ b/packages/icons-solidjs/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tabler/icons-solidjs", + "version": "2.0.0", + "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" + }, + "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..c3fc23619 --- /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, iconNamePascal, 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 = `${iconNamePascal}`; + 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..7d5fe85e8 --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler 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..a94a730ca --- /dev/null +++ b/packages/icons-svelte/package.json @@ -0,0 +1,49 @@ +{ + "name": "@tabler/icons-svelte", + "version": "2.0.0", + "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" + }, + "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..1b511f6d2 --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler diff --git a/packages/icons-vue/build.mjs b/packages/icons-vue/build.mjs new file mode 100644 index 000000000..911c2fdf4 --- /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('${name}', '${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..99a9aecb2 --- /dev/null +++ b/packages/icons-vue/package.json @@ -0,0 +1,42 @@ +{ + "name": "@tabler/icons-vue", + "version": "2.0.0", + "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" + }, + "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..c9c3ad3ee --- /dev/null +++ b/packages/icons-vue/src/createVueComponent.js @@ -0,0 +1,26 @@ +import { h } from 'vue'; +import defaultAttributes from './defaultAttributes'; + +const createVueComponent = (iconName, iconNamePascal, 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..1b479784a --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler diff --git a/packages/icons-webfont/fonts/tabler-icons.eot b/packages/icons-webfont/fonts/tabler-icons.eot new file mode 100644 index 000000000..7efe18724 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..47cd48cfd 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..71f09769c 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..19a6fd2af 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..5659d3349 --- /dev/null +++ b/packages/icons-webfont/package.json @@ -0,0 +1,50 @@ +{ + "name": "@tabler/icons-webfont", + "version": "2.0.0", + "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" + }, + "keywords": [ + "icons", + "svg", + "png", + "iconfont", + "react", + "front-end", + "web" + ], + "devDependencies": { + "webfont": "^11.2.26" + } +} diff --git a/packages/icons-webfont/tabler-icons.css b/packages/icons-webfont/tabler-icons.css new file mode 100644 index 000000000..7347d6893 --- /dev/null +++ b/packages/icons-webfont/tabler-icons.css @@ -0,0 +1,12841 @@ +/*! + * Tabler Icons 2.0.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?v2.0.0"); + src: url("./fonts/tabler-icons.eot?#iefix-v2.0.0") format("embedded-opentype"), url("./fonts/tabler-icons.woff2?v2.0.0") format("woff2"), url("./fonts/tabler-icons.woff?") format("woff"), url("./fonts/tabler-icons.ttf?v2.0.0") 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; + /* Better Font Rendering */ + -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-c-sharp:before { + content: "\f003"; +} + +.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-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-ufo:before { + content: "\f26f"; +} + +.ti-ufo-off:before { + content: "\f26e"; +} + +.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.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..1c9a9a631 --- /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,sCAA+C;EACpD,GAAG,EAAE,gPAG+D;;AAGtE,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,wBAAoC;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGvC,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,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,cAA0B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoG7B,kBAA8B;EAAE,OAAO,EAtoGrB,OAAe;;;AAuoGjC,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/packages/icons-webfont/tabler-icons.html b/packages/icons-webfont/tabler-icons.html new file mode 100644 index 000000000..efd25a65f --- /dev/null +++ b/packages/icons-webfont/tabler-icons.html @@ -0,0 +1,28990 @@ + + + + + + + Tabler Icons - version 2.0.0 + + + + + + + + + +
+
+

+ Tabler Icons +

+

version 2.0.0

+
+ + + +
+
+ +
+ + 123 +
+ ti ti-123
+ \f554 +
+
+ +
+ + 24-hours +
+ ti ti-24-hours
+ \f5e7 +
+
+ +
+ + 2fa +
+ ti ti-2fa
+ \eca0 +
+
+ +
+ + 360 +
+ ti ti-360
+ \f62f +
+
+ +
+ + 360-view +
+ ti ti-360-view
+ \f566 +
+
+ +
+ + 3d-cube-sphere +
+ ti ti-3d-cube-sphere
+ \ecd7 +
+
+ +
+ + 3d-cube-sphere-off +
+ ti ti-3d-cube-sphere-off
+ \f3b5 +
+
+ +
+ + 3d-rotate +
+ ti ti-3d-rotate
+ \f020 +
+
+ +
+ + a-b +
+ ti ti-a-b
+ \ec36 +
+
+ +
+ + a-b-2 +
+ ti ti-a-b-2
+ \f25f +
+
+ +
+ + a-b-off +
+ ti ti-a-b-off
+ \f0a6 +
+
+ +
+ + abacus +
+ ti ti-abacus
+ \f05c +
+
+ +
+ + abacus-off +
+ ti ti-abacus-off
+ \f3b6 +
+
+ +
+ + abc +
+ ti ti-abc
+ \f567 +
+
+ +
+ + access-point +
+ ti ti-access-point
+ \ed1b +
+
+ +
+ + access-point-off +
+ ti ti-access-point-off
+ \ed1a +
+
+ +
+ + accessible +
+ ti ti-accessible
+ \eba9 +
+
+ +
+ + accessible-off +
+ ti ti-accessible-off
+ \f0a7 +
+
+ +
+ + activity +
+ ti ti-activity
+ \ed23 +
+
+ +
+ + activity-heartbeat +
+ ti ti-activity-heartbeat
+ \f0db +
+
+ +
+ + ad +
+ ti ti-ad
+ \ea02 +
+
+ +
+ + ad-2 +
+ ti ti-ad-2
+ \ef1f +
+
+ +
+ + ad-off +
+ ti ti-ad-off
+ \f3b7 +
+
+ +
+ + address-book +
+ ti ti-address-book
+ \f021 +
+
+ +
+ + address-book-off +
+ ti ti-address-book-off
+ \f3b8 +
+
+ +
+ + adjustments +
+ ti ti-adjustments
+ \ea03 +
+
+ +
+ + adjustments-alt +
+ ti ti-adjustments-alt
+ \ec37 +
+
+ +
+ + adjustments-horizontal +
+ ti ti-adjustments-horizontal
+ \ec38 +
+
+ +
+ + adjustments-off +
+ ti ti-adjustments-off
+ \f0a8 +
+
+ +
+ + aerial-lift +
+ ti ti-aerial-lift
+ \edfe +
+
+ +
+ + affiliate +
+ ti ti-affiliate
+ \edff +
+
+ +
+ + air-balloon +
+ ti ti-air-balloon
+ \f4a6 +
+
+ +
+ + air-conditioning +
+ ti ti-air-conditioning
+ \f3a2 +
+
+ +
+ + air-conditioning-disabled +
+ ti ti-air-conditioning-disabled
+ \f542 +
+
+ +
+ + alarm +
+ ti ti-alarm
+ \ea04 +
+
+ +
+ + alarm-minus +
+ ti ti-alarm-minus
+ \f630 +
+
+ +
+ + alarm-off +
+ ti ti-alarm-off
+ \f0a9 +
+
+ +
+ + alarm-plus +
+ ti ti-alarm-plus
+ \f631 +
+
+ +
+ + alarm-snooze +
+ ti ti-alarm-snooze
+ \f632 +
+
+ +
+ + album +
+ ti ti-album
+ \f022 +
+
+ +
+ + album-off +
+ ti ti-album-off
+ \f3b9 +
+
+ +
+ + alert-circle +
+ ti ti-alert-circle
+ \ea05 +
+
+ +
+ + alert-octagon +
+ ti ti-alert-octagon
+ \ecc6 +
+
+ +
+ + alert-triangle +
+ ti ti-alert-triangle
+ \ea06 +
+
+ +
+ + alien +
+ ti ti-alien
+ \ebde +
+
+ +
+ + align-box-bottom-center +
+ ti ti-align-box-bottom-center
+ \f530 +
+
+ +
+ + align-box-bottom-left +
+ ti ti-align-box-bottom-left
+ \f531 +
+
+ +
+ + align-box-bottom-right +
+ ti ti-align-box-bottom-right
+ \f532 +
+
+ +
+ + align-box-left-bottom +
+ ti ti-align-box-left-bottom
+ \f533 +
+
+ +
+ + align-box-left-middle +
+ ti ti-align-box-left-middle
+ \f534 +
+
+ +
+ + align-box-left-top +
+ ti ti-align-box-left-top
+ \f535 +
+
+ +
+ + align-box-right-bottom +
+ ti ti-align-box-right-bottom
+ \f536 +
+
+ +
+ + align-box-right-middle +
+ ti ti-align-box-right-middle
+ \f537 +
+
+ +
+ + align-box-right-top +
+ ti ti-align-box-right-top
+ \f538 +
+
+ +
+ + align-box-top-center +
+ ti ti-align-box-top-center
+ \f539 +
+
+ +
+ + align-box-top-left +
+ ti ti-align-box-top-left
+ \f53a +
+
+ +
+ + align-box-top-right +
+ ti ti-align-box-top-right
+ \f53b +
+
+ +
+ + align-center +
+ ti ti-align-center
+ \ea07 +
+
+ +
+ + align-justified +
+ ti ti-align-justified
+ \ea08 +
+
+ +
+ + align-left +
+ ti ti-align-left
+ \ea09 +
+
+ +
+ + align-right +
+ ti ti-align-right
+ \ea0a +
+
+ +
+ + alpha +
+ ti ti-alpha
+ \f543 +
+
+ +
+ + alphabet-cyrillic +
+ ti ti-alphabet-cyrillic
+ \f1df +
+
+ +
+ + alphabet-greek +
+ ti ti-alphabet-greek
+ \f1e0 +
+
+ +
+ + alphabet-latin +
+ ti ti-alphabet-latin
+ \f1e1 +
+
+ +
+ + ambulance +
+ ti ti-ambulance
+ \ebf5 +
+
+ +
+ + ampersand +
+ ti ti-ampersand
+ \f229 +
+
+ +
+ + analyze +
+ ti ti-analyze
+ \f3a3 +
+
+ +
+ + analyze-off +
+ ti ti-analyze-off
+ \f3ba +
+
+ +
+ + anchor +
+ ti ti-anchor
+ \eb76 +
+
+ +
+ + anchor-off +
+ ti ti-anchor-off
+ \f0f7 +
+
+ +
+ + angle +
+ ti ti-angle
+ \ef20 +
+
+ +
+ + ankh +
+ ti ti-ankh
+ \f1cd +
+
+ +
+ + antenna +
+ ti ti-antenna
+ \f094 +
+
+ +
+ + antenna-bars-1 +
+ ti ti-antenna-bars-1
+ \ecc7 +
+
+ +
+ + antenna-bars-2 +
+ ti ti-antenna-bars-2
+ \ecc8 +
+
+ +
+ + antenna-bars-3 +
+ ti ti-antenna-bars-3
+ \ecc9 +
+
+ +
+ + antenna-bars-4 +
+ ti ti-antenna-bars-4
+ \ecca +
+
+ +
+ + antenna-bars-5 +
+ ti ti-antenna-bars-5
+ \eccb +
+
+ +
+ + antenna-bars-off +
+ ti ti-antenna-bars-off
+ \f0aa +
+
+ +
+ + antenna-off +
+ ti ti-antenna-off
+ \f3bb +
+
+ +
+ + aperture +
+ ti ti-aperture
+ \eb58 +
+
+ +
+ + aperture-off +
+ ti ti-aperture-off
+ \f3bc +
+
+ +
+ + api +
+ ti ti-api
+ \effd +
+
+ +
+ + api-app +
+ ti ti-api-app
+ \effc +
+
+ +
+ + api-app-off +
+ ti ti-api-app-off
+ \f0ab +
+
+ +
+ + api-off +
+ ti ti-api-off
+ \f0f8 +
+
+ +
+ + app-window +
+ ti ti-app-window
+ \efe6 +
+
+ +
+ + apple +
+ ti ti-apple
+ \ef21 +
+
+ +
+ + apps +
+ ti ti-apps
+ \ebb6 +
+
+ +
+ + apps-off +
+ ti ti-apps-off
+ \f0ac +
+
+ +
+ + archive +
+ ti ti-archive
+ \ea0b +
+
+ +
+ + archive-off +
+ ti ti-archive-off
+ \f0ad +
+
+ +
+ + armchair +
+ ti ti-armchair
+ \ef9e +
+
+ +
+ + armchair-2 +
+ ti ti-armchair-2
+ \efe7 +
+
+ +
+ + armchair-2-off +
+ ti ti-armchair-2-off
+ \f3bd +
+
+ +
+ + armchair-off +
+ ti ti-armchair-off
+ \f3be +
+
+ +
+ + arrow-autofit-content +
+ ti ti-arrow-autofit-content
+ \ef31 +
+
+ +
+ + arrow-autofit-down +
+ ti ti-arrow-autofit-down
+ \ef32 +
+
+ +
+ + arrow-autofit-height +
+ ti ti-arrow-autofit-height
+ \ef33 +
+
+ +
+ + arrow-autofit-left +
+ ti ti-arrow-autofit-left
+ \ef34 +
+
+ +
+ + arrow-autofit-right +
+ ti ti-arrow-autofit-right
+ \ef35 +
+
+ +
+ + arrow-autofit-up +
+ ti ti-arrow-autofit-up
+ \ef36 +
+
+ +
+ + arrow-autofit-width +
+ ti ti-arrow-autofit-width
+ \ef37 +
+
+ +
+ + arrow-back +
+ ti ti-arrow-back
+ \ea0c +
+
+ +
+ + arrow-back-up +
+ ti ti-arrow-back-up
+ \eb77 +
+
+ +
+ + arrow-badge-down +
+ ti ti-arrow-badge-down
+ \f60b +
+
+ +
+ + arrow-badge-left +
+ ti ti-arrow-badge-left
+ \f60c +
+
+ +
+ + arrow-badge-right +
+ ti ti-arrow-badge-right
+ \f60d +
+
+ +
+ + arrow-badge-up +
+ ti ti-arrow-badge-up
+ \f60e +
+
+ +
+ + arrow-bar-down +
+ ti ti-arrow-bar-down
+ \ea0d +
+
+ +
+ + arrow-bar-left +
+ ti ti-arrow-bar-left
+ \ea0e +
+
+ +
+ + arrow-bar-right +
+ ti ti-arrow-bar-right
+ \ea0f +
+
+ +
+ + arrow-bar-to-down +
+ ti ti-arrow-bar-to-down
+ \ec88 +
+
+ +
+ + arrow-bar-to-left +
+ ti ti-arrow-bar-to-left
+ \ec89 +
+
+ +
+ + arrow-bar-to-right +
+ ti ti-arrow-bar-to-right
+ \ec8a +
+
+ +
+ + arrow-bar-to-up +
+ ti ti-arrow-bar-to-up
+ \ec8b +
+
+ +
+ + arrow-bar-up +
+ ti ti-arrow-bar-up
+ \ea10 +
+
+ +
+ + arrow-bear-left +
+ ti ti-arrow-bear-left
+ \f045 +
+
+ +
+ + arrow-bear-left-2 +
+ ti ti-arrow-bear-left-2
+ \f044 +
+
+ +
+ + arrow-bear-right +
+ ti ti-arrow-bear-right
+ \f047 +
+
+ +
+ + arrow-bear-right-2 +
+ ti ti-arrow-bear-right-2
+ \f046 +
+
+ +
+ + arrow-big-down +
+ ti ti-arrow-big-down
+ \edda +
+
+ +
+ + arrow-big-down-line +
+ ti ti-arrow-big-down-line
+ \efe8 +
+
+ +
+ + arrow-big-down-lines +
+ ti ti-arrow-big-down-lines
+ \efe9 +
+
+ +
+ + arrow-big-left +
+ ti ti-arrow-big-left
+ \eddb +
+
+ +
+ + arrow-big-left-line +
+ ti ti-arrow-big-left-line
+ \efea +
+
+ +
+ + arrow-big-left-lines +
+ ti ti-arrow-big-left-lines
+ \efeb +
+
+ +
+ + arrow-big-right +
+ ti ti-arrow-big-right
+ \eddc +
+
+ +
+ + arrow-big-right-line +
+ ti ti-arrow-big-right-line
+ \efec +
+
+ +
+ + arrow-big-right-lines +
+ ti ti-arrow-big-right-lines
+ \efed +
+
+ +
+ + arrow-big-top +
+ ti ti-arrow-big-top
+ \eddd +
+
+ +
+ + arrow-big-up-line +
+ ti ti-arrow-big-up-line
+ \efee +
+
+ +
+ + arrow-big-up-lines +
+ ti ti-arrow-big-up-lines
+ \efef +
+
+ +
+ + arrow-bounce +
+ ti ti-arrow-bounce
+ \f3a4 +
+
+ +
+ + arrow-curve-left +
+ ti ti-arrow-curve-left
+ \f048 +
+
+ +
+ + arrow-curve-right +
+ ti ti-arrow-curve-right
+ \f049 +
+
+ +
+ + arrow-down +
+ ti ti-arrow-down
+ \ea16 +
+
+ +
+ + arrow-down-bar +
+ ti ti-arrow-down-bar
+ \ed98 +
+
+ +
+ + arrow-down-circle +
+ ti ti-arrow-down-circle
+ \ea11 +
+
+ +
+ + arrow-down-left +
+ ti ti-arrow-down-left
+ \ea13 +
+
+ +
+ + arrow-down-left-circle +
+ ti ti-arrow-down-left-circle
+ \ea12 +
+
+ +
+ + arrow-down-rhombus +
+ ti ti-arrow-down-rhombus
+ \f61d +
+
+ +
+ + arrow-down-right +
+ ti ti-arrow-down-right
+ \ea15 +
+
+ +
+ + arrow-down-right-circle +
+ ti ti-arrow-down-right-circle
+ \ea14 +
+
+ +
+ + arrow-down-square +
+ ti ti-arrow-down-square
+ \ed9a +
+
+ +
+ + arrow-down-tail +
+ ti ti-arrow-down-tail
+ \ed9b +
+
+ +
+ + arrow-fork +
+ ti ti-arrow-fork
+ \f04a +
+
+ +
+ + arrow-forward +
+ ti ti-arrow-forward
+ \ea17 +
+
+ +
+ + arrow-forward-up +
+ ti ti-arrow-forward-up
+ \eb78 +
+
+ +
+ + arrow-guide +
+ ti ti-arrow-guide
+ \f22a +
+
+ +
+ + arrow-iteration +
+ ti ti-arrow-iteration
+ \f578 +
+
+ +
+ + arrow-left +
+ ti ti-arrow-left
+ \ea19 +
+
+ +
+ + arrow-left-bar +
+ ti ti-arrow-left-bar
+ \ed9c +
+
+ +
+ + arrow-left-circle +
+ ti ti-arrow-left-circle
+ \ea18 +
+
+ +
+ + arrow-left-rhombus +
+ ti ti-arrow-left-rhombus
+ \f61e +
+
+ +
+ + arrow-left-right +
+ ti ti-arrow-left-right
+ \f04b +
+
+ +
+ + arrow-left-square +
+ ti ti-arrow-left-square
+ \ed9d +
+
+ +
+ + arrow-left-tail +
+ ti ti-arrow-left-tail
+ \ed9e +
+
+ +
+ + arrow-loop-left +
+ ti ti-arrow-loop-left
+ \ed9f +
+
+ +
+ + arrow-loop-left-2 +
+ ti ti-arrow-loop-left-2
+ \f04c +
+
+ +
+ + arrow-loop-right +
+ ti ti-arrow-loop-right
+ \eda0 +
+
+ +
+ + arrow-loop-right-2 +
+ ti ti-arrow-loop-right-2
+ \f04d +
+
+ +
+ + arrow-merge +
+ ti ti-arrow-merge
+ \f04e +
+
+ +
+ + arrow-merge-both +
+ ti ti-arrow-merge-both
+ \f23b +
+
+ +
+ + arrow-merge-left +
+ ti ti-arrow-merge-left
+ \f23c +
+
+ +
+ + arrow-merge-right +
+ ti ti-arrow-merge-right
+ \f23d +
+
+ +
+ + arrow-move-down +
+ ti ti-arrow-move-down
+ \f2ba +
+
+ +
+ + arrow-move-left +
+ ti ti-arrow-move-left
+ \f2bb +
+
+ +
+ + arrow-move-right +
+ ti ti-arrow-move-right
+ \f2bc +
+
+ +
+ + arrow-move-up +
+ ti ti-arrow-move-up
+ \f2bd +
+
+ +
+ + arrow-narrow-down +
+ ti ti-arrow-narrow-down
+ \ea1a +
+
+ +
+ + arrow-narrow-left +
+ ti ti-arrow-narrow-left
+ \ea1b +
+
+ +
+ + arrow-narrow-right +
+ ti ti-arrow-narrow-right
+ \ea1c +
+
+ +
+ + arrow-narrow-up +
+ ti ti-arrow-narrow-up
+ \ea1d +
+
+ +
+ + arrow-ramp-left +
+ ti ti-arrow-ramp-left
+ \ed3c +
+
+ +
+ + arrow-ramp-left-2 +
+ ti ti-arrow-ramp-left-2
+ \f04f +
+
+ +
+ + arrow-ramp-left-3 +
+ ti ti-arrow-ramp-left-3
+ \f050 +
+
+ +
+ + arrow-ramp-right +
+ ti ti-arrow-ramp-right
+ \ed3d +
+
+ +
+ + arrow-ramp-right-2 +
+ ti ti-arrow-ramp-right-2
+ \f051 +
+
+ +
+ + arrow-ramp-right-3 +
+ ti ti-arrow-ramp-right-3
+ \f052 +
+
+ +
+ + arrow-right +
+ ti ti-arrow-right
+ \ea1f +
+
+ +
+ + arrow-right-bar +
+ ti ti-arrow-right-bar
+ \eda1 +
+
+ +
+ + arrow-right-circle +
+ ti ti-arrow-right-circle
+ \ea1e +
+
+ +
+ + arrow-right-rhombus +
+ ti ti-arrow-right-rhombus
+ \f61f +
+
+ +
+ + arrow-right-square +
+ ti ti-arrow-right-square
+ \eda2 +
+
+ +
+ + arrow-right-tail +
+ ti ti-arrow-right-tail
+ \eda3 +
+
+ +
+ + arrow-rotary-first-left +
+ ti ti-arrow-rotary-first-left
+ \f053 +
+
+ +
+ + arrow-rotary-first-right +
+ ti ti-arrow-rotary-first-right
+ \f054 +
+
+ +
+ + arrow-rotary-last-left +
+ ti ti-arrow-rotary-last-left
+ \f055 +
+
+ +
+ + arrow-rotary-last-right +
+ ti ti-arrow-rotary-last-right
+ \f056 +
+
+ +
+ + arrow-rotary-left +
+ ti ti-arrow-rotary-left
+ \f057 +
+
+ +
+ + arrow-rotary-right +
+ ti ti-arrow-rotary-right
+ \f058 +
+
+ +
+ + arrow-rotary-straight +
+ ti ti-arrow-rotary-straight
+ \f059 +
+
+ +
+ + arrow-roundabout-left +
+ ti ti-arrow-roundabout-left
+ \f22b +
+
+ +
+ + arrow-roundabout-right +
+ ti ti-arrow-roundabout-right
+ \f22c +
+
+ +
+ + arrow-sharp-turn-left +
+ ti ti-arrow-sharp-turn-left
+ \f05a +
+
+ +
+ + arrow-sharp-turn-right +
+ ti ti-arrow-sharp-turn-right
+ \f05b +
+
+ +
+ + arrow-up +
+ ti ti-arrow-up
+ \ea25 +
+
+ +
+ + arrow-up-bar +
+ ti ti-arrow-up-bar
+ \eda4 +
+
+ +
+ + arrow-up-circle +
+ ti ti-arrow-up-circle
+ \ea20 +
+
+ +
+ + arrow-up-left +
+ ti ti-arrow-up-left
+ \ea22 +
+
+ +
+ + arrow-up-left-circle +
+ ti ti-arrow-up-left-circle
+ \ea21 +
+
+ +
+ + arrow-up-rhombus +
+ ti ti-arrow-up-rhombus
+ \f620 +
+
+ +
+ + arrow-up-right +
+ ti ti-arrow-up-right
+ \ea24 +
+
+ +
+ + arrow-up-right-circle +
+ ti ti-arrow-up-right-circle
+ \ea23 +
+
+ +
+ + arrow-up-square +
+ ti ti-arrow-up-square
+ \eda6 +
+
+ +
+ + arrow-up-tail +
+ ti ti-arrow-up-tail
+ \eda7 +
+
+ +
+ + arrow-wave-left-down +
+ ti ti-arrow-wave-left-down
+ \eda8 +
+
+ +
+ + arrow-wave-left-up +
+ ti ti-arrow-wave-left-up
+ \eda9 +
+
+ +
+ + arrow-wave-right-down +
+ ti ti-arrow-wave-right-down
+ \edaa +
+
+ +
+ + arrow-wave-right-up +
+ ti ti-arrow-wave-right-up
+ \edab +
+
+ +
+ + arrow-zig-zag +
+ ti ti-arrow-zig-zag
+ \f4a7 +
+
+ +
+ + arrows-cross +
+ ti ti-arrows-cross
+ \effe +
+
+ +
+ + arrows-diagonal +
+ ti ti-arrows-diagonal
+ \ea27 +
+
+ +
+ + arrows-diagonal-2 +
+ ti ti-arrows-diagonal-2
+ \ea26 +
+
+ +
+ + arrows-diagonal-minimize +
+ ti ti-arrows-diagonal-minimize
+ \ef39 +
+
+ +
+ + arrows-diagonal-minimize-2 +
+ ti ti-arrows-diagonal-minimize-2
+ \ef38 +
+
+ +
+ + arrows-diff +
+ ti ti-arrows-diff
+ \f296 +
+
+ +
+ + arrows-double-ne-sw +
+ ti ti-arrows-double-ne-sw
+ \edde +
+
+ +
+ + arrows-double-nw-se +
+ ti ti-arrows-double-nw-se
+ \eddf +
+
+ +
+ + arrows-double-se-nw +
+ ti ti-arrows-double-se-nw
+ \ede0 +
+
+ +
+ + arrows-double-sw-ne +
+ ti ti-arrows-double-sw-ne
+ \ede1 +
+
+ +
+ + arrows-down +
+ ti ti-arrows-down
+ \edad +
+
+ +
+ + arrows-down-up +
+ ti ti-arrows-down-up
+ \edac +
+
+ +
+ + arrows-exchange +
+ ti ti-arrows-exchange
+ \f1f4 +
+
+ +
+ + arrows-exchange-2 +
+ ti ti-arrows-exchange-2
+ \f1f3 +
+
+ +
+ + arrows-horizontal +
+ ti ti-arrows-horizontal
+ \eb59 +
+
+ +
+ + arrows-join +
+ ti ti-arrows-join
+ \edaf +
+
+ +
+ + arrows-join-2 +
+ ti ti-arrows-join-2
+ \edae +
+
+ +
+ + arrows-left +
+ ti ti-arrows-left
+ \edb1 +
+
+ +
+ + arrows-left-down +
+ ti ti-arrows-left-down
+ \ee00 +
+
+ +
+ + arrows-left-right +
+ ti ti-arrows-left-right
+ \edb0 +
+
+ +
+ + arrows-maximize +
+ ti ti-arrows-maximize
+ \ea28 +
+
+ +
+ + arrows-minimize +
+ ti ti-arrows-minimize
+ \ea29 +
+
+ +
+ + arrows-move +
+ ti ti-arrows-move
+ \f22f +
+
+ +
+ + arrows-move-horizontal +
+ ti ti-arrows-move-horizontal
+ \f22d +
+
+ +
+ + arrows-move-vertical +
+ ti ti-arrows-move-vertical
+ \f22e +
+
+ +
+ + arrows-random +
+ ti ti-arrows-random
+ \f095 +
+
+ +
+ + arrows-right +
+ ti ti-arrows-right
+ \edb3 +
+
+ +
+ + arrows-right-down +
+ ti ti-arrows-right-down
+ \ee01 +
+
+ +
+ + arrows-right-left +
+ ti ti-arrows-right-left
+ \edb2 +
+
+ +
+ + arrows-shuffle +
+ ti ti-arrows-shuffle
+ \f000 +
+
+ +
+ + arrows-shuffle-2 +
+ ti ti-arrows-shuffle-2
+ \efff +
+
+ +
+ + arrows-sort +
+ ti ti-arrows-sort
+ \eb5a +
+
+ +
+ + arrows-split +
+ ti ti-arrows-split
+ \edb5 +
+
+ +
+ + arrows-split-2 +
+ ti ti-arrows-split-2
+ \edb4 +
+
+ +
+ + arrows-transfer-down +
+ ti ti-arrows-transfer-down
+ \f2cc +
+
+ +
+ + arrows-transfer-up +
+ ti ti-arrows-transfer-up
+ \f2cd +
+
+ +
+ + arrows-up +
+ ti ti-arrows-up
+ \edb7 +
+
+ +
+ + arrows-up-down +
+ ti ti-arrows-up-down
+ \edb6 +
+
+ +
+ + arrows-up-left +
+ ti ti-arrows-up-left
+ \ee02 +
+
+ +
+ + arrows-up-right +
+ ti ti-arrows-up-right
+ \ee03 +
+
+ +
+ + arrows-vertical +
+ ti ti-arrows-vertical
+ \eb5b +
+
+ +
+ + artboard +
+ ti ti-artboard
+ \ea2a +
+
+ +
+ + artboard-off +
+ ti ti-artboard-off
+ \f0ae +
+
+ +
+ + article +
+ ti ti-article
+ \f1e2 +
+
+ +
+ + article-off +
+ ti ti-article-off
+ \f3bf +
+
+ +
+ + aspect-ratio +
+ ti ti-aspect-ratio
+ \ed30 +
+
+ +
+ + aspect-ratio-off +
+ ti ti-aspect-ratio-off
+ \f0af +
+
+ +
+ + assembly +
+ ti ti-assembly
+ \f24d +
+
+ +
+ + assembly-off +
+ ti ti-assembly-off
+ \f3c0 +
+
+ +
+ + asset +
+ ti ti-asset
+ \f1ce +
+
+ +
+ + asterisk +
+ ti ti-asterisk
+ \efd5 +
+
+ +
+ + asterisk-simple +
+ ti ti-asterisk-simple
+ \efd4 +
+
+ +
+ + at +
+ ti ti-at
+ \ea2b +
+
+ +
+ + at-off +
+ ti ti-at-off
+ \f0b0 +
+
+ +
+ + atom +
+ ti ti-atom
+ \eb79 +
+
+ +
+ + atom-2 +
+ ti ti-atom-2
+ \ebdf +
+
+ +
+ + atom-off +
+ ti ti-atom-off
+ \f0f9 +
+
+ +
+ + augmented-reality +
+ ti ti-augmented-reality
+ \f023 +
+
+ +
+ + augmented-reality-2 +
+ ti ti-augmented-reality-2
+ \f37e +
+
+ +
+ + augmented-reality-off +
+ ti ti-augmented-reality-off
+ \f3c1 +
+
+ +
+ + award +
+ ti ti-award
+ \ea2c +
+
+ +
+ + award-off +
+ ti ti-award-off
+ \f0fa +
+
+ +
+ + axe +
+ ti ti-axe
+ \ef9f +
+
+ +
+ + axis-x +
+ ti ti-axis-x
+ \ef45 +
+
+ +
+ + axis-y +
+ ti ti-axis-y
+ \ef46 +
+
+ +
+ + baby-bottle +
+ ti ti-baby-bottle
+ \f5d2 +
+
+ +
+ + baby-carriage +
+ ti ti-baby-carriage
+ \f05d +
+
+ +
+ + backhoe +
+ ti ti-backhoe
+ \ed86 +
+
+ +
+ + backpack +
+ ti ti-backpack
+ \ef47 +
+
+ +
+ + backpack-off +
+ ti ti-backpack-off
+ \f3c2 +
+
+ +
+ + backspace +
+ ti ti-backspace
+ \ea2d +
+
+ +
+ + badge +
+ ti ti-badge
+ \efc2 +
+
+ +
+ + badge-3d +
+ ti ti-badge-3d
+ \f555 +
+
+ +
+ + badge-4k +
+ ti ti-badge-4k
+ \f556 +
+
+ +
+ + badge-8k +
+ ti ti-badge-8k
+ \f557 +
+
+ +
+ + badge-ad +
+ ti ti-badge-ad
+ \f558 +
+
+ +
+ + badge-ar +
+ ti ti-badge-ar
+ \f559 +
+
+ +
+ + badge-cc +
+ ti ti-badge-cc
+ \f55a +
+
+ +
+ + badge-filled +
+ ti ti-badge-filled
+ \f667 +
+
+ +
+ + badge-hd +
+ ti ti-badge-hd
+ \f55b +
+
+ +
+ + badge-off +
+ ti ti-badge-off
+ \f0fb +
+
+ +
+ + badge-sd +
+ ti ti-badge-sd
+ \f55c +
+
+ +
+ + badge-tm +
+ ti ti-badge-tm
+ \f55d +
+
+ +
+ + badge-vo +
+ ti ti-badge-vo
+ \f55e +
+
+ +
+ + badge-vr +
+ ti ti-badge-vr
+ \f55f +
+
+ +
+ + badge-wc +
+ ti ti-badge-wc
+ \f560 +
+
+ +
+ + badges +
+ ti ti-badges
+ \efc3 +
+
+ +
+ + badges-off +
+ ti ti-badges-off
+ \f0fc +
+
+ +
+ + baguette +
+ ti ti-baguette
+ \f3a5 +
+
+ +
+ + ball-american-football +
+ ti ti-ball-american-football
+ \ee04 +
+
+ +
+ + ball-american-football-off +
+ ti ti-ball-american-football-off
+ \f3c3 +
+
+ +
+ + ball-baseball +
+ ti ti-ball-baseball
+ \efa0 +
+
+ +
+ + ball-basketball +
+ ti ti-ball-basketball
+ \ec28 +
+
+ +
+ + ball-bowling +
+ ti ti-ball-bowling
+ \ec29 +
+
+ +
+ + ball-football +
+ ti ti-ball-football
+ \ee06 +
+
+ +
+ + ball-football-off +
+ ti ti-ball-football-off
+ \ee05 +
+
+ +
+ + ball-tennis +
+ ti ti-ball-tennis
+ \ec2a +
+
+ +
+ + ball-volleyball +
+ ti ti-ball-volleyball
+ \ec2b +
+
+ +
+ + ballon +
+ ti ti-ballon
+ \ef3a +
+
+ +
+ + ballon-off +
+ ti ti-ballon-off
+ \f0fd +
+
+ +
+ + ballpen +
+ ti ti-ballpen
+ \f06e +
+
+ +
+ + ballpen-off +
+ ti ti-ballpen-off
+ \f0b1 +
+
+ +
+ + ban +
+ ti ti-ban
+ \ea2e +
+
+ +
+ + bandage +
+ ti ti-bandage
+ \eb7a +
+
+ +
+ + bandage-off +
+ ti ti-bandage-off
+ \f3c4 +
+
+ +
+ + barbell +
+ ti ti-barbell
+ \eff0 +
+
+ +
+ + barbell-off +
+ ti ti-barbell-off
+ \f0b2 +
+
+ +
+ + barcode +
+ ti ti-barcode
+ \ebc6 +
+
+ +
+ + barcode-off +
+ ti ti-barcode-off
+ \f0b3 +
+
+ +
+ + barrel +
+ ti ti-barrel
+ \f0b4 +
+
+ +
+ + barrel-off +
+ ti ti-barrel-off
+ \f0fe +
+
+ +
+ + barrier-block +
+ ti ti-barrier-block
+ \f00e +
+
+ +
+ + barrier-block-off +
+ ti ti-barrier-block-off
+ \f0b5 +
+
+ +
+ + baseline +
+ ti ti-baseline
+ \f024 +
+
+ +
+ + basket +
+ ti ti-basket
+ \ebe1 +
+
+ +
+ + basket-off +
+ ti ti-basket-off
+ \f0b6 +
+
+ +
+ + bat +
+ ti ti-bat
+ \f284 +
+
+ +
+ + bath +
+ ti ti-bath
+ \ef48 +
+
+ +
+ + bath-off +
+ ti ti-bath-off
+ \f0ff +
+
+ +
+ + battery +
+ ti ti-battery
+ \ea34 +
+
+ +
+ + battery-1 +
+ ti ti-battery-1
+ \ea2f +
+
+ +
+ + battery-2 +
+ ti ti-battery-2
+ \ea30 +
+
+ +
+ + battery-3 +
+ ti ti-battery-3
+ \ea31 +
+
+ +
+ + battery-4 +
+ ti ti-battery-4
+ \ea32 +
+
+ +
+ + battery-automotive +
+ ti ti-battery-automotive
+ \ee07 +
+
+ +
+ + battery-charging +
+ ti ti-battery-charging
+ \ea33 +
+
+ +
+ + battery-charging-2 +
+ ti ti-battery-charging-2
+ \ef3b +
+
+ +
+ + battery-eco +
+ ti ti-battery-eco
+ \ef3c +
+
+ +
+ + battery-filled +
+ ti ti-battery-filled
+ \f668 +
+
+ +
+ + battery-off +
+ ti ti-battery-off
+ \ed1c +
+
+ +
+ + beach +
+ ti ti-beach
+ \ef3d +
+
+ +
+ + beach-off +
+ ti ti-beach-off
+ \f0b7 +
+
+ +
+ + bed +
+ ti ti-bed
+ \eb5c +
+
+ +
+ + bed-off +
+ ti ti-bed-off
+ \f100 +
+
+ +
+ + beer +
+ ti ti-beer
+ \efa1 +
+
+ +
+ + beer-off +
+ ti ti-beer-off
+ \f101 +
+
+ +
+ + bell +
+ ti ti-bell
+ \ea35 +
+
+ +
+ + bell-filled +
+ ti ti-bell-filled
+ \f669 +
+
+ +
+ + bell-minus +
+ ti ti-bell-minus
+ \ede2 +
+
+ +
+ + bell-off +
+ ti ti-bell-off
+ \ece9 +
+
+ +
+ + bell-plus +
+ ti ti-bell-plus
+ \ede3 +
+
+ +
+ + bell-ringing +
+ ti ti-bell-ringing
+ \ed07 +
+
+ +
+ + bell-ringing-2 +
+ ti ti-bell-ringing-2
+ \ede4 +
+
+ +
+ + bell-school +
+ ti ti-bell-school
+ \f05e +
+
+ +
+ + bell-x +
+ ti ti-bell-x
+ \ede5 +
+
+ +
+ + bell-z +
+ ti ti-bell-z
+ \eff1 +
+
+ +
+ + beta +
+ ti ti-beta
+ \f544 +
+
+ +
+ + bible +
+ ti ti-bible
+ \efc4 +
+
+ +
+ + bike +
+ ti ti-bike
+ \ea36 +
+
+ +
+ + bike-off +
+ ti ti-bike-off
+ \f0b8 +
+
+ +
+ + binary +
+ ti ti-binary
+ \ee08 +
+
+ +
+ + binary-off +
+ ti ti-binary-off
+ \f3c5 +
+
+ +
+ + binary-tree +
+ ti ti-binary-tree
+ \f5d4 +
+
+ +
+ + binary-tree-2 +
+ ti ti-binary-tree-2
+ \f5d3 +
+
+ +
+ + biohazard +
+ ti ti-biohazard
+ \ecb8 +
+
+ +
+ + biohazard-off +
+ ti ti-biohazard-off
+ \f0b9 +
+
+ +
+ + blade +
+ ti ti-blade
+ \f4bd +
+
+ +
+ + bleach +
+ ti ti-bleach
+ \f2f3 +
+
+ +
+ + bleach-chlorine +
+ ti ti-bleach-chlorine
+ \f2f0 +
+
+ +
+ + bleach-no-chlorine +
+ ti ti-bleach-no-chlorine
+ \f2f1 +
+
+ +
+ + bleach-off +
+ ti ti-bleach-off
+ \f2f2 +
+
+ +
+ + blockquote +
+ ti ti-blockquote
+ \ee09 +
+
+ +
+ + bluetooth +
+ ti ti-bluetooth
+ \ea37 +
+
+ +
+ + bluetooth-connected +
+ ti ti-bluetooth-connected
+ \ecea +
+
+ +
+ + bluetooth-off +
+ ti ti-bluetooth-off
+ \eceb +
+
+ +
+ + bluetooth-x +
+ ti ti-bluetooth-x
+ \f081 +
+
+ +
+ + blur +
+ ti ti-blur
+ \ef8c +
+
+ +
+ + blur-off +
+ ti ti-blur-off
+ \f3c6 +
+
+ +
+ + bmp +
+ ti ti-bmp
+ \f3a6 +
+
+ +
+ + bold +
+ ti ti-bold
+ \eb7b +
+
+ +
+ + bold-off +
+ ti ti-bold-off
+ \f0ba +
+
+ +
+ + bolt +
+ ti ti-bolt
+ \ea38 +
+
+ +
+ + bolt-off +
+ ti ti-bolt-off
+ \ecec +
+
+ +
+ + bomb +
+ ti ti-bomb
+ \f59c +
+
+ +
+ + bone +
+ ti ti-bone
+ \edb8 +
+
+ +
+ + bone-off +
+ ti ti-bone-off
+ \f0bb +
+
+ +
+ + bong +
+ ti ti-bong
+ \f3a7 +
+
+ +
+ + bong-off +
+ ti ti-bong-off
+ \f3c7 +
+
+ +
+ + book +
+ ti ti-book
+ \ea39 +
+
+ +
+ + book-2 +
+ ti ti-book-2
+ \efc5 +
+
+ +
+ + book-download +
+ ti ti-book-download
+ \f070 +
+
+ +
+ + book-off +
+ ti ti-book-off
+ \f0bc +
+
+ +
+ + book-upload +
+ ti ti-book-upload
+ \f071 +
+
+ +
+ + bookmark +
+ ti ti-bookmark
+ \ea3a +
+
+ +
+ + bookmark-off +
+ ti ti-bookmark-off
+ \eced +
+
+ +
+ + bookmarks +
+ ti ti-bookmarks
+ \ed08 +
+
+ +
+ + bookmarks-off +
+ ti ti-bookmarks-off
+ \f0bd +
+
+ +
+ + books +
+ ti ti-books
+ \eff2 +
+
+ +
+ + books-off +
+ ti ti-books-off
+ \f0be +
+
+ +
+ + border-all +
+ ti ti-border-all
+ \ea3b +
+
+ +
+ + border-bottom +
+ ti ti-border-bottom
+ \ea3c +
+
+ +
+ + border-horizontal +
+ ti ti-border-horizontal
+ \ea3d +
+
+ +
+ + border-inner +
+ ti ti-border-inner
+ \ea3e +
+
+ +
+ + border-left +
+ ti ti-border-left
+ \ea3f +
+
+ +
+ + border-none +
+ ti ti-border-none
+ \ea40 +
+
+ +
+ + border-outer +
+ ti ti-border-outer
+ \ea41 +
+
+ +
+ + border-radius +
+ ti ti-border-radius
+ \eb7c +
+
+ +
+ + border-right +
+ ti ti-border-right
+ \ea42 +
+
+ +
+ + border-style +
+ ti ti-border-style
+ \ee0a +
+
+ +
+ + border-style-2 +
+ ti ti-border-style-2
+ \ef22 +
+
+ +
+ + border-top +
+ ti ti-border-top
+ \ea43 +
+
+ +
+ + border-vertical +
+ ti ti-border-vertical
+ \ea44 +
+
+ +
+ + bottle +
+ ti ti-bottle
+ \ef0b +
+
+ +
+ + bottle-off +
+ ti ti-bottle-off
+ \f3c8 +
+
+ +
+ + bounce-left +
+ ti ti-bounce-left
+ \f59d +
+
+ +
+ + bounce-right +
+ ti ti-bounce-right
+ \f59e +
+
+ +
+ + bow +
+ ti ti-bow
+ \f096 +
+
+ +
+ + bowl +
+ ti ti-bowl
+ \f4fa +
+
+ +
+ + box +
+ ti ti-box
+ \ea45 +
+
+ +
+ + box-align-bottom +
+ ti ti-box-align-bottom
+ \f2a8 +
+
+ +
+ + box-align-bottom-left +
+ ti ti-box-align-bottom-left
+ \f2ce +
+
+ +
+ + box-align-bottom-right +
+ ti ti-box-align-bottom-right
+ \f2cf +
+
+ +
+ + box-align-left +
+ ti ti-box-align-left
+ \f2a9 +
+
+ +
+ + box-align-right +
+ ti ti-box-align-right
+ \f2aa +
+
+ +
+ + box-align-top +
+ ti ti-box-align-top
+ \f2ab +
+
+ +
+ + box-align-top-left +
+ ti ti-box-align-top-left
+ \f2d0 +
+
+ +
+ + box-align-top-right +
+ ti ti-box-align-top-right
+ \f2d1 +
+
+ +
+ + box-margin +
+ ti ti-box-margin
+ \ee0b +
+
+ +
+ + box-model +
+ ti ti-box-model
+ \ee0c +
+
+ +
+ + box-model-2 +
+ ti ti-box-model-2
+ \ef23 +
+
+ +
+ + box-model-2-off +
+ ti ti-box-model-2-off
+ \f3c9 +
+
+ +
+ + box-model-off +
+ ti ti-box-model-off
+ \f3ca +
+
+ +
+ + box-multiple +
+ ti ti-box-multiple
+ \ee17 +
+
+ +
+ + box-multiple-0 +
+ ti ti-box-multiple-0
+ \ee0d +
+
+ +
+ + box-multiple-1 +
+ ti ti-box-multiple-1
+ \ee0e +
+
+ +
+ + box-multiple-2 +
+ ti ti-box-multiple-2
+ \ee0f +
+
+ +
+ + box-multiple-3 +
+ ti ti-box-multiple-3
+ \ee10 +
+
+ +
+ + box-multiple-4 +
+ ti ti-box-multiple-4
+ \ee11 +
+
+ +
+ + box-multiple-5 +
+ ti ti-box-multiple-5
+ \ee12 +
+
+ +
+ + box-multiple-6 +
+ ti ti-box-multiple-6
+ \ee13 +
+
+ +
+ + box-multiple-7 +
+ ti ti-box-multiple-7
+ \ee14 +
+
+ +
+ + box-multiple-8 +
+ ti ti-box-multiple-8
+ \ee15 +
+
+ +
+ + box-multiple-9 +
+ ti ti-box-multiple-9
+ \ee16 +
+
+ +
+ + box-off +
+ ti ti-box-off
+ \f102 +
+
+ +
+ + box-padding +
+ ti ti-box-padding
+ \ee18 +
+
+ +
+ + box-seam +
+ ti ti-box-seam
+ \f561 +
+
+ +
+ + braces +
+ ti ti-braces
+ \ebcc +
+
+ +
+ + braces-off +
+ ti ti-braces-off
+ \f0bf +
+
+ +
+ + brackets +
+ ti ti-brackets
+ \ebcd +
+
+ +
+ + brackets-contain +
+ ti ti-brackets-contain
+ \f1e5 +
+
+ +
+ + brackets-contain-end +
+ ti ti-brackets-contain-end
+ \f1e3 +
+
+ +
+ + brackets-contain-start +
+ ti ti-brackets-contain-start
+ \f1e4 +
+
+ +
+ + brackets-off +
+ ti ti-brackets-off
+ \f0c0 +
+
+ +
+ + braile +
+ ti ti-braile
+ \f545 +
+
+ +
+ + brain +
+ ti ti-brain
+ \f59f +
+
+ +
+ + brand-4chan +
+ ti ti-brand-4chan
+ \f494 +
+
+ +
+ + brand-abstract +
+ ti ti-brand-abstract
+ \f495 +
+
+ +
+ + brand-adobe +
+ ti ti-brand-adobe
+ \f0dc +
+
+ +
+ + brand-adonis-js +
+ ti ti-brand-adonis-js
+ \f496 +
+
+ +
+ + brand-airbnb +
+ ti ti-brand-airbnb
+ \ed68 +
+
+ +
+ + brand-airtable +
+ ti ti-brand-airtable
+ \ef6a +
+
+ +
+ + brand-algolia +
+ ti ti-brand-algolia
+ \f390 +
+
+ +
+ + brand-alpine-js +
+ ti ti-brand-alpine-js
+ \f324 +
+
+ +
+ + brand-amazon +
+ ti ti-brand-amazon
+ \f230 +
+
+ +
+ + brand-amd +
+ ti ti-brand-amd
+ \f653 +
+
+ +
+ + brand-amigo +
+ ti ti-brand-amigo
+ \f5f9 +
+
+ +
+ + brand-amongus +
+ ti ti-brand-amongus
+ \f205 +
+
+ +
+ + brand-android +
+ ti ti-brand-android
+ \ec16 +
+
+ +
+ + brand-angular +
+ ti ti-brand-angular
+ \ef6b +
+
+ +
+ + brand-ao3 +
+ ti ti-brand-ao3
+ \f5e8 +
+
+ +
+ + brand-appgallery +
+ ti ti-brand-appgallery
+ \f231 +
+
+ +
+ + brand-apple +
+ ti ti-brand-apple
+ \ec17 +
+
+ +
+ + brand-apple-arcade +
+ ti ti-brand-apple-arcade
+ \ed69 +
+
+ +
+ + brand-apple-podcast +
+ ti ti-brand-apple-podcast
+ \f1e6 +
+
+ +
+ + brand-appstore +
+ ti ti-brand-appstore
+ \ed24 +
+
+ +
+ + brand-asana +
+ ti ti-brand-asana
+ \edc5 +
+
+ +
+ + brand-backbone +
+ ti ti-brand-backbone
+ \f325 +
+
+ +
+ + brand-badoo +
+ ti ti-brand-badoo
+ \f206 +
+
+ +
+ + brand-baidu +
+ ti ti-brand-baidu
+ \f5e9 +
+
+ +
+ + brand-bandcamp +
+ ti ti-brand-bandcamp
+ \f207 +
+
+ +
+ + brand-bandlab +
+ ti ti-brand-bandlab
+ \f5fa +
+
+ +
+ + brand-beats +
+ ti ti-brand-beats
+ \f208 +
+
+ +
+ + brand-behance +
+ ti ti-brand-behance
+ \ec6e +
+
+ +
+ + brand-binance +
+ ti ti-brand-binance
+ \f5a0 +
+
+ +
+ + brand-bing +
+ ti ti-brand-bing
+ \edc6 +
+
+ +
+ + brand-bitbucket +
+ ti ti-brand-bitbucket
+ \edc7 +
+
+ +
+ + brand-blackbery +
+ ti ti-brand-blackbery
+ \f568 +
+
+ +
+ + brand-blender +
+ ti ti-brand-blender
+ \f326 +
+
+ +
+ + brand-blogger +
+ ti ti-brand-blogger
+ \f35a +
+
+ +
+ + brand-booking +
+ ti ti-brand-booking
+ \edc8 +
+
+ +
+ + brand-bootstrap +
+ ti ti-brand-bootstrap
+ \ef3e +
+
+ +
+ + brand-bulma +
+ ti ti-brand-bulma
+ \f327 +
+
+ +
+ + brand-bumble +
+ ti ti-brand-bumble
+ \f5fb +
+
+ +
+ + brand-bunpo +
+ ti ti-brand-bunpo
+ \f4cf +
+
+ +
+ + brand-c-sharp +
+ ti ti-brand-c-sharp
+ \f003 +
+
+ +
+ + brand-campaignmonitor +
+ ti ti-brand-campaignmonitor
+ \f328 +
+
+ +
+ + brand-carbon +
+ ti ti-brand-carbon
+ \f348 +
+
+ +
+ + brand-cashapp +
+ ti ti-brand-cashapp
+ \f391 +
+
+ +
+ + brand-chrome +
+ ti ti-brand-chrome
+ \ec18 +
+
+ +
+ + brand-citymapper +
+ ti ti-brand-citymapper
+ \f5fc +
+
+ +
+ + brand-codecov +
+ ti ti-brand-codecov
+ \f329 +
+
+ +
+ + brand-codepen +
+ ti ti-brand-codepen
+ \ec6f +
+
+ +
+ + brand-codesandbox +
+ ti ti-brand-codesandbox
+ \ed6a +
+
+ +
+ + brand-cohost +
+ ti ti-brand-cohost
+ \f5d5 +
+
+ +
+ + brand-coinbase +
+ ti ti-brand-coinbase
+ \f209 +
+
+ +
+ + brand-comedy-central +
+ ti ti-brand-comedy-central
+ \f217 +
+
+ +
+ + brand-coreos +
+ ti ti-brand-coreos
+ \f5fd +
+
+ +
+ + brand-couchdb +
+ ti ti-brand-couchdb
+ \f60f +
+
+ +
+ + brand-couchsurfing +
+ ti ti-brand-couchsurfing
+ \f392 +
+
+ +
+ + brand-cpp +
+ ti ti-brand-cpp
+ \f5fe +
+
+ +
+ + brand-css3 +
+ ti ti-brand-css3
+ \ed6b +
+
+ +
+ + brand-ctemplar +
+ ti ti-brand-ctemplar
+ \f4d0 +
+
+ +
+ + brand-cucumber +
+ ti ti-brand-cucumber
+ \ef6c +
+
+ +
+ + brand-cupra +
+ ti ti-brand-cupra
+ \f4d1 +
+
+ +
+ + brand-cypress +
+ ti ti-brand-cypress
+ \f333 +
+
+ +
+ + brand-d3 +
+ ti ti-brand-d3
+ \f24e +
+
+ +
+ + brand-days-counter +
+ ti ti-brand-days-counter
+ \f4d2 +
+
+ +
+ + brand-dcos +
+ ti ti-brand-dcos
+ \f32a +
+
+ +
+ + brand-debian +
+ ti ti-brand-debian
+ \ef57 +
+
+ +
+ + brand-deliveroo +
+ ti ti-brand-deliveroo
+ \f4d3 +
+
+ +
+ + brand-deno +
+ ti ti-brand-deno
+ \f24f +
+
+ +
+ + brand-denodo +
+ ti ti-brand-denodo
+ \f610 +
+
+ +
+ + brand-deviantart +
+ ti ti-brand-deviantart
+ \ecfb +
+
+ +
+ + brand-dingtalk +
+ ti ti-brand-dingtalk
+ \f5ea +
+
+ +
+ + brand-discord +
+ ti ti-brand-discord
+ \ece3 +
+
+ +
+ + brand-disney +
+ ti ti-brand-disney
+ \f20a +
+
+ +
+ + brand-disqus +
+ ti ti-brand-disqus
+ \edc9 +
+
+ +
+ + brand-django +
+ ti ti-brand-django
+ \f349 +
+
+ +
+ + brand-docker +
+ ti ti-brand-docker
+ \edca +
+
+ +
+ + brand-doctrine +
+ ti ti-brand-doctrine
+ \ef6d +
+
+ +
+ + brand-dolby-digital +
+ ti ti-brand-dolby-digital
+ \f4d4 +
+
+ +
+ + brand-douban +
+ ti ti-brand-douban
+ \f5ff +
+
+ +
+ + brand-dribbble +
+ ti ti-brand-dribbble
+ \ec19 +
+
+ +
+ + brand-drops +
+ ti ti-brand-drops
+ \f4d5 +
+
+ +
+ + brand-drupal +
+ ti ti-brand-drupal
+ \f393 +
+
+ +
+ + brand-edge +
+ ti ti-brand-edge
+ \ecfc +
+
+ +
+ + brand-elastic +
+ ti ti-brand-elastic
+ \f611 +
+
+ +
+ + brand-ember +
+ ti ti-brand-ember
+ \f497 +
+
+ +
+ + brand-envato +
+ ti ti-brand-envato
+ \f394 +
+
+ +
+ + brand-etsy +
+ ti ti-brand-etsy
+ \f654 +
+
+ +
+ + brand-evernote +
+ ti ti-brand-evernote
+ \f600 +
+
+ +
+ + brand-facebook +
+ ti ti-brand-facebook
+ \ec1a +
+
+ +
+ + brand-figma +
+ ti ti-brand-figma
+ \ec93 +
+
+ +
+ + brand-finder +
+ ti ti-brand-finder
+ \f218 +
+
+ +
+ + brand-firebase +
+ ti ti-brand-firebase
+ \ef6e +
+
+ +
+ + brand-firefox +
+ ti ti-brand-firefox
+ \ecfd +
+
+ +
+ + brand-flickr +
+ ti ti-brand-flickr
+ \ecfe +
+
+ +
+ + brand-flightradar24 +
+ ti ti-brand-flightradar24
+ \f4d6 +
+
+ +
+ + brand-flipboard +
+ ti ti-brand-flipboard
+ \f20b +
+
+ +
+ + brand-flutter +
+ ti ti-brand-flutter
+ \f395 +
+
+ +
+ + brand-fortnite +
+ ti ti-brand-fortnite
+ \f260 +
+
+ +
+ + brand-foursquare +
+ ti ti-brand-foursquare
+ \ecff +
+
+ +
+ + brand-framer +
+ ti ti-brand-framer
+ \ec1b +
+
+ +
+ + brand-funimation +
+ ti ti-brand-funimation
+ \f655 +
+
+ +
+ + brand-gatsby +
+ ti ti-brand-gatsby
+ \f396 +
+
+ +
+ + brand-git +
+ ti ti-brand-git
+ \ef6f +
+
+ +
+ + brand-github +
+ ti ti-brand-github
+ \ec1c +
+
+ +
+ + brand-github-copilot +
+ ti ti-brand-github-copilot
+ \f4a8 +
+
+ +
+ + brand-gitlab +
+ ti ti-brand-gitlab
+ \ec1d +
+
+ +
+ + brand-gmail +
+ ti ti-brand-gmail
+ \efa2 +
+
+ +
+ + brand-google +
+ ti ti-brand-google
+ \ec1f +
+
+ +
+ + brand-google-analytics +
+ ti ti-brand-google-analytics
+ \edcb +
+
+ +
+ + brand-google-big-query +
+ ti ti-brand-google-big-query
+ \f612 +
+
+ +
+ + brand-google-drive +
+ ti ti-brand-google-drive
+ \ec1e +
+
+ +
+ + brand-google-fit +
+ ti ti-brand-google-fit
+ \f297 +
+
+ +
+ + brand-google-home +
+ ti ti-brand-google-home
+ \f601 +
+
+ +
+ + brand-google-one +
+ ti ti-brand-google-one
+ \f232 +
+
+ +
+ + brand-google-photos +
+ ti ti-brand-google-photos
+ \f20c +
+
+ +
+ + brand-google-play +
+ ti ti-brand-google-play
+ \ed25 +
+
+ +
+ + brand-google-podcasts +
+ ti ti-brand-google-podcasts
+ \f656 +
+
+ +
+ + brand-grammarly +
+ ti ti-brand-grammarly
+ \f32b +
+
+ +
+ + brand-graphql +
+ ti ti-brand-graphql
+ \f32c +
+
+ +
+ + brand-gravatar +
+ ti ti-brand-gravatar
+ \edcc +
+
+ +
+ + brand-grindr +
+ ti ti-brand-grindr
+ \f20d +
+
+ +
+ + brand-guardian +
+ ti ti-brand-guardian
+ \f4fb +
+
+ +
+ + brand-gumroad +
+ ti ti-brand-gumroad
+ \f5d6 +
+
+ +
+ + brand-hbo +
+ ti ti-brand-hbo
+ \f657 +
+
+ +
+ + brand-headlessui +
+ ti ti-brand-headlessui
+ \f32d +
+
+ +
+ + brand-hipchat +
+ ti ti-brand-hipchat
+ \edcd +
+
+ +
+ + brand-html5 +
+ ti ti-brand-html5
+ \ed6c +
+
+ +
+ + brand-inertia +
+ ti ti-brand-inertia
+ \f34a +
+
+ +
+ + brand-instagram +
+ ti ti-brand-instagram
+ \ec20 +
+
+ +
+ + brand-intercom +
+ ti ti-brand-intercom
+ \f1cf +
+
+ +
+ + brand-javascript +
+ ti ti-brand-javascript
+ \ef0c +
+
+ +
+ + brand-kickstarter +
+ ti ti-brand-kickstarter
+ \edce +
+
+ +
+ + brand-kotlin +
+ ti ti-brand-kotlin
+ \ed6d +
+
+ +
+ + brand-laravel +
+ ti ti-brand-laravel
+ \f34b +
+
+ +
+ + brand-lastfm +
+ ti ti-brand-lastfm
+ \f001 +
+
+ +
+ + brand-linkedin +
+ ti ti-brand-linkedin
+ \ec8c +
+
+ +
+ + brand-linktree +
+ ti ti-brand-linktree
+ \f1e7 +
+
+ +
+ + brand-linqpad +
+ ti ti-brand-linqpad
+ \f562 +
+
+ +
+ + brand-loom +
+ ti ti-brand-loom
+ \ef70 +
+
+ +
+ + brand-mailgun +
+ ti ti-brand-mailgun
+ \f32e +
+
+ +
+ + brand-mantine +
+ ti ti-brand-mantine
+ \f32f +
+
+ +
+ + brand-mastercard +
+ ti ti-brand-mastercard
+ \ef49 +
+
+ +
+ + brand-mastodon +
+ ti ti-brand-mastodon
+ \f250 +
+
+ +
+ + brand-matrix +
+ ti ti-brand-matrix
+ \f5eb +
+
+ +
+ + brand-mcdonalds +
+ ti ti-brand-mcdonalds
+ \f251 +
+
+ +
+ + brand-medium +
+ ti ti-brand-medium
+ \ec70 +
+
+ +
+ + brand-mercedes +
+ ti ti-brand-mercedes
+ \f072 +
+
+ +
+ + brand-messenger +
+ ti ti-brand-messenger
+ \ec71 +
+
+ +
+ + brand-meta +
+ ti ti-brand-meta
+ \efb0 +
+
+ +
+ + brand-miniprogram +
+ ti ti-brand-miniprogram
+ \f602 +
+
+ +
+ + brand-mixpanel +
+ ti ti-brand-mixpanel
+ \f397 +
+
+ +
+ + brand-monday +
+ ti ti-brand-monday
+ \f219 +
+
+ +
+ + brand-mongodb +
+ ti ti-brand-mongodb
+ \f613 +
+
+ +
+ + brand-my-oppo +
+ ti ti-brand-my-oppo
+ \f4d7 +
+
+ +
+ + brand-mysql +
+ ti ti-brand-mysql
+ \f614 +
+
+ +
+ + brand-national-geographic +
+ ti ti-brand-national-geographic
+ \f603 +
+
+ +
+ + brand-nem +
+ ti ti-brand-nem
+ \f5a1 +
+
+ +
+ + brand-netbeans +
+ ti ti-brand-netbeans
+ \ef71 +
+
+ +
+ + brand-netease-music +
+ ti ti-brand-netease-music
+ \f604 +
+
+ +
+ + brand-netflix +
+ ti ti-brand-netflix
+ \edcf +
+
+ +
+ + brand-nexo +
+ ti ti-brand-nexo
+ \f5a2 +
+
+ +
+ + brand-nextcloud +
+ ti ti-brand-nextcloud
+ \f4d8 +
+
+ +
+ + brand-nextjs +
+ ti ti-brand-nextjs
+ \f0dd +
+
+ +
+ + brand-nord-vpn +
+ ti ti-brand-nord-vpn
+ \f37f +
+
+ +
+ + brand-notion +
+ ti ti-brand-notion
+ \ef7b +
+
+ +
+ + brand-npm +
+ ti ti-brand-npm
+ \f569 +
+
+ +
+ + brand-nuxt +
+ ti ti-brand-nuxt
+ \f0de +
+
+ +
+ + brand-nytimes +
+ ti ti-brand-nytimes
+ \ef8d +
+
+ +
+ + brand-office +
+ ti ti-brand-office
+ \f398 +
+
+ +
+ + brand-ok-ru +
+ ti ti-brand-ok-ru
+ \f399 +
+
+ +
+ + brand-onedrive +
+ ti ti-brand-onedrive
+ \f5d7 +
+
+ +
+ + brand-onlyfans +
+ ti ti-brand-onlyfans
+ \f605 +
+
+ +
+ + brand-open-source +
+ ti ti-brand-open-source
+ \edd0 +
+
+ +
+ + brand-openvpn +
+ ti ti-brand-openvpn
+ \f39a +
+
+ +
+ + brand-opera +
+ ti ti-brand-opera
+ \ec21 +
+
+ +
+ + brand-pagekit +
+ ti ti-brand-pagekit
+ \edd1 +
+
+ +
+ + brand-patreon +
+ ti ti-brand-patreon
+ \edd2 +
+
+ +
+ + brand-paypal +
+ ti ti-brand-paypal
+ \ec22 +
+
+ +
+ + brand-paypay +
+ ti ti-brand-paypay
+ \f5ec +
+
+ +
+ + brand-peanut +
+ ti ti-brand-peanut
+ \f39b +
+
+ +
+ + brand-pepsi +
+ ti ti-brand-pepsi
+ \f261 +
+
+ +
+ + brand-php +
+ ti ti-brand-php
+ \ef72 +
+
+ +
+ + brand-picsart +
+ ti ti-brand-picsart
+ \f4d9 +
+
+ +
+ + brand-pinterest +
+ ti ti-brand-pinterest
+ \ec8d +
+
+ +
+ + brand-pocket +
+ ti ti-brand-pocket
+ \ed00 +
+
+ +
+ + brand-polymer +
+ ti ti-brand-polymer
+ \f498 +
+
+ +
+ + brand-powershell +
+ ti ti-brand-powershell
+ \f5ed +
+
+ +
+ + brand-prisma +
+ ti ti-brand-prisma
+ \f499 +
+
+ +
+ + brand-producthunt +
+ ti ti-brand-producthunt
+ \edd3 +
+
+ +
+ + brand-pushbullet +
+ ti ti-brand-pushbullet
+ \f330 +
+
+ +
+ + brand-pushover +
+ ti ti-brand-pushover
+ \f20e +
+
+ +
+ + brand-python +
+ ti ti-brand-python
+ \ed01 +
+
+ +
+ + brand-qq +
+ ti ti-brand-qq
+ \f606 +
+
+ +
+ + brand-react +
+ ti ti-brand-react
+ \f34c +
+
+ +
+ + brand-react-native +
+ ti ti-brand-react-native
+ \ef73 +
+
+ +
+ + brand-reason +
+ ti ti-brand-reason
+ \f49a +
+
+ +
+ + brand-reddit +
+ ti ti-brand-reddit
+ \ec8e +
+
+ +
+ + brand-redhat +
+ ti ti-brand-redhat
+ \f331 +
+
+ +
+ + brand-redux +
+ ti ti-brand-redux
+ \f3a8 +
+
+ +
+ + brand-revolut +
+ ti ti-brand-revolut
+ \f4da +
+
+ +
+ + brand-safari +
+ ti ti-brand-safari
+ \ec23 +
+
+ +
+ + brand-samsungpass +
+ ti ti-brand-samsungpass
+ \f4db +
+
+ +
+ + brand-sass +
+ ti ti-brand-sass
+ \edd4 +
+
+ +
+ + brand-sentry +
+ ti ti-brand-sentry
+ \edd5 +
+
+ +
+ + brand-sharik +
+ ti ti-brand-sharik
+ \f4dc +
+
+ +
+ + brand-shazam +
+ ti ti-brand-shazam
+ \edd6 +
+
+ +
+ + brand-shopee +
+ ti ti-brand-shopee
+ \f252 +
+
+ +
+ + brand-sketch +
+ ti ti-brand-sketch
+ \ec24 +
+
+ +
+ + brand-skype +
+ ti ti-brand-skype
+ \ed02 +
+
+ +
+ + brand-slack +
+ ti ti-brand-slack
+ \ec72 +
+
+ +
+ + brand-snapchat +
+ ti ti-brand-snapchat
+ \ec25 +
+
+ +
+ + brand-snapseed +
+ ti ti-brand-snapseed
+ \f253 +
+
+ +
+ + brand-snowflake +
+ ti ti-brand-snowflake
+ \f615 +
+
+ +
+ + brand-socket-io +
+ ti ti-brand-socket-io
+ \f49b +
+
+ +
+ + brand-solidjs +
+ ti ti-brand-solidjs
+ \f5ee +
+
+ +
+ + brand-soundcloud +
+ ti ti-brand-soundcloud
+ \ed6e +
+
+ +
+ + brand-spacehey +
+ ti ti-brand-spacehey
+ \f4fc +
+
+ +
+ + brand-spotify +
+ ti ti-brand-spotify
+ \ed03 +
+
+ +
+ + brand-stackoverflow +
+ ti ti-brand-stackoverflow
+ \ef58 +
+
+ +
+ + brand-stackshare +
+ ti ti-brand-stackshare
+ \f607 +
+
+ +
+ + brand-steam +
+ ti ti-brand-steam
+ \ed6f +
+
+ +
+ + brand-storybook +
+ ti ti-brand-storybook
+ \f332 +
+
+ +
+ + brand-storytel +
+ ti ti-brand-storytel
+ \f608 +
+
+ +
+ + brand-strava +
+ ti ti-brand-strava
+ \f254 +
+
+ +
+ + brand-stripe +
+ ti ti-brand-stripe
+ \edd7 +
+
+ +
+ + brand-sublime-text +
+ ti ti-brand-sublime-text
+ \ef74 +
+
+ +
+ + brand-superhuman +
+ ti ti-brand-superhuman
+ \f50c +
+
+ +
+ + brand-supernova +
+ ti ti-brand-supernova
+ \f49c +
+
+ +
+ + brand-surfshark +
+ ti ti-brand-surfshark
+ \f255 +
+
+ +
+ + brand-svelte +
+ ti ti-brand-svelte
+ \f0df +
+
+ +
+ + brand-symfony +
+ ti ti-brand-symfony
+ \f616 +
+
+ +
+ + brand-tabler +
+ ti ti-brand-tabler
+ \ec8f +
+
+ +
+ + brand-tailwind +
+ ti ti-brand-tailwind
+ \eca1 +
+
+ +
+ + brand-taobao +
+ ti ti-brand-taobao
+ \f5ef +
+
+ +
+ + brand-ted +
+ ti ti-brand-ted
+ \f658 +
+
+ +
+ + brand-telegram +
+ ti ti-brand-telegram
+ \ec26 +
+
+ +
+ + brand-tether +
+ ti ti-brand-tether
+ \f5a3 +
+
+ +
+ + brand-threejs +
+ ti ti-brand-threejs
+ \f5f0 +
+
+ +
+ + brand-tidal +
+ ti ti-brand-tidal
+ \ed70 +
+
+ +
+ + brand-tiktok +
+ ti ti-brand-tiktok
+ \ec73 +
+
+ +
+ + brand-tinder +
+ ti ti-brand-tinder
+ \ed71 +
+
+ +
+ + brand-topbuzz +
+ ti ti-brand-topbuzz
+ \f50d +
+
+ +
+ + brand-torchain +
+ ti ti-brand-torchain
+ \f5a4 +
+
+ +
+ + brand-toyota +
+ ti ti-brand-toyota
+ \f262 +
+
+ +
+ + brand-trello +
+ ti ti-brand-trello
+ \f39d +
+
+ +
+ + brand-tripadvisor +
+ ti ti-brand-tripadvisor
+ \f002 +
+
+ +
+ + brand-tumblr +
+ ti ti-brand-tumblr
+ \ed04 +
+
+ +
+ + brand-twilio +
+ ti ti-brand-twilio
+ \f617 +
+
+ +
+ + brand-twitch +
+ ti ti-brand-twitch
+ \ed05 +
+
+ +
+ + brand-twitter +
+ ti ti-brand-twitter
+ \ec27 +
+
+ +
+ + brand-typescript +
+ ti ti-brand-typescript
+ \f5f1 +
+
+ +
+ + brand-uber +
+ ti ti-brand-uber
+ \ef75 +
+
+ +
+ + brand-ubuntu +
+ ti ti-brand-ubuntu
+ \ef59 +
+
+ +
+ + brand-unity +
+ ti ti-brand-unity
+ \f49d +
+
+ +
+ + brand-unsplash +
+ ti ti-brand-unsplash
+ \edd8 +
+
+ +
+ + brand-upwork +
+ ti ti-brand-upwork
+ \f39e +
+
+ +
+ + brand-valorant +
+ ti ti-brand-valorant
+ \f39f +
+
+ +
+ + brand-vercel +
+ ti ti-brand-vercel
+ \ef24 +
+
+ +
+ + brand-vimeo +
+ ti ti-brand-vimeo
+ \ed06 +
+
+ +
+ + brand-vinted +
+ ti ti-brand-vinted
+ \f20f +
+
+ +
+ + brand-visa +
+ ti ti-brand-visa
+ \f380 +
+
+ +
+ + brand-visual-studio +
+ ti ti-brand-visual-studio
+ \ef76 +
+
+ +
+ + brand-vite +
+ ti ti-brand-vite
+ \f5f2 +
+
+ +
+ + brand-vivaldi +
+ ti ti-brand-vivaldi
+ \f210 +
+
+ +
+ + brand-vk +
+ ti ti-brand-vk
+ \ed72 +
+
+ +
+ + brand-volkswagen +
+ ti ti-brand-volkswagen
+ \f50e +
+
+ +
+ + brand-vsco +
+ ti ti-brand-vsco
+ \f334 +
+
+ +
+ + brand-vscode +
+ ti ti-brand-vscode
+ \f3a0 +
+
+ +
+ + brand-vue +
+ ti ti-brand-vue
+ \f0e0 +
+
+ +
+ + brand-walmart +
+ ti ti-brand-walmart
+ \f211 +
+
+ +
+ + brand-waze +
+ ti ti-brand-waze
+ \f5d8 +
+
+ +
+ + brand-webflow +
+ ti ti-brand-webflow
+ \f2d2 +
+
+ +
+ + brand-wechat +
+ ti ti-brand-wechat
+ \f5f3 +
+
+ +
+ + brand-weibo +
+ ti ti-brand-weibo
+ \f609 +
+
+ +
+ + brand-whatsapp +
+ ti ti-brand-whatsapp
+ \ec74 +
+
+ +
+ + brand-windows +
+ ti ti-brand-windows
+ \ecd8 +
+
+ +
+ + brand-windy +
+ ti ti-brand-windy
+ \f4dd +
+
+ +
+ + brand-wish +
+ ti ti-brand-wish
+ \f212 +
+
+ +
+ + brand-wix +
+ ti ti-brand-wix
+ \f3a1 +
+
+ +
+ + brand-wordpress +
+ ti ti-brand-wordpress
+ \f2d3 +
+
+ +
+ + brand-xbox +
+ ti ti-brand-xbox
+ \f298 +
+
+ +
+ + brand-xing +
+ ti ti-brand-xing
+ \f21a +
+
+ +
+ + brand-yahoo +
+ ti ti-brand-yahoo
+ \ed73 +
+
+ +
+ + brand-yatse +
+ ti ti-brand-yatse
+ \f213 +
+
+ +
+ + brand-ycombinator +
+ ti ti-brand-ycombinator
+ \edd9 +
+
+ +
+ + brand-youtube +
+ ti ti-brand-youtube
+ \ec90 +
+
+ +
+ + brand-youtube-kids +
+ ti ti-brand-youtube-kids
+ \f214 +
+
+ +
+ + brand-zalando +
+ ti ti-brand-zalando
+ \f49e +
+
+ +
+ + brand-zapier +
+ ti ti-brand-zapier
+ \f49f +
+
+ +
+ + brand-zeit +
+ ti ti-brand-zeit
+ \f335 +
+
+ +
+ + brand-zhihu +
+ ti ti-brand-zhihu
+ \f60a +
+
+ +
+ + brand-zoom +
+ ti ti-brand-zoom
+ \f215 +
+
+ +
+ + brand-zulip +
+ ti ti-brand-zulip
+ \f4de +
+
+ +
+ + brand-zwift +
+ ti ti-brand-zwift
+ \f216 +
+
+ +
+ + bread +
+ ti ti-bread
+ \efa3 +
+
+ +
+ + bread-off +
+ ti ti-bread-off
+ \f3cb +
+
+ +
+ + briefcase +
+ ti ti-briefcase
+ \ea46 +
+
+ +
+ + briefcase-off +
+ ti ti-briefcase-off
+ \f3cc +
+
+ +
+ + brightness +
+ ti ti-brightness
+ \eb7f +
+
+ +
+ + brightness-2 +
+ ti ti-brightness-2
+ \ee19 +
+
+ +
+ + brightness-down +
+ ti ti-brightness-down
+ \eb7d +
+
+ +
+ + brightness-half +
+ ti ti-brightness-half
+ \ee1a +
+
+ +
+ + brightness-off +
+ ti ti-brightness-off
+ \f3cd +
+
+ +
+ + brightness-up +
+ ti ti-brightness-up
+ \eb7e +
+
+ +
+ + broadcast +
+ ti ti-broadcast
+ \f1e9 +
+
+ +
+ + broadcast-off +
+ ti ti-broadcast-off
+ \f1e8 +
+
+ +
+ + browser +
+ ti ti-browser
+ \ebb7 +
+
+ +
+ + browser-check +
+ ti ti-browser-check
+ \efd6 +
+
+ +
+ + browser-off +
+ ti ti-browser-off
+ \f0c1 +
+
+ +
+ + browser-plus +
+ ti ti-browser-plus
+ \efd7 +
+
+ +
+ + browser-x +
+ ti ti-browser-x
+ \efd8 +
+
+ +
+ + brush +
+ ti ti-brush
+ \ebb8 +
+
+ +
+ + brush-off +
+ ti ti-brush-off
+ \f0c2 +
+
+ +
+ + bucket +
+ ti ti-bucket
+ \ea47 +
+
+ +
+ + bucket-droplet +
+ ti ti-bucket-droplet
+ \f56a +
+
+ +
+ + bucket-off +
+ ti ti-bucket-off
+ \f103 +
+
+ +
+ + bug +
+ ti ti-bug
+ \ea48 +
+
+ +
+ + bug-off +
+ ti ti-bug-off
+ \f0c3 +
+
+ +
+ + building +
+ ti ti-building
+ \ea4f +
+
+ +
+ + building-arch +
+ ti ti-building-arch
+ \ea49 +
+
+ +
+ + building-bank +
+ ti ti-building-bank
+ \ebe2 +
+
+ +
+ + building-bridge +
+ ti ti-building-bridge
+ \ea4b +
+
+ +
+ + building-bridge-2 +
+ ti ti-building-bridge-2
+ \ea4a +
+
+ +
+ + building-broadcast-tower +
+ ti ti-building-broadcast-tower
+ \f4be +
+
+ +
+ + building-carousel +
+ ti ti-building-carousel
+ \ed87 +
+
+ +
+ + building-castle +
+ ti ti-building-castle
+ \ed88 +
+
+ +
+ + building-church +
+ ti ti-building-church
+ \ea4c +
+
+ +
+ + building-circus +
+ ti ti-building-circus
+ \f4bf +
+
+ +
+ + building-community +
+ ti ti-building-community
+ \ebf6 +
+
+ +
+ + building-cottage +
+ ti ti-building-cottage
+ \ee1b +
+
+ +
+ + building-estate +
+ ti ti-building-estate
+ \f5a5 +
+
+ +
+ + building-factory +
+ ti ti-building-factory
+ \ee1c +
+
+ +
+ + building-factory-2 +
+ ti ti-building-factory-2
+ \f082 +
+
+ +
+ + building-fortress +
+ ti ti-building-fortress
+ \ed89 +
+
+ +
+ + building-hospital +
+ ti ti-building-hospital
+ \ea4d +
+
+ +
+ + building-lighthouse +
+ ti ti-building-lighthouse
+ \ed8a +
+
+ +
+ + building-monument +
+ ti ti-building-monument
+ \ed26 +
+
+ +
+ + building-pavilion +
+ ti ti-building-pavilion
+ \ebf7 +
+
+ +
+ + building-skyscraper +
+ ti ti-building-skyscraper
+ \ec39 +
+
+ +
+ + building-stadium +
+ ti ti-building-stadium
+ \f641 +
+
+ +
+ + building-store +
+ ti ti-building-store
+ \ea4e +
+
+ +
+ + building-tunnel +
+ ti ti-building-tunnel
+ \f5a6 +
+
+ +
+ + building-warehouse +
+ ti ti-building-warehouse
+ \ebe3 +
+
+ +
+ + building-wind-turbine +
+ ti ti-building-wind-turbine
+ \f4c0 +
+
+ +
+ + bulb +
+ ti ti-bulb
+ \ea51 +
+
+ +
+ + bulb-filled +
+ ti ti-bulb-filled
+ \f66a +
+
+ +
+ + bulb-off +
+ ti ti-bulb-off
+ \ea50 +
+
+ +
+ + bulldozer +
+ ti ti-bulldozer
+ \ee1d +
+
+ +
+ + bus +
+ ti ti-bus
+ \ebe4 +
+
+ +
+ + bus-off +
+ ti ti-bus-off
+ \f3ce +
+
+ +
+ + bus-stop +
+ ti ti-bus-stop
+ \f2d4 +
+
+ +
+ + businessplan +
+ ti ti-businessplan
+ \ee1e +
+
+ +
+ + butterfly +
+ ti ti-butterfly
+ \efd9 +
+
+ +
+ + cactus +
+ ti ti-cactus
+ \f21b +
+
+ +
+ + cactus-off +
+ ti ti-cactus-off
+ \f3cf +
+
+ +
+ + cake +
+ ti ti-cake
+ \f00f +
+
+ +
+ + cake-off +
+ ti ti-cake-off
+ \f104 +
+
+ +
+ + calculator +
+ ti ti-calculator
+ \eb80 +
+
+ +
+ + calculator-off +
+ ti ti-calculator-off
+ \f0c4 +
+
+ +
+ + calendar +
+ ti ti-calendar
+ \ea53 +
+
+ +
+ + calendar-due +
+ ti ti-calendar-due
+ \f621 +
+
+ +
+ + calendar-event +
+ ti ti-calendar-event
+ \ea52 +
+
+ +
+ + calendar-minus +
+ ti ti-calendar-minus
+ \ebb9 +
+
+ +
+ + calendar-off +
+ ti ti-calendar-off
+ \ee1f +
+
+ +
+ + calendar-plus +
+ ti ti-calendar-plus
+ \ebba +
+
+ +
+ + calendar-stats +
+ ti ti-calendar-stats
+ \ee20 +
+
+ +
+ + calendar-time +
+ ti ti-calendar-time
+ \ee21 +
+
+ +
+ + camera +
+ ti ti-camera
+ \ea54 +
+
+ +
+ + camera-minus +
+ ti ti-camera-minus
+ \ec3a +
+
+ +
+ + camera-off +
+ ti ti-camera-off
+ \ecee +
+
+ +
+ + camera-plus +
+ ti ti-camera-plus
+ \ec3b +
+
+ +
+ + camera-rotate +
+ ti ti-camera-rotate
+ \ee22 +
+
+ +
+ + camera-selfie +
+ ti ti-camera-selfie
+ \ee23 +
+
+ +
+ + campfire +
+ ti ti-campfire
+ \f5a7 +
+
+ +
+ + candle +
+ ti ti-candle
+ \efc6 +
+
+ +
+ + candy +
+ ti ti-candy
+ \ef0d +
+
+ +
+ + candy-off +
+ ti ti-candy-off
+ \f0c5 +
+
+ +
+ + cane +
+ ti ti-cane
+ \f50f +
+
+ +
+ + cannabis +
+ ti ti-cannabis
+ \f4c1 +
+
+ +
+ + capture +
+ ti ti-capture
+ \ec3c +
+
+ +
+ + capture-off +
+ ti ti-capture-off
+ \f0c6 +
+
+ +
+ + car +
+ ti ti-car
+ \ebbb +
+
+ +
+ + car-crane +
+ ti ti-car-crane
+ \ef25 +
+
+ +
+ + car-crash +
+ ti ti-car-crash
+ \efa4 +
+
+ +
+ + car-off +
+ ti ti-car-off
+ \f0c7 +
+
+ +
+ + car-turbine +
+ ti ti-car-turbine
+ \f4fd +
+
+ +
+ + caravan +
+ ti ti-caravan
+ \ec7c +
+
+ +
+ + cardboards +
+ ti ti-cardboards
+ \ed74 +
+
+ +
+ + cardboards-off +
+ ti ti-cardboards-off
+ \f0c8 +
+
+ +
+ + cards +
+ ti ti-cards
+ \f510 +
+
+ +
+ + caret-down +
+ ti ti-caret-down
+ \eb5d +
+
+ +
+ + caret-left +
+ ti ti-caret-left
+ \eb5e +
+
+ +
+ + caret-right +
+ ti ti-caret-right
+ \eb5f +
+
+ +
+ + caret-up +
+ ti ti-caret-up
+ \eb60 +
+
+ +
+ + carousel-horizontal +
+ ti ti-carousel-horizontal
+ \f659 +
+
+ +
+ + carousel-vertical +
+ ti ti-carousel-vertical
+ \f65a +
+
+ +
+ + carrot +
+ ti ti-carrot
+ \f21c +
+
+ +
+ + carrot-off +
+ ti ti-carrot-off
+ \f3d0 +
+
+ +
+ + cash +
+ ti ti-cash
+ \ea55 +
+
+ +
+ + cash-banknote +
+ ti ti-cash-banknote
+ \ee25 +
+
+ +
+ + cash-banknote-off +
+ ti ti-cash-banknote-off
+ \ee24 +
+
+ +
+ + cash-off +
+ ti ti-cash-off
+ \f105 +
+
+ +
+ + cast +
+ ti ti-cast
+ \ea56 +
+
+ +
+ + cast-off +
+ ti ti-cast-off
+ \f0c9 +
+
+ +
+ + cat +
+ ti ti-cat
+ \f65b +
+
+ +
+ + category +
+ ti ti-category
+ \f1f6 +
+
+ +
+ + category-2 +
+ ti ti-category-2
+ \f1f5 +
+
+ +
+ + ce +
+ ti ti-ce
+ \ed75 +
+
+ +
+ + ce-off +
+ ti ti-ce-off
+ \f0ca +
+
+ +
+ + cell +
+ ti ti-cell
+ \f05f +
+
+ +
+ + cell-signal-1 +
+ ti ti-cell-signal-1
+ \f083 +
+
+ +
+ + cell-signal-2 +
+ ti ti-cell-signal-2
+ \f084 +
+
+ +
+ + cell-signal-3 +
+ ti ti-cell-signal-3
+ \f085 +
+
+ +
+ + cell-signal-4 +
+ ti ti-cell-signal-4
+ \f086 +
+
+ +
+ + cell-signal-5 +
+ ti ti-cell-signal-5
+ \f087 +
+
+ +
+ + cell-signal-off +
+ ti ti-cell-signal-off
+ \f088 +
+
+ +
+ + certificate +
+ ti ti-certificate
+ \ed76 +
+
+ +
+ + certificate-2 +
+ ti ti-certificate-2
+ \f073 +
+
+ +
+ + certificate-2-off +
+ ti ti-certificate-2-off
+ \f0cb +
+
+ +
+ + certificate-off +
+ ti ti-certificate-off
+ \f0cc +
+
+ +
+ + chair-director +
+ ti ti-chair-director
+ \f2d5 +
+
+ +
+ + chalkboard +
+ ti ti-chalkboard
+ \f34d +
+
+ +
+ + chalkboard-off +
+ ti ti-chalkboard-off
+ \f3d1 +
+
+ +
+ + charging-pile +
+ ti ti-charging-pile
+ \ee26 +
+
+ +
+ + chart-arcs +
+ ti ti-chart-arcs
+ \ee28 +
+
+ +
+ + chart-arcs-3 +
+ ti ti-chart-arcs-3
+ \ee27 +
+
+ +
+ + chart-area +
+ ti ti-chart-area
+ \ea58 +
+
+ +
+ + chart-area-filled +
+ ti ti-chart-area-filled
+ \f66b +
+
+ +
+ + chart-area-line +
+ ti ti-chart-area-line
+ \ea57 +
+
+ +
+ + chart-area-line-filled +
+ ti ti-chart-area-line-filled
+ \f66c +
+
+ +
+ + chart-arrows +
+ ti ti-chart-arrows
+ \ee2a +
+
+ +
+ + chart-arrows-vertical +
+ ti ti-chart-arrows-vertical
+ \ee29 +
+
+ +
+ + chart-bar +
+ ti ti-chart-bar
+ \ea59 +
+
+ +
+ + chart-bar-off +
+ ti ti-chart-bar-off
+ \f3d2 +
+
+ +
+ + chart-bubble +
+ ti ti-chart-bubble
+ \ec75 +
+
+ +
+ + chart-bubble-filled +
+ ti ti-chart-bubble-filled
+ \f66d +
+
+ +
+ + chart-candle +
+ ti ti-chart-candle
+ \ea5a +
+
+ +
+ + chart-candle-filled +
+ ti ti-chart-candle-filled
+ \f66e +
+
+ +
+ + chart-circles +
+ ti ti-chart-circles
+ \ee2b +
+
+ +
+ + chart-donut +
+ ti ti-chart-donut
+ \ea5b +
+
+ +
+ + chart-donut-2 +
+ ti ti-chart-donut-2
+ \ee2c +
+
+ +
+ + chart-donut-3 +
+ ti ti-chart-donut-3
+ \ee2d +
+
+ +
+ + chart-donut-4 +
+ ti ti-chart-donut-4
+ \ee2e +
+
+ +
+ + chart-donut-filled +
+ ti ti-chart-donut-filled
+ \f66f +
+
+ +
+ + chart-dots +
+ ti ti-chart-dots
+ \ee2f +
+
+ +
+ + chart-dots-2 +
+ ti ti-chart-dots-2
+ \f097 +
+
+ +
+ + chart-dots-3 +
+ ti ti-chart-dots-3
+ \f098 +
+
+ +
+ + chart-grid-dots +
+ ti ti-chart-grid-dots
+ \f4c2 +
+
+ +
+ + chart-histogram +
+ ti ti-chart-histogram
+ \f65c +
+
+ +
+ + chart-infographic +
+ ti ti-chart-infographic
+ \ee30 +
+
+ +
+ + chart-line +
+ ti ti-chart-line
+ \ea5c +
+
+ +
+ + chart-pie +
+ ti ti-chart-pie
+ \ea5d +
+
+ +
+ + chart-pie-2 +
+ ti ti-chart-pie-2
+ \ee31 +
+
+ +
+ + chart-pie-3 +
+ ti ti-chart-pie-3
+ \ee32 +
+
+ +
+ + chart-pie-4 +
+ ti ti-chart-pie-4
+ \ee33 +
+
+ +
+ + chart-pie-filled +
+ ti ti-chart-pie-filled
+ \f670 +
+
+ +
+ + chart-pie-off +
+ ti ti-chart-pie-off
+ \f3d3 +
+
+ +
+ + chart-ppf +
+ ti ti-chart-ppf
+ \f618 +
+
+ +
+ + chart-radar +
+ ti ti-chart-radar
+ \ed77 +
+
+ +
+ + chart-sankey +
+ ti ti-chart-sankey
+ \f619 +
+
+ +
+ + chart-treemap +
+ ti ti-chart-treemap
+ \f381 +
+
+ +
+ + check +
+ ti ti-check
+ \ea5e +
+
+ +
+ + checkbox +
+ ti ti-checkbox
+ \eba6 +
+
+ +
+ + checklist +
+ ti ti-checklist
+ \f074 +
+
+ +
+ + checks +
+ ti ti-checks
+ \ebaa +
+
+ +
+ + checkup-list +
+ ti ti-checkup-list
+ \ef5a +
+
+ +
+ + cheese +
+ ti ti-cheese
+ \ef26 +
+
+ +
+ + chef-hat +
+ ti ti-chef-hat
+ \f21d +
+
+ +
+ + chef-hat-off +
+ ti ti-chef-hat-off
+ \f3d4 +
+
+ +
+ + cherry +
+ ti ti-cherry
+ \f511 +
+
+ +
+ + chess +
+ ti ti-chess
+ \f382 +
+
+ +
+ + chess-bishop +
+ ti ti-chess-bishop
+ \f56b +
+
+ +
+ + chess-king +
+ ti ti-chess-king
+ \f56c +
+
+ +
+ + chess-knight +
+ ti ti-chess-knight
+ \f56d +
+
+ +
+ + chess-queen +
+ ti ti-chess-queen
+ \f56e +
+
+ +
+ + chess-rook +
+ ti ti-chess-rook
+ \f56f +
+
+ +
+ + chevron-down +
+ ti ti-chevron-down
+ \ea5f +
+
+ +
+ + chevron-down-left +
+ ti ti-chevron-down-left
+ \ed09 +
+
+ +
+ + chevron-down-right +
+ ti ti-chevron-down-right
+ \ed0a +
+
+ +
+ + chevron-left +
+ ti ti-chevron-left
+ \ea60 +
+
+ +
+ + chevron-right +
+ ti ti-chevron-right
+ \ea61 +
+
+ +
+ + chevron-up +
+ ti ti-chevron-up
+ \ea62 +
+
+ +
+ + chevron-up-left +
+ ti ti-chevron-up-left
+ \ed0b +
+
+ +
+ + chevron-up-right +
+ ti ti-chevron-up-right
+ \ed0c +
+
+ +
+ + chevrons-down +
+ ti ti-chevrons-down
+ \ea63 +
+
+ +
+ + chevrons-down-left +
+ ti ti-chevrons-down-left
+ \ed0d +
+
+ +
+ + chevrons-down-right +
+ ti ti-chevrons-down-right
+ \ed0e +
+
+ +
+ + chevrons-left +
+ ti ti-chevrons-left
+ \ea64 +
+
+ +
+ + chevrons-right +
+ ti ti-chevrons-right
+ \ea65 +
+
+ +
+ + chevrons-up +
+ ti ti-chevrons-up
+ \ea66 +
+
+ +
+ + chevrons-up-left +
+ ti ti-chevrons-up-left
+ \ed0f +
+
+ +
+ + chevrons-up-right +
+ ti ti-chevrons-up-right
+ \ed10 +
+
+ +
+ + chisel +
+ ti ti-chisel
+ \f383 +
+
+ +
+ + christmas-tree +
+ ti ti-christmas-tree
+ \ed78 +
+
+ +
+ + christmas-tree-off +
+ ti ti-christmas-tree-off
+ \f3d5 +
+
+ +
+ + circle +
+ ti ti-circle
+ \ea6b +
+
+ +
+ + circle-caret-down +
+ ti ti-circle-caret-down
+ \f4a9 +
+
+ +
+ + circle-caret-left +
+ ti ti-circle-caret-left
+ \f4aa +
+
+ +
+ + circle-caret-right +
+ ti ti-circle-caret-right
+ \f4ab +
+
+ +
+ + circle-caret-up +
+ ti ti-circle-caret-up
+ \f4ac +
+
+ +
+ + circle-check +
+ ti ti-circle-check
+ \ea67 +
+
+ +
+ + circle-chevron-down +
+ ti ti-circle-chevron-down
+ \f622 +
+
+ +
+ + circle-chevron-left +
+ ti ti-circle-chevron-left
+ \f623 +
+
+ +
+ + circle-chevron-right +
+ ti ti-circle-chevron-right
+ \f624 +
+
+ +
+ + circle-chevron-up +
+ ti ti-circle-chevron-up
+ \f625 +
+
+ +
+ + circle-chevrons-down +
+ ti ti-circle-chevrons-down
+ \f642 +
+
+ +
+ + circle-chevrons-left +
+ ti ti-circle-chevrons-left
+ \f643 +
+
+ +
+ + circle-chevrons-right +
+ ti ti-circle-chevrons-right
+ \f644 +
+
+ +
+ + circle-chevrons-up +
+ ti ti-circle-chevrons-up
+ \f645 +
+
+ +
+ + circle-dashed +
+ ti ti-circle-dashed
+ \ed27 +
+
+ +
+ + circle-dot +
+ ti ti-circle-dot
+ \efb1 +
+
+ +
+ + circle-dotted +
+ ti ti-circle-dotted
+ \ed28 +
+
+ +
+ + circle-filled +
+ ti ti-circle-filled
+ \f671 +
+
+ +
+ + circle-half +
+ ti ti-circle-half
+ \ee3f +
+
+ +
+ + circle-half-2 +
+ ti ti-circle-half-2
+ \eff3 +
+
+ +
+ + circle-half-vertical +
+ ti ti-circle-half-vertical
+ \ee3e +
+
+ +
+ + circle-key +
+ ti ti-circle-key
+ \f633 +
+
+ +
+ + circle-letter-a +
+ ti ti-circle-letter-a
+ \f441 +
+
+ +
+ + circle-letter-b +
+ ti ti-circle-letter-b
+ \f442 +
+
+ +
+ + circle-letter-c +
+ ti ti-circle-letter-c
+ \f443 +
+
+ +
+ + circle-letter-d +
+ ti ti-circle-letter-d
+ \f444 +
+
+ +
+ + circle-letter-e +
+ ti ti-circle-letter-e
+ \f445 +
+
+ +
+ + circle-letter-f +
+ ti ti-circle-letter-f
+ \f446 +
+
+ +
+ + circle-letter-g +
+ ti ti-circle-letter-g
+ \f447 +
+
+ +
+ + circle-letter-h +
+ ti ti-circle-letter-h
+ \f448 +
+
+ +
+ + circle-letter-i +
+ ti ti-circle-letter-i
+ \f449 +
+
+ +
+ + circle-letter-j +
+ ti ti-circle-letter-j
+ \f44a +
+
+ +
+ + circle-letter-k +
+ ti ti-circle-letter-k
+ \f44b +
+
+ +
+ + circle-letter-l +
+ ti ti-circle-letter-l
+ \f44c +
+
+ +
+ + circle-letter-m +
+ ti ti-circle-letter-m
+ \f44d +
+
+ +
+ + circle-letter-n +
+ ti ti-circle-letter-n
+ \f44e +
+
+ +
+ + circle-letter-o +
+ ti ti-circle-letter-o
+ \f44f +
+
+ +
+ + circle-letter-p +
+ ti ti-circle-letter-p
+ \f450 +
+
+ +
+ + circle-letter-q +
+ ti ti-circle-letter-q
+ \f451 +
+
+ +
+ + circle-letter-r +
+ ti ti-circle-letter-r
+ \f452 +
+
+ +
+ + circle-letter-s +
+ ti ti-circle-letter-s
+ \f453 +
+
+ +
+ + circle-letter-t +
+ ti ti-circle-letter-t
+ \f454 +
+
+ +
+ + circle-letter-u +
+ ti ti-circle-letter-u
+ \f455 +
+
+ +
+ + circle-letter-v +
+ ti ti-circle-letter-v
+ \f4ad +
+
+ +
+ + circle-letter-w +
+ ti ti-circle-letter-w
+ \f456 +
+
+ +
+ + circle-letter-x +
+ ti ti-circle-letter-x
+ \f4ae +
+
+ +
+ + circle-letter-y +
+ ti ti-circle-letter-y
+ \f457 +
+
+ +
+ + circle-letter-z +
+ ti ti-circle-letter-z
+ \f458 +
+
+ +
+ + circle-minus +
+ ti ti-circle-minus
+ \ea68 +
+
+ +
+ + circle-number-0 +
+ ti ti-circle-number-0
+ \ee34 +
+
+ +
+ + circle-number-1 +
+ ti ti-circle-number-1
+ \ee35 +
+
+ +
+ + circle-number-2 +
+ ti ti-circle-number-2
+ \ee36 +
+
+ +
+ + circle-number-3 +
+ ti ti-circle-number-3
+ \ee37 +
+
+ +
+ + circle-number-4 +
+ ti ti-circle-number-4
+ \ee38 +
+
+ +
+ + circle-number-5 +
+ ti ti-circle-number-5
+ \ee39 +
+
+ +
+ + circle-number-6 +
+ ti ti-circle-number-6
+ \ee3a +
+
+ +
+ + circle-number-7 +
+ ti ti-circle-number-7
+ \ee3b +
+
+ +
+ + circle-number-8 +
+ ti ti-circle-number-8
+ \ee3c +
+
+ +
+ + circle-number-9 +
+ ti ti-circle-number-9
+ \ee3d +
+
+ +
+ + circle-off +
+ ti ti-circle-off
+ \ee40 +
+
+ +
+ + circle-plus +
+ ti ti-circle-plus
+ \ea69 +
+
+ +
+ + circle-rectangle +
+ ti ti-circle-rectangle
+ \f010 +
+
+ +
+ + circle-rectangle-off +
+ ti ti-circle-rectangle-off
+ \f0cd +
+
+ +
+ + circle-square +
+ ti ti-circle-square
+ \ece4 +
+
+ +
+ + circle-triangle +
+ ti ti-circle-triangle
+ \f011 +
+
+ +
+ + circle-x +
+ ti ti-circle-x
+ \ea6a +
+
+ +
+ + circles +
+ ti ti-circles
+ \ece5 +
+
+ +
+ + circles-filled +
+ ti ti-circles-filled
+ \f672 +
+
+ +
+ + circles-relation +
+ ti ti-circles-relation
+ \f4c3 +
+
+ +
+ + circuit-ammeter +
+ ti ti-circuit-ammeter
+ \f271 +
+
+ +
+ + circuit-battery +
+ ti ti-circuit-battery
+ \f272 +
+
+ +
+ + circuit-bulb +
+ ti ti-circuit-bulb
+ \f273 +
+
+ +
+ + circuit-capacitor +
+ ti ti-circuit-capacitor
+ \f275 +
+
+ +
+ + circuit-capacitor-polarized +
+ ti ti-circuit-capacitor-polarized
+ \f274 +
+
+ +
+ + circuit-cell +
+ ti ti-circuit-cell
+ \f277 +
+
+ +
+ + circuit-cell-plus +
+ ti ti-circuit-cell-plus
+ \f276 +
+
+ +
+ + circuit-changeover +
+ ti ti-circuit-changeover
+ \f278 +
+
+ +
+ + circuit-diode +
+ ti ti-circuit-diode
+ \f27a +
+
+ +
+ + circuit-diode-zener +
+ ti ti-circuit-diode-zener
+ \f279 +
+
+ +
+ + circuit-ground +
+ ti ti-circuit-ground
+ \f27c +
+
+ +
+ + circuit-ground-digital +
+ ti ti-circuit-ground-digital
+ \f27b +
+
+ +
+ + circuit-inductor +
+ ti ti-circuit-inductor
+ \f27d +
+
+ +
+ + circuit-motor +
+ ti ti-circuit-motor
+ \f27e +
+
+ +
+ + circuit-pushbutton +
+ ti ti-circuit-pushbutton
+ \f27f +
+
+ +
+ + circuit-resistor +
+ ti ti-circuit-resistor
+ \f280 +
+
+ +
+ + circuit-switch-closed +
+ ti ti-circuit-switch-closed
+ \f281 +
+
+ +
+ + circuit-switch-open +
+ ti ti-circuit-switch-open
+ \f282 +
+
+ +
+ + circuit-voltmeter +
+ ti ti-circuit-voltmeter
+ \f283 +
+
+ +
+ + clear-all +
+ ti ti-clear-all
+ \ee41 +
+
+ +
+ + clear-formatting +
+ ti ti-clear-formatting
+ \ebe5 +
+
+ +
+ + click +
+ ti ti-click
+ \ebbc +
+
+ +
+ + clipboard +
+ ti ti-clipboard
+ \ea6f +
+
+ +
+ + clipboard-check +
+ ti ti-clipboard-check
+ \ea6c +
+
+ +
+ + clipboard-copy +
+ ti ti-clipboard-copy
+ \f299 +
+
+ +
+ + clipboard-data +
+ ti ti-clipboard-data
+ \f563 +
+
+ +
+ + clipboard-heart +
+ ti ti-clipboard-heart
+ \f34e +
+
+ +
+ + clipboard-list +
+ ti ti-clipboard-list
+ \ea6d +
+
+ +
+ + clipboard-off +
+ ti ti-clipboard-off
+ \f0ce +
+
+ +
+ + clipboard-plus +
+ ti ti-clipboard-plus
+ \efb2 +
+
+ +
+ + clipboard-text +
+ ti ti-clipboard-text
+ \f089 +
+
+ +
+ + clipboard-typography +
+ ti ti-clipboard-typography
+ \f34f +
+
+ +
+ + clipboard-x +
+ ti ti-clipboard-x
+ \ea6e +
+
+ +
+ + clock +
+ ti ti-clock
+ \ea70 +
+
+ +
+ + clock-2 +
+ ti ti-clock-2
+ \f099 +
+
+ +
+ + clock-cancel +
+ ti ti-clock-cancel
+ \f546 +
+
+ +
+ + clock-edit +
+ ti ti-clock-edit
+ \f547 +
+
+ +
+ + clock-hour-1 +
+ ti ti-clock-hour-1
+ \f313 +
+
+ +
+ + clock-hour-10 +
+ ti ti-clock-hour-10
+ \f314 +
+
+ +
+ + clock-hour-11 +
+ ti ti-clock-hour-11
+ \f315 +
+
+ +
+ + clock-hour-12 +
+ ti ti-clock-hour-12
+ \f316 +
+
+ +
+ + clock-hour-2 +
+ ti ti-clock-hour-2
+ \f317 +
+
+ +
+ + clock-hour-3 +
+ ti ti-clock-hour-3
+ \f318 +
+
+ +
+ + clock-hour-4 +
+ ti ti-clock-hour-4
+ \f319 +
+
+ +
+ + clock-hour-5 +
+ ti ti-clock-hour-5
+ \f31a +
+
+ +
+ + clock-hour-6 +
+ ti ti-clock-hour-6
+ \f31b +
+
+ +
+ + clock-hour-7 +
+ ti ti-clock-hour-7
+ \f31c +
+
+ +
+ + clock-hour-8 +
+ ti ti-clock-hour-8
+ \f31d +
+
+ +
+ + clock-hour-9 +
+ ti ti-clock-hour-9
+ \f31e +
+
+ +
+ + clock-off +
+ ti ti-clock-off
+ \f0cf +
+
+ +
+ + clock-pause +
+ ti ti-clock-pause
+ \f548 +
+
+ +
+ + clock-play +
+ ti ti-clock-play
+ \f549 +
+
+ +
+ + clock-record +
+ ti ti-clock-record
+ \f54a +
+
+ +
+ + clock-stop +
+ ti ti-clock-stop
+ \f54b +
+
+ +
+ + clothes-rack +
+ ti ti-clothes-rack
+ \f285 +
+
+ +
+ + clothes-rack-off +
+ ti ti-clothes-rack-off
+ \f3d6 +
+
+ +
+ + cloud +
+ ti ti-cloud
+ \ea76 +
+
+ +
+ + cloud-computing +
+ ti ti-cloud-computing
+ \f1d0 +
+
+ +
+ + cloud-data-connection +
+ ti ti-cloud-data-connection
+ \f1d1 +
+
+ +
+ + cloud-download +
+ ti ti-cloud-download
+ \ea71 +
+
+ +
+ + cloud-filled +
+ ti ti-cloud-filled
+ \f673 +
+
+ +
+ + cloud-fog +
+ ti ti-cloud-fog
+ \ecd9 +
+
+ +
+ + cloud-lock +
+ ti ti-cloud-lock
+ \efdb +
+
+ +
+ + cloud-lock-open +
+ ti ti-cloud-lock-open
+ \efda +
+
+ +
+ + cloud-off +
+ ti ti-cloud-off
+ \ed3e +
+
+ +
+ + cloud-rain +
+ ti ti-cloud-rain
+ \ea72 +
+
+ +
+ + cloud-snow +
+ ti ti-cloud-snow
+ \ea73 +
+
+ +
+ + cloud-storm +
+ ti ti-cloud-storm
+ \ea74 +
+
+ +
+ + cloud-upload +
+ ti ti-cloud-upload
+ \ea75 +
+
+ +
+ + clover +
+ ti ti-clover
+ \f1ea +
+
+ +
+ + clover-2 +
+ ti ti-clover-2
+ \f21e +
+
+ +
+ + clubs +
+ ti ti-clubs
+ \eff4 +
+
+ +
+ + clubs-filled +
+ ti ti-clubs-filled
+ \f674 +
+
+ +
+ + code +
+ ti ti-code
+ \ea77 +
+
+ +
+ + code-asterix +
+ ti ti-code-asterix
+ \f312 +
+
+ +
+ + code-circle +
+ ti ti-code-circle
+ \f4ff +
+
+ +
+ + code-circle-2 +
+ ti ti-code-circle-2
+ \f4fe +
+
+ +
+ + code-dots +
+ ti ti-code-dots
+ \f61a +
+
+ +
+ + code-minus +
+ ti ti-code-minus
+ \ee42 +
+
+ +
+ + code-off +
+ ti ti-code-off
+ \f0d0 +
+
+ +
+ + code-plus +
+ ti ti-code-plus
+ \ee43 +
+
+ +
+ + coffee +
+ ti ti-coffee
+ \ef0e +
+
+ +
+ + coffee-off +
+ ti ti-coffee-off
+ \f106 +
+
+ +
+ + coffin +
+ ti ti-coffin
+ \f579 +
+
+ +
+ + coin +
+ ti ti-coin
+ \eb82 +
+
+ +
+ + coin-bitcoin +
+ ti ti-coin-bitcoin
+ \f2be +
+
+ +
+ + coin-euro +
+ ti ti-coin-euro
+ \f2bf +
+
+ +
+ + coin-monero +
+ ti ti-coin-monero
+ \f4a0 +
+
+ +
+ + coin-off +
+ ti ti-coin-off
+ \f0d1 +
+
+ +
+ + coin-pound +
+ ti ti-coin-pound
+ \f2c0 +
+
+ +
+ + coin-rupee +
+ ti ti-coin-rupee
+ \f2c1 +
+
+ +
+ + coin-yen +
+ ti ti-coin-yen
+ \f2c2 +
+
+ +
+ + coin-yuan +
+ ti ti-coin-yuan
+ \f2c3 +
+
+ +
+ + coins +
+ ti ti-coins
+ \f65d +
+
+ +
+ + color-filter +
+ ti ti-color-filter
+ \f5a8 +
+
+ +
+ + color-picker +
+ ti ti-color-picker
+ \ebe6 +
+
+ +
+ + color-picker-off +
+ ti ti-color-picker-off
+ \f0d2 +
+
+ +
+ + color-swatch +
+ ti ti-color-swatch
+ \eb61 +
+
+ +
+ + color-swatch-off +
+ ti ti-color-swatch-off
+ \f0d3 +
+
+ +
+ + column-insert-left +
+ ti ti-column-insert-left
+ \ee44 +
+
+ +
+ + column-insert-right +
+ ti ti-column-insert-right
+ \ee45 +
+
+ +
+ + columns +
+ ti ti-columns
+ \eb83 +
+
+ +
+ + columns-off +
+ ti ti-columns-off
+ \f0d4 +
+
+ +
+ + comet +
+ ti ti-comet
+ \ec76 +
+
+ +
+ + command +
+ ti ti-command
+ \ea78 +
+
+ +
+ + command-off +
+ ti ti-command-off
+ \f3d7 +
+
+ +
+ + compass +
+ ti ti-compass
+ \ea79 +
+
+ +
+ + compass-off +
+ ti ti-compass-off
+ \f0d5 +
+
+ +
+ + components +
+ ti ti-components
+ \efa5 +
+
+ +
+ + components-off +
+ ti ti-components-off
+ \f0d6 +
+
+ +
+ + cone +
+ ti ti-cone
+ \efdd +
+
+ +
+ + cone-2 +
+ ti ti-cone-2
+ \efdc +
+
+ +
+ + cone-off +
+ ti ti-cone-off
+ \f3d8 +
+
+ +
+ + confetti +
+ ti ti-confetti
+ \ee46 +
+
+ +
+ + confetti-off +
+ ti ti-confetti-off
+ \f3d9 +
+
+ +
+ + confucius +
+ ti ti-confucius
+ \f58a +
+
+ +
+ + container +
+ ti ti-container
+ \ee47 +
+
+ +
+ + container-off +
+ ti ti-container-off
+ \f107 +
+
+ +
+ + contrast +
+ ti ti-contrast
+ \ec4e +
+
+ +
+ + contrast-2 +
+ ti ti-contrast-2
+ \efc7 +
+
+ +
+ + contrast-2-off +
+ ti ti-contrast-2-off
+ \f3da +
+
+ +
+ + contrast-off +
+ ti ti-contrast-off
+ \f3db +
+
+ +
+ + cooker +
+ ti ti-cooker
+ \f57a +
+
+ +
+ + cookie +
+ ti ti-cookie
+ \ef0f +
+
+ +
+ + cookie-man +
+ ti ti-cookie-man
+ \f4c4 +
+
+ +
+ + cookie-off +
+ ti ti-cookie-off
+ \f0d7 +
+
+ +
+ + copy +
+ ti ti-copy
+ \ea7a +
+
+ +
+ + copy-off +
+ ti ti-copy-off
+ \f0d8 +
+
+ +
+ + copyleft +
+ ti ti-copyleft
+ \ec3d +
+
+ +
+ + copyleft-off +
+ ti ti-copyleft-off
+ \f0d9 +
+
+ +
+ + copyright +
+ ti ti-copyright
+ \ea7b +
+
+ +
+ + copyright-off +
+ ti ti-copyright-off
+ \f0da +
+
+ +
+ + corner-down-left +
+ ti ti-corner-down-left
+ \ea7c +
+
+ +
+ + corner-down-left-double +
+ ti ti-corner-down-left-double
+ \ee48 +
+
+ +
+ + corner-down-right +
+ ti ti-corner-down-right
+ \ea7d +
+
+ +
+ + corner-down-right-double +
+ ti ti-corner-down-right-double
+ \ee49 +
+
+ +
+ + corner-left-down +
+ ti ti-corner-left-down
+ \ea7e +
+
+ +
+ + corner-left-down-double +
+ ti ti-corner-left-down-double
+ \ee4a +
+
+ +
+ + corner-left-up +
+ ti ti-corner-left-up
+ \ea7f +
+
+ +
+ + corner-left-up-double +
+ ti ti-corner-left-up-double
+ \ee4b +
+
+ +
+ + corner-right-down +
+ ti ti-corner-right-down
+ \ea80 +
+
+ +
+ + corner-right-down-double +
+ ti ti-corner-right-down-double
+ \ee4c +
+
+ +
+ + corner-right-up +
+ ti ti-corner-right-up
+ \ea81 +
+
+ +
+ + corner-right-up-double +
+ ti ti-corner-right-up-double
+ \ee4d +
+
+ +
+ + corner-up-left +
+ ti ti-corner-up-left
+ \ea82 +
+
+ +
+ + corner-up-left-double +
+ ti ti-corner-up-left-double
+ \ee4e +
+
+ +
+ + corner-up-right +
+ ti ti-corner-up-right
+ \ea83 +
+
+ +
+ + corner-up-right-double +
+ ti ti-corner-up-right-double
+ \ee4f +
+
+ +
+ + cpu +
+ ti ti-cpu
+ \ef8e +
+
+ +
+ + cpu-2 +
+ ti ti-cpu-2
+ \f075 +
+
+ +
+ + cpu-off +
+ ti ti-cpu-off
+ \f108 +
+
+ +
+ + crane +
+ ti ti-crane
+ \ef27 +
+
+ +
+ + crane-off +
+ ti ti-crane-off
+ \f109 +
+
+ +
+ + creative-commons +
+ ti ti-creative-commons
+ \efb3 +
+
+ +
+ + creative-commons-by +
+ ti ti-creative-commons-by
+ \f21f +
+
+ +
+ + creative-commons-nc +
+ ti ti-creative-commons-nc
+ \f220 +
+
+ +
+ + creative-commons-nd +
+ ti ti-creative-commons-nd
+ \f221 +
+
+ +
+ + creative-commons-off +
+ ti ti-creative-commons-off
+ \f10a +
+
+ +
+ + creative-commons-sa +
+ ti ti-creative-commons-sa
+ \f222 +
+
+ +
+ + creative-commons-zero +
+ ti ti-creative-commons-zero
+ \f223 +
+
+ +
+ + credit-card +
+ ti ti-credit-card
+ \ea84 +
+
+ +
+ + credit-card-off +
+ ti ti-credit-card-off
+ \ed11 +
+
+ +
+ + cricket +
+ ti ti-cricket
+ \f09a +
+
+ +
+ + crop +
+ ti ti-crop
+ \ea85 +
+
+ +
+ + cross +
+ ti ti-cross
+ \ef8f +
+
+ +
+ + cross-filled +
+ ti ti-cross-filled
+ \f675 +
+
+ +
+ + cross-off +
+ ti ti-cross-off
+ \f10b +
+
+ +
+ + crosshair +
+ ti ti-crosshair
+ \ec3e +
+
+ +
+ + crown +
+ ti ti-crown
+ \ed12 +
+
+ +
+ + crown-off +
+ ti ti-crown-off
+ \ee50 +
+
+ +
+ + crutches +
+ ti ti-crutches
+ \ef5b +
+
+ +
+ + crutches-off +
+ ti ti-crutches-off
+ \f10c +
+
+ +
+ + crystal-ball +
+ ti ti-crystal-ball
+ \f57b +
+
+ +
+ + cube-send +
+ ti ti-cube-send
+ \f61b +
+
+ +
+ + cube-unfolded +
+ ti ti-cube-unfolded
+ \f61c +
+
+ +
+ + cup +
+ ti ti-cup
+ \ef28 +
+
+ +
+ + cup-off +
+ ti ti-cup-off
+ \f10d +
+
+ +
+ + curling +
+ ti ti-curling
+ \efc8 +
+
+ +
+ + curly-loop +
+ ti ti-curly-loop
+ \ecda +
+
+ +
+ + currency +
+ ti ti-currency
+ \efa6 +
+
+ +
+ + currency-afghani +
+ ti ti-currency-afghani
+ \f65e +
+
+ +
+ + currency-bahraini +
+ ti ti-currency-bahraini
+ \ee51 +
+
+ +
+ + currency-baht +
+ ti ti-currency-baht
+ \f08a +
+
+ +
+ + currency-bitcoin +
+ ti ti-currency-bitcoin
+ \ebab +
+
+ +
+ + currency-cent +
+ ti ti-currency-cent
+ \ee53 +
+
+ +
+ + currency-dinar +
+ ti ti-currency-dinar
+ \ee54 +
+
+ +
+ + currency-dirham +
+ ti ti-currency-dirham
+ \ee55 +
+
+ +
+ + currency-dogecoin +
+ ti ti-currency-dogecoin
+ \ef4b +
+
+ +
+ + currency-dollar +
+ ti ti-currency-dollar
+ \eb84 +
+
+ +
+ + currency-dollar-australian +
+ ti ti-currency-dollar-australian
+ \ee56 +
+
+ +
+ + currency-dollar-brunei +
+ ti ti-currency-dollar-brunei
+ \f36c +
+
+ +
+ + currency-dollar-canadian +
+ ti ti-currency-dollar-canadian
+ \ee57 +
+
+ +
+ + currency-dollar-guyanese +
+ ti ti-currency-dollar-guyanese
+ \f36d +
+
+ +
+ + currency-dollar-off +
+ ti ti-currency-dollar-off
+ \f3dc +
+
+ +
+ + currency-dollar-singapore +
+ ti ti-currency-dollar-singapore
+ \ee58 +
+
+ +
+ + currency-dollar-zimbabwean +
+ ti ti-currency-dollar-zimbabwean
+ \f36e +
+
+ +
+ + currency-dong +
+ ti ti-currency-dong
+ \f36f +
+
+ +
+ + currency-dram +
+ ti ti-currency-dram
+ \f370 +
+
+ +
+ + currency-ethereum +
+ ti ti-currency-ethereum
+ \ee59 +
+
+ +
+ + currency-euro +
+ ti ti-currency-euro
+ \eb85 +
+
+ +
+ + currency-euro-off +
+ ti ti-currency-euro-off
+ \f3dd +
+
+ +
+ + currency-forint +
+ ti ti-currency-forint
+ \ee5a +
+
+ +
+ + currency-frank +
+ ti ti-currency-frank
+ \ee5b +
+
+ +
+ + currency-guarani +
+ ti ti-currency-guarani
+ \f371 +
+
+ +
+ + currency-hryvnia +
+ ti ti-currency-hryvnia
+ \f372 +
+
+ +
+ + currency-kip +
+ ti ti-currency-kip
+ \f373 +
+
+ +
+ + currency-krone-czech +
+ ti ti-currency-krone-czech
+ \ee5c +
+
+ +
+ + currency-krone-danish +
+ ti ti-currency-krone-danish
+ \ee5d +
+
+ +
+ + currency-krone-swedish +
+ ti ti-currency-krone-swedish
+ \ee5e +
+
+ +
+ + currency-lari +
+ ti ti-currency-lari
+ \f374 +
+
+ +
+ + currency-leu +
+ ti ti-currency-leu
+ \ee5f +
+
+ +
+ + currency-lira +
+ ti ti-currency-lira
+ \ee60 +
+
+ +
+ + currency-litecoin +
+ ti ti-currency-litecoin
+ \ee61 +
+
+ +
+ + currency-lyd +
+ ti ti-currency-lyd
+ \f375 +
+
+ +
+ + currency-manat +
+ ti ti-currency-manat
+ \f376 +
+
+ +
+ + currency-monero +
+ ti ti-currency-monero
+ \f377 +
+
+ +
+ + currency-naira +
+ ti ti-currency-naira
+ \ee62 +
+
+ +
+ + currency-off +
+ ti ti-currency-off
+ \f3de +
+
+ +
+ + currency-paanga +
+ ti ti-currency-paanga
+ \f378 +
+
+ +
+ + currency-peso +
+ ti ti-currency-peso
+ \f65f +
+
+ +
+ + currency-pound +
+ ti ti-currency-pound
+ \ebac +
+
+ +
+ + currency-pound-off +
+ ti ti-currency-pound-off
+ \f3df +
+
+ +
+ + currency-quetzal +
+ ti ti-currency-quetzal
+ \f379 +
+
+ +
+ + currency-real +
+ ti ti-currency-real
+ \ee63 +
+
+ +
+ + currency-renminbi +
+ ti ti-currency-renminbi
+ \ee64 +
+
+ +
+ + currency-ripple +
+ ti ti-currency-ripple
+ \ee65 +
+
+ +
+ + currency-riyal +
+ ti ti-currency-riyal
+ \ee66 +
+
+ +
+ + currency-rubel +
+ ti ti-currency-rubel
+ \ee67 +
+
+ +
+ + currency-rufiyaa +
+ ti ti-currency-rufiyaa
+ \f37a +
+
+ +
+ + currency-rupee +
+ ti ti-currency-rupee
+ \ebad +
+
+ +
+ + currency-rupee-nepalese +
+ ti ti-currency-rupee-nepalese
+ \f37b +
+
+ +
+ + currency-shekel +
+ ti ti-currency-shekel
+ \ee68 +
+
+ +
+ + currency-solana +
+ ti ti-currency-solana
+ \f4a1 +
+
+ +
+ + currency-som +
+ ti ti-currency-som
+ \f37c +
+
+ +
+ + currency-taka +
+ ti ti-currency-taka
+ \ee69 +
+
+ +
+ + currency-tenge +
+ ti ti-currency-tenge
+ \f37d +
+
+ +
+ + currency-tugrik +
+ ti ti-currency-tugrik
+ \ee6a +
+
+ +
+ + currency-won +
+ ti ti-currency-won
+ \ee6b +
+
+ +
+ + currency-yen +
+ ti ti-currency-yen
+ \ebae +
+
+ +
+ + currency-yen-off +
+ ti ti-currency-yen-off
+ \f3e0 +
+
+ +
+ + currency-yuan +
+ ti ti-currency-yuan
+ \f29a +
+
+ +
+ + currency-zloty +
+ ti ti-currency-zloty
+ \ee6c +
+
+ +
+ + current-location +
+ ti ti-current-location
+ \ecef +
+
+ +
+ + current-location-off +
+ ti ti-current-location-off
+ \f10e +
+
+ +
+ + cursor-off +
+ ti ti-cursor-off
+ \f10f +
+
+ +
+ + cursor-text +
+ ti ti-cursor-text
+ \ee6d +
+
+ +
+ + cut +
+ ti ti-cut
+ \ea86 +
+
+ +
+ + cylinder +
+ ti ti-cylinder
+ \f54c +
+
+ +
+ + dashboard +
+ ti ti-dashboard
+ \ea87 +
+
+ +
+ + dashboard-off +
+ ti ti-dashboard-off
+ \f3e1 +
+
+ +
+ + database +
+ ti ti-database
+ \ea88 +
+
+ +
+ + database-export +
+ ti ti-database-export
+ \ee6e +
+
+ +
+ + database-import +
+ ti ti-database-import
+ \ee6f +
+
+ +
+ + database-off +
+ ti ti-database-off
+ \ee70 +
+
+ +
+ + deer +
+ ti ti-deer
+ \f4c5 +
+
+ +
+ + delta +
+ ti ti-delta
+ \f53c +
+
+ +
+ + dental +
+ ti ti-dental
+ \f025 +
+
+ +
+ + dental-broken +
+ ti ti-dental-broken
+ \f286 +
+
+ +
+ + dental-off +
+ ti ti-dental-off
+ \f110 +
+
+ +
+ + details +
+ ti ti-details
+ \ee71 +
+
+ +
+ + details-off +
+ ti ti-details-off
+ \f3e2 +
+
+ +
+ + device-airpods +
+ ti ti-device-airpods
+ \f5a9 +
+
+ +
+ + device-airpods-case +
+ ti ti-device-airpods-case
+ \f646 +
+
+ +
+ + device-analytics +
+ ti ti-device-analytics
+ \ee72 +
+
+ +
+ + device-audio-tape +
+ ti ti-device-audio-tape
+ \ee73 +
+
+ +
+ + device-camera-phone +
+ ti ti-device-camera-phone
+ \f233 +
+
+ +
+ + device-cctv +
+ ti ti-device-cctv
+ \ee74 +
+
+ +
+ + device-cctv-off +
+ ti ti-device-cctv-off
+ \f3e3 +
+
+ +
+ + device-computer-camera +
+ ti ti-device-computer-camera
+ \ee76 +
+
+ +
+ + device-computer-camera-off +
+ ti ti-device-computer-camera-off
+ \ee75 +
+
+ +
+ + device-desktop +
+ ti ti-device-desktop
+ \ea89 +
+
+ +
+ + device-desktop-analytics +
+ ti ti-device-desktop-analytics
+ \ee77 +
+
+ +
+ + device-desktop-off +
+ ti ti-device-desktop-off
+ \ee78 +
+
+ +
+ + device-floppy +
+ ti ti-device-floppy
+ \eb62 +
+
+ +
+ + device-gamepad +
+ ti ti-device-gamepad
+ \eb63 +
+
+ +
+ + device-gamepad-2 +
+ ti ti-device-gamepad-2
+ \f1d2 +
+
+ +
+ + device-heart-monitor +
+ ti ti-device-heart-monitor
+ \f060 +
+
+ +
+ + device-ipad +
+ ti ti-device-ipad
+ \f648 +
+
+ +
+ + device-ipad-horizontal +
+ ti ti-device-ipad-horizontal
+ \f647 +
+
+ +
+ + device-landline-phone +
+ ti ti-device-landline-phone
+ \f649 +
+
+ +
+ + device-laptop +
+ ti ti-device-laptop
+ \eb64 +
+
+ +
+ + device-laptop-off +
+ ti ti-device-laptop-off
+ \f061 +
+
+ +
+ + device-mobile +
+ ti ti-device-mobile
+ \ea8a +
+
+ +
+ + device-mobile-charging +
+ ti ti-device-mobile-charging
+ \f224 +
+
+ +
+ + device-mobile-message +
+ ti ti-device-mobile-message
+ \ee79 +
+
+ +
+ + device-mobile-off +
+ ti ti-device-mobile-off
+ \f062 +
+
+ +
+ + device-mobile-rotated +
+ ti ti-device-mobile-rotated
+ \ecdb +
+
+ +
+ + device-mobile-vibration +
+ ti ti-device-mobile-vibration
+ \eb86 +
+
+ +
+ + device-nintendo +
+ ti ti-device-nintendo
+ \f026 +
+
+ +
+ + device-nintendo-off +
+ ti ti-device-nintendo-off
+ \f111 +
+
+ +
+ + device-sd-card +
+ ti ti-device-sd-card
+ \f384 +
+
+ +
+ + device-sim +
+ ti ti-device-sim
+ \f4b2 +
+
+ +
+ + device-sim-1 +
+ ti ti-device-sim-1
+ \f4af +
+
+ +
+ + device-sim-2 +
+ ti ti-device-sim-2
+ \f4b0 +
+
+ +
+ + device-sim-3 +
+ ti ti-device-sim-3
+ \f4b1 +
+
+ +
+ + device-speaker +
+ ti ti-device-speaker
+ \ea8b +
+
+ +
+ + device-speaker-off +
+ ti ti-device-speaker-off
+ \f112 +
+
+ +
+ + device-tablet +
+ ti ti-device-tablet
+ \ea8c +
+
+ +
+ + device-tablet-off +
+ ti ti-device-tablet-off
+ \f063 +
+
+ +
+ + device-tv +
+ ti ti-device-tv
+ \ea8d +
+
+ +
+ + device-tv-off +
+ ti ti-device-tv-off
+ \f064 +
+
+ +
+ + device-tv-old +
+ ti ti-device-tv-old
+ \f1d3 +
+
+ +
+ + device-watch +
+ ti ti-device-watch
+ \ebf9 +
+
+ +
+ + device-watch-off +
+ ti ti-device-watch-off
+ \f065 +
+
+ +
+ + device-watch-stats +
+ ti ti-device-watch-stats
+ \ef7d +
+
+ +
+ + device-watch-stats-2 +
+ ti ti-device-watch-stats-2
+ \ef7c +
+
+ +
+ + devices +
+ ti ti-devices
+ \eb87 +
+
+ +
+ + devices-2 +
+ ti ti-devices-2
+ \ed29 +
+
+ +
+ + devices-off +
+ ti ti-devices-off
+ \f3e4 +
+
+ +
+ + devices-pc +
+ ti ti-devices-pc
+ \ee7a +
+
+ +
+ + devices-pc-off +
+ ti ti-devices-pc-off
+ \f113 +
+
+ +
+ + dialpad +
+ ti ti-dialpad
+ \f067 +
+
+ +
+ + dialpad-off +
+ ti ti-dialpad-off
+ \f114 +
+
+ +
+ + diamond +
+ ti ti-diamond
+ \eb65 +
+
+ +
+ + diamond-off +
+ ti ti-diamond-off
+ \f115 +
+
+ +
+ + diamonds +
+ ti ti-diamonds
+ \eff5 +
+
+ +
+ + diamonds-filled +
+ ti ti-diamonds-filled
+ \f676 +
+
+ +
+ + dice +
+ ti ti-dice
+ \eb66 +
+
+ +
+ + dice-1 +
+ ti ti-dice-1
+ \f08b +
+
+ +
+ + dice-2 +
+ ti ti-dice-2
+ \f08c +
+
+ +
+ + dice-3 +
+ ti ti-dice-3
+ \f08d +
+
+ +
+ + dice-4 +
+ ti ti-dice-4
+ \f08e +
+
+ +
+ + dice-5 +
+ ti ti-dice-5
+ \f08f +
+
+ +
+ + dice-6 +
+ ti ti-dice-6
+ \f090 +
+
+ +
+ + dimensions +
+ ti ti-dimensions
+ \ee7b +
+
+ +
+ + direction +
+ ti ti-direction
+ \ebfb +
+
+ +
+ + direction-horizontal +
+ ti ti-direction-horizontal
+ \ebfa +
+
+ +
+ + direction-sign +
+ ti ti-direction-sign
+ \f1f7 +
+
+ +
+ + direction-sign-off +
+ ti ti-direction-sign-off
+ \f3e5 +
+
+ +
+ + directions +
+ ti ti-directions
+ \ea8e +
+
+ +
+ + directions-off +
+ ti ti-directions-off
+ \f116 +
+
+ +
+ + disabled +
+ ti ti-disabled
+ \ea8f +
+
+ +
+ + disabled-2 +
+ ti ti-disabled-2
+ \ebaf +
+
+ +
+ + disabled-off +
+ ti ti-disabled-off
+ \f117 +
+
+ +
+ + disc +
+ ti ti-disc
+ \ea90 +
+
+ +
+ + disc-golf +
+ ti ti-disc-golf
+ \f385 +
+
+ +
+ + disc-off +
+ ti ti-disc-off
+ \f118 +
+
+ +
+ + discount +
+ ti ti-discount
+ \ebbd +
+
+ +
+ + discount-2 +
+ ti ti-discount-2
+ \ee7c +
+
+ +
+ + discount-2-off +
+ ti ti-discount-2-off
+ \f3e6 +
+
+ +
+ + discount-check +
+ ti ti-discount-check
+ \f1f8 +
+
+ +
+ + discount-off +
+ ti ti-discount-off
+ \f3e7 +
+
+ +
+ + divide +
+ ti ti-divide
+ \ed5c +
+
+ +
+ + dna +
+ ti ti-dna
+ \ee7d +
+
+ +
+ + dna-2 +
+ ti ti-dna-2
+ \ef5c +
+
+ +
+ + dna-2-off +
+ ti ti-dna-2-off
+ \f119 +
+
+ +
+ + dna-off +
+ ti ti-dna-off
+ \f11a +
+
+ +
+ + dog +
+ ti ti-dog
+ \f660 +
+
+ +
+ + dog-bowl +
+ ti ti-dog-bowl
+ \ef29 +
+
+ +
+ + door +
+ ti ti-door
+ \ef4e +
+
+ +
+ + door-enter +
+ ti ti-door-enter
+ \ef4c +
+
+ +
+ + door-exit +
+ ti ti-door-exit
+ \ef4d +
+
+ +
+ + door-off +
+ ti ti-door-off
+ \f11b +
+
+ +
+ + dots +
+ ti ti-dots
+ \ea95 +
+
+ +
+ + dots-circle-horizontal +
+ ti ti-dots-circle-horizontal
+ \ea91 +
+
+ +
+ + dots-diagonal +
+ ti ti-dots-diagonal
+ \ea93 +
+
+ +
+ + dots-diagonal-2 +
+ ti ti-dots-diagonal-2
+ \ea92 +
+
+ +
+ + dots-vertical +
+ ti ti-dots-vertical
+ \ea94 +
+
+ +
+ + download +
+ ti ti-download
+ \ea96 +
+
+ +
+ + download-off +
+ ti ti-download-off
+ \f11c +
+
+ +
+ + drag-drop +
+ ti ti-drag-drop
+ \eb89 +
+
+ +
+ + drag-drop-2 +
+ ti ti-drag-drop-2
+ \eb88 +
+
+ +
+ + drone +
+ ti ti-drone
+ \ed79 +
+
+ +
+ + drone-off +
+ ti ti-drone-off
+ \ee7e +
+
+ +
+ + drop-circle +
+ ti ti-drop-circle
+ \efde +
+
+ +
+ + droplet +
+ ti ti-droplet
+ \ea97 +
+
+ +
+ + droplet-filled +
+ ti ti-droplet-filled
+ \f677 +
+
+ +
+ + droplet-filled-2 +
+ ti ti-droplet-filled-2
+ \ee7f +
+
+ +
+ + droplet-half +
+ ti ti-droplet-half
+ \ee82 +
+
+ +
+ + droplet-half-2 +
+ ti ti-droplet-half-2
+ \ee81 +
+
+ +
+ + droplet-half-filled +
+ ti ti-droplet-half-filled
+ \ee80 +
+
+ +
+ + droplet-off +
+ ti ti-droplet-off
+ \ee83 +
+
+ +
+ + e-passport +
+ ti ti-e-passport
+ \f4df +
+
+ +
+ + ear +
+ ti ti-ear
+ \ebce +
+
+ +
+ + ear-off +
+ ti ti-ear-off
+ \ee84 +
+
+ +
+ + ease-in +
+ ti ti-ease-in
+ \f573 +
+
+ +
+ + ease-in-control-point +
+ ti ti-ease-in-control-point
+ \f570 +
+
+ +
+ + ease-in-out +
+ ti ti-ease-in-out
+ \f572 +
+
+ +
+ + ease-in-out-control-points +
+ ti ti-ease-in-out-control-points
+ \f571 +
+
+ +
+ + ease-out +
+ ti ti-ease-out
+ \f575 +
+
+ +
+ + ease-out-control-point +
+ ti ti-ease-out-control-point
+ \f574 +
+
+ +
+ + edit +
+ ti ti-edit
+ \ea98 +
+
+ +
+ + edit-circle +
+ ti ti-edit-circle
+ \ee85 +
+
+ +
+ + edit-circle-off +
+ ti ti-edit-circle-off
+ \f11d +
+
+ +
+ + edit-off +
+ ti ti-edit-off
+ \f11e +
+
+ +
+ + egg +
+ ti ti-egg
+ \eb8a +
+
+ +
+ + egg-cracked +
+ ti ti-egg-cracked
+ \f2d6 +
+
+ +
+ + egg-filled +
+ ti ti-egg-filled
+ \f678 +
+
+ +
+ + egg-fried +
+ ti ti-egg-fried
+ \f386 +
+
+ +
+ + egg-off +
+ ti ti-egg-off
+ \f11f +
+
+ +
+ + eggs +
+ ti ti-eggs
+ \f500 +
+
+ +
+ + elevator +
+ ti ti-elevator
+ \efdf +
+
+ +
+ + elevator-off +
+ ti ti-elevator-off
+ \f3e8 +
+
+ +
+ + emergency-bed +
+ ti ti-emergency-bed
+ \ef5d +
+
+ +
+ + empathize +
+ ti ti-empathize
+ \f29b +
+
+ +
+ + empathize-off +
+ ti ti-empathize-off
+ \f3e9 +
+
+ +
+ + emphasis +
+ ti ti-emphasis
+ \ebcf +
+
+ +
+ + engine +
+ ti ti-engine
+ \ef7e +
+
+ +
+ + engine-off +
+ ti ti-engine-off
+ \f120 +
+
+ +
+ + equal +
+ ti ti-equal
+ \ee87 +
+
+ +
+ + equal-double +
+ ti ti-equal-double
+ \f4e1 +
+
+ +
+ + equal-not +
+ ti ti-equal-not
+ \ee86 +
+
+ +
+ + eraser +
+ ti ti-eraser
+ \eb8b +
+
+ +
+ + eraser-off +
+ ti ti-eraser-off
+ \f121 +
+
+ +
+ + error-404 +
+ ti ti-error-404
+ \f027 +
+
+ +
+ + error-404-off +
+ ti ti-error-404-off
+ \f122 +
+
+ +
+ + exchange +
+ ti ti-exchange
+ \ebe7 +
+
+ +
+ + exchange-off +
+ ti ti-exchange-off
+ \f123 +
+
+ +
+ + exclamation-circle +
+ ti ti-exclamation-circle
+ \f634 +
+
+ +
+ + exclamation-mark +
+ ti ti-exclamation-mark
+ \efb4 +
+
+ +
+ + exclamation-mark-off +
+ ti ti-exclamation-mark-off
+ \f124 +
+
+ +
+ + explicit +
+ ti ti-explicit
+ \f256 +
+
+ +
+ + explicit-off +
+ ti ti-explicit-off
+ \f3ea +
+
+ +
+ + exposure +
+ ti ti-exposure
+ \eb8c +
+
+ +
+ + exposure-0 +
+ ti ti-exposure-0
+ \f29c +
+
+ +
+ + exposure-minus-1 +
+ ti ti-exposure-minus-1
+ \f29d +
+
+ +
+ + exposure-minus-2 +
+ ti ti-exposure-minus-2
+ \f29e +
+
+ +
+ + exposure-off +
+ ti ti-exposure-off
+ \f3eb +
+
+ +
+ + exposure-plus-1 +
+ ti ti-exposure-plus-1
+ \f29f +
+
+ +
+ + exposure-plus-2 +
+ ti ti-exposure-plus-2
+ \f2a0 +
+
+ +
+ + external-link +
+ ti ti-external-link
+ \ea99 +
+
+ +
+ + external-link-off +
+ ti ti-external-link-off
+ \f125 +
+
+ +
+ + eye +
+ ti ti-eye
+ \ea9a +
+
+ +
+ + eye-check +
+ ti ti-eye-check
+ \ee88 +
+
+ +
+ + eye-filled +
+ ti ti-eye-filled
+ \f679 +
+
+ +
+ + eye-off +
+ ti ti-eye-off
+ \ecf0 +
+
+ +
+ + eye-table +
+ ti ti-eye-table
+ \ef5e +
+
+ +
+ + eyeglass +
+ ti ti-eyeglass
+ \ee8a +
+
+ +
+ + eyeglass-2 +
+ ti ti-eyeglass-2
+ \ee89 +
+
+ +
+ + eyeglass-off +
+ ti ti-eyeglass-off
+ \f126 +
+
+ +
+ + face-id +
+ ti ti-face-id
+ \ea9b +
+
+ +
+ + face-id-error +
+ ti ti-face-id-error
+ \efa7 +
+
+ +
+ + face-mask +
+ ti ti-face-mask
+ \efb5 +
+
+ +
+ + face-mask-off +
+ ti ti-face-mask-off
+ \f127 +
+
+ +
+ + fall +
+ ti ti-fall
+ \ecb9 +
+
+ +
+ + feather +
+ ti ti-feather
+ \ee8b +
+
+ +
+ + feather-off +
+ ti ti-feather-off
+ \f128 +
+
+ +
+ + fence +
+ ti ti-fence
+ \ef2a +
+
+ +
+ + fence-off +
+ ti ti-fence-off
+ \f129 +
+
+ +
+ + fidget-spinner +
+ ti ti-fidget-spinner
+ \f068 +
+
+ +
+ + file +
+ ti ti-file
+ \eaa4 +
+
+ +
+ + file-3d +
+ ti ti-file-3d
+ \f032 +
+
+ +
+ + file-alert +
+ ti ti-file-alert
+ \ede6 +
+
+ +
+ + file-analytics +
+ ti ti-file-analytics
+ \ede7 +
+
+ +
+ + file-arrow-left +
+ ti ti-file-arrow-left
+ \f033 +
+
+ +
+ + file-arrow-right +
+ ti ti-file-arrow-right
+ \f034 +
+
+ +
+ + file-barcode +
+ ti ti-file-barcode
+ \f035 +
+
+ +
+ + file-broken +
+ ti ti-file-broken
+ \f501 +
+
+ +
+ + file-certificate +
+ ti ti-file-certificate
+ \ed4d +
+
+ +
+ + file-chart +
+ ti ti-file-chart
+ \f036 +
+
+ +
+ + file-check +
+ ti ti-file-check
+ \ea9c +
+
+ +
+ + file-code +
+ ti ti-file-code
+ \ebd0 +
+
+ +
+ + file-code-2 +
+ ti ti-file-code-2
+ \ede8 +
+
+ +
+ + file-database +
+ ti ti-file-database
+ \f037 +
+
+ +
+ + file-delta +
+ ti ti-file-delta
+ \f53d +
+
+ +
+ + file-description +
+ ti ti-file-description
+ \f028 +
+
+ +
+ + file-diff +
+ ti ti-file-diff
+ \ecf1 +
+
+ +
+ + file-digit +
+ ti ti-file-digit
+ \efa8 +
+
+ +
+ + file-dislike +
+ ti ti-file-dislike
+ \ed2a +
+
+ +
+ + file-dollar +
+ ti ti-file-dollar
+ \efe0 +
+
+ +
+ + file-dots +
+ ti ti-file-dots
+ \f038 +
+
+ +
+ + file-download +
+ ti ti-file-download
+ \ea9d +
+
+ +
+ + file-euro +
+ ti ti-file-euro
+ \efe1 +
+
+ +
+ + file-export +
+ ti ti-file-export
+ \ede9 +
+
+ +
+ + file-function +
+ ti ti-file-function
+ \f53e +
+
+ +
+ + file-horizontal +
+ ti ti-file-horizontal
+ \ebb0 +
+
+ +
+ + file-import +
+ ti ti-file-import
+ \edea +
+
+ +
+ + file-infinity +
+ ti ti-file-infinity
+ \f502 +
+
+ +
+ + file-info +
+ ti ti-file-info
+ \edec +
+
+ +
+ + file-invoice +
+ ti ti-file-invoice
+ \eb67 +
+
+ +
+ + file-lambda +
+ ti ti-file-lambda
+ \f53f +
+
+ +
+ + file-like +
+ ti ti-file-like
+ \ed2b +
+
+ +
+ + file-minus +
+ ti ti-file-minus
+ \ea9e +
+
+ +
+ + file-music +
+ ti ti-file-music
+ \ea9f +
+
+ +
+ + file-off +
+ ti ti-file-off
+ \ecf2 +
+
+ +
+ + file-orientation +
+ ti ti-file-orientation
+ \f2a1 +
+
+ +
+ + file-pencil +
+ ti ti-file-pencil
+ \f039 +
+
+ +
+ + file-percent +
+ ti ti-file-percent
+ \f540 +
+
+ +
+ + file-phone +
+ ti ti-file-phone
+ \ecdc +
+
+ +
+ + file-plus +
+ ti ti-file-plus
+ \eaa0 +
+
+ +
+ + file-power +
+ ti ti-file-power
+ \f03a +
+
+ +
+ + file-report +
+ ti ti-file-report
+ \eded +
+
+ +
+ + file-rss +
+ ti ti-file-rss
+ \f03b +
+
+ +
+ + file-scissors +
+ ti ti-file-scissors
+ \f03c +
+
+ +
+ + file-search +
+ ti ti-file-search
+ \ed5d +
+
+ +
+ + file-settings +
+ ti ti-file-settings
+ \f029 +
+
+ +
+ + file-shredder +
+ ti ti-file-shredder
+ \eaa1 +
+
+ +
+ + file-signal +
+ ti ti-file-signal
+ \f03d +
+
+ +
+ + file-spreadsheet +
+ ti ti-file-spreadsheet
+ \f03e +
+
+ +
+ + file-stack +
+ ti ti-file-stack
+ \f503 +
+
+ +
+ + file-star +
+ ti ti-file-star
+ \f03f +
+
+ +
+ + file-symlink +
+ ti ti-file-symlink
+ \ed53 +
+
+ +
+ + file-text +
+ ti ti-file-text
+ \eaa2 +
+
+ +
+ + file-time +
+ ti ti-file-time
+ \f040 +
+
+ +
+ + file-typography +
+ ti ti-file-typography
+ \f041 +
+
+ +
+ + file-unknown +
+ ti ti-file-unknown
+ \f042 +
+
+ +
+ + file-upload +
+ ti ti-file-upload
+ \ec91 +
+
+ +
+ + file-vector +
+ ti ti-file-vector
+ \f043 +
+
+ +
+ + file-x +
+ ti ti-file-x
+ \eaa3 +
+
+ +
+ + file-zip +
+ ti ti-file-zip
+ \ed4e +
+
+ +
+ + files +
+ ti ti-files
+ \edef +
+
+ +
+ + files-off +
+ ti ti-files-off
+ \edee +
+
+ +
+ + filter +
+ ti ti-filter
+ \eaa5 +
+
+ +
+ + filter-off +
+ ti ti-filter-off
+ \ed2c +
+
+ +
+ + fingerprint +
+ ti ti-fingerprint
+ \ebd1 +
+
+ +
+ + fingerprint-off +
+ ti ti-fingerprint-off
+ \f12a +
+
+ +
+ + fire-hydrant +
+ ti ti-fire-hydrant
+ \f3a9 +
+
+ +
+ + fire-hydrant-off +
+ ti ti-fire-hydrant-off
+ \f3ec +
+
+ +
+ + firetruck +
+ ti ti-firetruck
+ \ebe8 +
+
+ +
+ + first-aid-kit +
+ ti ti-first-aid-kit
+ \ef5f +
+
+ +
+ + first-aid-kit-off +
+ ti ti-first-aid-kit-off
+ \f3ed +
+
+ +
+ + fish +
+ ti ti-fish
+ \ef2b +
+
+ +
+ + fish-bone +
+ ti ti-fish-bone
+ \f287 +
+
+ +
+ + fish-christianity +
+ ti ti-fish-christianity
+ \f58b +
+
+ +
+ + fish-hook +
+ ti ti-fish-hook
+ \f1f9 +
+
+ +
+ + fish-hook-off +
+ ti ti-fish-hook-off
+ \f3ee +
+
+ +
+ + fish-off +
+ ti ti-fish-off
+ \f12b +
+
+ +
+ + flag +
+ ti ti-flag
+ \eaa6 +
+
+ +
+ + flag-2 +
+ ti ti-flag-2
+ \ee8c +
+
+ +
+ + flag-2-off +
+ ti ti-flag-2-off
+ \f12c +
+
+ +
+ + flag-3 +
+ ti ti-flag-3
+ \ee8d +
+
+ +
+ + flag-filled +
+ ti ti-flag-filled
+ \f67a +
+
+ +
+ + flag-off +
+ ti ti-flag-off
+ \f12d +
+
+ +
+ + flame +
+ ti ti-flame
+ \ec2c +
+
+ +
+ + flame-off +
+ ti ti-flame-off
+ \f12e +
+
+ +
+ + flare +
+ ti ti-flare
+ \ee8e +
+
+ +
+ + flask +
+ ti ti-flask
+ \ebd2 +
+
+ +
+ + flask-2 +
+ ti ti-flask-2
+ \ef60 +
+
+ +
+ + flask-2-off +
+ ti ti-flask-2-off
+ \f12f +
+
+ +
+ + flask-off +
+ ti ti-flask-off
+ \f130 +
+
+ +
+ + flip-flops +
+ ti ti-flip-flops
+ \f564 +
+
+ +
+ + flip-horizontal +
+ ti ti-flip-horizontal
+ \eaa7 +
+
+ +
+ + flip-vertical +
+ ti ti-flip-vertical
+ \eaa8 +
+
+ +
+ + float-center +
+ ti ti-float-center
+ \ebb1 +
+
+ +
+ + float-left +
+ ti ti-float-left
+ \ebb2 +
+
+ +
+ + float-none +
+ ti ti-float-none
+ \ed13 +
+
+ +
+ + float-right +
+ ti ti-float-right
+ \ebb3 +
+
+ +
+ + flower +
+ ti ti-flower
+ \eff6 +
+
+ +
+ + flower-off +
+ ti ti-flower-off
+ \f131 +
+
+ +
+ + focus +
+ ti ti-focus
+ \eb8d +
+
+ +
+ + focus-2 +
+ ti ti-focus-2
+ \ebd3 +
+
+ +
+ + focus-centered +
+ ti ti-focus-centered
+ \f02a +
+
+ +
+ + fold +
+ ti ti-fold
+ \ed56 +
+
+ +
+ + fold-down +
+ ti ti-fold-down
+ \ed54 +
+
+ +
+ + fold-up +
+ ti ti-fold-up
+ \ed55 +
+
+ +
+ + folder +
+ ti ti-folder
+ \eaad +
+
+ +
+ + folder-minus +
+ ti ti-folder-minus
+ \eaaa +
+
+ +
+ + folder-off +
+ ti ti-folder-off
+ \ed14 +
+
+ +
+ + folder-plus +
+ ti ti-folder-plus
+ \eaab +
+
+ +
+ + folder-x +
+ ti ti-folder-x
+ \eaac +
+
+ +
+ + folders +
+ ti ti-folders
+ \eaae +
+
+ +
+ + folders-off +
+ ti ti-folders-off
+ \f133 +
+
+ +
+ + forbid +
+ ti ti-forbid
+ \ebd5 +
+
+ +
+ + forbid-2 +
+ ti ti-forbid-2
+ \ebd4 +
+
+ +
+ + forklift +
+ ti ti-forklift
+ \ebe9 +
+
+ +
+ + forms +
+ ti ti-forms
+ \ee8f +
+
+ +
+ + fountain +
+ ti ti-fountain
+ \f09b +
+
+ +
+ + fountain-off +
+ ti ti-fountain-off
+ \f134 +
+
+ +
+ + frame +
+ ti ti-frame
+ \eaaf +
+
+ +
+ + frame-off +
+ ti ti-frame-off
+ \f135 +
+
+ +
+ + free-rights +
+ ti ti-free-rights
+ \efb6 +
+
+ +
+ + fridge +
+ ti ti-fridge
+ \f1fa +
+
+ +
+ + fridge-off +
+ ti ti-fridge-off
+ \f3ef +
+
+ +
+ + friends +
+ ti ti-friends
+ \eab0 +
+
+ +
+ + friends-off +
+ ti ti-friends-off
+ \f136 +
+
+ +
+ + function +
+ ti ti-function
+ \f225 +
+
+ +
+ + function-off +
+ ti ti-function-off
+ \f3f0 +
+
+ +
+ + garden-cart +
+ ti ti-garden-cart
+ \f23e +
+
+ +
+ + garden-cart-off +
+ ti ti-garden-cart-off
+ \f3f1 +
+
+ +
+ + gas-station +
+ ti ti-gas-station
+ \ec7d +
+
+ +
+ + gas-station-off +
+ ti ti-gas-station-off
+ \f137 +
+
+ +
+ + gauge +
+ ti ti-gauge
+ \eab1 +
+
+ +
+ + gauge-off +
+ ti ti-gauge-off
+ \f138 +
+
+ +
+ + gavel +
+ ti ti-gavel
+ \ef90 +
+
+ +
+ + gender-agender +
+ ti ti-gender-agender
+ \f0e1 +
+
+ +
+ + gender-androgyne +
+ ti ti-gender-androgyne
+ \f0e2 +
+
+ +
+ + gender-bigender +
+ ti ti-gender-bigender
+ \f0e3 +
+
+ +
+ + gender-demiboy +
+ ti ti-gender-demiboy
+ \f0e4 +
+
+ +
+ + gender-demigirl +
+ ti ti-gender-demigirl
+ \f0e5 +
+
+ +
+ + gender-epicene +
+ ti ti-gender-epicene
+ \f0e6 +
+
+ +
+ + gender-female +
+ ti ti-gender-female
+ \f0e7 +
+
+ +
+ + gender-femme +
+ ti ti-gender-femme
+ \f0e8 +
+
+ +
+ + gender-genderfluid +
+ ti ti-gender-genderfluid
+ \f0e9 +
+
+ +
+ + gender-genderless +
+ ti ti-gender-genderless
+ \f0ea +
+
+ +
+ + gender-genderqueer +
+ ti ti-gender-genderqueer
+ \f0eb +
+
+ +
+ + gender-hermaphrodite +
+ ti ti-gender-hermaphrodite
+ \f0ec +
+
+ +
+ + gender-intergender +
+ ti ti-gender-intergender
+ \f0ed +
+
+ +
+ + gender-male +
+ ti ti-gender-male
+ \f0ee +
+
+ +
+ + gender-neutrois +
+ ti ti-gender-neutrois
+ \f0ef +
+
+ +
+ + gender-third +
+ ti ti-gender-third
+ \f0f0 +
+
+ +
+ + gender-transgender +
+ ti ti-gender-transgender
+ \f0f1 +
+
+ +
+ + gender-trasvesti +
+ ti ti-gender-trasvesti
+ \f0f2 +
+
+ +
+ + geometry +
+ ti ti-geometry
+ \ee90 +
+
+ +
+ + ghost +
+ ti ti-ghost
+ \eb8e +
+
+ +
+ + ghost-2 +
+ ti ti-ghost-2
+ \f57c +
+
+ +
+ + ghost-off +
+ ti ti-ghost-off
+ \f3f2 +
+
+ +
+ + gif +
+ ti ti-gif
+ \f257 +
+
+ +
+ + gift +
+ ti ti-gift
+ \eb68 +
+
+ +
+ + gift-card +
+ ti ti-gift-card
+ \f3aa +
+
+ +
+ + gift-off +
+ ti ti-gift-off
+ \f3f3 +
+
+ +
+ + git-branch +
+ ti ti-git-branch
+ \eab2 +
+
+ +
+ + git-branch-deleted +
+ ti ti-git-branch-deleted
+ \f57d +
+
+ +
+ + git-cherry-pick +
+ ti ti-git-cherry-pick
+ \f57e +
+
+ +
+ + git-commit +
+ ti ti-git-commit
+ \eab3 +
+
+ +
+ + git-compare +
+ ti ti-git-compare
+ \eab4 +
+
+ +
+ + git-fork +
+ ti ti-git-fork
+ \eb8f +
+
+ +
+ + git-merge +
+ ti ti-git-merge
+ \eab5 +
+
+ +
+ + git-pull-request +
+ ti ti-git-pull-request
+ \eab6 +
+
+ +
+ + git-pull-request-closed +
+ ti ti-git-pull-request-closed
+ \ef7f +
+
+ +
+ + git-pull-request-draft +
+ ti ti-git-pull-request-draft
+ \efb7 +
+
+ +
+ + gizmo +
+ ti ti-gizmo
+ \f02b +
+
+ +
+ + glass +
+ ti ti-glass
+ \eab8 +
+
+ +
+ + glass-full +
+ ti ti-glass-full
+ \eab7 +
+
+ +
+ + glass-off +
+ ti ti-glass-off
+ \ee91 +
+
+ +
+ + globe +
+ ti ti-globe
+ \eab9 +
+
+ +
+ + globe-off +
+ ti ti-globe-off
+ \f139 +
+
+ +
+ + go-game +
+ ti ti-go-game
+ \f512 +
+
+ +
+ + golf +
+ ti ti-golf
+ \ed8c +
+
+ +
+ + golf-off +
+ ti ti-golf-off
+ \f13a +
+
+ +
+ + gps +
+ ti ti-gps
+ \ed7a +
+
+ +
+ + gradienter +
+ ti ti-gradienter
+ \f3ab +
+
+ +
+ + grain +
+ ti ti-grain
+ \ee92 +
+
+ +
+ + graph +
+ ti ti-graph
+ \f288 +
+
+ +
+ + graph-off +
+ ti ti-graph-off
+ \f3f4 +
+
+ +
+ + grave +
+ ti ti-grave
+ \f580 +
+
+ +
+ + grave-2 +
+ ti ti-grave-2
+ \f57f +
+
+ +
+ + grid-dots +
+ ti ti-grid-dots
+ \eaba +
+
+ +
+ + grid-pattern +
+ ti ti-grid-pattern
+ \efc9 +
+
+ +
+ + grill +
+ ti ti-grill
+ \efa9 +
+
+ +
+ + grill-fork +
+ ti ti-grill-fork
+ \f35b +
+
+ +
+ + grill-off +
+ ti ti-grill-off
+ \f3f5 +
+
+ +
+ + grill-spatula +
+ ti ti-grill-spatula
+ \f35c +
+
+ +
+ + grip-horizontal +
+ ti ti-grip-horizontal
+ \ec00 +
+
+ +
+ + grip-vertical +
+ ti ti-grip-vertical
+ \ec01 +
+
+ +
+ + growth +
+ ti ti-growth
+ \ee93 +
+
+ +
+ + guitar-pick +
+ ti ti-guitar-pick
+ \f4c6 +
+
+ +
+ + guitar-pick-filled +
+ ti ti-guitar-pick-filled
+ \f67b +
+
+ +
+ + h-1 +
+ ti ti-h-1
+ \ec94 +
+
+ +
+ + h-2 +
+ ti ti-h-2
+ \ec95 +
+
+ +
+ + h-3 +
+ ti ti-h-3
+ \ec96 +
+
+ +
+ + h-4 +
+ ti ti-h-4
+ \ec97 +
+
+ +
+ + h-5 +
+ ti ti-h-5
+ \ec98 +
+
+ +
+ + h-6 +
+ ti ti-h-6
+ \ec99 +
+
+ +
+ + hammer +
+ ti ti-hammer
+ \ef91 +
+
+ +
+ + hammer-off +
+ ti ti-hammer-off
+ \f13c +
+
+ +
+ + hand-click +
+ ti ti-hand-click
+ \ef4f +
+
+ +
+ + hand-finger +
+ ti ti-hand-finger
+ \ee94 +
+
+ +
+ + hand-finger-off +
+ ti ti-hand-finger-off
+ \f13d +
+
+ +
+ + hand-grab +
+ ti ti-hand-grab
+ \f091 +
+
+ +
+ + hand-little-finger +
+ ti ti-hand-little-finger
+ \ee95 +
+
+ +
+ + hand-middle-finger +
+ ti ti-hand-middle-finger
+ \ec2d +
+
+ +
+ + hand-move +
+ ti ti-hand-move
+ \ef50 +
+
+ +
+ + hand-off +
+ ti ti-hand-off
+ \ed15 +
+
+ +
+ + hand-ring-finger +
+ ti ti-hand-ring-finger
+ \ee96 +
+
+ +
+ + hand-rock +
+ ti ti-hand-rock
+ \ee97 +
+
+ +
+ + hand-sanitizer +
+ ti ti-hand-sanitizer
+ \f5f4 +
+
+ +
+ + hand-stop +
+ ti ti-hand-stop
+ \ec2e +
+
+ +
+ + hand-three-fingers +
+ ti ti-hand-three-fingers
+ \ee98 +
+
+ +
+ + hand-two-fingers +
+ ti ti-hand-two-fingers
+ \ee99 +
+
+ +
+ + hanger +
+ ti ti-hanger
+ \ee9a +
+
+ +
+ + hanger-2 +
+ ti ti-hanger-2
+ \f09c +
+
+ +
+ + hanger-off +
+ ti ti-hanger-off
+ \f13e +
+
+ +
+ + hash +
+ ti ti-hash
+ \eabc +
+
+ +
+ + haze +
+ ti ti-haze
+ \efaa +
+
+ +
+ + heading +
+ ti ti-heading
+ \ee9b +
+
+ +
+ + heading-off +
+ ti ti-heading-off
+ \f13f +
+
+ +
+ + headphones +
+ ti ti-headphones
+ \eabd +
+
+ +
+ + headphones-off +
+ ti ti-headphones-off
+ \ed1d +
+
+ +
+ + headset +
+ ti ti-headset
+ \eb90 +
+
+ +
+ + headset-off +
+ ti ti-headset-off
+ \f3f6 +
+
+ +
+ + health-recognition +
+ ti ti-health-recognition
+ \f1fb +
+
+ +
+ + heart +
+ ti ti-heart
+ \eabe +
+
+ +
+ + heart-broken +
+ ti ti-heart-broken
+ \ecba +
+
+ +
+ + heart-filled +
+ ti ti-heart-filled
+ \f67c +
+
+ +
+ + heart-handshake +
+ ti ti-heart-handshake
+ \f0f3 +
+
+ +
+ + heart-minus +
+ ti ti-heart-minus
+ \f140 +
+
+ +
+ + heart-off +
+ ti ti-heart-off
+ \f141 +
+
+ +
+ + heart-plus +
+ ti ti-heart-plus
+ \f142 +
+
+ +
+ + heart-rate-monitor +
+ ti ti-heart-rate-monitor
+ \ef61 +
+
+ +
+ + heartbeat +
+ ti ti-heartbeat
+ \ef92 +
+
+ +
+ + hearts +
+ ti ti-hearts
+ \f387 +
+
+ +
+ + hearts-off +
+ ti ti-hearts-off
+ \f3f7 +
+
+ +
+ + helicopter +
+ ti ti-helicopter
+ \ed8e +
+
+ +
+ + helicopter-landing +
+ ti ti-helicopter-landing
+ \ed8d +
+
+ +
+ + helmet +
+ ti ti-helmet
+ \efca +
+
+ +
+ + helmet-off +
+ ti ti-helmet-off
+ \f143 +
+
+ +
+ + help +
+ ti ti-help
+ \eabf +
+
+ +
+ + help-off +
+ ti ti-help-off
+ \f3f8 +
+
+ +
+ + hexagon +
+ ti ti-hexagon
+ \ec02 +
+
+ +
+ + hexagon-3d +
+ ti ti-hexagon-3d
+ \f4c7 +
+
+ +
+ + hexagon-filled +
+ ti ti-hexagon-filled
+ \f67d +
+
+ +
+ + hexagon-letter-a +
+ ti ti-hexagon-letter-a
+ \f463 +
+
+ +
+ + hexagon-letter-b +
+ ti ti-hexagon-letter-b
+ \f464 +
+
+ +
+ + hexagon-letter-c +
+ ti ti-hexagon-letter-c
+ \f465 +
+
+ +
+ + hexagon-letter-d +
+ ti ti-hexagon-letter-d
+ \f466 +
+
+ +
+ + hexagon-letter-e +
+ ti ti-hexagon-letter-e
+ \f467 +
+
+ +
+ + hexagon-letter-f +
+ ti ti-hexagon-letter-f
+ \f468 +
+
+ +
+ + hexagon-letter-g +
+ ti ti-hexagon-letter-g
+ \f469 +
+
+ +
+ + hexagon-letter-h +
+ ti ti-hexagon-letter-h
+ \f46a +
+
+ +
+ + hexagon-letter-i +
+ ti ti-hexagon-letter-i
+ \f46b +
+
+ +
+ + hexagon-letter-j +
+ ti ti-hexagon-letter-j
+ \f46c +
+
+ +
+ + hexagon-letter-k +
+ ti ti-hexagon-letter-k
+ \f46d +
+
+ +
+ + hexagon-letter-l +
+ ti ti-hexagon-letter-l
+ \f46e +
+
+ +
+ + hexagon-letter-m +
+ ti ti-hexagon-letter-m
+ \f46f +
+
+ +
+ + hexagon-letter-n +
+ ti ti-hexagon-letter-n
+ \f470 +
+
+ +
+ + hexagon-letter-o +
+ ti ti-hexagon-letter-o
+ \f471 +
+
+ +
+ + hexagon-letter-p +
+ ti ti-hexagon-letter-p
+ \f472 +
+
+ +
+ + hexagon-letter-q +
+ ti ti-hexagon-letter-q
+ \f473 +
+
+ +
+ + hexagon-letter-r +
+ ti ti-hexagon-letter-r
+ \f474 +
+
+ +
+ + hexagon-letter-s +
+ ti ti-hexagon-letter-s
+ \f475 +
+
+ +
+ + hexagon-letter-t +
+ ti ti-hexagon-letter-t
+ \f476 +
+
+ +
+ + hexagon-letter-u +
+ ti ti-hexagon-letter-u
+ \f477 +
+
+ +
+ + hexagon-letter-v +
+ ti ti-hexagon-letter-v
+ \f4b3 +
+
+ +
+ + hexagon-letter-w +
+ ti ti-hexagon-letter-w
+ \f478 +
+
+ +
+ + hexagon-letter-x +
+ ti ti-hexagon-letter-x
+ \f479 +
+
+ +
+ + hexagon-letter-y +
+ ti ti-hexagon-letter-y
+ \f47a +
+
+ +
+ + hexagon-letter-z +
+ ti ti-hexagon-letter-z
+ \f47b +
+
+ +
+ + hexagon-number-0 +
+ ti ti-hexagon-number-0
+ \f459 +
+
+ +
+ + hexagon-number-1 +
+ ti ti-hexagon-number-1
+ \f45a +
+
+ +
+ + hexagon-number-2 +
+ ti ti-hexagon-number-2
+ \f45b +
+
+ +
+ + hexagon-number-3 +
+ ti ti-hexagon-number-3
+ \f45c +
+
+ +
+ + hexagon-number-4 +
+ ti ti-hexagon-number-4
+ \f45d +
+
+ +
+ + hexagon-number-5 +
+ ti ti-hexagon-number-5
+ \f45e +
+
+ +
+ + hexagon-number-6 +
+ ti ti-hexagon-number-6
+ \f45f +
+
+ +
+ + hexagon-number-7 +
+ ti ti-hexagon-number-7
+ \f460 +
+
+ +
+ + hexagon-number-8 +
+ ti ti-hexagon-number-8
+ \f461 +
+
+ +
+ + hexagon-number-9 +
+ ti ti-hexagon-number-9
+ \f462 +
+
+ +
+ + hexagon-off +
+ ti ti-hexagon-off
+ \ee9c +
+
+ +
+ + hexagons +
+ ti ti-hexagons
+ \f09d +
+
+ +
+ + hexagons-off +
+ ti ti-hexagons-off
+ \f3f9 +
+
+ +
+ + hierarchy +
+ ti ti-hierarchy
+ \ee9e +
+
+ +
+ + hierarchy-2 +
+ ti ti-hierarchy-2
+ \ee9d +
+
+ +
+ + hierarchy-3 +
+ ti ti-hierarchy-3
+ \f289 +
+
+ +
+ + hierarchy-off +
+ ti ti-hierarchy-off
+ \f3fa +
+
+ +
+ + highlight +
+ ti ti-highlight
+ \ef3f +
+
+ +
+ + highlight-off +
+ ti ti-highlight-off
+ \f144 +
+
+ +
+ + history +
+ ti ti-history
+ \ebea +
+
+ +
+ + history-off +
+ ti ti-history-off
+ \f3fb +
+
+ +
+ + history-toggle +
+ ti ti-history-toggle
+ \f1fc +
+
+ +
+ + home +
+ ti ti-home
+ \eac1 +
+
+ +
+ + home-2 +
+ ti ti-home-2
+ \eac0 +
+
+ +
+ + home-bolt +
+ ti ti-home-bolt
+ \f336 +
+
+ +
+ + home-cancel +
+ ti ti-home-cancel
+ \f350 +
+
+ +
+ + home-check +
+ ti ti-home-check
+ \f337 +
+
+ +
+ + home-cog +
+ ti ti-home-cog
+ \f338 +
+
+ +
+ + home-dollar +
+ ti ti-home-dollar
+ \f339 +
+
+ +
+ + home-dot +
+ ti ti-home-dot
+ \f33a +
+
+ +
+ + home-down +
+ ti ti-home-down
+ \f33b +
+
+ +
+ + home-eco +
+ ti ti-home-eco
+ \f351 +
+
+ +
+ + home-edit +
+ ti ti-home-edit
+ \f352 +
+
+ +
+ + home-exclamation +
+ ti ti-home-exclamation
+ \f33c +
+
+ +
+ + home-hand +
+ ti ti-home-hand
+ \f504 +
+
+ +
+ + home-heart +
+ ti ti-home-heart
+ \f353 +
+
+ +
+ + home-infinity +
+ ti ti-home-infinity
+ \f505 +
+
+ +
+ + home-link +
+ ti ti-home-link
+ \f354 +
+
+ +
+ + home-minus +
+ ti ti-home-minus
+ \f33d +
+
+ +
+ + home-move +
+ ti ti-home-move
+ \f33e +
+
+ +
+ + home-off +
+ ti ti-home-off
+ \f145 +
+
+ +
+ + home-plus +
+ ti ti-home-plus
+ \f33f +
+
+ +
+ + home-question +
+ ti ti-home-question
+ \f340 +
+
+ +
+ + home-ribbon +
+ ti ti-home-ribbon
+ \f355 +
+
+ +
+ + home-search +
+ ti ti-home-search
+ \f341 +
+
+ +
+ + home-share +
+ ti ti-home-share
+ \f342 +
+
+ +
+ + home-shield +
+ ti ti-home-shield
+ \f343 +
+
+ +
+ + home-signal +
+ ti ti-home-signal
+ \f356 +
+
+ +
+ + home-star +
+ ti ti-home-star
+ \f344 +
+
+ +
+ + home-stats +
+ ti ti-home-stats
+ \f345 +
+
+ +
+ + home-up +
+ ti ti-home-up
+ \f346 +
+
+ +
+ + home-x +
+ ti ti-home-x
+ \f347 +
+
+ +
+ + horse-toy +
+ ti ti-horse-toy
+ \f28a +
+
+ +
+ + hotel-service +
+ ti ti-hotel-service
+ \ef80 +
+
+ +
+ + hourglass +
+ ti ti-hourglass
+ \ef93 +
+
+ +
+ + hourglass-empty +
+ ti ti-hourglass-empty
+ \f146 +
+
+ +
+ + hourglass-high +
+ ti ti-hourglass-high
+ \f092 +
+
+ +
+ + hourglass-low +
+ ti ti-hourglass-low
+ \f093 +
+
+ +
+ + hourglass-off +
+ ti ti-hourglass-off
+ \f147 +
+
+ +
+ + ice-cream +
+ ti ti-ice-cream
+ \eac2 +
+
+ +
+ + ice-cream-2 +
+ ti ti-ice-cream-2
+ \ee9f +
+
+ +
+ + ice-cream-off +
+ ti ti-ice-cream-off
+ \f148 +
+
+ +
+ + ice-skating +
+ ti ti-ice-skating
+ \efcb +
+
+ +
+ + icons +
+ ti ti-icons
+ \f1d4 +
+
+ +
+ + icons-off +
+ ti ti-icons-off
+ \f3fc +
+
+ +
+ + id +
+ ti ti-id
+ \eac3 +
+
+ +
+ + id-badge +
+ ti ti-id-badge
+ \eff7 +
+
+ +
+ + id-badge-2 +
+ ti ti-id-badge-2
+ \f076 +
+
+ +
+ + id-badge-off +
+ ti ti-id-badge-off
+ \f3fd +
+
+ +
+ + id-off +
+ ti ti-id-off
+ \f149 +
+
+ +
+ + inbox +
+ ti ti-inbox
+ \eac4 +
+
+ +
+ + inbox-off +
+ ti ti-inbox-off
+ \f14a +
+
+ +
+ + indent-decrease +
+ ti ti-indent-decrease
+ \eb91 +
+
+ +
+ + indent-increase +
+ ti ti-indent-increase
+ \eb92 +
+
+ +
+ + infinity +
+ ti ti-infinity
+ \eb69 +
+
+ +
+ + infinity-off +
+ ti ti-infinity-off
+ \f3fe +
+
+ +
+ + info-circle +
+ ti ti-info-circle
+ \eac5 +
+
+ +
+ + info-square +
+ ti ti-info-square
+ \eac6 +
+
+ +
+ + info-square-rounded +
+ ti ti-info-square-rounded
+ \f635 +
+
+ +
+ + inner-shadow-bottom +
+ ti ti-inner-shadow-bottom
+ \f520 +
+
+ +
+ + inner-shadow-bottom-left +
+ ti ti-inner-shadow-bottom-left
+ \f51e +
+
+ +
+ + inner-shadow-bottom-right +
+ ti ti-inner-shadow-bottom-right
+ \f51f +
+
+ +
+ + inner-shadow-left +
+ ti ti-inner-shadow-left
+ \f521 +
+
+ +
+ + inner-shadow-right +
+ ti ti-inner-shadow-right
+ \f522 +
+
+ +
+ + inner-shadow-top +
+ ti ti-inner-shadow-top
+ \f525 +
+
+ +
+ + inner-shadow-top-left +
+ ti ti-inner-shadow-top-left
+ \f523 +
+
+ +
+ + inner-shadow-top-right +
+ ti ti-inner-shadow-top-right
+ \f524 +
+
+ +
+ + input-search +
+ ti ti-input-search
+ \f2a2 +
+
+ +
+ + ironing-1 +
+ ti ti-ironing-1
+ \f2f4 +
+
+ +
+ + ironing-2 +
+ ti ti-ironing-2
+ \f2f5 +
+
+ +
+ + ironing-3 +
+ ti ti-ironing-3
+ \f2f6 +
+
+ +
+ + ironing-off +
+ ti ti-ironing-off
+ \f2f7 +
+
+ +
+ + ironing-steam +
+ ti ti-ironing-steam
+ \f2f9 +
+
+ +
+ + ironing-steam-off +
+ ti ti-ironing-steam-off
+ \f2f8 +
+
+ +
+ + italic +
+ ti ti-italic
+ \eb93 +
+
+ +
+ + jacket +
+ ti ti-jacket
+ \f661 +
+
+ +
+ + jetpack +
+ ti ti-jetpack
+ \f581 +
+
+ +
+ + jewish-star +
+ ti ti-jewish-star
+ \f3ff +
+
+ +
+ + jewish-star-filled +
+ ti ti-jewish-star-filled
+ \f67e +
+
+ +
+ + jpg +
+ ti ti-jpg
+ \f3ac +
+
+ +
+ + jump-rope +
+ ti ti-jump-rope
+ \ed8f +
+
+ +
+ + karate +
+ ti ti-karate
+ \ed32 +
+
+ +
+ + kayak +
+ ti ti-kayak
+ \f1d6 +
+
+ +
+ + kering +
+ ti ti-kering
+ \efb8 +
+
+ +
+ + key +
+ ti ti-key
+ \eac7 +
+
+ +
+ + key-off +
+ ti ti-key-off
+ \f14b +
+
+ +
+ + keyboard +
+ ti ti-keyboard
+ \ebd6 +
+
+ +
+ + keyboard-hide +
+ ti ti-keyboard-hide
+ \ec7e +
+
+ +
+ + keyboard-off +
+ ti ti-keyboard-off
+ \eea0 +
+
+ +
+ + keyboard-show +
+ ti ti-keyboard-show
+ \ec7f +
+
+ +
+ + keyframe +
+ ti ti-keyframe
+ \f576 +
+
+ +
+ + keyframe-align-center +
+ ti ti-keyframe-align-center
+ \f582 +
+
+ +
+ + keyframe-align-horizontal +
+ ti ti-keyframe-align-horizontal
+ \f583 +
+
+ +
+ + keyframe-align-vertical +
+ ti ti-keyframe-align-vertical
+ \f584 +
+
+ +
+ + keyframes +
+ ti ti-keyframes
+ \f585 +
+
+ +
+ + ladder +
+ ti ti-ladder
+ \efe2 +
+
+ +
+ + ladder-off +
+ ti ti-ladder-off
+ \f14c +
+
+ +
+ + lambda +
+ ti ti-lambda
+ \f541 +
+
+ +
+ + lamp +
+ ti ti-lamp
+ \efab +
+
+ +
+ + lamp-2 +
+ ti ti-lamp-2
+ \f09e +
+
+ +
+ + lamp-off +
+ ti ti-lamp-off
+ \f14d +
+
+ +
+ + language +
+ ti ti-language
+ \ebbe +
+
+ +
+ + language-hiragana +
+ ti ti-language-hiragana
+ \ef77 +
+
+ +
+ + language-katakana +
+ ti ti-language-katakana
+ \ef78 +
+
+ +
+ + language-off +
+ ti ti-language-off
+ \f14e +
+
+ +
+ + lasso +
+ ti ti-lasso
+ \efac +
+
+ +
+ + lasso-off +
+ ti ti-lasso-off
+ \f14f +
+
+ +
+ + lasso-polygon +
+ ti ti-lasso-polygon
+ \f388 +
+
+ +
+ + layers-difference +
+ ti ti-layers-difference
+ \eac8 +
+
+ +
+ + layers-intersect +
+ ti ti-layers-intersect
+ \eac9 +
+
+ +
+ + layers-intersect-2 +
+ ti ti-layers-intersect-2
+ \eff8 +
+
+ +
+ + layers-linked +
+ ti ti-layers-linked
+ \eea1 +
+
+ +
+ + layers-off +
+ ti ti-layers-off
+ \f150 +
+
+ +
+ + layers-subtract +
+ ti ti-layers-subtract
+ \eaca +
+
+ +
+ + layers-union +
+ ti ti-layers-union
+ \eacb +
+
+ +
+ + layout +
+ ti ti-layout
+ \eadb +
+
+ +
+ + layout-2 +
+ ti ti-layout-2
+ \eacc +
+
+ +
+ + layout-align-bottom +
+ ti ti-layout-align-bottom
+ \eacd +
+
+ +
+ + layout-align-center +
+ ti ti-layout-align-center
+ \eace +
+
+ +
+ + layout-align-left +
+ ti ti-layout-align-left
+ \eacf +
+
+ +
+ + layout-align-middle +
+ ti ti-layout-align-middle
+ \ead0 +
+
+ +
+ + layout-align-right +
+ ti ti-layout-align-right
+ \ead1 +
+
+ +
+ + layout-align-top +
+ ti ti-layout-align-top
+ \ead2 +
+
+ +
+ + layout-board +
+ ti ti-layout-board
+ \ef95 +
+
+ +
+ + layout-board-split +
+ ti ti-layout-board-split
+ \ef94 +
+
+ +
+ + layout-bottombar +
+ ti ti-layout-bottombar
+ \ead3 +
+
+ +
+ + layout-bottombar-collapse +
+ ti ti-layout-bottombar-collapse
+ \f28b +
+
+ +
+ + layout-bottombar-expand +
+ ti ti-layout-bottombar-expand
+ \f28c +
+
+ +
+ + layout-cards +
+ ti ti-layout-cards
+ \ec13 +
+
+ +
+ + layout-collage +
+ ti ti-layout-collage
+ \f389 +
+
+ +
+ + layout-columns +
+ ti ti-layout-columns
+ \ead4 +
+
+ +
+ + layout-dashboard +
+ ti ti-layout-dashboard
+ \f02c +
+
+ +
+ + layout-distribute-horizontal +
+ ti ti-layout-distribute-horizontal
+ \ead5 +
+
+ +
+ + layout-distribute-vertical +
+ ti ti-layout-distribute-vertical
+ \ead6 +
+
+ +
+ + layout-grid +
+ ti ti-layout-grid
+ \edba +
+
+ +
+ + layout-grid-add +
+ ti ti-layout-grid-add
+ \edb9 +
+
+ +
+ + layout-kanban +
+ ti ti-layout-kanban
+ \ec3f +
+
+ +
+ + layout-list +
+ ti ti-layout-list
+ \ec14 +
+
+ +
+ + layout-navbar +
+ ti ti-layout-navbar
+ \ead7 +
+
+ +
+ + layout-navbar-collapse +
+ ti ti-layout-navbar-collapse
+ \f28d +
+
+ +
+ + layout-navbar-expand +
+ ti ti-layout-navbar-expand
+ \f28e +
+
+ +
+ + layout-off +
+ ti ti-layout-off
+ \f151 +
+
+ +
+ + layout-rows +
+ ti ti-layout-rows
+ \ead8 +
+
+ +
+ + layout-sidebar +
+ ti ti-layout-sidebar
+ \eada +
+
+ +
+ + layout-sidebar-left-collapse +
+ ti ti-layout-sidebar-left-collapse
+ \f004 +
+
+ +
+ + layout-sidebar-left-expand +
+ ti ti-layout-sidebar-left-expand
+ \f005 +
+
+ +
+ + layout-sidebar-right +
+ ti ti-layout-sidebar-right
+ \ead9 +
+
+ +
+ + layout-sidebar-right-collapse +
+ ti ti-layout-sidebar-right-collapse
+ \f006 +
+
+ +
+ + layout-sidebar-right-expand +
+ ti ti-layout-sidebar-right-expand
+ \f007 +
+
+ +
+ + leaf +
+ ti ti-leaf
+ \ed4f +
+
+ +
+ + leaf-off +
+ ti ti-leaf-off
+ \f400 +
+
+ +
+ + lego +
+ ti ti-lego
+ \eadc +
+
+ +
+ + lego-off +
+ ti ti-lego-off
+ \f401 +
+
+ +
+ + lemon +
+ ti ti-lemon
+ \ef10 +
+
+ +
+ + lemon-2 +
+ ti ti-lemon-2
+ \ef81 +
+
+ +
+ + letter-a +
+ ti ti-letter-a
+ \ec50 +
+
+ +
+ + letter-b +
+ ti ti-letter-b
+ \ec51 +
+
+ +
+ + letter-c +
+ ti ti-letter-c
+ \ec52 +
+
+ +
+ + letter-case +
+ ti ti-letter-case
+ \eea5 +
+
+ +
+ + letter-case-lower +
+ ti ti-letter-case-lower
+ \eea2 +
+
+ +
+ + letter-case-toggle +
+ ti ti-letter-case-toggle
+ \eea3 +
+
+ +
+ + letter-case-upper +
+ ti ti-letter-case-upper
+ \eea4 +
+
+ +
+ + letter-d +
+ ti ti-letter-d
+ \ec53 +
+
+ +
+ + letter-e +
+ ti ti-letter-e
+ \ec54 +
+
+ +
+ + letter-f +
+ ti ti-letter-f
+ \ec55 +
+
+ +
+ + letter-g +
+ ti ti-letter-g
+ \ec56 +
+
+ +
+ + letter-h +
+ ti ti-letter-h
+ \ec57 +
+
+ +
+ + letter-i +
+ ti ti-letter-i
+ \ec58 +
+
+ +
+ + letter-j +
+ ti ti-letter-j
+ \ec59 +
+
+ +
+ + letter-k +
+ ti ti-letter-k
+ \ec5a +
+
+ +
+ + letter-l +
+ ti ti-letter-l
+ \ec5b +
+
+ +
+ + letter-m +
+ ti ti-letter-m
+ \ec5c +
+
+ +
+ + letter-n +
+ ti ti-letter-n
+ \ec5d +
+
+ +
+ + letter-o +
+ ti ti-letter-o
+ \ec5e +
+
+ +
+ + letter-p +
+ ti ti-letter-p
+ \ec5f +
+
+ +
+ + letter-q +
+ ti ti-letter-q
+ \ec60 +
+
+ +
+ + letter-r +
+ ti ti-letter-r
+ \ec61 +
+
+ +
+ + letter-s +
+ ti ti-letter-s
+ \ec62 +
+
+ +
+ + letter-spacing +
+ ti ti-letter-spacing
+ \eea6 +
+
+ +
+ + letter-t +
+ ti ti-letter-t
+ \ec63 +
+
+ +
+ + letter-u +
+ ti ti-letter-u
+ \ec64 +
+
+ +
+ + letter-v +
+ ti ti-letter-v
+ \ec65 +
+
+ +
+ + letter-w +
+ ti ti-letter-w
+ \ec66 +
+
+ +
+ + letter-x +
+ ti ti-letter-x
+ \ec67 +
+
+ +
+ + letter-y +
+ ti ti-letter-y
+ \ec68 +
+
+ +
+ + letter-z +
+ ti ti-letter-z
+ \ec69 +
+
+ +
+ + license +
+ ti ti-license
+ \ebc0 +
+
+ +
+ + license-off +
+ ti ti-license-off
+ \f153 +
+
+ +
+ + lifebuoy +
+ ti ti-lifebuoy
+ \eadd +
+
+ +
+ + lifebuoy-off +
+ ti ti-lifebuoy-off
+ \f154 +
+
+ +
+ + line +
+ ti ti-line
+ \ec40 +
+
+ +
+ + line-dashed +
+ ti ti-line-dashed
+ \eea7 +
+
+ +
+ + line-dotted +
+ ti ti-line-dotted
+ \eea8 +
+
+ +
+ + line-height +
+ ti ti-line-height
+ \eb94 +
+
+ +
+ + link +
+ ti ti-link
+ \eade +
+
+ +
+ + link-off +
+ ti ti-link-off
+ \f402 +
+
+ +
+ + list +
+ ti ti-list
+ \eb6b +
+
+ +
+ + list-check +
+ ti ti-list-check
+ \eb6a +
+
+ +
+ + list-details +
+ ti ti-list-details
+ \ef40 +
+
+ +
+ + list-numbers +
+ ti ti-list-numbers
+ \ef11 +
+
+ +
+ + list-search +
+ ti ti-list-search
+ \eea9 +
+
+ +
+ + live-photo +
+ ti ti-live-photo
+ \eadf +
+
+ +
+ + live-photo-off +
+ ti ti-live-photo-off
+ \f403 +
+
+ +
+ + live-view +
+ ti ti-live-view
+ \ec6b +
+
+ +
+ + loader +
+ ti ti-loader
+ \eca3 +
+
+ +
+ + loader-2 +
+ ti ti-loader-2
+ \f226 +
+
+ +
+ + loader-3 +
+ ti ti-loader-3
+ \f513 +
+
+ +
+ + loader-quarter +
+ ti ti-loader-quarter
+ \eca2 +
+
+ +
+ + location +
+ ti ti-location
+ \eae0 +
+
+ +
+ + location-broken +
+ ti ti-location-broken
+ \f2c4 +
+
+ +
+ + location-filled +
+ ti ti-location-filled
+ \f67f +
+
+ +
+ + location-off +
+ ti ti-location-off
+ \f155 +
+
+ +
+ + lock +
+ ti ti-lock
+ \eae2 +
+
+ +
+ + lock-access +
+ ti ti-lock-access
+ \eeaa +
+
+ +
+ + lock-access-off +
+ ti ti-lock-access-off
+ \f404 +
+
+ +
+ + lock-off +
+ ti ti-lock-off
+ \ed1e +
+
+ +
+ + lock-open +
+ ti ti-lock-open
+ \eae1 +
+
+ +
+ + lock-open-off +
+ ti ti-lock-open-off
+ \f156 +
+
+ +
+ + lock-square +
+ ti ti-lock-square
+ \ef51 +
+
+ +
+ + lock-square-rounded +
+ ti ti-lock-square-rounded
+ \f636 +
+
+ +
+ + logic-and +
+ ti ti-logic-and
+ \f240 +
+
+ +
+ + logic-buffer +
+ ti ti-logic-buffer
+ \f241 +
+
+ +
+ + logic-nand +
+ ti ti-logic-nand
+ \f242 +
+
+ +
+ + logic-nor +
+ ti ti-logic-nor
+ \f243 +
+
+ +
+ + logic-not +
+ ti ti-logic-not
+ \f244 +
+
+ +
+ + logic-or +
+ ti ti-logic-or
+ \f245 +
+
+ +
+ + logic-xnor +
+ ti ti-logic-xnor
+ \f246 +
+
+ +
+ + logic-xor +
+ ti ti-logic-xor
+ \f247 +
+
+ +
+ + login +
+ ti ti-login
+ \eba7 +
+
+ +
+ + logout +
+ ti ti-logout
+ \eba8 +
+
+ +
+ + lollipop +
+ ti ti-lollipop
+ \efcc +
+
+ +
+ + lollipop-off +
+ ti ti-lollipop-off
+ \f157 +
+
+ +
+ + luggage +
+ ti ti-luggage
+ \efad +
+
+ +
+ + luggage-off +
+ ti ti-luggage-off
+ \f158 +
+
+ +
+ + lungs +
+ ti ti-lungs
+ \ef62 +
+
+ +
+ + lungs-off +
+ ti ti-lungs-off
+ \f405 +
+
+ +
+ + macro +
+ ti ti-macro
+ \eeab +
+
+ +
+ + macro-off +
+ ti ti-macro-off
+ \f406 +
+
+ +
+ + magnet +
+ ti ti-magnet
+ \eae3 +
+
+ +
+ + magnet-off +
+ ti ti-magnet-off
+ \f159 +
+
+ +
+ + mail +
+ ti ti-mail
+ \eae5 +
+
+ +
+ + mail-fast +
+ ti ti-mail-fast
+ \f069 +
+
+ +
+ + mail-forward +
+ ti ti-mail-forward
+ \eeac +
+
+ +
+ + mail-off +
+ ti ti-mail-off
+ \f15a +
+
+ +
+ + mail-opened +
+ ti ti-mail-opened
+ \eae4 +
+
+ +
+ + mailbox +
+ ti ti-mailbox
+ \eead +
+
+ +
+ + mailbox-off +
+ ti ti-mailbox-off
+ \f15b +
+
+ +
+ + man +
+ ti ti-man
+ \eae6 +
+
+ +
+ + manual-gearbox +
+ ti ti-manual-gearbox
+ \ed7b +
+
+ +
+ + map +
+ ti ti-map
+ \eae9 +
+
+ +
+ + map-2 +
+ ti ti-map-2
+ \eae7 +
+
+ +
+ + map-off +
+ ti ti-map-off
+ \f15c +
+
+ +
+ + map-pin +
+ ti ti-map-pin
+ \eae8 +
+
+ +
+ + map-pin-filled +
+ ti ti-map-pin-filled
+ \f680 +
+
+ +
+ + map-pin-off +
+ ti ti-map-pin-off
+ \ecf3 +
+
+ +
+ + map-pins +
+ ti ti-map-pins
+ \ed5e +
+
+ +
+ + map-search +
+ ti ti-map-search
+ \ef82 +
+
+ +
+ + markdown +
+ ti ti-markdown
+ \ec41 +
+
+ +
+ + markdown-off +
+ ti ti-markdown-off
+ \f407 +
+
+ +
+ + marquee +
+ ti ti-marquee
+ \ec77 +
+
+ +
+ + marquee-2 +
+ ti ti-marquee-2
+ \eeae +
+
+ +
+ + marquee-off +
+ ti ti-marquee-off
+ \f15d +
+
+ +
+ + mars +
+ ti ti-mars
+ \ec80 +
+
+ +
+ + mask +
+ ti ti-mask
+ \eeb0 +
+
+ +
+ + mask-off +
+ ti ti-mask-off
+ \eeaf +
+
+ +
+ + masks-theater +
+ ti ti-masks-theater
+ \f263 +
+
+ +
+ + masks-theater-off +
+ ti ti-masks-theater-off
+ \f408 +
+
+ +
+ + massage +
+ ti ti-massage
+ \eeb1 +
+
+ +
+ + matchstick +
+ ti ti-matchstick
+ \f577 +
+
+ +
+ + math +
+ ti ti-math
+ \ebeb +
+
+ +
+ + math-1-divide-2 +
+ ti ti-math-1-divide-2
+ \f4e2 +
+
+ +
+ + math-1-divide-3 +
+ ti ti-math-1-divide-3
+ \f4e3 +
+
+ +
+ + math-avg +
+ ti ti-math-avg
+ \f0f4 +
+
+ +
+ + math-equal-greater +
+ ti ti-math-equal-greater
+ \f4e4 +
+
+ +
+ + math-equal-lower +
+ ti ti-math-equal-lower
+ \f4e5 +
+
+ +
+ + math-function +
+ ti ti-math-function
+ \eeb2 +
+
+ +
+ + math-function-off +
+ ti ti-math-function-off
+ \f15e +
+
+ +
+ + math-function-y +
+ ti ti-math-function-y
+ \f4e6 +
+
+ +
+ + math-greater +
+ ti ti-math-greater
+ \f4e7 +
+
+ +
+ + math-integral +
+ ti ti-math-integral
+ \f4e9 +
+
+ +
+ + math-integral-x +
+ ti ti-math-integral-x
+ \f4e8 +
+
+ +
+ + math-integrals +
+ ti ti-math-integrals
+ \f4ea +
+
+ +
+ + math-lower +
+ ti ti-math-lower
+ \f4eb +
+
+ +
+ + math-max +
+ ti ti-math-max
+ \f0f5 +
+
+ +
+ + math-min +
+ ti ti-math-min
+ \f0f6 +
+
+ +
+ + math-not +
+ ti ti-math-not
+ \f4ec +
+
+ +
+ + math-off +
+ ti ti-math-off
+ \f409 +
+
+ +
+ + math-pi +
+ ti ti-math-pi
+ \f4ee +
+
+ +
+ + math-pi-divide-2 +
+ ti ti-math-pi-divide-2
+ \f4ed +
+
+ +
+ + math-symbols +
+ ti ti-math-symbols
+ \eeb3 +
+
+ +
+ + math-x-divide-2 +
+ ti ti-math-x-divide-2
+ \f4ef +
+
+ +
+ + math-x-divide-y +
+ ti ti-math-x-divide-y
+ \f4f1 +
+
+ +
+ + math-x-divide-y-2 +
+ ti ti-math-x-divide-y-2
+ \f4f0 +
+
+ +
+ + math-x-minus-x +
+ ti ti-math-x-minus-x
+ \f4f2 +
+
+ +
+ + math-x-minus-y +
+ ti ti-math-x-minus-y
+ \f4f3 +
+
+ +
+ + math-x-plus-x +
+ ti ti-math-x-plus-x
+ \f4f4 +
+
+ +
+ + math-x-plus-y +
+ ti ti-math-x-plus-y
+ \f4f5 +
+
+ +
+ + math-xy +
+ ti ti-math-xy
+ \f4f6 +
+
+ +
+ + math-y-minus-y +
+ ti ti-math-y-minus-y
+ \f4f7 +
+
+ +
+ + math-y-plus-y +
+ ti ti-math-y-plus-y
+ \f4f8 +
+
+ +
+ + maximize +
+ ti ti-maximize
+ \eaea +
+
+ +
+ + maximize-off +
+ ti ti-maximize-off
+ \f15f +
+
+ +
+ + meat +
+ ti ti-meat
+ \ef12 +
+
+ +
+ + meat-off +
+ ti ti-meat-off
+ \f40a +
+
+ +
+ + medal +
+ ti ti-medal
+ \ec78 +
+
+ +
+ + medal-2 +
+ ti ti-medal-2
+ \efcd +
+
+ +
+ + medical-cross +
+ ti ti-medical-cross
+ \ec2f +
+
+ +
+ + medical-cross-filled +
+ ti ti-medical-cross-filled
+ \f681 +
+
+ +
+ + medical-cross-off +
+ ti ti-medical-cross-off
+ \f160 +
+
+ +
+ + medicine-syrup +
+ ti ti-medicine-syrup
+ \ef63 +
+
+ +
+ + meeple +
+ ti ti-meeple
+ \f514 +
+
+ +
+ + menorah +
+ ti ti-menorah
+ \f58c +
+
+ +
+ + menu +
+ ti ti-menu
+ \eaeb +
+
+ +
+ + menu-2 +
+ ti ti-menu-2
+ \ec42 +
+
+ +
+ + menu-order +
+ ti ti-menu-order
+ \f5f5 +
+
+ +
+ + message +
+ ti ti-message
+ \eaef +
+
+ +
+ + message-2 +
+ ti ti-message-2
+ \eaec +
+
+ +
+ + message-2-code +
+ ti ti-message-2-code
+ \f012 +
+
+ +
+ + message-2-off +
+ ti ti-message-2-off
+ \f40b +
+
+ +
+ + message-2-share +
+ ti ti-message-2-share
+ \f077 +
+
+ +
+ + message-chatbot +
+ ti ti-message-chatbot
+ \f38a +
+
+ +
+ + message-circle +
+ ti ti-message-circle
+ \eaed +
+
+ +
+ + message-circle-2 +
+ ti ti-message-circle-2
+ \ed3f +
+
+ +
+ + message-circle-2-filled +
+ ti ti-message-circle-2-filled
+ \f682 +
+
+ +
+ + message-circle-off +
+ ti ti-message-circle-off
+ \ed40 +
+
+ +
+ + message-code +
+ ti ti-message-code
+ \f013 +
+
+ +
+ + message-dots +
+ ti ti-message-dots
+ \eaee +
+
+ +
+ + message-forward +
+ ti ti-message-forward
+ \f28f +
+
+ +
+ + message-language +
+ ti ti-message-language
+ \efae +
+
+ +
+ + message-off +
+ ti ti-message-off
+ \ed41 +
+
+ +
+ + message-plus +
+ ti ti-message-plus
+ \ec9a +
+
+ +
+ + message-report +
+ ti ti-message-report
+ \ec9b +
+
+ +
+ + message-share +
+ ti ti-message-share
+ \f078 +
+
+ +
+ + messages +
+ ti ti-messages
+ \eb6c +
+
+ +
+ + messages-off +
+ ti ti-messages-off
+ \ed42 +
+
+ +
+ + meteor +
+ ti ti-meteor
+ \f1fd +
+
+ +
+ + meteor-off +
+ ti ti-meteor-off
+ \f40c +
+
+ +
+ + mickey +
+ ti ti-mickey
+ \f2a3 +
+
+ +
+ + mickey-filled +
+ ti ti-mickey-filled
+ \f683 +
+
+ +
+ + microphone +
+ ti ti-microphone
+ \eaf0 +
+
+ +
+ + microphone-2 +
+ ti ti-microphone-2
+ \ef2c +
+
+ +
+ + microphone-2-off +
+ ti ti-microphone-2-off
+ \f40d +
+
+ +
+ + microphone-off +
+ ti ti-microphone-off
+ \ed16 +
+
+ +
+ + microscope +
+ ti ti-microscope
+ \ef64 +
+
+ +
+ + microscope-off +
+ ti ti-microscope-off
+ \f40e +
+
+ +
+ + microwave +
+ ti ti-microwave
+ \f248 +
+
+ +
+ + microwave-off +
+ ti ti-microwave-off
+ \f264 +
+
+ +
+ + military-award +
+ ti ti-military-award
+ \f079 +
+
+ +
+ + military-rank +
+ ti ti-military-rank
+ \efcf +
+
+ +
+ + milk +
+ ti ti-milk
+ \ef13 +
+
+ +
+ + milk-off +
+ ti ti-milk-off
+ \f40f +
+
+ +
+ + milkshake +
+ ti ti-milkshake
+ \f4c8 +
+
+ +
+ + minimize +
+ ti ti-minimize
+ \eaf1 +
+
+ +
+ + minus +
+ ti ti-minus
+ \eaf2 +
+
+ +
+ + minus-vertical +
+ ti ti-minus-vertical
+ \eeb4 +
+
+ +
+ + mist +
+ ti ti-mist
+ \ec30 +
+
+ +
+ + mist-off +
+ ti ti-mist-off
+ \f410 +
+
+ +
+ + moneybag +
+ ti ti-moneybag
+ \f506 +
+
+ +
+ + mood-angry +
+ ti ti-mood-angry
+ \f2de +
+
+ +
+ + mood-annoyed +
+ ti ti-mood-annoyed
+ \f2e0 +
+
+ +
+ + mood-annoyed-2 +
+ ti ti-mood-annoyed-2
+ \f2df +
+
+ +
+ + mood-boy +
+ ti ti-mood-boy
+ \ed2d +
+
+ +
+ + mood-confuzed +
+ ti ti-mood-confuzed
+ \eaf3 +
+
+ +
+ + mood-crazy-happy +
+ ti ti-mood-crazy-happy
+ \ed90 +
+
+ +
+ + mood-cry +
+ ti ti-mood-cry
+ \ecbb +
+
+ +
+ + mood-empty +
+ ti ti-mood-empty
+ \eeb5 +
+
+ +
+ + mood-happy +
+ ti ti-mood-happy
+ \eaf4 +
+
+ +
+ + mood-kid +
+ ti ti-mood-kid
+ \ec03 +
+
+ +
+ + mood-look-left +
+ ti ti-mood-look-left
+ \f2c5 +
+
+ +
+ + mood-look-right +
+ ti ti-mood-look-right
+ \f2c6 +
+
+ +
+ + mood-nerd +
+ ti ti-mood-nerd
+ \f2e1 +
+
+ +
+ + mood-nervous +
+ ti ti-mood-nervous
+ \ef96 +
+
+ +
+ + mood-neutral +
+ ti ti-mood-neutral
+ \eaf5 +
+
+ +
+ + mood-off +
+ ti ti-mood-off
+ \f161 +
+
+ +
+ + mood-sad +
+ ti ti-mood-sad
+ \eaf6 +
+
+ +
+ + mood-sad-2 +
+ ti ti-mood-sad-2
+ \f2e2 +
+
+ +
+ + mood-sad-dizzy +
+ ti ti-mood-sad-dizzy
+ \f2e3 +
+
+ +
+ + mood-sad-squint +
+ ti ti-mood-sad-squint
+ \f2e4 +
+
+ +
+ + mood-sick +
+ ti ti-mood-sick
+ \f2e5 +
+
+ +
+ + mood-silence +
+ ti ti-mood-silence
+ \f2e6 +
+
+ +
+ + mood-sing +
+ ti ti-mood-sing
+ \f2c7 +
+
+ +
+ + mood-smile +
+ ti ti-mood-smile
+ \eaf7 +
+
+ +
+ + mood-smile-beam +
+ ti ti-mood-smile-beam
+ \f2e7 +
+
+ +
+ + mood-smile-dizzy +
+ ti ti-mood-smile-dizzy
+ \f2e8 +
+
+ +
+ + mood-suprised +
+ ti ti-mood-suprised
+ \ec04 +
+
+ +
+ + mood-tongue +
+ ti ti-mood-tongue
+ \eb95 +
+
+ +
+ + mood-tongue-wink +
+ ti ti-mood-tongue-wink
+ \f2ea +
+
+ +
+ + mood-tongue-wink-2 +
+ ti ti-mood-tongue-wink-2
+ \f2e9 +
+
+ +
+ + mood-unamused +
+ ti ti-mood-unamused
+ \f2eb +
+
+ +
+ + mood-wink +
+ ti ti-mood-wink
+ \f2ed +
+
+ +
+ + mood-wink-2 +
+ ti ti-mood-wink-2
+ \f2ec +
+
+ +
+ + mood-wrrr +
+ ti ti-mood-wrrr
+ \f2ee +
+
+ +
+ + mood-xd +
+ ti ti-mood-xd
+ \f2ef +
+
+ +
+ + moon +
+ ti ti-moon
+ \eaf8 +
+
+ +
+ + moon-2 +
+ ti ti-moon-2
+ \ece6 +
+
+ +
+ + moon-filled +
+ ti ti-moon-filled
+ \f684 +
+
+ +
+ + moon-off +
+ ti ti-moon-off
+ \f162 +
+
+ +
+ + moon-stars +
+ ti ti-moon-stars
+ \ece7 +
+
+ +
+ + moped +
+ ti ti-moped
+ \ecbc +
+
+ +
+ + motorbike +
+ ti ti-motorbike
+ \eeb6 +
+
+ +
+ + mountain +
+ ti ti-mountain
+ \ef97 +
+
+ +
+ + mountain-off +
+ ti ti-mountain-off
+ \f411 +
+
+ +
+ + mouse +
+ ti ti-mouse
+ \eaf9 +
+
+ +
+ + mouse-2 +
+ ti ti-mouse-2
+ \f1d7 +
+
+ +
+ + mouse-off +
+ ti ti-mouse-off
+ \f163 +
+
+ +
+ + moustache +
+ ti ti-moustache
+ \f4c9 +
+
+ +
+ + movie +
+ ti ti-movie
+ \eafa +
+
+ +
+ + movie-off +
+ ti ti-movie-off
+ \f164 +
+
+ +
+ + mug +
+ ti ti-mug
+ \eafb +
+
+ +
+ + mug-off +
+ ti ti-mug-off
+ \f165 +
+
+ +
+ + multiplier-0-5x +
+ ti ti-multiplier-0-5x
+ \ef41 +
+
+ +
+ + multiplier-1-5x +
+ ti ti-multiplier-1-5x
+ \ef42 +
+
+ +
+ + multiplier-1x +
+ ti ti-multiplier-1x
+ \ef43 +
+
+ +
+ + multiplier-2x +
+ ti ti-multiplier-2x
+ \ef44 +
+
+ +
+ + mushroom +
+ ti ti-mushroom
+ \ef14 +
+
+ +
+ + mushroom-off +
+ ti ti-mushroom-off
+ \f412 +
+
+ +
+ + music +
+ ti ti-music
+ \eafc +
+
+ +
+ + music-off +
+ ti ti-music-off
+ \f166 +
+
+ +
+ + navigation +
+ ti ti-navigation
+ \f2c8 +
+
+ +
+ + navigation-filled +
+ ti ti-navigation-filled
+ \f685 +
+
+ +
+ + navigation-off +
+ ti ti-navigation-off
+ \f413 +
+
+ +
+ + needle +
+ ti ti-needle
+ \f508 +
+
+ +
+ + needle-thread +
+ ti ti-needle-thread
+ \f507 +
+
+ +
+ + network +
+ ti ti-network
+ \f09f +
+
+ +
+ + network-off +
+ ti ti-network-off
+ \f414 +
+
+ +
+ + new-section +
+ ti ti-new-section
+ \ebc1 +
+
+ +
+ + news +
+ ti ti-news
+ \eafd +
+
+ +
+ + news-off +
+ ti ti-news-off
+ \f167 +
+
+ +
+ + nfc +
+ ti ti-nfc
+ \eeb7 +
+
+ +
+ + nfc-off +
+ ti ti-nfc-off
+ \f168 +
+
+ +
+ + no-copyright +
+ ti ti-no-copyright
+ \efb9 +
+
+ +
+ + no-creative-commons +
+ ti ti-no-creative-commons
+ \efba +
+
+ +
+ + no-derivatives +
+ ti ti-no-derivatives
+ \efbb +
+
+ +
+ + north-star +
+ ti ti-north-star
+ \f014 +
+
+ +
+ + note +
+ ti ti-note
+ \eb6d +
+
+ +
+ + note-off +
+ ti ti-note-off
+ \f169 +
+
+ +
+ + notebook +
+ ti ti-notebook
+ \eb96 +
+
+ +
+ + notebook-off +
+ ti ti-notebook-off
+ \f415 +
+
+ +
+ + notes +
+ ti ti-notes
+ \eb6e +
+
+ +
+ + notes-off +
+ ti ti-notes-off
+ \f16a +
+
+ +
+ + notification +
+ ti ti-notification
+ \eafe +
+
+ +
+ + notification-off +
+ ti ti-notification-off
+ \f16b +
+
+ +
+ + number +
+ ti ti-number
+ \f1fe +
+
+ +
+ + number-0 +
+ ti ti-number-0
+ \edf0 +
+
+ +
+ + number-1 +
+ ti ti-number-1
+ \edf1 +
+
+ +
+ + number-2 +
+ ti ti-number-2
+ \edf2 +
+
+ +
+ + number-3 +
+ ti ti-number-3
+ \edf3 +
+
+ +
+ + number-4 +
+ ti ti-number-4
+ \edf4 +
+
+ +
+ + number-5 +
+ ti ti-number-5
+ \edf5 +
+
+ +
+ + number-6 +
+ ti ti-number-6
+ \edf6 +
+
+ +
+ + number-7 +
+ ti ti-number-7
+ \edf7 +
+
+ +
+ + number-8 +
+ ti ti-number-8
+ \edf8 +
+
+ +
+ + number-9 +
+ ti ti-number-9
+ \edf9 +
+
+ +
+ + numbers +
+ ti ti-numbers
+ \f015 +
+
+ +
+ + nurse +
+ ti ti-nurse
+ \ef65 +
+
+ +
+ + octagon +
+ ti ti-octagon
+ \ecbd +
+
+ +
+ + octagon-filled +
+ ti ti-octagon-filled
+ \f686 +
+
+ +
+ + octagon-off +
+ ti ti-octagon-off
+ \eeb8 +
+
+ +
+ + old +
+ ti ti-old
+ \eeb9 +
+
+ +
+ + olympics +
+ ti ti-olympics
+ \eeba +
+
+ +
+ + olympics-off +
+ ti ti-olympics-off
+ \f416 +
+
+ +
+ + om +
+ ti ti-om
+ \f58d +
+
+ +
+ + omega +
+ ti ti-omega
+ \eb97 +
+
+ +
+ + outbound +
+ ti ti-outbound
+ \f249 +
+
+ +
+ + outlet +
+ ti ti-outlet
+ \ebd7 +
+
+ +
+ + oval +
+ ti ti-oval
+ \f02e +
+
+ +
+ + oval-filled +
+ ti ti-oval-filled
+ \f687 +
+
+ +
+ + oval-vertical +
+ ti ti-oval-vertical
+ \f02d +
+
+ +
+ + oval-vertical-filled +
+ ti ti-oval-vertical-filled
+ \f688 +
+
+ +
+ + overline +
+ ti ti-overline
+ \eebb +
+
+ +
+ + package +
+ ti ti-package
+ \eaff +
+
+ +
+ + package-off +
+ ti ti-package-off
+ \f16c +
+
+ +
+ + packages +
+ ti ti-packages
+ \f2c9 +
+
+ +
+ + packge-export +
+ ti ti-packge-export
+ \f07a +
+
+ +
+ + packge-import +
+ ti ti-packge-import
+ \f07b +
+
+ +
+ + pacman +
+ ti ti-pacman
+ \eebc +
+
+ +
+ + page-break +
+ ti ti-page-break
+ \ec81 +
+
+ +
+ + paint +
+ ti ti-paint
+ \eb00 +
+
+ +
+ + paint-off +
+ ti ti-paint-off
+ \f16d +
+
+ +
+ + palette +
+ ti ti-palette
+ \eb01 +
+
+ +
+ + palette-off +
+ ti ti-palette-off
+ \f16e +
+
+ +
+ + panorama-horizontal +
+ ti ti-panorama-horizontal
+ \ed33 +
+
+ +
+ + panorama-horizontal-off +
+ ti ti-panorama-horizontal-off
+ \f417 +
+
+ +
+ + panorama-vertical +
+ ti ti-panorama-vertical
+ \ed34 +
+
+ +
+ + panorama-vertical-off +
+ ti ti-panorama-vertical-off
+ \f418 +
+
+ +
+ + paper-bag +
+ ti ti-paper-bag
+ \f02f +
+
+ +
+ + paper-bag-off +
+ ti ti-paper-bag-off
+ \f16f +
+
+ +
+ + paperclip +
+ ti ti-paperclip
+ \eb02 +
+
+ +
+ + parachute +
+ ti ti-parachute
+ \ed7c +
+
+ +
+ + parachute-off +
+ ti ti-parachute-off
+ \f170 +
+
+ +
+ + parentheses +
+ ti ti-parentheses
+ \ebd8 +
+
+ +
+ + parentheses-off +
+ ti ti-parentheses-off
+ \f171 +
+
+ +
+ + parking +
+ ti ti-parking
+ \eb03 +
+
+ +
+ + parking-off +
+ ti ti-parking-off
+ \f172 +
+
+ +
+ + password +
+ ti ti-password
+ \f4ca +
+
+ +
+ + paw +
+ ti ti-paw
+ \eff9 +
+
+ +
+ + paw-filled +
+ ti ti-paw-filled
+ \f689 +
+
+ +
+ + paw-off +
+ ti ti-paw-off
+ \f419 +
+
+ +
+ + peace +
+ ti ti-peace
+ \ecbe +
+
+ +
+ + pencil +
+ ti ti-pencil
+ \eb04 +
+
+ +
+ + pencil-minus +
+ ti ti-pencil-minus
+ \f1eb +
+
+ +
+ + pencil-off +
+ ti ti-pencil-off
+ \f173 +
+
+ +
+ + pencil-plus +
+ ti ti-pencil-plus
+ \f1ec +
+
+ +
+ + pennant +
+ ti ti-pennant
+ \ed7d +
+
+ +
+ + pennant-2 +
+ ti ti-pennant-2
+ \f06a +
+
+ +
+ + pennant-2-filled +
+ ti ti-pennant-2-filled
+ \f68a +
+
+ +
+ + pennant-filled +
+ ti ti-pennant-filled
+ \f68b +
+
+ +
+ + pennant-off +
+ ti ti-pennant-off
+ \f174 +
+
+ +
+ + pentagon +
+ ti ti-pentagon
+ \efe3 +
+
+ +
+ + pentagon-filled +
+ ti ti-pentagon-filled
+ \f68c +
+
+ +
+ + pentagon-off +
+ ti ti-pentagon-off
+ \f41a +
+
+ +
+ + pentagram +
+ ti ti-pentagram
+ \f586 +
+
+ +
+ + pepper +
+ ti ti-pepper
+ \ef15 +
+
+ +
+ + pepper-off +
+ ti ti-pepper-off
+ \f175 +
+
+ +
+ + percentage +
+ ti ti-percentage
+ \ecf4 +
+
+ +
+ + perfume +
+ ti ti-perfume
+ \f509 +
+
+ +
+ + perspective +
+ ti ti-perspective
+ \eebd +
+
+ +
+ + perspective-off +
+ ti ti-perspective-off
+ \f176 +
+
+ +
+ + phone +
+ ti ti-phone
+ \eb09 +
+
+ +
+ + phone-call +
+ ti ti-phone-call
+ \eb05 +
+
+ +
+ + phone-calling +
+ ti ti-phone-calling
+ \ec43 +
+
+ +
+ + phone-check +
+ ti ti-phone-check
+ \ec05 +
+
+ +
+ + phone-incoming +
+ ti ti-phone-incoming
+ \eb06 +
+
+ +
+ + phone-off +
+ ti ti-phone-off
+ \ecf5 +
+
+ +
+ + phone-outgoing +
+ ti ti-phone-outgoing
+ \eb07 +
+
+ +
+ + phone-pause +
+ ti ti-phone-pause
+ \eb08 +
+
+ +
+ + phone-plus +
+ ti ti-phone-plus
+ \ec06 +
+
+ +
+ + phone-x +
+ ti ti-phone-x
+ \ec07 +
+
+ +
+ + photo +
+ ti ti-photo
+ \eb0a +
+
+ +
+ + photo-cancel +
+ ti ti-photo-cancel
+ \f35d +
+
+ +
+ + photo-check +
+ ti ti-photo-check
+ \f35e +
+
+ +
+ + photo-down +
+ ti ti-photo-down
+ \f35f +
+
+ +
+ + photo-edit +
+ ti ti-photo-edit
+ \f360 +
+
+ +
+ + photo-heart +
+ ti ti-photo-heart
+ \f361 +
+
+ +
+ + photo-minus +
+ ti ti-photo-minus
+ \f362 +
+
+ +
+ + photo-off +
+ ti ti-photo-off
+ \ecf6 +
+
+ +
+ + photo-plus +
+ ti ti-photo-plus
+ \f363 +
+
+ +
+ + photo-search +
+ ti ti-photo-search
+ \f364 +
+
+ +
+ + photo-shield +
+ ti ti-photo-shield
+ \f365 +
+
+ +
+ + photo-star +
+ ti ti-photo-star
+ \f366 +
+
+ +
+ + photo-up +
+ ti ti-photo-up
+ \f38b +
+
+ +
+ + photo-x +
+ ti ti-photo-x
+ \f367 +
+
+ +
+ + physotherapist +
+ ti ti-physotherapist
+ \eebe +
+
+ +
+ + picture-in-picture +
+ ti ti-picture-in-picture
+ \ed35 +
+
+ +
+ + picture-in-picture-off +
+ ti ti-picture-in-picture-off
+ \ed43 +
+
+ +
+ + picture-in-picture-on +
+ ti ti-picture-in-picture-on
+ \ed44 +
+
+ +
+ + picture-in-picture-top +
+ ti ti-picture-in-picture-top
+ \efe4 +
+
+ +
+ + pig +
+ ti ti-pig
+ \ef52 +
+
+ +
+ + pig-money +
+ ti ti-pig-money
+ \f38c +
+
+ +
+ + pig-off +
+ ti ti-pig-off
+ \f177 +
+
+ +
+ + pilcrow +
+ ti ti-pilcrow
+ \f5f6 +
+
+ +
+ + pill +
+ ti ti-pill
+ \ec44 +
+
+ +
+ + pill-off +
+ ti ti-pill-off
+ \f178 +
+
+ +
+ + pills +
+ ti ti-pills
+ \ef66 +
+
+ +
+ + pin +
+ ti ti-pin
+ \ec9c +
+
+ +
+ + pin-filled +
+ ti ti-pin-filled
+ \f68d +
+
+ +
+ + ping-pong +
+ ti ti-ping-pong
+ \f38d +
+
+ +
+ + pinned +
+ ti ti-pinned
+ \ed60 +
+
+ +
+ + pinned-filled +
+ ti ti-pinned-filled
+ \f68e +
+
+ +
+ + pinned-off +
+ ti ti-pinned-off
+ \ed5f +
+
+ +
+ + pizza +
+ ti ti-pizza
+ \edbb +
+
+ +
+ + pizza-off +
+ ti ti-pizza-off
+ \f179 +
+
+ +
+ + placeholder +
+ ti ti-placeholder
+ \f626 +
+
+ +
+ + plane +
+ ti ti-plane
+ \eb6f +
+
+ +
+ + plane-arrival +
+ ti ti-plane-arrival
+ \eb99 +
+
+ +
+ + plane-departure +
+ ti ti-plane-departure
+ \eb9a +
+
+ +
+ + plane-inflight +
+ ti ti-plane-inflight
+ \ef98 +
+
+ +
+ + plane-off +
+ ti ti-plane-off
+ \f17a +
+
+ +
+ + plane-tilt +
+ ti ti-plane-tilt
+ \f1ed +
+
+ +
+ + planet +
+ ti ti-planet
+ \ec08 +
+
+ +
+ + planet-off +
+ ti ti-planet-off
+ \f17b +
+
+ +
+ + plant +
+ ti ti-plant
+ \ed50 +
+
+ +
+ + plant-2 +
+ ti ti-plant-2
+ \ed7e +
+
+ +
+ + plant-2-off +
+ ti ti-plant-2-off
+ \f17c +
+
+ +
+ + plant-off +
+ ti ti-plant-off
+ \f17d +
+
+ +
+ + play-card +
+ ti ti-play-card
+ \eebf +
+
+ +
+ + play-card-off +
+ ti ti-play-card-off
+ \f17e +
+
+ +
+ + player-eject +
+ ti ti-player-eject
+ \efbc +
+
+ +
+ + player-eject-filled +
+ ti ti-player-eject-filled
+ \f68f +
+
+ +
+ + player-pause +
+ ti ti-player-pause
+ \ed45 +
+
+ +
+ + player-pause-filled +
+ ti ti-player-pause-filled
+ \f690 +
+
+ +
+ + player-play +
+ ti ti-player-play
+ \ed46 +
+
+ +
+ + player-play-filled +
+ ti ti-player-play-filled
+ \f691 +
+
+ +
+ + player-record +
+ ti ti-player-record
+ \ed47 +
+
+ +
+ + player-record-filled +
+ ti ti-player-record-filled
+ \f692 +
+
+ +
+ + player-skip-back +
+ ti ti-player-skip-back
+ \ed48 +
+
+ +
+ + player-skip-back-filled +
+ ti ti-player-skip-back-filled
+ \f693 +
+
+ +
+ + player-skip-forward +
+ ti ti-player-skip-forward
+ \ed49 +
+
+ +
+ + player-skip-forward-filled +
+ ti ti-player-skip-forward-filled
+ \f694 +
+
+ +
+ + player-stop +
+ ti ti-player-stop
+ \ed4a +
+
+ +
+ + player-stop-filled +
+ ti ti-player-stop-filled
+ \f695 +
+
+ +
+ + player-track-next +
+ ti ti-player-track-next
+ \ed4b +
+
+ +
+ + player-track-next-filled +
+ ti ti-player-track-next-filled
+ \f696 +
+
+ +
+ + player-track-prev +
+ ti ti-player-track-prev
+ \ed4c +
+
+ +
+ + player-track-prev-filled +
+ ti ti-player-track-prev-filled
+ \f697 +
+
+ +
+ + playlist +
+ ti ti-playlist
+ \eec0 +
+
+ +
+ + playlist-add +
+ ti ti-playlist-add
+ \f008 +
+
+ +
+ + playlist-off +
+ ti ti-playlist-off
+ \f17f +
+
+ +
+ + playlist-x +
+ ti ti-playlist-x
+ \f009 +
+
+ +
+ + playstation-circle +
+ ti ti-playstation-circle
+ \f2ad +
+
+ +
+ + playstation-square +
+ ti ti-playstation-square
+ \f2ae +
+
+ +
+ + playstation-triangle +
+ ti ti-playstation-triangle
+ \f2af +
+
+ +
+ + playstation-x +
+ ti ti-playstation-x
+ \f2b0 +
+
+ +
+ + plug +
+ ti ti-plug
+ \ebd9 +
+
+ +
+ + plug-connected +
+ ti ti-plug-connected
+ \f00a +
+
+ +
+ + plug-connected-x +
+ ti ti-plug-connected-x
+ \f0a0 +
+
+ +
+ + plug-off +
+ ti ti-plug-off
+ \f180 +
+
+ +
+ + plug-x +
+ ti ti-plug-x
+ \f0a1 +
+
+ +
+ + plus +
+ ti ti-plus
+ \eb0b +
+
+ +
+ + png +
+ ti ti-png
+ \f3ad +
+
+ +
+ + podium +
+ ti ti-podium
+ \f1d8 +
+
+ +
+ + podium-off +
+ ti ti-podium-off
+ \f41b +
+
+ +
+ + point +
+ ti ti-point
+ \eb0c +
+
+ +
+ + point-filled +
+ ti ti-point-filled
+ \f698 +
+
+ +
+ + point-off +
+ ti ti-point-off
+ \f181 +
+
+ +
+ + pointer +
+ ti ti-pointer
+ \f265 +
+
+ +
+ + pokeball +
+ ti ti-pokeball
+ \eec1 +
+
+ +
+ + pokeball-off +
+ ti ti-pokeball-off
+ \f41c +
+
+ +
+ + poker-chip +
+ ti ti-poker-chip
+ \f515 +
+
+ +
+ + polaroid +
+ ti ti-polaroid
+ \eec2 +
+
+ +
+ + polygon +
+ ti ti-polygon
+ \efd0 +
+
+ +
+ + polygon-off +
+ ti ti-polygon-off
+ \f182 +
+
+ +
+ + poo +
+ ti ti-poo
+ \f258 +
+
+ +
+ + pool +
+ ti ti-pool
+ \ed91 +
+
+ +
+ + pool-off +
+ ti ti-pool-off
+ \f41d +
+
+ +
+ + power +
+ ti ti-power
+ \eb0d +
+
+ +
+ + pray +
+ ti ti-pray
+ \ecbf +
+
+ +
+ + premium-rights +
+ ti ti-premium-rights
+ \efbd +
+
+ +
+ + prescription +
+ ti ti-prescription
+ \ef99 +
+
+ +
+ + presentation +
+ ti ti-presentation
+ \eb70 +
+
+ +
+ + presentation-analytics +
+ ti ti-presentation-analytics
+ \eec3 +
+
+ +
+ + presentation-off +
+ ti ti-presentation-off
+ \f183 +
+
+ +
+ + printer +
+ ti ti-printer
+ \eb0e +
+
+ +
+ + printer-off +
+ ti ti-printer-off
+ \f184 +
+
+ +
+ + prison +
+ ti ti-prison
+ \ef79 +
+
+ +
+ + prompt +
+ ti ti-prompt
+ \eb0f +
+
+ +
+ + propeller +
+ ti ti-propeller
+ \eec4 +
+
+ +
+ + propeller-off +
+ ti ti-propeller-off
+ \f185 +
+
+ +
+ + pumpkin-scary +
+ ti ti-pumpkin-scary
+ \f587 +
+
+ +
+ + puzzle +
+ ti ti-puzzle
+ \eb10 +
+
+ +
+ + puzzle-2 +
+ ti ti-puzzle-2
+ \ef83 +
+
+ +
+ + puzzle-filled +
+ ti ti-puzzle-filled
+ \f699 +
+
+ +
+ + puzzle-off +
+ ti ti-puzzle-off
+ \f186 +
+
+ +
+ + pyramid +
+ ti ti-pyramid
+ \eec5 +
+
+ +
+ + pyramid-off +
+ ti ti-pyramid-off
+ \f187 +
+
+ +
+ + qrcode +
+ ti ti-qrcode
+ \eb11 +
+
+ +
+ + qrcode-off +
+ ti ti-qrcode-off
+ \f41e +
+
+ +
+ + question-circle +
+ ti ti-question-circle
+ \f637 +
+
+ +
+ + question-mark +
+ ti ti-question-mark
+ \ec9d +
+
+ +
+ + quote +
+ ti ti-quote
+ \efbe +
+
+ +
+ + quote-off +
+ ti ti-quote-off
+ \f188 +
+
+ +
+ + radar +
+ ti ti-radar
+ \f017 +
+
+ +
+ + radar-2 +
+ ti ti-radar-2
+ \f016 +
+
+ +
+ + radar-off +
+ ti ti-radar-off
+ \f41f +
+
+ +
+ + radio +
+ ti ti-radio
+ \ef2d +
+
+ +
+ + radio-off +
+ ti ti-radio-off
+ \f420 +
+
+ +
+ + radioactive +
+ ti ti-radioactive
+ \ecc0 +
+
+ +
+ + radioactive-off +
+ ti ti-radioactive-off
+ \f189 +
+
+ +
+ + radius-bottom-left +
+ ti ti-radius-bottom-left
+ \eec6 +
+
+ +
+ + radius-bottom-right +
+ ti ti-radius-bottom-right
+ \eec7 +
+
+ +
+ + radius-top-left +
+ ti ti-radius-top-left
+ \eec8 +
+
+ +
+ + radius-top-right +
+ ti ti-radius-top-right
+ \eec9 +
+
+ +
+ + rainbow +
+ ti ti-rainbow
+ \edbc +
+
+ +
+ + rainbow-off +
+ ti ti-rainbow-off
+ \f18a +
+
+ +
+ + rating-12-plus +
+ ti ti-rating-12-plus
+ \f266 +
+
+ +
+ + rating-14-plus +
+ ti ti-rating-14-plus
+ \f267 +
+
+ +
+ + rating-16-plus +
+ ti ti-rating-16-plus
+ \f268 +
+
+ +
+ + rating-18-plus +
+ ti ti-rating-18-plus
+ \f269 +
+
+ +
+ + rating-21-plus +
+ ti ti-rating-21-plus
+ \f26a +
+
+ +
+ + razor +
+ ti ti-razor
+ \f4b5 +
+
+ +
+ + razor-electric +
+ ti ti-razor-electric
+ \f4b4 +
+
+ +
+ + receipt +
+ ti ti-receipt
+ \edfd +
+
+ +
+ + receipt-2 +
+ ti ti-receipt-2
+ \edfa +
+
+ +
+ + receipt-off +
+ ti ti-receipt-off
+ \edfb +
+
+ +
+ + receipt-refund +
+ ti ti-receipt-refund
+ \edfc +
+
+ +
+ + receipt-tax +
+ ti ti-receipt-tax
+ \edbd +
+
+ +
+ + recharging +
+ ti ti-recharging
+ \eeca +
+
+ +
+ + record-mail +
+ ti ti-record-mail
+ \eb12 +
+
+ +
+ + record-mail-off +
+ ti ti-record-mail-off
+ \f18b +
+
+ +
+ + rectangle +
+ ti ti-rectangle
+ \ed37 +
+
+ +
+ + rectangle-filled +
+ ti ti-rectangle-filled
+ \f69a +
+
+ +
+ + rectangle-vertical +
+ ti ti-rectangle-vertical
+ \ed36 +
+
+ +
+ + rectangle-vertical-filled +
+ ti ti-rectangle-vertical-filled
+ \f69b +
+
+ +
+ + recycle +
+ ti ti-recycle
+ \eb9b +
+
+ +
+ + recycle-off +
+ ti ti-recycle-off
+ \f18c +
+
+ +
+ + refresh +
+ ti ti-refresh
+ \eb13 +
+
+ +
+ + refresh-alert +
+ ti ti-refresh-alert
+ \ed57 +
+
+ +
+ + refresh-dot +
+ ti ti-refresh-dot
+ \efbf +
+
+ +
+ + refresh-off +
+ ti ti-refresh-off
+ \f18d +
+
+ +
+ + regex +
+ ti ti-regex
+ \f31f +
+
+ +
+ + regex-off +
+ ti ti-regex-off
+ \f421 +
+
+ +
+ + registered +
+ ti ti-registered
+ \eb14 +
+
+ +
+ + relation-many-to-many +
+ ti ti-relation-many-to-many
+ \ed7f +
+
+ +
+ + relation-one-to-many +
+ ti ti-relation-one-to-many
+ \ed80 +
+
+ +
+ + relation-one-to-one +
+ ti ti-relation-one-to-one
+ \ed81 +
+
+ +
+ + reload +
+ ti ti-reload
+ \f3ae +
+
+ +
+ + repeat +
+ ti ti-repeat
+ \eb72 +
+
+ +
+ + repeat-off +
+ ti ti-repeat-off
+ \f18e +
+
+ +
+ + repeat-once +
+ ti ti-repeat-once
+ \eb71 +
+
+ +
+ + replace +
+ ti ti-replace
+ \ebc7 +
+
+ +
+ + replace-filled +
+ ti ti-replace-filled
+ \f69c +
+
+ +
+ + replace-off +
+ ti ti-replace-off
+ \f422 +
+
+ +
+ + report +
+ ti ti-report
+ \eece +
+
+ +
+ + report-analytics +
+ ti ti-report-analytics
+ \eecb +
+
+ +
+ + report-medical +
+ ti ti-report-medical
+ \eecc +
+
+ +
+ + report-money +
+ ti ti-report-money
+ \eecd +
+
+ +
+ + report-off +
+ ti ti-report-off
+ \f18f +
+
+ +
+ + report-search +
+ ti ti-report-search
+ \ef84 +
+
+ +
+ + resize +
+ ti ti-resize
+ \eecf +
+
+ +
+ + ribbon-health +
+ ti ti-ribbon-health
+ \f58e +
+
+ +
+ + ripple +
+ ti ti-ripple
+ \ed82 +
+
+ +
+ + ripple-off +
+ ti ti-ripple-off
+ \f190 +
+
+ +
+ + road +
+ ti ti-road
+ \f018 +
+
+ +
+ + road-off +
+ ti ti-road-off
+ \f191 +
+
+ +
+ + road-sign +
+ ti ti-road-sign
+ \ecdd +
+
+ +
+ + robot +
+ ti ti-robot
+ \f00b +
+
+ +
+ + robot-off +
+ ti ti-robot-off
+ \f192 +
+
+ +
+ + rocket +
+ ti ti-rocket
+ \ec45 +
+
+ +
+ + rocket-off +
+ ti ti-rocket-off
+ \f193 +
+
+ +
+ + roller-skating +
+ ti ti-roller-skating
+ \efd1 +
+
+ +
+ + rollercoaster +
+ ti ti-rollercoaster
+ \f0a2 +
+
+ +
+ + rollercoaster-off +
+ ti ti-rollercoaster-off
+ \f423 +
+
+ +
+ + rosette +
+ ti ti-rosette
+ \f599 +
+
+ +
+ + rosette-filled +
+ ti ti-rosette-filled
+ \f69d +
+
+ +
+ + rosette-number-0 +
+ ti ti-rosette-number-0
+ \f58f +
+
+ +
+ + rosette-number-1 +
+ ti ti-rosette-number-1
+ \f590 +
+
+ +
+ + rosette-number-2 +
+ ti ti-rosette-number-2
+ \f591 +
+
+ +
+ + rosette-number-3 +
+ ti ti-rosette-number-3
+ \f592 +
+
+ +
+ + rosette-number-4 +
+ ti ti-rosette-number-4
+ \f593 +
+
+ +
+ + rosette-number-5 +
+ ti ti-rosette-number-5
+ \f594 +
+
+ +
+ + rosette-number-6 +
+ ti ti-rosette-number-6
+ \f595 +
+
+ +
+ + rosette-number-7 +
+ ti ti-rosette-number-7
+ \f596 +
+
+ +
+ + rosette-number-8 +
+ ti ti-rosette-number-8
+ \f597 +
+
+ +
+ + rosette-number-9 +
+ ti ti-rosette-number-9
+ \f598 +
+
+ +
+ + rotate +
+ ti ti-rotate
+ \eb16 +
+
+ +
+ + rotate-2 +
+ ti ti-rotate-2
+ \ebb4 +
+
+ +
+ + rotate-360 +
+ ti ti-rotate-360
+ \ef85 +
+
+ +
+ + rotate-clockwise +
+ ti ti-rotate-clockwise
+ \eb15 +
+
+ +
+ + rotate-clockwise-2 +
+ ti ti-rotate-clockwise-2
+ \ebb5 +
+
+ +
+ + rotate-dot +
+ ti ti-rotate-dot
+ \efe5 +
+
+ +
+ + rotate-rectangle +
+ ti ti-rotate-rectangle
+ \ec15 +
+
+ +
+ + route +
+ ti ti-route
+ \eb17 +
+
+ +
+ + route-2 +
+ ti ti-route-2
+ \f4b6 +
+
+ +
+ + route-off +
+ ti ti-route-off
+ \f194 +
+
+ +
+ + router +
+ ti ti-router
+ \eb18 +
+
+ +
+ + router-off +
+ ti ti-router-off
+ \f424 +
+
+ +
+ + row-insert-bottom +
+ ti ti-row-insert-bottom
+ \eed0 +
+
+ +
+ + row-insert-top +
+ ti ti-row-insert-top
+ \eed1 +
+
+ +
+ + rss +
+ ti ti-rss
+ \eb19 +
+
+ +
+ + rubber-stamp +
+ ti ti-rubber-stamp
+ \f5ab +
+
+ +
+ + rubber-stamp-off +
+ ti ti-rubber-stamp-off
+ \f5aa +
+
+ +
+ + ruler +
+ ti ti-ruler
+ \eb1a +
+
+ +
+ + ruler-2 +
+ ti ti-ruler-2
+ \eed2 +
+
+ +
+ + ruler-2-off +
+ ti ti-ruler-2-off
+ \f195 +
+
+ +
+ + ruler-3 +
+ ti ti-ruler-3
+ \f290 +
+
+ +
+ + ruler-measure +
+ ti ti-ruler-measure
+ \f291 +
+
+ +
+ + ruler-off +
+ ti ti-ruler-off
+ \f196 +
+
+ +
+ + run +
+ ti ti-run
+ \ec82 +
+
+ +
+ + s-turn-down +
+ ti ti-s-turn-down
+ \f516 +
+
+ +
+ + s-turn-left +
+ ti ti-s-turn-left
+ \f517 +
+
+ +
+ + s-turn-right +
+ ti ti-s-turn-right
+ \f518 +
+
+ +
+ + s-turn-up +
+ ti ti-s-turn-up
+ \f519 +
+
+ +
+ + sailboat +
+ ti ti-sailboat
+ \ec83 +
+
+ +
+ + sailboat-2 +
+ ti ti-sailboat-2
+ \f5f7 +
+
+ +
+ + sailboat-off +
+ ti ti-sailboat-off
+ \f425 +
+
+ +
+ + salad +
+ ti ti-salad
+ \f50a +
+
+ +
+ + salt +
+ ti ti-salt
+ \ef16 +
+
+ +
+ + satellite +
+ ti ti-satellite
+ \eed3 +
+
+ +
+ + satellite-off +
+ ti ti-satellite-off
+ \f197 +
+
+ +
+ + sausage +
+ ti ti-sausage
+ \ef17 +
+
+ +
+ + scale +
+ ti ti-scale
+ \ebc2 +
+
+ +
+ + scale-off +
+ ti ti-scale-off
+ \f198 +
+
+ +
+ + scale-outline +
+ ti ti-scale-outline
+ \ef53 +
+
+ +
+ + scale-outline-off +
+ ti ti-scale-outline-off
+ \f199 +
+
+ +
+ + scan +
+ ti ti-scan
+ \ebc8 +
+
+ +
+ + scan-eye +
+ ti ti-scan-eye
+ \f1ff +
+
+ +
+ + schema +
+ ti ti-schema
+ \f200 +
+
+ +
+ + schema-off +
+ ti ti-schema-off
+ \f426 +
+
+ +
+ + school +
+ ti ti-school
+ \ecf7 +
+
+ +
+ + school-bell +
+ ti ti-school-bell
+ \f64a +
+
+ +
+ + school-off +
+ ti ti-school-off
+ \f19a +
+
+ +
+ + scissors +
+ ti ti-scissors
+ \eb1b +
+
+ +
+ + scissors-off +
+ ti ti-scissors-off
+ \f19b +
+
+ +
+ + scooter +
+ ti ti-scooter
+ \ec6c +
+
+ +
+ + scooter-electric +
+ ti ti-scooter-electric
+ \ecc1 +
+
+ +
+ + screen-share +
+ ti ti-screen-share
+ \ed18 +
+
+ +
+ + screen-share-off +
+ ti ti-screen-share-off
+ \ed17 +
+
+ +
+ + screenshot +
+ ti ti-screenshot
+ \f201 +
+
+ +
+ + scribble +
+ ti ti-scribble
+ \f0a3 +
+
+ +
+ + scribble-off +
+ ti ti-scribble-off
+ \f427 +
+
+ +
+ + script +
+ ti ti-script
+ \f2da +
+
+ +
+ + script-minus +
+ ti ti-script-minus
+ \f2d7 +
+
+ +
+ + script-plus +
+ ti ti-script-plus
+ \f2d8 +
+
+ +
+ + script-x +
+ ti ti-script-x
+ \f2d9 +
+
+ +
+ + scuba-mask +
+ ti ti-scuba-mask
+ \eed4 +
+
+ +
+ + scuba-mask-off +
+ ti ti-scuba-mask-off
+ \f428 +
+
+ +
+ + sdk +
+ ti ti-sdk
+ \f3af +
+
+ +
+ + search +
+ ti ti-search
+ \eb1c +
+
+ +
+ + search-off +
+ ti ti-search-off
+ \f19c +
+
+ +
+ + section +
+ ti ti-section
+ \eed5 +
+
+ +
+ + section-sign +
+ ti ti-section-sign
+ \f019 +
+
+ +
+ + seeding +
+ ti ti-seeding
+ \ed51 +
+
+ +
+ + seeding-off +
+ ti ti-seeding-off
+ \f19d +
+
+ +
+ + select +
+ ti ti-select
+ \ec9e +
+
+ +
+ + selector +
+ ti ti-selector
+ \eb1d +
+
+ +
+ + send +
+ ti ti-send
+ \eb1e +
+
+ +
+ + send-off +
+ ti ti-send-off
+ \f429 +
+
+ +
+ + seo +
+ ti ti-seo
+ \f26b +
+
+ +
+ + separator +
+ ti ti-separator
+ \ebda +
+
+ +
+ + separator-horizontal +
+ ti ti-separator-horizontal
+ \ec79 +
+
+ +
+ + separator-vertical +
+ ti ti-separator-vertical
+ \ec7a +
+
+ +
+ + server +
+ ti ti-server
+ \eb1f +
+
+ +
+ + server-2 +
+ ti ti-server-2
+ \f07c +
+
+ +
+ + server-bolt +
+ ti ti-server-bolt
+ \f320 +
+
+ +
+ + server-cog +
+ ti ti-server-cog
+ \f321 +
+
+ +
+ + server-off +
+ ti ti-server-off
+ \f19e +
+
+ +
+ + servicemark +
+ ti ti-servicemark
+ \ec09 +
+
+ +
+ + settings +
+ ti ti-settings
+ \eb20 +
+
+ +
+ + settings-2 +
+ ti ti-settings-2
+ \f5ac +
+
+ +
+ + settings-automation +
+ ti ti-settings-automation
+ \eed6 +
+
+ +
+ + settings-filled +
+ ti ti-settings-filled
+ \f69e +
+
+ +
+ + settings-off +
+ ti ti-settings-off
+ \f19f +
+
+ +
+ + shadow +
+ ti ti-shadow
+ \eed8 +
+
+ +
+ + shadow-off +
+ ti ti-shadow-off
+ \eed7 +
+
+ +
+ + shape +
+ ti ti-shape
+ \eb9c +
+
+ +
+ + shape-2 +
+ ti ti-shape-2
+ \eed9 +
+
+ +
+ + shape-3 +
+ ti ti-shape-3
+ \eeda +
+
+ +
+ + shape-off +
+ ti ti-shape-off
+ \f1a0 +
+
+ +
+ + share +
+ ti ti-share
+ \eb21 +
+
+ +
+ + share-off +
+ ti ti-share-off
+ \f1a1 +
+
+ +
+ + shield +
+ ti ti-shield
+ \eb24 +
+
+ +
+ + shield-check +
+ ti ti-shield-check
+ \eb22 +
+
+ +
+ + shield-checkered +
+ ti ti-shield-checkered
+ \ef9a +
+
+ +
+ + shield-chevron +
+ ti ti-shield-chevron
+ \ef9b +
+
+ +
+ + shield-filled +
+ ti ti-shield-filled
+ \f69f +
+
+ +
+ + shield-half +
+ ti ti-shield-half
+ \f358 +
+
+ +
+ + shield-half-filled +
+ ti ti-shield-half-filled
+ \f357 +
+
+ +
+ + shield-lock +
+ ti ti-shield-lock
+ \ed58 +
+
+ +
+ + shield-off +
+ ti ti-shield-off
+ \ecf8 +
+
+ +
+ + shield-x +
+ ti ti-shield-x
+ \eb23 +
+
+ +
+ + ship +
+ ti ti-ship
+ \ec84 +
+
+ +
+ + ship-off +
+ ti ti-ship-off
+ \f42a +
+
+ +
+ + shirt +
+ ti ti-shirt
+ \ec0a +
+
+ +
+ + shirt-filled +
+ ti ti-shirt-filled
+ \f6a0 +
+
+ +
+ + shirt-off +
+ ti ti-shirt-off
+ \f1a2 +
+
+ +
+ + shirt-sport +
+ ti ti-shirt-sport
+ \f26c +
+
+ +
+ + shoe +
+ ti ti-shoe
+ \efd2 +
+
+ +
+ + shoe-off +
+ ti ti-shoe-off
+ \f1a4 +
+
+ +
+ + shopping-bag +
+ ti ti-shopping-bag
+ \f5f8 +
+
+ +
+ + shopping-cart +
+ ti ti-shopping-cart
+ \eb25 +
+
+ +
+ + shopping-cart-discount +
+ ti ti-shopping-cart-discount
+ \eedb +
+
+ +
+ + shopping-cart-off +
+ ti ti-shopping-cart-off
+ \eedc +
+
+ +
+ + shopping-cart-plus +
+ ti ti-shopping-cart-plus
+ \eedd +
+
+ +
+ + shopping-cart-x +
+ ti ti-shopping-cart-x
+ \eede +
+
+ +
+ + shovel +
+ ti ti-shovel
+ \f1d9 +
+
+ +
+ + shredder +
+ ti ti-shredder
+ \eedf +
+
+ +
+ + sign-left +
+ ti ti-sign-left
+ \f06b +
+
+ +
+ + sign-left-filled +
+ ti ti-sign-left-filled
+ \f6a1 +
+
+ +
+ + sign-right +
+ ti ti-sign-right
+ \f06c +
+
+ +
+ + sign-right-filled +
+ ti ti-sign-right-filled
+ \f6a2 +
+
+ +
+ + signal-3g +
+ ti ti-signal-3g
+ \f1ee +
+
+ +
+ + signal-4g +
+ ti ti-signal-4g
+ \f1ef +
+
+ +
+ + signal-4g-plus +
+ ti ti-signal-4g-plus
+ \f259 +
+
+ +
+ + signal-5g +
+ ti ti-signal-5g
+ \f1f0 +
+
+ +
+ + signature +
+ ti ti-signature
+ \eee0 +
+
+ +
+ + signature-off +
+ ti ti-signature-off
+ \f1a5 +
+
+ +
+ + sitemap +
+ ti ti-sitemap
+ \eb9d +
+
+ +
+ + sitemap-off +
+ ti ti-sitemap-off
+ \f1a6 +
+
+ +
+ + skateboard +
+ ti ti-skateboard
+ \ecc2 +
+
+ +
+ + skateboard-off +
+ ti ti-skateboard-off
+ \f42b +
+
+ +
+ + skull +
+ ti ti-skull
+ \f292 +
+
+ +
+ + slash +
+ ti ti-slash
+ \f4f9 +
+
+ +
+ + slashes +
+ ti ti-slashes
+ \f588 +
+
+ +
+ + sleigh +
+ ti ti-sleigh
+ \ef9c +
+
+ +
+ + slice +
+ ti ti-slice
+ \ebdb +
+
+ +
+ + slideshow +
+ ti ti-slideshow
+ \ebc9 +
+
+ +
+ + smart-home +
+ ti ti-smart-home
+ \ecde +
+
+ +
+ + smart-home-off +
+ ti ti-smart-home-off
+ \f1a7 +
+
+ +
+ + smoking +
+ ti ti-smoking
+ \ecc4 +
+
+ +
+ + smoking-no +
+ ti ti-smoking-no
+ \ecc3 +
+
+ +
+ + snowflake +
+ ti ti-snowflake
+ \ec0b +
+
+ +
+ + snowflake-off +
+ ti ti-snowflake-off
+ \f1a8 +
+
+ +
+ + snowman +
+ ti ti-snowman
+ \f26d +
+
+ +
+ + soccer-field +
+ ti ti-soccer-field
+ \ed92 +
+
+ +
+ + social +
+ ti ti-social
+ \ebec +
+
+ +
+ + social-off +
+ ti ti-social-off
+ \f1a9 +
+
+ +
+ + sock +
+ ti ti-sock
+ \eee1 +
+
+ +
+ + sofa +
+ ti ti-sofa
+ \efaf +
+
+ +
+ + sofa-off +
+ ti ti-sofa-off
+ \f42c +
+
+ +
+ + sort-0-9 +
+ ti ti-sort-0-9
+ \f54d +
+
+ +
+ + sort-9-0 +
+ ti ti-sort-9-0
+ \f54e +
+
+ +
+ + sort-a-z +
+ ti ti-sort-a-z
+ \f54f +
+
+ +
+ + sort-ascending +
+ ti ti-sort-ascending
+ \eb26 +
+
+ +
+ + sort-ascending-2 +
+ ti ti-sort-ascending-2
+ \eee2 +
+
+ +
+ + sort-ascending-letters +
+ ti ti-sort-ascending-letters
+ \ef18 +
+
+ +
+ + sort-ascending-numbers +
+ ti ti-sort-ascending-numbers
+ \ef19 +
+
+ +
+ + sort-descending +
+ ti ti-sort-descending
+ \eb27 +
+
+ +
+ + sort-descending-2 +
+ ti ti-sort-descending-2
+ \eee3 +
+
+ +
+ + sort-descending-letters +
+ ti ti-sort-descending-letters
+ \ef1a +
+
+ +
+ + sort-descending-numbers +
+ ti ti-sort-descending-numbers
+ \ef1b +
+
+ +
+ + sort-z-a +
+ ti ti-sort-z-a
+ \f550 +
+
+ +
+ + sos +
+ ti ti-sos
+ \f24a +
+
+ +
+ + soup +
+ ti ti-soup
+ \ef2e +
+
+ +
+ + soup-off +
+ ti ti-soup-off
+ \f42d +
+
+ +
+ + source-code +
+ ti ti-source-code
+ \f4a2 +
+
+ +
+ + space +
+ ti ti-space
+ \ec0c +
+
+ +
+ + space-off +
+ ti ti-space-off
+ \f1aa +
+
+ +
+ + spacing-horizontal +
+ ti ti-spacing-horizontal
+ \ef54 +
+
+ +
+ + spacing-vertical +
+ ti ti-spacing-vertical
+ \ef55 +
+
+ +
+ + spade +
+ ti ti-spade
+ \effa +
+
+ +
+ + spade-filled +
+ ti ti-spade-filled
+ \f6a3 +
+
+ +
+ + speakerphone +
+ ti ti-speakerphone
+ \ed61 +
+
+ +
+ + speedboat +
+ ti ti-speedboat
+ \ed93 +
+
+ +
+ + spider +
+ ti ti-spider
+ \f293 +
+
+ +
+ + spiral +
+ ti ti-spiral
+ \f294 +
+
+ +
+ + spiral-off +
+ ti ti-spiral-off
+ \f42e +
+
+ +
+ + sport-billard +
+ ti ti-sport-billard
+ \eee4 +
+
+ +
+ + spray +
+ ti ti-spray
+ \f50b +
+
+ +
+ + spy +
+ ti ti-spy
+ \f227 +
+
+ +
+ + spy-off +
+ ti ti-spy-off
+ \f42f +
+
+ +
+ + square +
+ ti ti-square
+ \eb2c +
+
+ +
+ + square-arrow-down +
+ ti ti-square-arrow-down
+ \f4b7 +
+
+ +
+ + square-arrow-left +
+ ti ti-square-arrow-left
+ \f4b8 +
+
+ +
+ + square-arrow-right +
+ ti ti-square-arrow-right
+ \f4b9 +
+
+ +
+ + square-arrow-up +
+ ti ti-square-arrow-up
+ \f4ba +
+
+ +
+ + square-asterisk +
+ ti ti-square-asterisk
+ \f01a +
+
+ +
+ + square-check +
+ ti ti-square-check
+ \eb28 +
+
+ +
+ + square-chevron-down +
+ ti ti-square-chevron-down
+ \f627 +
+
+ +
+ + square-chevron-left +
+ ti ti-square-chevron-left
+ \f628 +
+
+ +
+ + square-chevron-right +
+ ti ti-square-chevron-right
+ \f629 +
+
+ +
+ + square-chevron-up +
+ ti ti-square-chevron-up
+ \f62a +
+
+ +
+ + square-chevrons-down +
+ ti ti-square-chevrons-down
+ \f64b +
+
+ +
+ + square-chevrons-left +
+ ti ti-square-chevrons-left
+ \f64c +
+
+ +
+ + square-chevrons-right +
+ ti ti-square-chevrons-right
+ \f64d +
+
+ +
+ + square-chevrons-up +
+ ti ti-square-chevrons-up
+ \f64e +
+
+ +
+ + square-dot +
+ ti ti-square-dot
+ \ed59 +
+
+ +
+ + square-f0 +
+ ti ti-square-f0
+ \f526 +
+
+ +
+ + square-f1 +
+ ti ti-square-f1
+ \f527 +
+
+ +
+ + square-f2 +
+ ti ti-square-f2
+ \f528 +
+
+ +
+ + square-f3 +
+ ti ti-square-f3
+ \f529 +
+
+ +
+ + square-f4 +
+ ti ti-square-f4
+ \f52a +
+
+ +
+ + square-f5 +
+ ti ti-square-f5
+ \f52b +
+
+ +
+ + square-f6 +
+ ti ti-square-f6
+ \f52c +
+
+ +
+ + square-f7 +
+ ti ti-square-f7
+ \f52d +
+
+ +
+ + square-f8 +
+ ti ti-square-f8
+ \f52e +
+
+ +
+ + square-f9 +
+ ti ti-square-f9
+ \f52f +
+
+ +
+ + square-forbid +
+ ti ti-square-forbid
+ \ed5b +
+
+ +
+ + square-forbid-2 +
+ ti ti-square-forbid-2
+ \ed5a +
+
+ +
+ + square-half +
+ ti ti-square-half
+ \effb +
+
+ +
+ + square-key +
+ ti ti-square-key
+ \f638 +
+
+ +
+ + square-letter-a +
+ ti ti-square-letter-a
+ \f47c +
+
+ +
+ + square-letter-b +
+ ti ti-square-letter-b
+ \f47d +
+
+ +
+ + square-letter-c +
+ ti ti-square-letter-c
+ \f47e +
+
+ +
+ + square-letter-d +
+ ti ti-square-letter-d
+ \f47f +
+
+ +
+ + square-letter-e +
+ ti ti-square-letter-e
+ \f480 +
+
+ +
+ + square-letter-f +
+ ti ti-square-letter-f
+ \f481 +
+
+ +
+ + square-letter-g +
+ ti ti-square-letter-g
+ \f482 +
+
+ +
+ + square-letter-h +
+ ti ti-square-letter-h
+ \f483 +
+
+ +
+ + square-letter-i +
+ ti ti-square-letter-i
+ \f484 +
+
+ +
+ + square-letter-j +
+ ti ti-square-letter-j
+ \f485 +
+
+ +
+ + square-letter-k +
+ ti ti-square-letter-k
+ \f486 +
+
+ +
+ + square-letter-l +
+ ti ti-square-letter-l
+ \f487 +
+
+ +
+ + square-letter-m +
+ ti ti-square-letter-m
+ \f488 +
+
+ +
+ + square-letter-n +
+ ti ti-square-letter-n
+ \f489 +
+
+ +
+ + square-letter-o +
+ ti ti-square-letter-o
+ \f48a +
+
+ +
+ + square-letter-p +
+ ti ti-square-letter-p
+ \f48b +
+
+ +
+ + square-letter-q +
+ ti ti-square-letter-q
+ \f48c +
+
+ +
+ + square-letter-r +
+ ti ti-square-letter-r
+ \f48d +
+
+ +
+ + square-letter-s +
+ ti ti-square-letter-s
+ \f48e +
+
+ +
+ + square-letter-t +
+ ti ti-square-letter-t
+ \f48f +
+
+ +
+ + square-letter-u +
+ ti ti-square-letter-u
+ \f490 +
+
+ +
+ + square-letter-v +
+ ti ti-square-letter-v
+ \f4bb +
+
+ +
+ + square-letter-w +
+ ti ti-square-letter-w
+ \f491 +
+
+ +
+ + square-letter-x +
+ ti ti-square-letter-x
+ \f4bc +
+
+ +
+ + square-letter-y +
+ ti ti-square-letter-y
+ \f492 +
+
+ +
+ + square-letter-z +
+ ti ti-square-letter-z
+ \f493 +
+
+ +
+ + square-minus +
+ ti ti-square-minus
+ \eb29 +
+
+ +
+ + square-number-0 +
+ ti ti-square-number-0
+ \eee5 +
+
+ +
+ + square-number-1 +
+ ti ti-square-number-1
+ \eee6 +
+
+ +
+ + square-number-2 +
+ ti ti-square-number-2
+ \eee7 +
+
+ +
+ + square-number-3 +
+ ti ti-square-number-3
+ \eee8 +
+
+ +
+ + square-number-4 +
+ ti ti-square-number-4
+ \eee9 +
+
+ +
+ + square-number-5 +
+ ti ti-square-number-5
+ \eeea +
+
+ +
+ + square-number-6 +
+ ti ti-square-number-6
+ \eeeb +
+
+ +
+ + square-number-7 +
+ ti ti-square-number-7
+ \eeec +
+
+ +
+ + square-number-8 +
+ ti ti-square-number-8
+ \eeed +
+
+ +
+ + square-number-9 +
+ ti ti-square-number-9
+ \eeee +
+
+ +
+ + square-off +
+ ti ti-square-off
+ \eeef +
+
+ +
+ + square-plus +
+ ti ti-square-plus
+ \eb2a +
+
+ +
+ + square-root +
+ ti ti-square-root
+ \eef1 +
+
+ +
+ + square-root-2 +
+ ti ti-square-root-2
+ \eef0 +
+
+ +
+ + square-rotated +
+ ti ti-square-rotated
+ \ecdf +
+
+ +
+ + square-rotated-filled +
+ ti ti-square-rotated-filled
+ \f6a4 +
+
+ +
+ + square-rotated-forbid +
+ ti ti-square-rotated-forbid
+ \f01c +
+
+ +
+ + square-rotated-forbid-2 +
+ ti ti-square-rotated-forbid-2
+ \f01b +
+
+ +
+ + square-rotated-off +
+ ti ti-square-rotated-off
+ \eef2 +
+
+ +
+ + square-rounded +
+ ti ti-square-rounded
+ \f59a +
+
+ +
+ + square-rounded-arrow-down +
+ ti ti-square-rounded-arrow-down
+ \f639 +
+
+ +
+ + square-rounded-arrow-left +
+ ti ti-square-rounded-arrow-left
+ \f63a +
+
+ +
+ + square-rounded-arrow-right +
+ ti ti-square-rounded-arrow-right
+ \f63b +
+
+ +
+ + square-rounded-arrow-up +
+ ti ti-square-rounded-arrow-up
+ \f63c +
+
+ +
+ + square-rounded-check +
+ ti ti-square-rounded-check
+ \f63d +
+
+ +
+ + square-rounded-chevron-down +
+ ti ti-square-rounded-chevron-down
+ \f62b +
+
+ +
+ + square-rounded-chevron-left +
+ ti ti-square-rounded-chevron-left
+ \f62c +
+
+ +
+ + square-rounded-chevron-right +
+ ti ti-square-rounded-chevron-right
+ \f62d +
+
+ +
+ + square-rounded-chevron-up +
+ ti ti-square-rounded-chevron-up
+ \f62e +
+
+ +
+ + square-rounded-chevrons-down +
+ ti ti-square-rounded-chevrons-down
+ \f64f +
+
+ +
+ + square-rounded-chevrons-left +
+ ti ti-square-rounded-chevrons-left
+ \f650 +
+
+ +
+ + square-rounded-chevrons-right +
+ ti ti-square-rounded-chevrons-right
+ \f651 +
+
+ +
+ + square-rounded-chevrons-up +
+ ti ti-square-rounded-chevrons-up
+ \f652 +
+
+ +
+ + square-rounded-filled +
+ ti ti-square-rounded-filled
+ \f6a5 +
+
+ +
+ + square-rounded-letter-a +
+ ti ti-square-rounded-letter-a
+ \f5ae +
+
+ +
+ + square-rounded-letter-b +
+ ti ti-square-rounded-letter-b
+ \f5af +
+
+ +
+ + square-rounded-letter-c +
+ ti ti-square-rounded-letter-c
+ \f5b0 +
+
+ +
+ + square-rounded-letter-d +
+ ti ti-square-rounded-letter-d
+ \f5b1 +
+
+ +
+ + square-rounded-letter-e +
+ ti ti-square-rounded-letter-e
+ \f5b2 +
+
+ +
+ + square-rounded-letter-f +
+ ti ti-square-rounded-letter-f
+ \f5b3 +
+
+ +
+ + square-rounded-letter-g +
+ ti ti-square-rounded-letter-g
+ \f5b4 +
+
+ +
+ + square-rounded-letter-h +
+ ti ti-square-rounded-letter-h
+ \f5b5 +
+
+ +
+ + square-rounded-letter-i +
+ ti ti-square-rounded-letter-i
+ \f5b6 +
+
+ +
+ + square-rounded-letter-j +
+ ti ti-square-rounded-letter-j
+ \f5b7 +
+
+ +
+ + square-rounded-letter-k +
+ ti ti-square-rounded-letter-k
+ \f5b8 +
+
+ +
+ + square-rounded-letter-l +
+ ti ti-square-rounded-letter-l
+ \f5b9 +
+
+ +
+ + square-rounded-letter-m +
+ ti ti-square-rounded-letter-m
+ \f5ba +
+
+ +
+ + square-rounded-letter-n +
+ ti ti-square-rounded-letter-n
+ \f5bb +
+
+ +
+ + square-rounded-letter-o +
+ ti ti-square-rounded-letter-o
+ \f5bc +
+
+ +
+ + square-rounded-letter-p +
+ ti ti-square-rounded-letter-p
+ \f5bd +
+
+ +
+ + square-rounded-letter-q +
+ ti ti-square-rounded-letter-q
+ \f5be +
+
+ +
+ + square-rounded-letter-r +
+ ti ti-square-rounded-letter-r
+ \f5bf +
+
+ +
+ + square-rounded-letter-s +
+ ti ti-square-rounded-letter-s
+ \f5c0 +
+
+ +
+ + square-rounded-letter-t +
+ ti ti-square-rounded-letter-t
+ \f5c1 +
+
+ +
+ + square-rounded-letter-u +
+ ti ti-square-rounded-letter-u
+ \f5c2 +
+
+ +
+ + square-rounded-letter-v +
+ ti ti-square-rounded-letter-v
+ \f5c3 +
+
+ +
+ + square-rounded-letter-w +
+ ti ti-square-rounded-letter-w
+ \f5c4 +
+
+ +
+ + square-rounded-letter-x +
+ ti ti-square-rounded-letter-x
+ \f5c5 +
+
+ +
+ + square-rounded-letter-y +
+ ti ti-square-rounded-letter-y
+ \f5c6 +
+
+ +
+ + square-rounded-letter-z +
+ ti ti-square-rounded-letter-z
+ \f5c7 +
+
+ +
+ + square-rounded-minus +
+ ti ti-square-rounded-minus
+ \f63e +
+
+ +
+ + square-rounded-number-0 +
+ ti ti-square-rounded-number-0
+ \f5c8 +
+
+ +
+ + square-rounded-number-1 +
+ ti ti-square-rounded-number-1
+ \f5c9 +
+
+ +
+ + square-rounded-number-2 +
+ ti ti-square-rounded-number-2
+ \f5ca +
+
+ +
+ + square-rounded-number-3 +
+ ti ti-square-rounded-number-3
+ \f5cb +
+
+ +
+ + square-rounded-number-4 +
+ ti ti-square-rounded-number-4
+ \f5cc +
+
+ +
+ + square-rounded-number-5 +
+ ti ti-square-rounded-number-5
+ \f5cd +
+
+ +
+ + square-rounded-number-6 +
+ ti ti-square-rounded-number-6
+ \f5ce +
+
+ +
+ + square-rounded-number-7 +
+ ti ti-square-rounded-number-7
+ \f5cf +
+
+ +
+ + square-rounded-number-8 +
+ ti ti-square-rounded-number-8
+ \f5d0 +
+
+ +
+ + square-rounded-number-9 +
+ ti ti-square-rounded-number-9
+ \f5d1 +
+
+ +
+ + square-rounded-plus +
+ ti ti-square-rounded-plus
+ \f63f +
+
+ +
+ + square-rounded-x +
+ ti ti-square-rounded-x
+ \f640 +
+
+ +
+ + square-toggle +
+ ti ti-square-toggle
+ \eef4 +
+
+ +
+ + square-toggle-horizontal +
+ ti ti-square-toggle-horizontal
+ \eef3 +
+
+ +
+ + square-x +
+ ti ti-square-x
+ \eb2b +
+
+ +
+ + squares-diagonal +
+ ti ti-squares-diagonal
+ \eef5 +
+
+ +
+ + squares-filled +
+ ti ti-squares-filled
+ \eef6 +
+
+ +
+ + stack +
+ ti ti-stack
+ \eb2d +
+
+ +
+ + stack-2 +
+ ti ti-stack-2
+ \eef7 +
+
+ +
+ + stack-3 +
+ ti ti-stack-3
+ \ef9d +
+
+ +
+ + stack-pop +
+ ti ti-stack-pop
+ \f234 +
+
+ +
+ + stack-push +
+ ti ti-stack-push
+ \f235 +
+
+ +
+ + stairs +
+ ti ti-stairs
+ \eca6 +
+
+ +
+ + stairs-down +
+ ti ti-stairs-down
+ \eca4 +
+
+ +
+ + stairs-up +
+ ti ti-stairs-up
+ \eca5 +
+
+ +
+ + star +
+ ti ti-star
+ \eb2e +
+
+ +
+ + star-filled +
+ ti ti-star-filled
+ \f6a6 +
+
+ +
+ + star-half +
+ ti ti-star-half
+ \ed19 +
+
+ +
+ + star-half-filled +
+ ti ti-star-half-filled
+ \f6a7 +
+
+ +
+ + star-off +
+ ti ti-star-off
+ \ed62 +
+
+ +
+ + stars +
+ ti ti-stars
+ \ed38 +
+
+ +
+ + stars-filled +
+ ti ti-stars-filled
+ \f6a8 +
+
+ +
+ + stars-off +
+ ti ti-stars-off
+ \f430 +
+
+ +
+ + status-change +
+ ti ti-status-change
+ \f3b0 +
+
+ +
+ + steam +
+ ti ti-steam
+ \f24b +
+
+ +
+ + steering-wheel +
+ ti ti-steering-wheel
+ \ec7b +
+
+ +
+ + steering-wheel-off +
+ ti ti-steering-wheel-off
+ \f431 +
+
+ +
+ + step-into +
+ ti ti-step-into
+ \ece0 +
+
+ +
+ + step-out +
+ ti ti-step-out
+ \ece1 +
+
+ +
+ + stereo-glasses +
+ ti ti-stereo-glasses
+ \f4cb +
+
+ +
+ + stethoscope +
+ ti ti-stethoscope
+ \edbe +
+
+ +
+ + stethoscope-off +
+ ti ti-stethoscope-off
+ \f432 +
+
+ +
+ + sticker +
+ ti ti-sticker
+ \eb2f +
+
+ +
+ + storm +
+ ti ti-storm
+ \f24c +
+
+ +
+ + storm-off +
+ ti ti-storm-off
+ \f433 +
+
+ +
+ + stretching +
+ ti ti-stretching
+ \f2db +
+
+ +
+ + strikethrough +
+ ti ti-strikethrough
+ \eb9e +
+
+ +
+ + submarine +
+ ti ti-submarine
+ \ed94 +
+
+ +
+ + subscript +
+ ti ti-subscript
+ \eb9f +
+
+ +
+ + subtask +
+ ti ti-subtask
+ \ec9f +
+
+ +
+ + sum +
+ ti ti-sum
+ \eb73 +
+
+ +
+ + sum-off +
+ ti ti-sum-off
+ \f1ab +
+
+ +
+ + sun +
+ ti ti-sun
+ \eb30 +
+
+ +
+ + sun-filled +
+ ti ti-sun-filled
+ \f6a9 +
+
+ +
+ + sun-high +
+ ti ti-sun-high
+ \f236 +
+
+ +
+ + sun-low +
+ ti ti-sun-low
+ \f237 +
+
+ +
+ + sun-moon +
+ ti ti-sun-moon
+ \f4a3 +
+
+ +
+ + sun-off +
+ ti ti-sun-off
+ \ed63 +
+
+ +
+ + sun-wind +
+ ti ti-sun-wind
+ \f238 +
+
+ +
+ + sunglasses +
+ ti ti-sunglasses
+ \f239 +
+
+ +
+ + sunrise +
+ ti ti-sunrise
+ \ef1c +
+
+ +
+ + sunset +
+ ti ti-sunset
+ \ec31 +
+
+ +
+ + sunset-2 +
+ ti ti-sunset-2
+ \f23a +
+
+ +
+ + superscript +
+ ti ti-superscript
+ \eba0 +
+
+ +
+ + svg +
+ ti ti-svg
+ \f25a +
+
+ +
+ + swimming +
+ ti ti-swimming
+ \ec92 +
+
+ +
+ + swipe +
+ ti ti-swipe
+ \f551 +
+
+ +
+ + switch +
+ ti ti-switch
+ \eb33 +
+
+ +
+ + switch-2 +
+ ti ti-switch-2
+ \edbf +
+
+ +
+ + switch-3 +
+ ti ti-switch-3
+ \edc0 +
+
+ +
+ + switch-horizontal +
+ ti ti-switch-horizontal
+ \eb31 +
+
+ +
+ + switch-vertical +
+ ti ti-switch-vertical
+ \eb32 +
+
+ +
+ + sword +
+ ti ti-sword
+ \f030 +
+
+ +
+ + sword-off +
+ ti ti-sword-off
+ \f434 +
+
+ +
+ + swords +
+ ti ti-swords
+ \f132 +
+
+ +
+ + table +
+ ti ti-table
+ \eba1 +
+
+ +
+ + table-alias +
+ ti ti-table-alias
+ \f25b +
+
+ +
+ + table-export +
+ ti ti-table-export
+ \eef8 +
+
+ +
+ + table-import +
+ ti ti-table-import
+ \eef9 +
+
+ +
+ + table-off +
+ ti ti-table-off
+ \eefa +
+
+ +
+ + table-options +
+ ti ti-table-options
+ \f25c +
+
+ +
+ + table-shortcut +
+ ti ti-table-shortcut
+ \f25d +
+
+ +
+ + tag +
+ ti ti-tag
+ \eb34 +
+
+ +
+ + tag-off +
+ ti ti-tag-off
+ \efc0 +
+
+ +
+ + tags +
+ ti ti-tags
+ \ef86 +
+
+ +
+ + tags-off +
+ ti ti-tags-off
+ \efc1 +
+
+ +
+ + tallymark-1 +
+ ti ti-tallymark-1
+ \ec46 +
+
+ +
+ + tallymark-2 +
+ ti ti-tallymark-2
+ \ec47 +
+
+ +
+ + tallymark-3 +
+ ti ti-tallymark-3
+ \ec48 +
+
+ +
+ + tallymark-4 +
+ ti ti-tallymark-4
+ \ec49 +
+
+ +
+ + tallymarks +
+ ti ti-tallymarks
+ \ec4a +
+
+ +
+ + tank +
+ ti ti-tank
+ \ed95 +
+
+ +
+ + target +
+ ti ti-target
+ \eb35 +
+
+ +
+ + target-arrow +
+ ti ti-target-arrow
+ \f51a +
+
+ +
+ + target-off +
+ ti ti-target-off
+ \f1ad +
+
+ +
+ + teapot +
+ ti ti-teapot
+ \f552 +
+
+ +
+ + telescope +
+ ti ti-telescope
+ \f07d +
+
+ +
+ + telescope-off +
+ ti ti-telescope-off
+ \f1ae +
+
+ +
+ + temperature +
+ ti ti-temperature
+ \eb38 +
+
+ +
+ + temperature-celsius +
+ ti ti-temperature-celsius
+ \eb36 +
+
+ +
+ + temperature-fahrenheit +
+ ti ti-temperature-fahrenheit
+ \eb37 +
+
+ +
+ + temperature-minus +
+ ti ti-temperature-minus
+ \ebed +
+
+ +
+ + temperature-off +
+ ti ti-temperature-off
+ \f1af +
+
+ +
+ + temperature-plus +
+ ti ti-temperature-plus
+ \ebee +
+
+ +
+ + template +
+ ti ti-template
+ \eb39 +
+
+ +
+ + template-off +
+ ti ti-template-off
+ \f1b0 +
+
+ +
+ + tent +
+ ti ti-tent
+ \eefb +
+
+ +
+ + tent-off +
+ ti ti-tent-off
+ \f435 +
+
+ +
+ + terminal +
+ ti ti-terminal
+ \ebdc +
+
+ +
+ + terminal-2 +
+ ti ti-terminal-2
+ \ebef +
+
+ +
+ + test-pipe +
+ ti ti-test-pipe
+ \eb3a +
+
+ +
+ + test-pipe-2 +
+ ti ti-test-pipe-2
+ \f0a4 +
+
+ +
+ + test-pipe-off +
+ ti ti-test-pipe-off
+ \f1b1 +
+
+ +
+ + tex +
+ ti ti-tex
+ \f4e0 +
+
+ +
+ + text-caption +
+ ti ti-text-caption
+ \f4a4 +
+
+ +
+ + text-color +
+ ti ti-text-color
+ \f2dc +
+
+ +
+ + text-decrease +
+ ti ti-text-decrease
+ \f202 +
+
+ +
+ + text-direction-ltr +
+ ti ti-text-direction-ltr
+ \eefc +
+
+ +
+ + text-direction-rtl +
+ ti ti-text-direction-rtl
+ \eefd +
+
+ +
+ + text-increase +
+ ti ti-text-increase
+ \f203 +
+
+ +
+ + text-orientation +
+ ti ti-text-orientation
+ \f2a4 +
+
+ +
+ + text-plus +
+ ti ti-text-plus
+ \f2a5 +
+
+ +
+ + text-recognition +
+ ti ti-text-recognition
+ \f204 +
+
+ +
+ + text-resize +
+ ti ti-text-resize
+ \ef87 +
+
+ +
+ + text-size +
+ ti ti-text-size
+ \f2b1 +
+
+ +
+ + text-spellcheck +
+ ti ti-text-spellcheck
+ \f2a6 +
+
+ +
+ + text-wrap +
+ ti ti-text-wrap
+ \ebdd +
+
+ +
+ + text-wrap-disabled +
+ ti ti-text-wrap-disabled
+ \eca7 +
+
+ +
+ + texture +
+ ti ti-texture
+ \f51b +
+
+ +
+ + thermometer +
+ ti ti-thermometer
+ \ef67 +
+
+ +
+ + thumb-down +
+ ti ti-thumb-down
+ \eb3b +
+
+ +
+ + thumb-down-filled +
+ ti ti-thumb-down-filled
+ \f6aa +
+
+ +
+ + thumb-down-off +
+ ti ti-thumb-down-off
+ \f436 +
+
+ +
+ + thumb-up +
+ ti ti-thumb-up
+ \eb3c +
+
+ +
+ + thumb-up-filled +
+ ti ti-thumb-up-filled
+ \f6ab +
+
+ +
+ + thumb-up-off +
+ ti ti-thumb-up-off
+ \f437 +
+
+ +
+ + tic-tac +
+ ti ti-tic-tac
+ \f51c +
+
+ +
+ + ticket +
+ ti ti-ticket
+ \eb3d +
+
+ +
+ + ticket-off +
+ ti ti-ticket-off
+ \f1b2 +
+
+ +
+ + tie +
+ ti ti-tie
+ \f07e +
+
+ +
+ + tilde +
+ ti ti-tilde
+ \f4a5 +
+
+ +
+ + tilt-shift +
+ ti ti-tilt-shift
+ \eefe +
+
+ +
+ + tilt-shift-off +
+ ti ti-tilt-shift-off
+ \f1b3 +
+
+ +
+ + timeline +
+ ti ti-timeline
+ \f031 +
+
+ +
+ + timeline-event +
+ ti ti-timeline-event
+ \f553 +
+
+ +
+ + timeline-event-exclamation +
+ ti ti-timeline-event-exclamation
+ \f662 +
+
+ +
+ + timeline-event-minus +
+ ti ti-timeline-event-minus
+ \f663 +
+
+ +
+ + timeline-event-plus +
+ ti ti-timeline-event-plus
+ \f664 +
+
+ +
+ + timeline-event-text +
+ ti ti-timeline-event-text
+ \f665 +
+
+ +
+ + timeline-event-x +
+ ti ti-timeline-event-x
+ \f666 +
+
+ +
+ + tir +
+ ti ti-tir
+ \ebf0 +
+
+ +
+ + toggle-left +
+ ti ti-toggle-left
+ \eb3e +
+
+ +
+ + toggle-right +
+ ti ti-toggle-right
+ \eb3f +
+
+ +
+ + toilet-paper +
+ ti ti-toilet-paper
+ \efd3 +
+
+ +
+ + toilet-paper-off +
+ ti ti-toilet-paper-off
+ \f1b4 +
+
+ +
+ + tool +
+ ti ti-tool
+ \eb40 +
+
+ +
+ + tools +
+ ti ti-tools
+ \ebca +
+
+ +
+ + tools-kitchen +
+ ti ti-tools-kitchen
+ \ed64 +
+
+ +
+ + tools-kitchen-2 +
+ ti ti-tools-kitchen-2
+ \eeff +
+
+ +
+ + tools-kitchen-2-off +
+ ti ti-tools-kitchen-2-off
+ \f1b5 +
+
+ +
+ + tools-kitchen-off +
+ ti ti-tools-kitchen-off
+ \f1b6 +
+
+ +
+ + tools-off +
+ ti ti-tools-off
+ \f1b7 +
+
+ +
+ + tooltip +
+ ti ti-tooltip
+ \f2dd +
+
+ +
+ + topology-bus +
+ ti ti-topology-bus
+ \f5d9 +
+
+ +
+ + topology-complex +
+ ti ti-topology-complex
+ \f5da +
+
+ +
+ + topology-full +
+ ti ti-topology-full
+ \f5dc +
+
+ +
+ + topology-full-hierarchy +
+ ti ti-topology-full-hierarchy
+ \f5db +
+
+ +
+ + topology-ring +
+ ti ti-topology-ring
+ \f5df +
+
+ +
+ + topology-ring-2 +
+ ti ti-topology-ring-2
+ \f5dd +
+
+ +
+ + topology-ring-3 +
+ ti ti-topology-ring-3
+ \f5de +
+
+ +
+ + topology-star +
+ ti ti-topology-star
+ \f5e5 +
+
+ +
+ + topology-star-2 +
+ ti ti-topology-star-2
+ \f5e0 +
+
+ +
+ + topology-star-3 +
+ ti ti-topology-star-3
+ \f5e1 +
+
+ +
+ + topology-star-ring +
+ ti ti-topology-star-ring
+ \f5e4 +
+
+ +
+ + topology-star-ring-2 +
+ ti ti-topology-star-ring-2
+ \f5e2 +
+
+ +
+ + topology-star-ring-3 +
+ ti ti-topology-star-ring-3
+ \f5e3 +
+
+ +
+ + torii +
+ ti ti-torii
+ \f59b +
+
+ +
+ + tornado +
+ ti ti-tornado
+ \ece2 +
+
+ +
+ + tournament +
+ ti ti-tournament
+ \ecd0 +
+
+ +
+ + tower +
+ ti ti-tower
+ \f2cb +
+
+ +
+ + tower-off +
+ ti ti-tower-off
+ \f2ca +
+
+ +
+ + track +
+ ti ti-track
+ \ef00 +
+
+ +
+ + tractor +
+ ti ti-tractor
+ \ec0d +
+
+ +
+ + trademark +
+ ti ti-trademark
+ \ec0e +
+
+ +
+ + traffic-cone +
+ ti ti-traffic-cone
+ \ec0f +
+
+ +
+ + traffic-cone-off +
+ ti ti-traffic-cone-off
+ \f1b8 +
+
+ +
+ + traffic-lights +
+ ti ti-traffic-lights
+ \ed39 +
+
+ +
+ + traffic-lights-off +
+ ti ti-traffic-lights-off
+ \f1b9 +
+
+ +
+ + train +
+ ti ti-train
+ \ed96 +
+
+ +
+ + transfer-in +
+ ti ti-transfer-in
+ \ef2f +
+
+ +
+ + transfer-out +
+ ti ti-transfer-out
+ \ef30 +
+
+ +
+ + transform +
+ ti ti-transform
+ \f38e +
+
+ +
+ + transform-filled +
+ ti ti-transform-filled
+ \f6ac +
+
+ +
+ + transition-bottom +
+ ti ti-transition-bottom
+ \f2b2 +
+
+ +
+ + transition-left +
+ ti ti-transition-left
+ \f2b3 +
+
+ +
+ + transition-right +
+ ti ti-transition-right
+ \f2b4 +
+
+ +
+ + transition-top +
+ ti ti-transition-top
+ \f2b5 +
+
+ +
+ + trash +
+ ti ti-trash
+ \eb41 +
+
+ +
+ + trash-off +
+ ti ti-trash-off
+ \ed65 +
+
+ +
+ + trash-x +
+ ti ti-trash-x
+ \ef88 +
+
+ +
+ + tree +
+ ti ti-tree
+ \ef01 +
+
+ +
+ + trees +
+ ti ti-trees
+ \ec10 +
+
+ +
+ + trekking +
+ ti ti-trekking
+ \f5ad +
+
+ +
+ + trending-down +
+ ti ti-trending-down
+ \eb42 +
+
+ +
+ + trending-down-2 +
+ ti ti-trending-down-2
+ \edc1 +
+
+ +
+ + trending-down-3 +
+ ti ti-trending-down-3
+ \edc2 +
+
+ +
+ + trending-up +
+ ti ti-trending-up
+ \eb43 +
+
+ +
+ + trending-up-2 +
+ ti ti-trending-up-2
+ \edc3 +
+
+ +
+ + trending-up-3 +
+ ti ti-trending-up-3
+ \edc4 +
+
+ +
+ + triangle +
+ ti ti-triangle
+ \eb44 +
+
+ +
+ + triangle-filled +
+ ti ti-triangle-filled
+ \f6ad +
+
+ +
+ + triangle-inverted +
+ ti ti-triangle-inverted
+ \f01d +
+
+ +
+ + triangle-inverted-filled +
+ ti ti-triangle-inverted-filled
+ \f6ae +
+
+ +
+ + triangle-off +
+ ti ti-triangle-off
+ \ef02 +
+
+ +
+ + triangle-square-circle +
+ ti ti-triangle-square-circle
+ \ece8 +
+
+ +
+ + triangles +
+ ti ti-triangles
+ \f0a5 +
+
+ +
+ + trident +
+ ti ti-trident
+ \ecc5 +
+
+ +
+ + trolley +
+ ti ti-trolley
+ \f4cc +
+
+ +
+ + trophy +
+ ti ti-trophy
+ \eb45 +
+
+ +
+ + trophy-filled +
+ ti ti-trophy-filled
+ \f6af +
+
+ +
+ + trophy-off +
+ ti ti-trophy-off
+ \f438 +
+
+ +
+ + trowel +
+ ti ti-trowel
+ \f368 +
+
+ +
+ + truck +
+ ti ti-truck
+ \ebc4 +
+
+ +
+ + truck-delivery +
+ ti ti-truck-delivery
+ \ec4b +
+
+ +
+ + truck-loading +
+ ti ti-truck-loading
+ \f1da +
+
+ +
+ + truck-off +
+ ti ti-truck-off
+ \ef03 +
+
+ +
+ + truck-return +
+ ti ti-truck-return
+ \ec4c +
+
+ +
+ + txt +
+ ti ti-txt
+ \f3b1 +
+
+ +
+ + typography +
+ ti ti-typography
+ \ebc5 +
+
+ +
+ + typography-off +
+ ti ti-typography-off
+ \f1ba +
+
+ +
+ + ufo +
+ ti ti-ufo
+ \f26f +
+
+ +
+ + ufo-off +
+ ti ti-ufo-off
+ \f26e +
+
+ +
+ + umbrella +
+ ti ti-umbrella
+ \ebf1 +
+
+ +
+ + umbrella-filled +
+ ti ti-umbrella-filled
+ \f6b0 +
+
+ +
+ + umbrella-off +
+ ti ti-umbrella-off
+ \f1bb +
+
+ +
+ + underline +
+ ti ti-underline
+ \eba2 +
+
+ +
+ + unlink +
+ ti ti-unlink
+ \eb46 +
+
+ +
+ + upload +
+ ti ti-upload
+ \eb47 +
+
+ +
+ + urgent +
+ ti ti-urgent
+ \eb48 +
+
+ +
+ + usb +
+ ti ti-usb
+ \f00c +
+
+ +
+ + user +
+ ti ti-user
+ \eb4d +
+
+ +
+ + user-check +
+ ti ti-user-check
+ \eb49 +
+
+ +
+ + user-circle +
+ ti ti-user-circle
+ \ef68 +
+
+ +
+ + user-exclamation +
+ ti ti-user-exclamation
+ \ec12 +
+
+ +
+ + user-minus +
+ ti ti-user-minus
+ \eb4a +
+
+ +
+ + user-off +
+ ti ti-user-off
+ \ecf9 +
+
+ +
+ + user-plus +
+ ti ti-user-plus
+ \eb4b +
+
+ +
+ + user-search +
+ ti ti-user-search
+ \ef89 +
+
+ +
+ + user-x +
+ ti ti-user-x
+ \eb4c +
+
+ +
+ + users +
+ ti ti-users
+ \ebf2 +
+
+ +
+ + uv-index +
+ ti ti-uv-index
+ \f3b2 +
+
+ +
+ + ux-circle +
+ ti ti-ux-circle
+ \f369 +
+
+ +
+ + vaccine +
+ ti ti-vaccine
+ \ef04 +
+
+ +
+ + vaccine-bottle +
+ ti ti-vaccine-bottle
+ \ef69 +
+
+ +
+ + vaccine-bottle-off +
+ ti ti-vaccine-bottle-off
+ \f439 +
+
+ +
+ + vaccine-off +
+ ti ti-vaccine-off
+ \f1bc +
+
+ +
+ + vacuum-cleaner +
+ ti ti-vacuum-cleaner
+ \f5e6 +
+
+ +
+ + variable +
+ ti ti-variable
+ \ef05 +
+
+ +
+ + variable-minus +
+ ti ti-variable-minus
+ \f36a +
+
+ +
+ + variable-off +
+ ti ti-variable-off
+ \f1bd +
+
+ +
+ + variable-plus +
+ ti ti-variable-plus
+ \f36b +
+
+ +
+ + vector +
+ ti ti-vector
+ \eca9 +
+
+ +
+ + vector-bezier +
+ ti ti-vector-bezier
+ \ef1d +
+
+ +
+ + vector-bezier-2 +
+ ti ti-vector-bezier-2
+ \f1a3 +
+
+ +
+ + vector-bezier-arc +
+ ti ti-vector-bezier-arc
+ \f4cd +
+
+ +
+ + vector-bezier-circle +
+ ti ti-vector-bezier-circle
+ \f4ce +
+
+ +
+ + vector-off +
+ ti ti-vector-off
+ \f1be +
+
+ +
+ + vector-spline +
+ ti ti-vector-spline
+ \f565 +
+
+ +
+ + vector-triangle +
+ ti ti-vector-triangle
+ \eca8 +
+
+ +
+ + vector-triangle-off +
+ ti ti-vector-triangle-off
+ \f1bf +
+
+ +
+ + venus +
+ ti ti-venus
+ \ec86 +
+
+ +
+ + versions +
+ ti ti-versions
+ \ed52 +
+
+ +
+ + versions-filled +
+ ti ti-versions-filled
+ \f6b1 +
+
+ +
+ + versions-off +
+ ti ti-versions-off
+ \f1c0 +
+
+ +
+ + video +
+ ti ti-video
+ \ed22 +
+
+ +
+ + video-minus +
+ ti ti-video-minus
+ \ed1f +
+
+ +
+ + video-off +
+ ti ti-video-off
+ \ed20 +
+
+ +
+ + video-plus +
+ ti ti-video-plus
+ \ed21 +
+
+ +
+ + view-360 +
+ ti ti-view-360
+ \ed84 +
+
+ +
+ + view-360-off +
+ ti ti-view-360-off
+ \f1c1 +
+
+ +
+ + viewfinder +
+ ti ti-viewfinder
+ \eb4e +
+
+ +
+ + viewfinder-off +
+ ti ti-viewfinder-off
+ \f1c2 +
+
+ +
+ + viewport-narrow +
+ ti ti-viewport-narrow
+ \ebf3 +
+
+ +
+ + viewport-wide +
+ ti ti-viewport-wide
+ \ebf4 +
+
+ +
+ + vinyl +
+ ti ti-vinyl
+ \f00d +
+
+ +
+ + vip +
+ ti ti-vip
+ \f3b3 +
+
+ +
+ + vip-off +
+ ti ti-vip-off
+ \f43a +
+
+ +
+ + virus +
+ ti ti-virus
+ \eb74 +
+
+ +
+ + virus-off +
+ ti ti-virus-off
+ \ed66 +
+
+ +
+ + virus-search +
+ ti ti-virus-search
+ \ed67 +
+
+ +
+ + vocabulary +
+ ti ti-vocabulary
+ \ef1e +
+
+ +
+ + vocabulary-off +
+ ti ti-vocabulary-off
+ \f43b +
+
+ +
+ + volume +
+ ti ti-volume
+ \eb51 +
+
+ +
+ + volume-2 +
+ ti ti-volume-2
+ \eb4f +
+
+ +
+ + volume-3 +
+ ti ti-volume-3
+ \eb50 +
+
+ +
+ + volume-off +
+ ti ti-volume-off
+ \f1c3 +
+
+ +
+ + walk +
+ ti ti-walk
+ \ec87 +
+
+ +
+ + wall +
+ ti ti-wall
+ \ef7a +
+
+ +
+ + wall-off +
+ ti ti-wall-off
+ \f43c +
+
+ +
+ + wallet +
+ ti ti-wallet
+ \eb75 +
+
+ +
+ + wallet-off +
+ ti ti-wallet-off
+ \f1c4 +
+
+ +
+ + wallpaper +
+ ti ti-wallpaper
+ \ef56 +
+
+ +
+ + wallpaper-off +
+ ti ti-wallpaper-off
+ \f1c5 +
+
+ +
+ + wand +
+ ti ti-wand
+ \ebcb +
+
+ +
+ + wand-off +
+ ti ti-wand-off
+ \f1c6 +
+
+ +
+ + wash +
+ ti ti-wash
+ \f311 +
+
+ +
+ + wash-dry +
+ ti ti-wash-dry
+ \f304 +
+
+ +
+ + wash-dry-1 +
+ ti ti-wash-dry-1
+ \f2fa +
+
+ +
+ + wash-dry-2 +
+ ti ti-wash-dry-2
+ \f2fb +
+
+ +
+ + wash-dry-3 +
+ ti ti-wash-dry-3
+ \f2fc +
+
+ +
+ + wash-dry-a +
+ ti ti-wash-dry-a
+ \f2fd +
+
+ +
+ + wash-dry-dip +
+ ti ti-wash-dry-dip
+ \f2fe +
+
+ +
+ + wash-dry-f +
+ ti ti-wash-dry-f
+ \f2ff +
+
+ +
+ + wash-dry-hang +
+ ti ti-wash-dry-hang
+ \f300 +
+
+ +
+ + wash-dry-off +
+ ti ti-wash-dry-off
+ \f301 +
+
+ +
+ + wash-dry-p +
+ ti ti-wash-dry-p
+ \f302 +
+
+ +
+ + wash-dry-shade +
+ ti ti-wash-dry-shade
+ \f303 +
+
+ +
+ + wash-dry-w +
+ ti ti-wash-dry-w
+ \f322 +
+
+ +
+ + wash-dryclean +
+ ti ti-wash-dryclean
+ \f305 +
+
+ +
+ + wash-dryclean-off +
+ ti ti-wash-dryclean-off
+ \f323 +
+
+ +
+ + wash-gentle +
+ ti ti-wash-gentle
+ \f306 +
+
+ +
+ + wash-machine +
+ ti ti-wash-machine
+ \f25e +
+
+ +
+ + wash-off +
+ ti ti-wash-off
+ \f307 +
+
+ +
+ + wash-press +
+ ti ti-wash-press
+ \f308 +
+
+ +
+ + wash-temperature-1 +
+ ti ti-wash-temperature-1
+ \f309 +
+
+ +
+ + wash-temperature-2 +
+ ti ti-wash-temperature-2
+ \f30a +
+
+ +
+ + wash-temperature-3 +
+ ti ti-wash-temperature-3
+ \f30b +
+
+ +
+ + wash-temperature-4 +
+ ti ti-wash-temperature-4
+ \f30c +
+
+ +
+ + wash-temperature-5 +
+ ti ti-wash-temperature-5
+ \f30d +
+
+ +
+ + wash-temperature-6 +
+ ti ti-wash-temperature-6
+ \f30e +
+
+ +
+ + wash-tumble-dry +
+ ti ti-wash-tumble-dry
+ \f30f +
+
+ +
+ + wash-tumble-off +
+ ti ti-wash-tumble-off
+ \f310 +
+
+ +
+ + wave-saw-tool +
+ ti ti-wave-saw-tool
+ \ecd3 +
+
+ +
+ + wave-sine +
+ ti ti-wave-sine
+ \ecd4 +
+
+ +
+ + wave-square +
+ ti ti-wave-square
+ \ecd5 +
+
+ +
+ + webhook +
+ ti ti-webhook
+ \f01e +
+
+ +
+ + webhook-off +
+ ti ti-webhook-off
+ \f43d +
+
+ +
+ + weight +
+ ti ti-weight
+ \f589 +
+
+ +
+ + wheelchair +
+ ti ti-wheelchair
+ \f1db +
+
+ +
+ + wheelchair-off +
+ ti ti-wheelchair-off
+ \f43e +
+
+ +
+ + whirl +
+ ti ti-whirl
+ \f51d +
+
+ +
+ + wifi +
+ ti ti-wifi
+ \eb52 +
+
+ +
+ + wifi-0 +
+ ti ti-wifi-0
+ \eba3 +
+
+ +
+ + wifi-1 +
+ ti ti-wifi-1
+ \eba4 +
+
+ +
+ + wifi-2 +
+ ti ti-wifi-2
+ \eba5 +
+
+ +
+ + wifi-off +
+ ti ti-wifi-off
+ \ecfa +
+
+ +
+ + wind +
+ ti ti-wind
+ \ec34 +
+
+ +
+ + wind-off +
+ ti ti-wind-off
+ \f1c7 +
+
+ +
+ + windmill +
+ ti ti-windmill
+ \ed85 +
+
+ +
+ + windmill-filled +
+ ti ti-windmill-filled
+ \f6b2 +
+
+ +
+ + windmill-off +
+ ti ti-windmill-off
+ \f1c8 +
+
+ +
+ + window +
+ ti ti-window
+ \ef06 +
+
+ +
+ + window-maximize +
+ ti ti-window-maximize
+ \f1f1 +
+
+ +
+ + window-minimize +
+ ti ti-window-minimize
+ \f1f2 +
+
+ +
+ + window-off +
+ ti ti-window-off
+ \f1c9 +
+
+ +
+ + windsock +
+ ti ti-windsock
+ \f06d +
+
+ +
+ + wiper +
+ ti ti-wiper
+ \ecab +
+
+ +
+ + wiper-wash +
+ ti ti-wiper-wash
+ \ecaa +
+
+ +
+ + woman +
+ ti ti-woman
+ \eb53 +
+
+ +
+ + wood +
+ ti ti-wood
+ \f359 +
+
+ +
+ + world +
+ ti ti-world
+ \eb54 +
+
+ +
+ + world-download +
+ ti ti-world-download
+ \ef8a +
+
+ +
+ + world-latitude +
+ ti ti-world-latitude
+ \ed2e +
+
+ +
+ + world-longitude +
+ ti ti-world-longitude
+ \ed2f +
+
+ +
+ + world-off +
+ ti ti-world-off
+ \f1ca +
+
+ +
+ + world-upload +
+ ti ti-world-upload
+ \ef8b +
+
+ +
+ + world-www +
+ ti ti-world-www
+ \f38f +
+
+ +
+ + wrecking-ball +
+ ti ti-wrecking-ball
+ \ed97 +
+
+ +
+ + writing +
+ ti ti-writing
+ \ef08 +
+
+ +
+ + writing-off +
+ ti ti-writing-off
+ \f1cb +
+
+ +
+ + writing-sign +
+ ti ti-writing-sign
+ \ef07 +
+
+ +
+ + writing-sign-off +
+ ti ti-writing-sign-off
+ \f1cc +
+
+ +
+ + x +
+ ti ti-x
+ \eb55 +
+
+ +
+ + xbox-a +
+ ti ti-xbox-a
+ \f2b6 +
+
+ +
+ + xbox-b +
+ ti ti-xbox-b
+ \f2b7 +
+
+ +
+ + xbox-x +
+ ti ti-xbox-x
+ \f2b8 +
+
+ +
+ + xbox-y +
+ ti ti-xbox-y
+ \f2b9 +
+
+ +
+ + yin-yang +
+ ti ti-yin-yang
+ \ec35 +
+
+ +
+ + yoga +
+ ti ti-yoga
+ \f01f +
+
+ +
+ + zeppelin +
+ ti ti-zeppelin
+ \f270 +
+
+ +
+ + zeppelin-off +
+ ti ti-zeppelin-off
+ \f43f +
+
+ +
+ + zip +
+ ti ti-zip
+ \f3b4 +
+
+ +
+ + zodiac-aquarius +
+ ti ti-zodiac-aquarius
+ \ecac +
+
+ +
+ + zodiac-aries +
+ ti ti-zodiac-aries
+ \ecad +
+
+ +
+ + zodiac-cancer +
+ ti ti-zodiac-cancer
+ \ecae +
+
+ +
+ + zodiac-capricorn +
+ ti ti-zodiac-capricorn
+ \ecaf +
+
+ +
+ + zodiac-gemini +
+ ti ti-zodiac-gemini
+ \ecb0 +
+
+ +
+ + zodiac-leo +
+ ti ti-zodiac-leo
+ \ecb1 +
+
+ +
+ + zodiac-libra +
+ ti ti-zodiac-libra
+ \ecb2 +
+
+ +
+ + zodiac-pisces +
+ ti ti-zodiac-pisces
+ \ecb3 +
+
+ +
+ + zodiac-sagittarius +
+ ti ti-zodiac-sagittarius
+ \ecb4 +
+
+ +
+ + zodiac-scorpio +
+ ti ti-zodiac-scorpio
+ \ecb5 +
+
+ +
+ + zodiac-taurus +
+ ti ti-zodiac-taurus
+ \ecb6 +
+
+ +
+ + zodiac-virgo +
+ ti ti-zodiac-virgo
+ \ecb7 +
+
+ +
+ + zoom-cancel +
+ ti ti-zoom-cancel
+ \ec4d +
+
+ +
+ + zoom-check +
+ ti ti-zoom-check
+ \ef09 +
+
+ +
+ + zoom-code +
+ ti ti-zoom-code
+ \f07f +
+
+ +
+ + zoom-exclamation +
+ ti ti-zoom-exclamation
+ \f080 +
+
+ +
+ + zoom-in +
+ ti ti-zoom-in
+ \eb56 +
+
+ +
+ + zoom-in-area +
+ ti ti-zoom-in-area
+ \f1dc +
+
+ +
+ + zoom-money +
+ ti ti-zoom-money
+ \ef0a +
+
+ +
+ + zoom-out +
+ ti ti-zoom-out
+ \eb57 +
+
+ +
+ + zoom-out-area +
+ ti ti-zoom-out-area
+ \f1dd +
+
+ +
+ + zoom-pan +
+ ti ti-zoom-pan
+ \f1de +
+
+ +
+ + zoom-question +
+ ti ti-zoom-question
+ \edeb +
+
+ +
+ + zoom-replace +
+ ti ti-zoom-replace
+ \f2a7 +
+
+ +
+ + zoom-reset +
+ ti ti-zoom-reset
+ \f295 +
+
+ +
+ + zzz +
+ ti ti-zzz
+ \f228 +
+
+ +
+ + zzz-off +
+ ti ti-zzz-off
+ \f440 +
+
+ +
+
+
+ + + + + diff --git a/packages/icons-webfont/tabler-icons.min.css b/packages/icons-webfont/tabler-icons.min.css new file mode 100644 index 000000000..bc4f7e51c --- /dev/null +++ b/packages/icons-webfont/tabler-icons.min.css @@ -0,0 +1,5 @@ +/*! + * Tabler Icons 2.0.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?v2.0.0");src:url("./fonts/tabler-icons.eot?#iefix-v2.0.0") format("embedded-opentype"),url("./fonts/tabler-icons.woff2?v2.0.0") format("woff2"),url("./fonts/tabler-icons.woff?") format("woff"),url("./fonts/tabler-icons.ttf?v2.0.0") 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-c-sharp:before{content:"\f003"}.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-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-ufo:before{content:"\f26f"}.ti-ufo-off:before{content:"\f26e"}.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..f518279d6 --- /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,sCAA+C,CACpD,GAAG,CAAE,6OAG+D,CAGtE,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,wBAAoC,CAAE,OAAO,CAtoGrB,OAAe,CAuoGvC,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,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,cAA0B,CAAE,OAAO,CAtoGrB,OAAe,CAuoG7B,kBAA8B,CAAE,OAAO,CAtoGrB,OAAe,CAuoGjC,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/packages/icons-webfont/tabler-icons.scss b/packages/icons-webfont/tabler-icons.scss new file mode 100644 index 000000000..1120364c8 --- /dev/null +++ b/packages/icons-webfont/tabler-icons.scss @@ -0,0 +1,6450 @@ +/*! + * Tabler Icons 2.0.0 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-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}/tabler-icons.eot?v2.0.0'); + src: url('#{$ti-font-path}/tabler-icons.eot?#iefix-v2.0.0') format('embedded-opentype'), + url('#{$ti-font-path}/tabler-icons.woff2?v2.0.0') format('woff2'), + url('#{$ti-font-path}/tabler-icons.woff?') format('woff'), + url('#{$ti-font-path}/tabler-icons.ttf?v2.0.0') 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("\"") +} + + +$ti-icon-123: unicode('f554'); +$ti-icon-24-hours: unicode('f5e7'); +$ti-icon-2fa: unicode('eca0'); +$ti-icon-360: unicode('f62f'); +$ti-icon-360-view: unicode('f566'); +$ti-icon-3d-cube-sphere: unicode('ecd7'); +$ti-icon-3d-cube-sphere-off: unicode('f3b5'); +$ti-icon-3d-rotate: unicode('f020'); +$ti-icon-a-b: unicode('ec36'); +$ti-icon-a-b-2: unicode('f25f'); +$ti-icon-a-b-off: unicode('f0a6'); +$ti-icon-abacus: unicode('f05c'); +$ti-icon-abacus-off: unicode('f3b6'); +$ti-icon-abc: unicode('f567'); +$ti-icon-access-point: unicode('ed1b'); +$ti-icon-access-point-off: unicode('ed1a'); +$ti-icon-accessible: unicode('eba9'); +$ti-icon-accessible-off: unicode('f0a7'); +$ti-icon-activity: unicode('ed23'); +$ti-icon-activity-heartbeat: unicode('f0db'); +$ti-icon-ad: unicode('ea02'); +$ti-icon-ad-2: unicode('ef1f'); +$ti-icon-ad-off: unicode('f3b7'); +$ti-icon-address-book: unicode('f021'); +$ti-icon-address-book-off: unicode('f3b8'); +$ti-icon-adjustments: unicode('ea03'); +$ti-icon-adjustments-alt: unicode('ec37'); +$ti-icon-adjustments-horizontal: unicode('ec38'); +$ti-icon-adjustments-off: unicode('f0a8'); +$ti-icon-aerial-lift: unicode('edfe'); +$ti-icon-affiliate: unicode('edff'); +$ti-icon-air-balloon: unicode('f4a6'); +$ti-icon-air-conditioning: unicode('f3a2'); +$ti-icon-air-conditioning-disabled: unicode('f542'); +$ti-icon-alarm: unicode('ea04'); +$ti-icon-alarm-minus: unicode('f630'); +$ti-icon-alarm-off: unicode('f0a9'); +$ti-icon-alarm-plus: unicode('f631'); +$ti-icon-alarm-snooze: unicode('f632'); +$ti-icon-album: unicode('f022'); +$ti-icon-album-off: unicode('f3b9'); +$ti-icon-alert-circle: unicode('ea05'); +$ti-icon-alert-octagon: unicode('ecc6'); +$ti-icon-alert-triangle: unicode('ea06'); +$ti-icon-alien: unicode('ebde'); +$ti-icon-align-box-bottom-center: unicode('f530'); +$ti-icon-align-box-bottom-left: unicode('f531'); +$ti-icon-align-box-bottom-right: unicode('f532'); +$ti-icon-align-box-left-bottom: unicode('f533'); +$ti-icon-align-box-left-middle: unicode('f534'); +$ti-icon-align-box-left-top: unicode('f535'); +$ti-icon-align-box-right-bottom: unicode('f536'); +$ti-icon-align-box-right-middle: unicode('f537'); +$ti-icon-align-box-right-top: unicode('f538'); +$ti-icon-align-box-top-center: unicode('f539'); +$ti-icon-align-box-top-left: unicode('f53a'); +$ti-icon-align-box-top-right: unicode('f53b'); +$ti-icon-align-center: unicode('ea07'); +$ti-icon-align-justified: unicode('ea08'); +$ti-icon-align-left: unicode('ea09'); +$ti-icon-align-right: unicode('ea0a'); +$ti-icon-alpha: unicode('f543'); +$ti-icon-alphabet-cyrillic: unicode('f1df'); +$ti-icon-alphabet-greek: unicode('f1e0'); +$ti-icon-alphabet-latin: unicode('f1e1'); +$ti-icon-ambulance: unicode('ebf5'); +$ti-icon-ampersand: unicode('f229'); +$ti-icon-analyze: unicode('f3a3'); +$ti-icon-analyze-off: unicode('f3ba'); +$ti-icon-anchor: unicode('eb76'); +$ti-icon-anchor-off: unicode('f0f7'); +$ti-icon-angle: unicode('ef20'); +$ti-icon-ankh: unicode('f1cd'); +$ti-icon-antenna: unicode('f094'); +$ti-icon-antenna-bars-1: unicode('ecc7'); +$ti-icon-antenna-bars-2: unicode('ecc8'); +$ti-icon-antenna-bars-3: unicode('ecc9'); +$ti-icon-antenna-bars-4: unicode('ecca'); +$ti-icon-antenna-bars-5: unicode('eccb'); +$ti-icon-antenna-bars-off: unicode('f0aa'); +$ti-icon-antenna-off: unicode('f3bb'); +$ti-icon-aperture: unicode('eb58'); +$ti-icon-aperture-off: unicode('f3bc'); +$ti-icon-api: unicode('effd'); +$ti-icon-api-app: unicode('effc'); +$ti-icon-api-app-off: unicode('f0ab'); +$ti-icon-api-off: unicode('f0f8'); +$ti-icon-app-window: unicode('efe6'); +$ti-icon-apple: unicode('ef21'); +$ti-icon-apps: unicode('ebb6'); +$ti-icon-apps-off: unicode('f0ac'); +$ti-icon-archive: unicode('ea0b'); +$ti-icon-archive-off: unicode('f0ad'); +$ti-icon-armchair: unicode('ef9e'); +$ti-icon-armchair-2: unicode('efe7'); +$ti-icon-armchair-2-off: unicode('f3bd'); +$ti-icon-armchair-off: unicode('f3be'); +$ti-icon-arrow-autofit-content: unicode('ef31'); +$ti-icon-arrow-autofit-down: unicode('ef32'); +$ti-icon-arrow-autofit-height: unicode('ef33'); +$ti-icon-arrow-autofit-left: unicode('ef34'); +$ti-icon-arrow-autofit-right: unicode('ef35'); +$ti-icon-arrow-autofit-up: unicode('ef36'); +$ti-icon-arrow-autofit-width: unicode('ef37'); +$ti-icon-arrow-back: unicode('ea0c'); +$ti-icon-arrow-back-up: unicode('eb77'); +$ti-icon-arrow-badge-down: unicode('f60b'); +$ti-icon-arrow-badge-left: unicode('f60c'); +$ti-icon-arrow-badge-right: unicode('f60d'); +$ti-icon-arrow-badge-up: unicode('f60e'); +$ti-icon-arrow-bar-down: unicode('ea0d'); +$ti-icon-arrow-bar-left: unicode('ea0e'); +$ti-icon-arrow-bar-right: unicode('ea0f'); +$ti-icon-arrow-bar-to-down: unicode('ec88'); +$ti-icon-arrow-bar-to-left: unicode('ec89'); +$ti-icon-arrow-bar-to-right: unicode('ec8a'); +$ti-icon-arrow-bar-to-up: unicode('ec8b'); +$ti-icon-arrow-bar-up: unicode('ea10'); +$ti-icon-arrow-bear-left: unicode('f045'); +$ti-icon-arrow-bear-left-2: unicode('f044'); +$ti-icon-arrow-bear-right: unicode('f047'); +$ti-icon-arrow-bear-right-2: unicode('f046'); +$ti-icon-arrow-big-down: unicode('edda'); +$ti-icon-arrow-big-down-line: unicode('efe8'); +$ti-icon-arrow-big-down-lines: unicode('efe9'); +$ti-icon-arrow-big-left: unicode('eddb'); +$ti-icon-arrow-big-left-line: unicode('efea'); +$ti-icon-arrow-big-left-lines: unicode('efeb'); +$ti-icon-arrow-big-right: unicode('eddc'); +$ti-icon-arrow-big-right-line: unicode('efec'); +$ti-icon-arrow-big-right-lines: unicode('efed'); +$ti-icon-arrow-big-top: unicode('eddd'); +$ti-icon-arrow-big-up-line: unicode('efee'); +$ti-icon-arrow-big-up-lines: unicode('efef'); +$ti-icon-arrow-bounce: unicode('f3a4'); +$ti-icon-arrow-curve-left: unicode('f048'); +$ti-icon-arrow-curve-right: unicode('f049'); +$ti-icon-arrow-down: unicode('ea16'); +$ti-icon-arrow-down-bar: unicode('ed98'); +$ti-icon-arrow-down-circle: unicode('ea11'); +$ti-icon-arrow-down-left: unicode('ea13'); +$ti-icon-arrow-down-left-circle: unicode('ea12'); +$ti-icon-arrow-down-rhombus: unicode('f61d'); +$ti-icon-arrow-down-right: unicode('ea15'); +$ti-icon-arrow-down-right-circle: unicode('ea14'); +$ti-icon-arrow-down-square: unicode('ed9a'); +$ti-icon-arrow-down-tail: unicode('ed9b'); +$ti-icon-arrow-fork: unicode('f04a'); +$ti-icon-arrow-forward: unicode('ea17'); +$ti-icon-arrow-forward-up: unicode('eb78'); +$ti-icon-arrow-guide: unicode('f22a'); +$ti-icon-arrow-iteration: unicode('f578'); +$ti-icon-arrow-left: unicode('ea19'); +$ti-icon-arrow-left-bar: unicode('ed9c'); +$ti-icon-arrow-left-circle: unicode('ea18'); +$ti-icon-arrow-left-rhombus: unicode('f61e'); +$ti-icon-arrow-left-right: unicode('f04b'); +$ti-icon-arrow-left-square: unicode('ed9d'); +$ti-icon-arrow-left-tail: unicode('ed9e'); +$ti-icon-arrow-loop-left: unicode('ed9f'); +$ti-icon-arrow-loop-left-2: unicode('f04c'); +$ti-icon-arrow-loop-right: unicode('eda0'); +$ti-icon-arrow-loop-right-2: unicode('f04d'); +$ti-icon-arrow-merge: unicode('f04e'); +$ti-icon-arrow-merge-both: unicode('f23b'); +$ti-icon-arrow-merge-left: unicode('f23c'); +$ti-icon-arrow-merge-right: unicode('f23d'); +$ti-icon-arrow-move-down: unicode('f2ba'); +$ti-icon-arrow-move-left: unicode('f2bb'); +$ti-icon-arrow-move-right: unicode('f2bc'); +$ti-icon-arrow-move-up: unicode('f2bd'); +$ti-icon-arrow-narrow-down: unicode('ea1a'); +$ti-icon-arrow-narrow-left: unicode('ea1b'); +$ti-icon-arrow-narrow-right: unicode('ea1c'); +$ti-icon-arrow-narrow-up: unicode('ea1d'); +$ti-icon-arrow-ramp-left: unicode('ed3c'); +$ti-icon-arrow-ramp-left-2: unicode('f04f'); +$ti-icon-arrow-ramp-left-3: unicode('f050'); +$ti-icon-arrow-ramp-right: unicode('ed3d'); +$ti-icon-arrow-ramp-right-2: unicode('f051'); +$ti-icon-arrow-ramp-right-3: unicode('f052'); +$ti-icon-arrow-right: unicode('ea1f'); +$ti-icon-arrow-right-bar: unicode('eda1'); +$ti-icon-arrow-right-circle: unicode('ea1e'); +$ti-icon-arrow-right-rhombus: unicode('f61f'); +$ti-icon-arrow-right-square: unicode('eda2'); +$ti-icon-arrow-right-tail: unicode('eda3'); +$ti-icon-arrow-rotary-first-left: unicode('f053'); +$ti-icon-arrow-rotary-first-right: unicode('f054'); +$ti-icon-arrow-rotary-last-left: unicode('f055'); +$ti-icon-arrow-rotary-last-right: unicode('f056'); +$ti-icon-arrow-rotary-left: unicode('f057'); +$ti-icon-arrow-rotary-right: unicode('f058'); +$ti-icon-arrow-rotary-straight: unicode('f059'); +$ti-icon-arrow-roundabout-left: unicode('f22b'); +$ti-icon-arrow-roundabout-right: unicode('f22c'); +$ti-icon-arrow-sharp-turn-left: unicode('f05a'); +$ti-icon-arrow-sharp-turn-right: unicode('f05b'); +$ti-icon-arrow-up: unicode('ea25'); +$ti-icon-arrow-up-bar: unicode('eda4'); +$ti-icon-arrow-up-circle: unicode('ea20'); +$ti-icon-arrow-up-left: unicode('ea22'); +$ti-icon-arrow-up-left-circle: unicode('ea21'); +$ti-icon-arrow-up-rhombus: unicode('f620'); +$ti-icon-arrow-up-right: unicode('ea24'); +$ti-icon-arrow-up-right-circle: unicode('ea23'); +$ti-icon-arrow-up-square: unicode('eda6'); +$ti-icon-arrow-up-tail: unicode('eda7'); +$ti-icon-arrow-wave-left-down: unicode('eda8'); +$ti-icon-arrow-wave-left-up: unicode('eda9'); +$ti-icon-arrow-wave-right-down: unicode('edaa'); +$ti-icon-arrow-wave-right-up: unicode('edab'); +$ti-icon-arrow-zig-zag: unicode('f4a7'); +$ti-icon-arrows-cross: unicode('effe'); +$ti-icon-arrows-diagonal: unicode('ea27'); +$ti-icon-arrows-diagonal-2: unicode('ea26'); +$ti-icon-arrows-diagonal-minimize: unicode('ef39'); +$ti-icon-arrows-diagonal-minimize-2: unicode('ef38'); +$ti-icon-arrows-diff: unicode('f296'); +$ti-icon-arrows-double-ne-sw: unicode('edde'); +$ti-icon-arrows-double-nw-se: unicode('eddf'); +$ti-icon-arrows-double-se-nw: unicode('ede0'); +$ti-icon-arrows-double-sw-ne: unicode('ede1'); +$ti-icon-arrows-down: unicode('edad'); +$ti-icon-arrows-down-up: unicode('edac'); +$ti-icon-arrows-exchange: unicode('f1f4'); +$ti-icon-arrows-exchange-2: unicode('f1f3'); +$ti-icon-arrows-horizontal: unicode('eb59'); +$ti-icon-arrows-join: unicode('edaf'); +$ti-icon-arrows-join-2: unicode('edae'); +$ti-icon-arrows-left: unicode('edb1'); +$ti-icon-arrows-left-down: unicode('ee00'); +$ti-icon-arrows-left-right: unicode('edb0'); +$ti-icon-arrows-maximize: unicode('ea28'); +$ti-icon-arrows-minimize: unicode('ea29'); +$ti-icon-arrows-move: unicode('f22f'); +$ti-icon-arrows-move-horizontal: unicode('f22d'); +$ti-icon-arrows-move-vertical: unicode('f22e'); +$ti-icon-arrows-random: unicode('f095'); +$ti-icon-arrows-right: unicode('edb3'); +$ti-icon-arrows-right-down: unicode('ee01'); +$ti-icon-arrows-right-left: unicode('edb2'); +$ti-icon-arrows-shuffle: unicode('f000'); +$ti-icon-arrows-shuffle-2: unicode('efff'); +$ti-icon-arrows-sort: unicode('eb5a'); +$ti-icon-arrows-split: unicode('edb5'); +$ti-icon-arrows-split-2: unicode('edb4'); +$ti-icon-arrows-transfer-down: unicode('f2cc'); +$ti-icon-arrows-transfer-up: unicode('f2cd'); +$ti-icon-arrows-up: unicode('edb7'); +$ti-icon-arrows-up-down: unicode('edb6'); +$ti-icon-arrows-up-left: unicode('ee02'); +$ti-icon-arrows-up-right: unicode('ee03'); +$ti-icon-arrows-vertical: unicode('eb5b'); +$ti-icon-artboard: unicode('ea2a'); +$ti-icon-artboard-off: unicode('f0ae'); +$ti-icon-article: unicode('f1e2'); +$ti-icon-article-off: unicode('f3bf'); +$ti-icon-aspect-ratio: unicode('ed30'); +$ti-icon-aspect-ratio-off: unicode('f0af'); +$ti-icon-assembly: unicode('f24d'); +$ti-icon-assembly-off: unicode('f3c0'); +$ti-icon-asset: unicode('f1ce'); +$ti-icon-asterisk: unicode('efd5'); +$ti-icon-asterisk-simple: unicode('efd4'); +$ti-icon-at: unicode('ea2b'); +$ti-icon-at-off: unicode('f0b0'); +$ti-icon-atom: unicode('eb79'); +$ti-icon-atom-2: unicode('ebdf'); +$ti-icon-atom-off: unicode('f0f9'); +$ti-icon-augmented-reality: unicode('f023'); +$ti-icon-augmented-reality-2: unicode('f37e'); +$ti-icon-augmented-reality-off: unicode('f3c1'); +$ti-icon-award: unicode('ea2c'); +$ti-icon-award-off: unicode('f0fa'); +$ti-icon-axe: unicode('ef9f'); +$ti-icon-axis-x: unicode('ef45'); +$ti-icon-axis-y: unicode('ef46'); +$ti-icon-baby-bottle: unicode('f5d2'); +$ti-icon-baby-carriage: unicode('f05d'); +$ti-icon-backhoe: unicode('ed86'); +$ti-icon-backpack: unicode('ef47'); +$ti-icon-backpack-off: unicode('f3c2'); +$ti-icon-backspace: unicode('ea2d'); +$ti-icon-badge: unicode('efc2'); +$ti-icon-badge-3d: unicode('f555'); +$ti-icon-badge-4k: unicode('f556'); +$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'); +$ti-icon-badge-tm: unicode('f55d'); +$ti-icon-badge-vo: unicode('f55e'); +$ti-icon-badge-vr: unicode('f55f'); +$ti-icon-badge-wc: unicode('f560'); +$ti-icon-badges: unicode('efc3'); +$ti-icon-badges-off: unicode('f0fc'); +$ti-icon-baguette: unicode('f3a5'); +$ti-icon-ball-american-football: unicode('ee04'); +$ti-icon-ball-american-football-off: unicode('f3c3'); +$ti-icon-ball-baseball: unicode('efa0'); +$ti-icon-ball-basketball: unicode('ec28'); +$ti-icon-ball-bowling: unicode('ec29'); +$ti-icon-ball-football: unicode('ee06'); +$ti-icon-ball-football-off: unicode('ee05'); +$ti-icon-ball-tennis: unicode('ec2a'); +$ti-icon-ball-volleyball: unicode('ec2b'); +$ti-icon-ballon: unicode('ef3a'); +$ti-icon-ballon-off: unicode('f0fd'); +$ti-icon-ballpen: unicode('f06e'); +$ti-icon-ballpen-off: unicode('f0b1'); +$ti-icon-ban: unicode('ea2e'); +$ti-icon-bandage: unicode('eb7a'); +$ti-icon-bandage-off: unicode('f3c4'); +$ti-icon-barbell: unicode('eff0'); +$ti-icon-barbell-off: unicode('f0b2'); +$ti-icon-barcode: unicode('ebc6'); +$ti-icon-barcode-off: unicode('f0b3'); +$ti-icon-barrel: unicode('f0b4'); +$ti-icon-barrel-off: unicode('f0fe'); +$ti-icon-barrier-block: unicode('f00e'); +$ti-icon-barrier-block-off: unicode('f0b5'); +$ti-icon-baseline: unicode('f024'); +$ti-icon-basket: unicode('ebe1'); +$ti-icon-basket-off: unicode('f0b6'); +$ti-icon-bat: unicode('f284'); +$ti-icon-bath: unicode('ef48'); +$ti-icon-bath-off: unicode('f0ff'); +$ti-icon-battery: unicode('ea34'); +$ti-icon-battery-1: unicode('ea2f'); +$ti-icon-battery-2: unicode('ea30'); +$ti-icon-battery-3: unicode('ea31'); +$ti-icon-battery-4: unicode('ea32'); +$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'); +$ti-icon-bed: unicode('eb5c'); +$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'); +$ti-icon-bell-ringing: unicode('ed07'); +$ti-icon-bell-ringing-2: unicode('ede4'); +$ti-icon-bell-school: unicode('f05e'); +$ti-icon-bell-x: unicode('ede5'); +$ti-icon-bell-z: unicode('eff1'); +$ti-icon-beta: unicode('f544'); +$ti-icon-bible: unicode('efc4'); +$ti-icon-bike: unicode('ea36'); +$ti-icon-bike-off: unicode('f0b8'); +$ti-icon-binary: unicode('ee08'); +$ti-icon-binary-off: unicode('f3c5'); +$ti-icon-binary-tree: unicode('f5d4'); +$ti-icon-binary-tree-2: unicode('f5d3'); +$ti-icon-biohazard: unicode('ecb8'); +$ti-icon-biohazard-off: unicode('f0b9'); +$ti-icon-blade: unicode('f4bd'); +$ti-icon-bleach: unicode('f2f3'); +$ti-icon-bleach-chlorine: unicode('f2f0'); +$ti-icon-bleach-no-chlorine: unicode('f2f1'); +$ti-icon-bleach-off: unicode('f2f2'); +$ti-icon-blockquote: unicode('ee09'); +$ti-icon-bluetooth: unicode('ea37'); +$ti-icon-bluetooth-connected: unicode('ecea'); +$ti-icon-bluetooth-off: unicode('eceb'); +$ti-icon-bluetooth-x: unicode('f081'); +$ti-icon-blur: unicode('ef8c'); +$ti-icon-blur-off: unicode('f3c6'); +$ti-icon-bmp: unicode('f3a6'); +$ti-icon-bold: unicode('eb7b'); +$ti-icon-bold-off: unicode('f0ba'); +$ti-icon-bolt: unicode('ea38'); +$ti-icon-bolt-off: unicode('ecec'); +$ti-icon-bomb: unicode('f59c'); +$ti-icon-bone: unicode('edb8'); +$ti-icon-bone-off: unicode('f0bb'); +$ti-icon-bong: unicode('f3a7'); +$ti-icon-bong-off: unicode('f3c7'); +$ti-icon-book: unicode('ea39'); +$ti-icon-book-2: unicode('efc5'); +$ti-icon-book-download: unicode('f070'); +$ti-icon-book-off: unicode('f0bc'); +$ti-icon-book-upload: unicode('f071'); +$ti-icon-bookmark: unicode('ea3a'); +$ti-icon-bookmark-off: unicode('eced'); +$ti-icon-bookmarks: unicode('ed08'); +$ti-icon-bookmarks-off: unicode('f0bd'); +$ti-icon-books: unicode('eff2'); +$ti-icon-books-off: unicode('f0be'); +$ti-icon-border-all: unicode('ea3b'); +$ti-icon-border-bottom: unicode('ea3c'); +$ti-icon-border-horizontal: unicode('ea3d'); +$ti-icon-border-inner: unicode('ea3e'); +$ti-icon-border-left: unicode('ea3f'); +$ti-icon-border-none: unicode('ea40'); +$ti-icon-border-outer: unicode('ea41'); +$ti-icon-border-radius: unicode('eb7c'); +$ti-icon-border-right: unicode('ea42'); +$ti-icon-border-style: unicode('ee0a'); +$ti-icon-border-style-2: unicode('ef22'); +$ti-icon-border-top: unicode('ea43'); +$ti-icon-border-vertical: unicode('ea44'); +$ti-icon-bottle: unicode('ef0b'); +$ti-icon-bottle-off: unicode('f3c8'); +$ti-icon-bounce-left: unicode('f59d'); +$ti-icon-bounce-right: unicode('f59e'); +$ti-icon-bow: unicode('f096'); +$ti-icon-bowl: unicode('f4fa'); +$ti-icon-box: unicode('ea45'); +$ti-icon-box-align-bottom: unicode('f2a8'); +$ti-icon-box-align-bottom-left: unicode('f2ce'); +$ti-icon-box-align-bottom-right: unicode('f2cf'); +$ti-icon-box-align-left: unicode('f2a9'); +$ti-icon-box-align-right: unicode('f2aa'); +$ti-icon-box-align-top: unicode('f2ab'); +$ti-icon-box-align-top-left: unicode('f2d0'); +$ti-icon-box-align-top-right: unicode('f2d1'); +$ti-icon-box-margin: unicode('ee0b'); +$ti-icon-box-model: unicode('ee0c'); +$ti-icon-box-model-2: unicode('ef23'); +$ti-icon-box-model-2-off: unicode('f3c9'); +$ti-icon-box-model-off: unicode('f3ca'); +$ti-icon-box-multiple: unicode('ee17'); +$ti-icon-box-multiple-0: unicode('ee0d'); +$ti-icon-box-multiple-1: unicode('ee0e'); +$ti-icon-box-multiple-2: unicode('ee0f'); +$ti-icon-box-multiple-3: unicode('ee10'); +$ti-icon-box-multiple-4: unicode('ee11'); +$ti-icon-box-multiple-5: unicode('ee12'); +$ti-icon-box-multiple-6: unicode('ee13'); +$ti-icon-box-multiple-7: unicode('ee14'); +$ti-icon-box-multiple-8: unicode('ee15'); +$ti-icon-box-multiple-9: unicode('ee16'); +$ti-icon-box-off: unicode('f102'); +$ti-icon-box-padding: unicode('ee18'); +$ti-icon-box-seam: unicode('f561'); +$ti-icon-braces: unicode('ebcc'); +$ti-icon-braces-off: unicode('f0bf'); +$ti-icon-brackets: unicode('ebcd'); +$ti-icon-brackets-contain: unicode('f1e5'); +$ti-icon-brackets-contain-end: unicode('f1e3'); +$ti-icon-brackets-contain-start: unicode('f1e4'); +$ti-icon-brackets-off: unicode('f0c0'); +$ti-icon-braile: unicode('f545'); +$ti-icon-brain: unicode('f59f'); +$ti-icon-brand-4chan: unicode('f494'); +$ti-icon-brand-abstract: unicode('f495'); +$ti-icon-brand-adobe: unicode('f0dc'); +$ti-icon-brand-adonis-js: unicode('f496'); +$ti-icon-brand-airbnb: unicode('ed68'); +$ti-icon-brand-airtable: unicode('ef6a'); +$ti-icon-brand-algolia: unicode('f390'); +$ti-icon-brand-alpine-js: unicode('f324'); +$ti-icon-brand-amazon: unicode('f230'); +$ti-icon-brand-amd: unicode('f653'); +$ti-icon-brand-amigo: unicode('f5f9'); +$ti-icon-brand-amongus: unicode('f205'); +$ti-icon-brand-android: unicode('ec16'); +$ti-icon-brand-angular: unicode('ef6b'); +$ti-icon-brand-ao3: unicode('f5e8'); +$ti-icon-brand-appgallery: unicode('f231'); +$ti-icon-brand-apple: unicode('ec17'); +$ti-icon-brand-apple-arcade: unicode('ed69'); +$ti-icon-brand-apple-podcast: unicode('f1e6'); +$ti-icon-brand-appstore: unicode('ed24'); +$ti-icon-brand-asana: unicode('edc5'); +$ti-icon-brand-backbone: unicode('f325'); +$ti-icon-brand-badoo: unicode('f206'); +$ti-icon-brand-baidu: unicode('f5e9'); +$ti-icon-brand-bandcamp: unicode('f207'); +$ti-icon-brand-bandlab: unicode('f5fa'); +$ti-icon-brand-beats: unicode('f208'); +$ti-icon-brand-behance: unicode('ec6e'); +$ti-icon-brand-binance: unicode('f5a0'); +$ti-icon-brand-bing: unicode('edc6'); +$ti-icon-brand-bitbucket: unicode('edc7'); +$ti-icon-brand-blackbery: unicode('f568'); +$ti-icon-brand-blender: unicode('f326'); +$ti-icon-brand-blogger: unicode('f35a'); +$ti-icon-brand-booking: unicode('edc8'); +$ti-icon-brand-bootstrap: unicode('ef3e'); +$ti-icon-brand-bulma: unicode('f327'); +$ti-icon-brand-bumble: unicode('f5fb'); +$ti-icon-brand-bunpo: unicode('f4cf'); +$ti-icon-brand-c-sharp: unicode('f003'); +$ti-icon-brand-campaignmonitor: unicode('f328'); +$ti-icon-brand-carbon: unicode('f348'); +$ti-icon-brand-cashapp: unicode('f391'); +$ti-icon-brand-chrome: unicode('ec18'); +$ti-icon-brand-citymapper: unicode('f5fc'); +$ti-icon-brand-codecov: unicode('f329'); +$ti-icon-brand-codepen: unicode('ec6f'); +$ti-icon-brand-codesandbox: unicode('ed6a'); +$ti-icon-brand-cohost: unicode('f5d5'); +$ti-icon-brand-coinbase: unicode('f209'); +$ti-icon-brand-comedy-central: unicode('f217'); +$ti-icon-brand-coreos: unicode('f5fd'); +$ti-icon-brand-couchdb: unicode('f60f'); +$ti-icon-brand-couchsurfing: unicode('f392'); +$ti-icon-brand-cpp: unicode('f5fe'); +$ti-icon-brand-css3: unicode('ed6b'); +$ti-icon-brand-ctemplar: unicode('f4d0'); +$ti-icon-brand-cucumber: unicode('ef6c'); +$ti-icon-brand-cupra: unicode('f4d1'); +$ti-icon-brand-cypress: unicode('f333'); +$ti-icon-brand-d3: unicode('f24e'); +$ti-icon-brand-days-counter: unicode('f4d2'); +$ti-icon-brand-dcos: unicode('f32a'); +$ti-icon-brand-debian: unicode('ef57'); +$ti-icon-brand-deliveroo: unicode('f4d3'); +$ti-icon-brand-deno: unicode('f24f'); +$ti-icon-brand-denodo: unicode('f610'); +$ti-icon-brand-deviantart: unicode('ecfb'); +$ti-icon-brand-dingtalk: unicode('f5ea'); +$ti-icon-brand-discord: unicode('ece3'); +$ti-icon-brand-disney: unicode('f20a'); +$ti-icon-brand-disqus: unicode('edc9'); +$ti-icon-brand-django: unicode('f349'); +$ti-icon-brand-docker: unicode('edca'); +$ti-icon-brand-doctrine: unicode('ef6d'); +$ti-icon-brand-dolby-digital: unicode('f4d4'); +$ti-icon-brand-douban: unicode('f5ff'); +$ti-icon-brand-dribbble: unicode('ec19'); +$ti-icon-brand-drops: unicode('f4d5'); +$ti-icon-brand-drupal: unicode('f393'); +$ti-icon-brand-edge: unicode('ecfc'); +$ti-icon-brand-elastic: unicode('f611'); +$ti-icon-brand-ember: unicode('f497'); +$ti-icon-brand-envato: unicode('f394'); +$ti-icon-brand-etsy: unicode('f654'); +$ti-icon-brand-evernote: unicode('f600'); +$ti-icon-brand-facebook: unicode('ec1a'); +$ti-icon-brand-figma: unicode('ec93'); +$ti-icon-brand-finder: unicode('f218'); +$ti-icon-brand-firebase: unicode('ef6e'); +$ti-icon-brand-firefox: unicode('ecfd'); +$ti-icon-brand-flickr: unicode('ecfe'); +$ti-icon-brand-flightradar24: unicode('f4d6'); +$ti-icon-brand-flipboard: unicode('f20b'); +$ti-icon-brand-flutter: unicode('f395'); +$ti-icon-brand-fortnite: unicode('f260'); +$ti-icon-brand-foursquare: unicode('ecff'); +$ti-icon-brand-framer: unicode('ec1b'); +$ti-icon-brand-funimation: unicode('f655'); +$ti-icon-brand-gatsby: unicode('f396'); +$ti-icon-brand-git: unicode('ef6f'); +$ti-icon-brand-github: unicode('ec1c'); +$ti-icon-brand-github-copilot: unicode('f4a8'); +$ti-icon-brand-gitlab: unicode('ec1d'); +$ti-icon-brand-gmail: unicode('efa2'); +$ti-icon-brand-google: unicode('ec1f'); +$ti-icon-brand-google-analytics: unicode('edcb'); +$ti-icon-brand-google-big-query: unicode('f612'); +$ti-icon-brand-google-drive: unicode('ec1e'); +$ti-icon-brand-google-fit: unicode('f297'); +$ti-icon-brand-google-home: unicode('f601'); +$ti-icon-brand-google-one: unicode('f232'); +$ti-icon-brand-google-photos: unicode('f20c'); +$ti-icon-brand-google-play: unicode('ed25'); +$ti-icon-brand-google-podcasts: unicode('f656'); +$ti-icon-brand-grammarly: unicode('f32b'); +$ti-icon-brand-graphql: unicode('f32c'); +$ti-icon-brand-gravatar: unicode('edcc'); +$ti-icon-brand-grindr: unicode('f20d'); +$ti-icon-brand-guardian: unicode('f4fb'); +$ti-icon-brand-gumroad: unicode('f5d6'); +$ti-icon-brand-hbo: unicode('f657'); +$ti-icon-brand-headlessui: unicode('f32d'); +$ti-icon-brand-hipchat: unicode('edcd'); +$ti-icon-brand-html5: unicode('ed6c'); +$ti-icon-brand-inertia: unicode('f34a'); +$ti-icon-brand-instagram: unicode('ec20'); +$ti-icon-brand-intercom: unicode('f1cf'); +$ti-icon-brand-javascript: unicode('ef0c'); +$ti-icon-brand-kickstarter: unicode('edce'); +$ti-icon-brand-kotlin: unicode('ed6d'); +$ti-icon-brand-laravel: unicode('f34b'); +$ti-icon-brand-lastfm: unicode('f001'); +$ti-icon-brand-linkedin: unicode('ec8c'); +$ti-icon-brand-linktree: unicode('f1e7'); +$ti-icon-brand-linqpad: unicode('f562'); +$ti-icon-brand-loom: unicode('ef70'); +$ti-icon-brand-mailgun: unicode('f32e'); +$ti-icon-brand-mantine: unicode('f32f'); +$ti-icon-brand-mastercard: unicode('ef49'); +$ti-icon-brand-mastodon: unicode('f250'); +$ti-icon-brand-matrix: unicode('f5eb'); +$ti-icon-brand-mcdonalds: unicode('f251'); +$ti-icon-brand-medium: unicode('ec70'); +$ti-icon-brand-mercedes: unicode('f072'); +$ti-icon-brand-messenger: unicode('ec71'); +$ti-icon-brand-meta: unicode('efb0'); +$ti-icon-brand-miniprogram: unicode('f602'); +$ti-icon-brand-mixpanel: unicode('f397'); +$ti-icon-brand-monday: unicode('f219'); +$ti-icon-brand-mongodb: unicode('f613'); +$ti-icon-brand-my-oppo: unicode('f4d7'); +$ti-icon-brand-mysql: unicode('f614'); +$ti-icon-brand-national-geographic: unicode('f603'); +$ti-icon-brand-nem: unicode('f5a1'); +$ti-icon-brand-netbeans: unicode('ef71'); +$ti-icon-brand-netease-music: unicode('f604'); +$ti-icon-brand-netflix: unicode('edcf'); +$ti-icon-brand-nexo: unicode('f5a2'); +$ti-icon-brand-nextcloud: unicode('f4d8'); +$ti-icon-brand-nextjs: unicode('f0dd'); +$ti-icon-brand-nord-vpn: unicode('f37f'); +$ti-icon-brand-notion: unicode('ef7b'); +$ti-icon-brand-npm: unicode('f569'); +$ti-icon-brand-nuxt: unicode('f0de'); +$ti-icon-brand-nytimes: unicode('ef8d'); +$ti-icon-brand-office: unicode('f398'); +$ti-icon-brand-ok-ru: unicode('f399'); +$ti-icon-brand-onedrive: unicode('f5d7'); +$ti-icon-brand-onlyfans: unicode('f605'); +$ti-icon-brand-open-source: unicode('edd0'); +$ti-icon-brand-openvpn: unicode('f39a'); +$ti-icon-brand-opera: unicode('ec21'); +$ti-icon-brand-pagekit: unicode('edd1'); +$ti-icon-brand-patreon: unicode('edd2'); +$ti-icon-brand-paypal: unicode('ec22'); +$ti-icon-brand-paypay: unicode('f5ec'); +$ti-icon-brand-peanut: unicode('f39b'); +$ti-icon-brand-pepsi: unicode('f261'); +$ti-icon-brand-php: unicode('ef72'); +$ti-icon-brand-picsart: unicode('f4d9'); +$ti-icon-brand-pinterest: unicode('ec8d'); +$ti-icon-brand-pocket: unicode('ed00'); +$ti-icon-brand-polymer: unicode('f498'); +$ti-icon-brand-powershell: unicode('f5ed'); +$ti-icon-brand-prisma: unicode('f499'); +$ti-icon-brand-producthunt: unicode('edd3'); +$ti-icon-brand-pushbullet: unicode('f330'); +$ti-icon-brand-pushover: unicode('f20e'); +$ti-icon-brand-python: unicode('ed01'); +$ti-icon-brand-qq: unicode('f606'); +$ti-icon-brand-react: unicode('f34c'); +$ti-icon-brand-react-native: unicode('ef73'); +$ti-icon-brand-reason: unicode('f49a'); +$ti-icon-brand-reddit: unicode('ec8e'); +$ti-icon-brand-redhat: unicode('f331'); +$ti-icon-brand-redux: unicode('f3a8'); +$ti-icon-brand-revolut: unicode('f4da'); +$ti-icon-brand-safari: unicode('ec23'); +$ti-icon-brand-samsungpass: unicode('f4db'); +$ti-icon-brand-sass: unicode('edd4'); +$ti-icon-brand-sentry: unicode('edd5'); +$ti-icon-brand-sharik: unicode('f4dc'); +$ti-icon-brand-shazam: unicode('edd6'); +$ti-icon-brand-shopee: unicode('f252'); +$ti-icon-brand-sketch: unicode('ec24'); +$ti-icon-brand-skype: unicode('ed02'); +$ti-icon-brand-slack: unicode('ec72'); +$ti-icon-brand-snapchat: unicode('ec25'); +$ti-icon-brand-snapseed: unicode('f253'); +$ti-icon-brand-snowflake: unicode('f615'); +$ti-icon-brand-socket-io: unicode('f49b'); +$ti-icon-brand-solidjs: unicode('f5ee'); +$ti-icon-brand-soundcloud: unicode('ed6e'); +$ti-icon-brand-spacehey: unicode('f4fc'); +$ti-icon-brand-spotify: unicode('ed03'); +$ti-icon-brand-stackoverflow: unicode('ef58'); +$ti-icon-brand-stackshare: unicode('f607'); +$ti-icon-brand-steam: unicode('ed6f'); +$ti-icon-brand-storybook: unicode('f332'); +$ti-icon-brand-storytel: unicode('f608'); +$ti-icon-brand-strava: unicode('f254'); +$ti-icon-brand-stripe: unicode('edd7'); +$ti-icon-brand-sublime-text: unicode('ef74'); +$ti-icon-brand-superhuman: unicode('f50c'); +$ti-icon-brand-supernova: unicode('f49c'); +$ti-icon-brand-surfshark: unicode('f255'); +$ti-icon-brand-svelte: unicode('f0df'); +$ti-icon-brand-symfony: unicode('f616'); +$ti-icon-brand-tabler: unicode('ec8f'); +$ti-icon-brand-tailwind: unicode('eca1'); +$ti-icon-brand-taobao: unicode('f5ef'); +$ti-icon-brand-ted: unicode('f658'); +$ti-icon-brand-telegram: unicode('ec26'); +$ti-icon-brand-tether: unicode('f5a3'); +$ti-icon-brand-threejs: unicode('f5f0'); +$ti-icon-brand-tidal: unicode('ed70'); +$ti-icon-brand-tiktok: unicode('ec73'); +$ti-icon-brand-tinder: unicode('ed71'); +$ti-icon-brand-topbuzz: unicode('f50d'); +$ti-icon-brand-torchain: unicode('f5a4'); +$ti-icon-brand-toyota: unicode('f262'); +$ti-icon-brand-trello: unicode('f39d'); +$ti-icon-brand-tripadvisor: unicode('f002'); +$ti-icon-brand-tumblr: unicode('ed04'); +$ti-icon-brand-twilio: unicode('f617'); +$ti-icon-brand-twitch: unicode('ed05'); +$ti-icon-brand-twitter: unicode('ec27'); +$ti-icon-brand-typescript: unicode('f5f1'); +$ti-icon-brand-uber: unicode('ef75'); +$ti-icon-brand-ubuntu: unicode('ef59'); +$ti-icon-brand-unity: unicode('f49d'); +$ti-icon-brand-unsplash: unicode('edd8'); +$ti-icon-brand-upwork: unicode('f39e'); +$ti-icon-brand-valorant: unicode('f39f'); +$ti-icon-brand-vercel: unicode('ef24'); +$ti-icon-brand-vimeo: unicode('ed06'); +$ti-icon-brand-vinted: unicode('f20f'); +$ti-icon-brand-visa: unicode('f380'); +$ti-icon-brand-visual-studio: unicode('ef76'); +$ti-icon-brand-vite: unicode('f5f2'); +$ti-icon-brand-vivaldi: unicode('f210'); +$ti-icon-brand-vk: unicode('ed72'); +$ti-icon-brand-volkswagen: unicode('f50e'); +$ti-icon-brand-vsco: unicode('f334'); +$ti-icon-brand-vscode: unicode('f3a0'); +$ti-icon-brand-vue: unicode('f0e0'); +$ti-icon-brand-walmart: unicode('f211'); +$ti-icon-brand-waze: unicode('f5d8'); +$ti-icon-brand-webflow: unicode('f2d2'); +$ti-icon-brand-wechat: unicode('f5f3'); +$ti-icon-brand-weibo: unicode('f609'); +$ti-icon-brand-whatsapp: unicode('ec74'); +$ti-icon-brand-windows: unicode('ecd8'); +$ti-icon-brand-windy: unicode('f4dd'); +$ti-icon-brand-wish: unicode('f212'); +$ti-icon-brand-wix: unicode('f3a1'); +$ti-icon-brand-wordpress: unicode('f2d3'); +$ti-icon-brand-xbox: unicode('f298'); +$ti-icon-brand-xing: unicode('f21a'); +$ti-icon-brand-yahoo: unicode('ed73'); +$ti-icon-brand-yatse: unicode('f213'); +$ti-icon-brand-ycombinator: unicode('edd9'); +$ti-icon-brand-youtube: unicode('ec90'); +$ti-icon-brand-youtube-kids: unicode('f214'); +$ti-icon-brand-zalando: unicode('f49e'); +$ti-icon-brand-zapier: unicode('f49f'); +$ti-icon-brand-zeit: unicode('f335'); +$ti-icon-brand-zhihu: unicode('f60a'); +$ti-icon-brand-zoom: unicode('f215'); +$ti-icon-brand-zulip: unicode('f4de'); +$ti-icon-brand-zwift: unicode('f216'); +$ti-icon-bread: unicode('efa3'); +$ti-icon-bread-off: unicode('f3cb'); +$ti-icon-briefcase: unicode('ea46'); +$ti-icon-briefcase-off: unicode('f3cc'); +$ti-icon-brightness: unicode('eb7f'); +$ti-icon-brightness-2: unicode('ee19'); +$ti-icon-brightness-down: unicode('eb7d'); +$ti-icon-brightness-half: unicode('ee1a'); +$ti-icon-brightness-off: unicode('f3cd'); +$ti-icon-brightness-up: unicode('eb7e'); +$ti-icon-broadcast: unicode('f1e9'); +$ti-icon-broadcast-off: unicode('f1e8'); +$ti-icon-browser: unicode('ebb7'); +$ti-icon-browser-check: unicode('efd6'); +$ti-icon-browser-off: unicode('f0c1'); +$ti-icon-browser-plus: unicode('efd7'); +$ti-icon-browser-x: unicode('efd8'); +$ti-icon-brush: unicode('ebb8'); +$ti-icon-brush-off: unicode('f0c2'); +$ti-icon-bucket: unicode('ea47'); +$ti-icon-bucket-droplet: unicode('f56a'); +$ti-icon-bucket-off: unicode('f103'); +$ti-icon-bug: unicode('ea48'); +$ti-icon-bug-off: unicode('f0c3'); +$ti-icon-building: unicode('ea4f'); +$ti-icon-building-arch: unicode('ea49'); +$ti-icon-building-bank: unicode('ebe2'); +$ti-icon-building-bridge: unicode('ea4b'); +$ti-icon-building-bridge-2: unicode('ea4a'); +$ti-icon-building-broadcast-tower: unicode('f4be'); +$ti-icon-building-carousel: unicode('ed87'); +$ti-icon-building-castle: unicode('ed88'); +$ti-icon-building-church: unicode('ea4c'); +$ti-icon-building-circus: unicode('f4bf'); +$ti-icon-building-community: unicode('ebf6'); +$ti-icon-building-cottage: unicode('ee1b'); +$ti-icon-building-estate: unicode('f5a5'); +$ti-icon-building-factory: unicode('ee1c'); +$ti-icon-building-factory-2: unicode('f082'); +$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-pavilion: unicode('ebf7'); +$ti-icon-building-skyscraper: unicode('ec39'); +$ti-icon-building-stadium: unicode('f641'); +$ti-icon-building-store: unicode('ea4e'); +$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'); +$ti-icon-bus-off: unicode('f3ce'); +$ti-icon-bus-stop: unicode('f2d4'); +$ti-icon-businessplan: unicode('ee1e'); +$ti-icon-butterfly: unicode('efd9'); +$ti-icon-cactus: unicode('f21b'); +$ti-icon-cactus-off: unicode('f3cf'); +$ti-icon-cake: unicode('f00f'); +$ti-icon-cake-off: unicode('f104'); +$ti-icon-calculator: unicode('eb80'); +$ti-icon-calculator-off: unicode('f0c4'); +$ti-icon-calendar: unicode('ea53'); +$ti-icon-calendar-due: unicode('f621'); +$ti-icon-calendar-event: unicode('ea52'); +$ti-icon-calendar-minus: unicode('ebb9'); +$ti-icon-calendar-off: unicode('ee1f'); +$ti-icon-calendar-plus: unicode('ebba'); +$ti-icon-calendar-stats: unicode('ee20'); +$ti-icon-calendar-time: unicode('ee21'); +$ti-icon-camera: unicode('ea54'); +$ti-icon-camera-minus: unicode('ec3a'); +$ti-icon-camera-off: unicode('ecee'); +$ti-icon-camera-plus: unicode('ec3b'); +$ti-icon-camera-rotate: unicode('ee22'); +$ti-icon-camera-selfie: unicode('ee23'); +$ti-icon-campfire: unicode('f5a7'); +$ti-icon-candle: unicode('efc6'); +$ti-icon-candy: unicode('ef0d'); +$ti-icon-candy-off: unicode('f0c5'); +$ti-icon-cane: unicode('f50f'); +$ti-icon-cannabis: unicode('f4c1'); +$ti-icon-capture: unicode('ec3c'); +$ti-icon-capture-off: unicode('f0c6'); +$ti-icon-car: unicode('ebbb'); +$ti-icon-car-crane: unicode('ef25'); +$ti-icon-car-crash: unicode('efa4'); +$ti-icon-car-off: unicode('f0c7'); +$ti-icon-car-turbine: unicode('f4fd'); +$ti-icon-caravan: unicode('ec7c'); +$ti-icon-cardboards: unicode('ed74'); +$ti-icon-cardboards-off: unicode('f0c8'); +$ti-icon-cards: unicode('f510'); +$ti-icon-caret-down: unicode('eb5d'); +$ti-icon-caret-left: unicode('eb5e'); +$ti-icon-caret-right: unicode('eb5f'); +$ti-icon-caret-up: unicode('eb60'); +$ti-icon-carousel-horizontal: unicode('f659'); +$ti-icon-carousel-vertical: unicode('f65a'); +$ti-icon-carrot: unicode('f21c'); +$ti-icon-carrot-off: unicode('f3d0'); +$ti-icon-cash: unicode('ea55'); +$ti-icon-cash-banknote: unicode('ee25'); +$ti-icon-cash-banknote-off: unicode('ee24'); +$ti-icon-cash-off: unicode('f105'); +$ti-icon-cast: unicode('ea56'); +$ti-icon-cast-off: unicode('f0c9'); +$ti-icon-cat: unicode('f65b'); +$ti-icon-category: unicode('f1f6'); +$ti-icon-category-2: unicode('f1f5'); +$ti-icon-ce: unicode('ed75'); +$ti-icon-ce-off: unicode('f0ca'); +$ti-icon-cell: unicode('f05f'); +$ti-icon-cell-signal-1: unicode('f083'); +$ti-icon-cell-signal-2: unicode('f084'); +$ti-icon-cell-signal-3: unicode('f085'); +$ti-icon-cell-signal-4: unicode('f086'); +$ti-icon-cell-signal-5: unicode('f087'); +$ti-icon-cell-signal-off: unicode('f088'); +$ti-icon-certificate: unicode('ed76'); +$ti-icon-certificate-2: unicode('f073'); +$ti-icon-certificate-2-off: unicode('f0cb'); +$ti-icon-certificate-off: unicode('f0cc'); +$ti-icon-chair-director: unicode('f2d5'); +$ti-icon-chalkboard: unicode('f34d'); +$ti-icon-chalkboard-off: unicode('f3d1'); +$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'); +$ti-icon-chart-grid-dots: unicode('f4c2'); +$ti-icon-chart-histogram: unicode('f65c'); +$ti-icon-chart-infographic: unicode('ee30'); +$ti-icon-chart-line: unicode('ea5c'); +$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'); +$ti-icon-chart-sankey: unicode('f619'); +$ti-icon-chart-treemap: unicode('f381'); +$ti-icon-check: unicode('ea5e'); +$ti-icon-checkbox: unicode('eba6'); +$ti-icon-checklist: unicode('f074'); +$ti-icon-checks: unicode('ebaa'); +$ti-icon-checkup-list: unicode('ef5a'); +$ti-icon-cheese: unicode('ef26'); +$ti-icon-chef-hat: unicode('f21d'); +$ti-icon-chef-hat-off: unicode('f3d4'); +$ti-icon-cherry: unicode('f511'); +$ti-icon-chess: unicode('f382'); +$ti-icon-chess-bishop: unicode('f56b'); +$ti-icon-chess-king: unicode('f56c'); +$ti-icon-chess-knight: unicode('f56d'); +$ti-icon-chess-queen: unicode('f56e'); +$ti-icon-chess-rook: unicode('f56f'); +$ti-icon-chevron-down: unicode('ea5f'); +$ti-icon-chevron-down-left: unicode('ed09'); +$ti-icon-chevron-down-right: unicode('ed0a'); +$ti-icon-chevron-left: unicode('ea60'); +$ti-icon-chevron-right: unicode('ea61'); +$ti-icon-chevron-up: unicode('ea62'); +$ti-icon-chevron-up-left: unicode('ed0b'); +$ti-icon-chevron-up-right: unicode('ed0c'); +$ti-icon-chevrons-down: unicode('ea63'); +$ti-icon-chevrons-down-left: unicode('ed0d'); +$ti-icon-chevrons-down-right: unicode('ed0e'); +$ti-icon-chevrons-left: unicode('ea64'); +$ti-icon-chevrons-right: unicode('ea65'); +$ti-icon-chevrons-up: unicode('ea66'); +$ti-icon-chevrons-up-left: unicode('ed0f'); +$ti-icon-chevrons-up-right: unicode('ed10'); +$ti-icon-chisel: unicode('f383'); +$ti-icon-christmas-tree: unicode('ed78'); +$ti-icon-christmas-tree-off: unicode('f3d5'); +$ti-icon-circle: unicode('ea6b'); +$ti-icon-circle-caret-down: unicode('f4a9'); +$ti-icon-circle-caret-left: unicode('f4aa'); +$ti-icon-circle-caret-right: unicode('f4ab'); +$ti-icon-circle-caret-up: unicode('f4ac'); +$ti-icon-circle-check: unicode('ea67'); +$ti-icon-circle-chevron-down: unicode('f622'); +$ti-icon-circle-chevron-left: unicode('f623'); +$ti-icon-circle-chevron-right: unicode('f624'); +$ti-icon-circle-chevron-up: unicode('f625'); +$ti-icon-circle-chevrons-down: unicode('f642'); +$ti-icon-circle-chevrons-left: unicode('f643'); +$ti-icon-circle-chevrons-right: unicode('f644'); +$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'); +$ti-icon-circle-key: unicode('f633'); +$ti-icon-circle-letter-a: unicode('f441'); +$ti-icon-circle-letter-b: unicode('f442'); +$ti-icon-circle-letter-c: unicode('f443'); +$ti-icon-circle-letter-d: unicode('f444'); +$ti-icon-circle-letter-e: unicode('f445'); +$ti-icon-circle-letter-f: unicode('f446'); +$ti-icon-circle-letter-g: unicode('f447'); +$ti-icon-circle-letter-h: unicode('f448'); +$ti-icon-circle-letter-i: unicode('f449'); +$ti-icon-circle-letter-j: unicode('f44a'); +$ti-icon-circle-letter-k: unicode('f44b'); +$ti-icon-circle-letter-l: unicode('f44c'); +$ti-icon-circle-letter-m: unicode('f44d'); +$ti-icon-circle-letter-n: unicode('f44e'); +$ti-icon-circle-letter-o: unicode('f44f'); +$ti-icon-circle-letter-p: unicode('f450'); +$ti-icon-circle-letter-q: unicode('f451'); +$ti-icon-circle-letter-r: unicode('f452'); +$ti-icon-circle-letter-s: unicode('f453'); +$ti-icon-circle-letter-t: unicode('f454'); +$ti-icon-circle-letter-u: unicode('f455'); +$ti-icon-circle-letter-v: unicode('f4ad'); +$ti-icon-circle-letter-w: unicode('f456'); +$ti-icon-circle-letter-x: unicode('f4ae'); +$ti-icon-circle-letter-y: unicode('f457'); +$ti-icon-circle-letter-z: unicode('f458'); +$ti-icon-circle-minus: unicode('ea68'); +$ti-icon-circle-number-0: unicode('ee34'); +$ti-icon-circle-number-1: unicode('ee35'); +$ti-icon-circle-number-2: unicode('ee36'); +$ti-icon-circle-number-3: unicode('ee37'); +$ti-icon-circle-number-4: unicode('ee38'); +$ti-icon-circle-number-5: unicode('ee39'); +$ti-icon-circle-number-6: unicode('ee3a'); +$ti-icon-circle-number-7: unicode('ee3b'); +$ti-icon-circle-number-8: unicode('ee3c'); +$ti-icon-circle-number-9: unicode('ee3d'); +$ti-icon-circle-off: unicode('ee40'); +$ti-icon-circle-plus: unicode('ea69'); +$ti-icon-circle-rectangle: unicode('f010'); +$ti-icon-circle-rectangle-off: unicode('f0cd'); +$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'); +$ti-icon-circuit-bulb: unicode('f273'); +$ti-icon-circuit-capacitor: unicode('f275'); +$ti-icon-circuit-capacitor-polarized: unicode('f274'); +$ti-icon-circuit-cell: unicode('f277'); +$ti-icon-circuit-cell-plus: unicode('f276'); +$ti-icon-circuit-changeover: unicode('f278'); +$ti-icon-circuit-diode: unicode('f27a'); +$ti-icon-circuit-diode-zener: unicode('f279'); +$ti-icon-circuit-ground: unicode('f27c'); +$ti-icon-circuit-ground-digital: unicode('f27b'); +$ti-icon-circuit-inductor: unicode('f27d'); +$ti-icon-circuit-motor: unicode('f27e'); +$ti-icon-circuit-pushbutton: unicode('f27f'); +$ti-icon-circuit-resistor: unicode('f280'); +$ti-icon-circuit-switch-closed: unicode('f281'); +$ti-icon-circuit-switch-open: unicode('f282'); +$ti-icon-circuit-voltmeter: unicode('f283'); +$ti-icon-clear-all: unicode('ee41'); +$ti-icon-clear-formatting: unicode('ebe5'); +$ti-icon-click: unicode('ebbc'); +$ti-icon-clipboard: unicode('ea6f'); +$ti-icon-clipboard-check: unicode('ea6c'); +$ti-icon-clipboard-copy: unicode('f299'); +$ti-icon-clipboard-data: unicode('f563'); +$ti-icon-clipboard-heart: unicode('f34e'); +$ti-icon-clipboard-list: unicode('ea6d'); +$ti-icon-clipboard-off: unicode('f0ce'); +$ti-icon-clipboard-plus: unicode('efb2'); +$ti-icon-clipboard-text: unicode('f089'); +$ti-icon-clipboard-typography: unicode('f34f'); +$ti-icon-clipboard-x: unicode('ea6e'); +$ti-icon-clock: unicode('ea70'); +$ti-icon-clock-2: unicode('f099'); +$ti-icon-clock-cancel: unicode('f546'); +$ti-icon-clock-edit: unicode('f547'); +$ti-icon-clock-hour-1: unicode('f313'); +$ti-icon-clock-hour-10: unicode('f314'); +$ti-icon-clock-hour-11: unicode('f315'); +$ti-icon-clock-hour-12: unicode('f316'); +$ti-icon-clock-hour-2: unicode('f317'); +$ti-icon-clock-hour-3: unicode('f318'); +$ti-icon-clock-hour-4: unicode('f319'); +$ti-icon-clock-hour-5: unicode('f31a'); +$ti-icon-clock-hour-6: unicode('f31b'); +$ti-icon-clock-hour-7: unicode('f31c'); +$ti-icon-clock-hour-8: unicode('f31d'); +$ti-icon-clock-hour-9: unicode('f31e'); +$ti-icon-clock-off: unicode('f0cf'); +$ti-icon-clock-pause: unicode('f548'); +$ti-icon-clock-play: unicode('f549'); +$ti-icon-clock-record: unicode('f54a'); +$ti-icon-clock-stop: unicode('f54b'); +$ti-icon-clothes-rack: unicode('f285'); +$ti-icon-clothes-rack-off: unicode('f3d6'); +$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'); +$ti-icon-cloud-off: unicode('ed3e'); +$ti-icon-cloud-rain: unicode('ea72'); +$ti-icon-cloud-snow: unicode('ea73'); +$ti-icon-cloud-storm: unicode('ea74'); +$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'); +$ti-icon-code-circle-2: unicode('f4fe'); +$ti-icon-code-dots: unicode('f61a'); +$ti-icon-code-minus: unicode('ee42'); +$ti-icon-code-off: unicode('f0d0'); +$ti-icon-code-plus: unicode('ee43'); +$ti-icon-coffee: unicode('ef0e'); +$ti-icon-coffee-off: unicode('f106'); +$ti-icon-coffin: unicode('f579'); +$ti-icon-coin: unicode('eb82'); +$ti-icon-coin-bitcoin: unicode('f2be'); +$ti-icon-coin-euro: unicode('f2bf'); +$ti-icon-coin-monero: unicode('f4a0'); +$ti-icon-coin-off: unicode('f0d1'); +$ti-icon-coin-pound: unicode('f2c0'); +$ti-icon-coin-rupee: unicode('f2c1'); +$ti-icon-coin-yen: unicode('f2c2'); +$ti-icon-coin-yuan: unicode('f2c3'); +$ti-icon-coins: unicode('f65d'); +$ti-icon-color-filter: unicode('f5a8'); +$ti-icon-color-picker: unicode('ebe6'); +$ti-icon-color-picker-off: unicode('f0d2'); +$ti-icon-color-swatch: unicode('eb61'); +$ti-icon-color-swatch-off: unicode('f0d3'); +$ti-icon-column-insert-left: unicode('ee44'); +$ti-icon-column-insert-right: unicode('ee45'); +$ti-icon-columns: unicode('eb83'); +$ti-icon-columns-off: unicode('f0d4'); +$ti-icon-comet: unicode('ec76'); +$ti-icon-command: unicode('ea78'); +$ti-icon-command-off: unicode('f3d7'); +$ti-icon-compass: unicode('ea79'); +$ti-icon-compass-off: unicode('f0d5'); +$ti-icon-components: unicode('efa5'); +$ti-icon-components-off: unicode('f0d6'); +$ti-icon-cone: unicode('efdd'); +$ti-icon-cone-2: unicode('efdc'); +$ti-icon-cone-off: unicode('f3d8'); +$ti-icon-confetti: unicode('ee46'); +$ti-icon-confetti-off: unicode('f3d9'); +$ti-icon-confucius: unicode('f58a'); +$ti-icon-container: unicode('ee47'); +$ti-icon-container-off: unicode('f107'); +$ti-icon-contrast: unicode('ec4e'); +$ti-icon-contrast-2: unicode('efc7'); +$ti-icon-contrast-2-off: unicode('f3da'); +$ti-icon-contrast-off: unicode('f3db'); +$ti-icon-cooker: unicode('f57a'); +$ti-icon-cookie: unicode('ef0f'); +$ti-icon-cookie-man: unicode('f4c4'); +$ti-icon-cookie-off: unicode('f0d7'); +$ti-icon-copy: unicode('ea7a'); +$ti-icon-copy-off: unicode('f0d8'); +$ti-icon-copyleft: unicode('ec3d'); +$ti-icon-copyleft-off: unicode('f0d9'); +$ti-icon-copyright: unicode('ea7b'); +$ti-icon-copyright-off: unicode('f0da'); +$ti-icon-corner-down-left: unicode('ea7c'); +$ti-icon-corner-down-left-double: unicode('ee48'); +$ti-icon-corner-down-right: unicode('ea7d'); +$ti-icon-corner-down-right-double: unicode('ee49'); +$ti-icon-corner-left-down: unicode('ea7e'); +$ti-icon-corner-left-down-double: unicode('ee4a'); +$ti-icon-corner-left-up: unicode('ea7f'); +$ti-icon-corner-left-up-double: unicode('ee4b'); +$ti-icon-corner-right-down: unicode('ea80'); +$ti-icon-corner-right-down-double: unicode('ee4c'); +$ti-icon-corner-right-up: unicode('ea81'); +$ti-icon-corner-right-up-double: unicode('ee4d'); +$ti-icon-corner-up-left: unicode('ea82'); +$ti-icon-corner-up-left-double: unicode('ee4e'); +$ti-icon-corner-up-right: unicode('ea83'); +$ti-icon-corner-up-right-double: unicode('ee4f'); +$ti-icon-cpu: unicode('ef8e'); +$ti-icon-cpu-2: unicode('f075'); +$ti-icon-cpu-off: unicode('f108'); +$ti-icon-crane: unicode('ef27'); +$ti-icon-crane-off: unicode('f109'); +$ti-icon-creative-commons: unicode('efb3'); +$ti-icon-creative-commons-by: unicode('f21f'); +$ti-icon-creative-commons-nc: unicode('f220'); +$ti-icon-creative-commons-nd: unicode('f221'); +$ti-icon-creative-commons-off: unicode('f10a'); +$ti-icon-creative-commons-sa: unicode('f222'); +$ti-icon-creative-commons-zero: unicode('f223'); +$ti-icon-credit-card: unicode('ea84'); +$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'); +$ti-icon-crown-off: unicode('ee50'); +$ti-icon-crutches: unicode('ef5b'); +$ti-icon-crutches-off: unicode('f10c'); +$ti-icon-crystal-ball: unicode('f57b'); +$ti-icon-cube-send: unicode('f61b'); +$ti-icon-cube-unfolded: unicode('f61c'); +$ti-icon-cup: unicode('ef28'); +$ti-icon-cup-off: unicode('f10d'); +$ti-icon-curling: unicode('efc8'); +$ti-icon-curly-loop: unicode('ecda'); +$ti-icon-currency: unicode('efa6'); +$ti-icon-currency-afghani: unicode('f65e'); +$ti-icon-currency-bahraini: unicode('ee51'); +$ti-icon-currency-baht: unicode('f08a'); +$ti-icon-currency-bitcoin: unicode('ebab'); +$ti-icon-currency-cent: unicode('ee53'); +$ti-icon-currency-dinar: unicode('ee54'); +$ti-icon-currency-dirham: unicode('ee55'); +$ti-icon-currency-dogecoin: unicode('ef4b'); +$ti-icon-currency-dollar: unicode('eb84'); +$ti-icon-currency-dollar-australian: unicode('ee56'); +$ti-icon-currency-dollar-brunei: unicode('f36c'); +$ti-icon-currency-dollar-canadian: unicode('ee57'); +$ti-icon-currency-dollar-guyanese: unicode('f36d'); +$ti-icon-currency-dollar-off: unicode('f3dc'); +$ti-icon-currency-dollar-singapore: unicode('ee58'); +$ti-icon-currency-dollar-zimbabwean: unicode('f36e'); +$ti-icon-currency-dong: unicode('f36f'); +$ti-icon-currency-dram: unicode('f370'); +$ti-icon-currency-ethereum: unicode('ee59'); +$ti-icon-currency-euro: unicode('eb85'); +$ti-icon-currency-euro-off: unicode('f3dd'); +$ti-icon-currency-forint: unicode('ee5a'); +$ti-icon-currency-frank: unicode('ee5b'); +$ti-icon-currency-guarani: unicode('f371'); +$ti-icon-currency-hryvnia: unicode('f372'); +$ti-icon-currency-kip: unicode('f373'); +$ti-icon-currency-krone-czech: unicode('ee5c'); +$ti-icon-currency-krone-danish: unicode('ee5d'); +$ti-icon-currency-krone-swedish: unicode('ee5e'); +$ti-icon-currency-lari: unicode('f374'); +$ti-icon-currency-leu: unicode('ee5f'); +$ti-icon-currency-lira: unicode('ee60'); +$ti-icon-currency-litecoin: unicode('ee61'); +$ti-icon-currency-lyd: unicode('f375'); +$ti-icon-currency-manat: unicode('f376'); +$ti-icon-currency-monero: unicode('f377'); +$ti-icon-currency-naira: unicode('ee62'); +$ti-icon-currency-off: unicode('f3de'); +$ti-icon-currency-paanga: unicode('f378'); +$ti-icon-currency-peso: unicode('f65f'); +$ti-icon-currency-pound: unicode('ebac'); +$ti-icon-currency-pound-off: unicode('f3df'); +$ti-icon-currency-quetzal: unicode('f379'); +$ti-icon-currency-real: unicode('ee63'); +$ti-icon-currency-renminbi: unicode('ee64'); +$ti-icon-currency-ripple: unicode('ee65'); +$ti-icon-currency-riyal: unicode('ee66'); +$ti-icon-currency-rubel: unicode('ee67'); +$ti-icon-currency-rufiyaa: unicode('f37a'); +$ti-icon-currency-rupee: unicode('ebad'); +$ti-icon-currency-rupee-nepalese: unicode('f37b'); +$ti-icon-currency-shekel: unicode('ee68'); +$ti-icon-currency-solana: unicode('f4a1'); +$ti-icon-currency-som: unicode('f37c'); +$ti-icon-currency-taka: unicode('ee69'); +$ti-icon-currency-tenge: unicode('f37d'); +$ti-icon-currency-tugrik: unicode('ee6a'); +$ti-icon-currency-won: unicode('ee6b'); +$ti-icon-currency-yen: unicode('ebae'); +$ti-icon-currency-yen-off: unicode('f3e0'); +$ti-icon-currency-yuan: unicode('f29a'); +$ti-icon-currency-zloty: unicode('ee6c'); +$ti-icon-current-location: unicode('ecef'); +$ti-icon-current-location-off: unicode('f10e'); +$ti-icon-cursor-off: unicode('f10f'); +$ti-icon-cursor-text: unicode('ee6d'); +$ti-icon-cut: unicode('ea86'); +$ti-icon-cylinder: unicode('f54c'); +$ti-icon-dashboard: unicode('ea87'); +$ti-icon-dashboard-off: unicode('f3e1'); +$ti-icon-database: unicode('ea88'); +$ti-icon-database-export: unicode('ee6e'); +$ti-icon-database-import: unicode('ee6f'); +$ti-icon-database-off: unicode('ee70'); +$ti-icon-deer: unicode('f4c5'); +$ti-icon-delta: unicode('f53c'); +$ti-icon-dental: unicode('f025'); +$ti-icon-dental-broken: unicode('f286'); +$ti-icon-dental-off: unicode('f110'); +$ti-icon-details: unicode('ee71'); +$ti-icon-details-off: unicode('f3e2'); +$ti-icon-device-airpods: unicode('f5a9'); +$ti-icon-device-airpods-case: unicode('f646'); +$ti-icon-device-analytics: unicode('ee72'); +$ti-icon-device-audio-tape: unicode('ee73'); +$ti-icon-device-camera-phone: unicode('f233'); +$ti-icon-device-cctv: unicode('ee74'); +$ti-icon-device-cctv-off: unicode('f3e3'); +$ti-icon-device-computer-camera: unicode('ee76'); +$ti-icon-device-computer-camera-off: unicode('ee75'); +$ti-icon-device-desktop: unicode('ea89'); +$ti-icon-device-desktop-analytics: unicode('ee77'); +$ti-icon-device-desktop-off: unicode('ee78'); +$ti-icon-device-floppy: unicode('eb62'); +$ti-icon-device-gamepad: unicode('eb63'); +$ti-icon-device-gamepad-2: unicode('f1d2'); +$ti-icon-device-heart-monitor: unicode('f060'); +$ti-icon-device-ipad: unicode('f648'); +$ti-icon-device-ipad-horizontal: unicode('f647'); +$ti-icon-device-landline-phone: unicode('f649'); +$ti-icon-device-laptop: unicode('eb64'); +$ti-icon-device-laptop-off: unicode('f061'); +$ti-icon-device-mobile: unicode('ea8a'); +$ti-icon-device-mobile-charging: unicode('f224'); +$ti-icon-device-mobile-message: unicode('ee79'); +$ti-icon-device-mobile-off: unicode('f062'); +$ti-icon-device-mobile-rotated: unicode('ecdb'); +$ti-icon-device-mobile-vibration: unicode('eb86'); +$ti-icon-device-nintendo: unicode('f026'); +$ti-icon-device-nintendo-off: unicode('f111'); +$ti-icon-device-sd-card: unicode('f384'); +$ti-icon-device-sim: unicode('f4b2'); +$ti-icon-device-sim-1: unicode('f4af'); +$ti-icon-device-sim-2: unicode('f4b0'); +$ti-icon-device-sim-3: unicode('f4b1'); +$ti-icon-device-speaker: unicode('ea8b'); +$ti-icon-device-speaker-off: unicode('f112'); +$ti-icon-device-tablet: unicode('ea8c'); +$ti-icon-device-tablet-off: unicode('f063'); +$ti-icon-device-tv: unicode('ea8d'); +$ti-icon-device-tv-off: unicode('f064'); +$ti-icon-device-tv-old: unicode('f1d3'); +$ti-icon-device-watch: unicode('ebf9'); +$ti-icon-device-watch-off: unicode('f065'); +$ti-icon-device-watch-stats: unicode('ef7d'); +$ti-icon-device-watch-stats-2: unicode('ef7c'); +$ti-icon-devices: unicode('eb87'); +$ti-icon-devices-2: unicode('ed29'); +$ti-icon-devices-off: unicode('f3e4'); +$ti-icon-devices-pc: unicode('ee7a'); +$ti-icon-devices-pc-off: unicode('f113'); +$ti-icon-dialpad: unicode('f067'); +$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'); +$ti-icon-dice-3: unicode('f08d'); +$ti-icon-dice-4: unicode('f08e'); +$ti-icon-dice-5: unicode('f08f'); +$ti-icon-dice-6: unicode('f090'); +$ti-icon-dimensions: unicode('ee7b'); +$ti-icon-direction: unicode('ebfb'); +$ti-icon-direction-horizontal: unicode('ebfa'); +$ti-icon-direction-sign: unicode('f1f7'); +$ti-icon-direction-sign-off: unicode('f3e5'); +$ti-icon-directions: unicode('ea8e'); +$ti-icon-directions-off: unicode('f116'); +$ti-icon-disabled: unicode('ea8f'); +$ti-icon-disabled-2: unicode('ebaf'); +$ti-icon-disabled-off: unicode('f117'); +$ti-icon-disc: unicode('ea90'); +$ti-icon-disc-golf: unicode('f385'); +$ti-icon-disc-off: unicode('f118'); +$ti-icon-discount: unicode('ebbd'); +$ti-icon-discount-2: unicode('ee7c'); +$ti-icon-discount-2-off: unicode('f3e6'); +$ti-icon-discount-check: unicode('f1f8'); +$ti-icon-discount-off: unicode('f3e7'); +$ti-icon-divide: unicode('ed5c'); +$ti-icon-dna: unicode('ee7d'); +$ti-icon-dna-2: unicode('ef5c'); +$ti-icon-dna-2-off: unicode('f119'); +$ti-icon-dna-off: unicode('f11a'); +$ti-icon-dog: unicode('f660'); +$ti-icon-dog-bowl: unicode('ef29'); +$ti-icon-door: unicode('ef4e'); +$ti-icon-door-enter: unicode('ef4c'); +$ti-icon-door-exit: unicode('ef4d'); +$ti-icon-door-off: unicode('f11b'); +$ti-icon-dots: unicode('ea95'); +$ti-icon-dots-circle-horizontal: unicode('ea91'); +$ti-icon-dots-diagonal: unicode('ea93'); +$ti-icon-dots-diagonal-2: unicode('ea92'); +$ti-icon-dots-vertical: unicode('ea94'); +$ti-icon-download: unicode('ea96'); +$ti-icon-download-off: unicode('f11c'); +$ti-icon-drag-drop: unicode('eb89'); +$ti-icon-drag-drop-2: unicode('eb88'); +$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('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'); +$ti-icon-ear-off: unicode('ee84'); +$ti-icon-ease-in: unicode('f573'); +$ti-icon-ease-in-control-point: unicode('f570'); +$ti-icon-ease-in-out: unicode('f572'); +$ti-icon-ease-in-out-control-points: unicode('f571'); +$ti-icon-ease-out: unicode('f575'); +$ti-icon-ease-out-control-point: unicode('f574'); +$ti-icon-edit: unicode('ea98'); +$ti-icon-edit-circle: unicode('ee85'); +$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'); +$ti-icon-elevator: unicode('efdf'); +$ti-icon-elevator-off: unicode('f3e8'); +$ti-icon-emergency-bed: unicode('ef5d'); +$ti-icon-empathize: unicode('f29b'); +$ti-icon-empathize-off: unicode('f3e9'); +$ti-icon-emphasis: unicode('ebcf'); +$ti-icon-engine: unicode('ef7e'); +$ti-icon-engine-off: unicode('f120'); +$ti-icon-equal: unicode('ee87'); +$ti-icon-equal-double: unicode('f4e1'); +$ti-icon-equal-not: unicode('ee86'); +$ti-icon-eraser: unicode('eb8b'); +$ti-icon-eraser-off: unicode('f121'); +$ti-icon-error-404: unicode('f027'); +$ti-icon-error-404-off: unicode('f122'); +$ti-icon-exchange: unicode('ebe7'); +$ti-icon-exchange-off: unicode('f123'); +$ti-icon-exclamation-circle: unicode('f634'); +$ti-icon-exclamation-mark: unicode('efb4'); +$ti-icon-exclamation-mark-off: unicode('f124'); +$ti-icon-explicit: unicode('f256'); +$ti-icon-explicit-off: unicode('f3ea'); +$ti-icon-exposure: unicode('eb8c'); +$ti-icon-exposure-0: unicode('f29c'); +$ti-icon-exposure-minus-1: unicode('f29d'); +$ti-icon-exposure-minus-2: unicode('f29e'); +$ti-icon-exposure-off: unicode('f3eb'); +$ti-icon-exposure-plus-1: unicode('f29f'); +$ti-icon-exposure-plus-2: unicode('f2a0'); +$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'); +$ti-icon-eyeglass-2: unicode('ee89'); +$ti-icon-eyeglass-off: unicode('f126'); +$ti-icon-face-id: unicode('ea9b'); +$ti-icon-face-id-error: unicode('efa7'); +$ti-icon-face-mask: unicode('efb5'); +$ti-icon-face-mask-off: unicode('f127'); +$ti-icon-fall: unicode('ecb9'); +$ti-icon-feather: unicode('ee8b'); +$ti-icon-feather-off: unicode('f128'); +$ti-icon-fence: unicode('ef2a'); +$ti-icon-fence-off: unicode('f129'); +$ti-icon-fidget-spinner: unicode('f068'); +$ti-icon-file: unicode('eaa4'); +$ti-icon-file-3d: unicode('f032'); +$ti-icon-file-alert: unicode('ede6'); +$ti-icon-file-analytics: unicode('ede7'); +$ti-icon-file-arrow-left: unicode('f033'); +$ti-icon-file-arrow-right: unicode('f034'); +$ti-icon-file-barcode: unicode('f035'); +$ti-icon-file-broken: unicode('f501'); +$ti-icon-file-certificate: unicode('ed4d'); +$ti-icon-file-chart: unicode('f036'); +$ti-icon-file-check: unicode('ea9c'); +$ti-icon-file-code: unicode('ebd0'); +$ti-icon-file-code-2: unicode('ede8'); +$ti-icon-file-database: unicode('f037'); +$ti-icon-file-delta: unicode('f53d'); +$ti-icon-file-description: unicode('f028'); +$ti-icon-file-diff: unicode('ecf1'); +$ti-icon-file-digit: unicode('efa8'); +$ti-icon-file-dislike: unicode('ed2a'); +$ti-icon-file-dollar: unicode('efe0'); +$ti-icon-file-dots: unicode('f038'); +$ti-icon-file-download: unicode('ea9d'); +$ti-icon-file-euro: unicode('efe1'); +$ti-icon-file-export: unicode('ede9'); +$ti-icon-file-function: unicode('f53e'); +$ti-icon-file-horizontal: unicode('ebb0'); +$ti-icon-file-import: unicode('edea'); +$ti-icon-file-infinity: unicode('f502'); +$ti-icon-file-info: unicode('edec'); +$ti-icon-file-invoice: unicode('eb67'); +$ti-icon-file-lambda: unicode('f53f'); +$ti-icon-file-like: unicode('ed2b'); +$ti-icon-file-minus: unicode('ea9e'); +$ti-icon-file-music: unicode('ea9f'); +$ti-icon-file-off: unicode('ecf2'); +$ti-icon-file-orientation: unicode('f2a1'); +$ti-icon-file-pencil: unicode('f039'); +$ti-icon-file-percent: unicode('f540'); +$ti-icon-file-phone: unicode('ecdc'); +$ti-icon-file-plus: unicode('eaa0'); +$ti-icon-file-power: unicode('f03a'); +$ti-icon-file-report: unicode('eded'); +$ti-icon-file-rss: unicode('f03b'); +$ti-icon-file-scissors: unicode('f03c'); +$ti-icon-file-search: unicode('ed5d'); +$ti-icon-file-settings: unicode('f029'); +$ti-icon-file-shredder: unicode('eaa1'); +$ti-icon-file-signal: unicode('f03d'); +$ti-icon-file-spreadsheet: unicode('f03e'); +$ti-icon-file-stack: unicode('f503'); +$ti-icon-file-star: unicode('f03f'); +$ti-icon-file-symlink: unicode('ed53'); +$ti-icon-file-text: unicode('eaa2'); +$ti-icon-file-time: unicode('f040'); +$ti-icon-file-typography: unicode('f041'); +$ti-icon-file-unknown: unicode('f042'); +$ti-icon-file-upload: unicode('ec91'); +$ti-icon-file-vector: unicode('f043'); +$ti-icon-file-x: unicode('eaa3'); +$ti-icon-file-zip: unicode('ed4e'); +$ti-icon-files: unicode('edef'); +$ti-icon-files-off: unicode('edee'); +$ti-icon-filter: unicode('eaa5'); +$ti-icon-filter-off: unicode('ed2c'); +$ti-icon-fingerprint: unicode('ebd1'); +$ti-icon-fingerprint-off: unicode('f12a'); +$ti-icon-fire-hydrant: unicode('f3a9'); +$ti-icon-fire-hydrant-off: unicode('f3ec'); +$ti-icon-firetruck: unicode('ebe8'); +$ti-icon-first-aid-kit: unicode('ef5f'); +$ti-icon-first-aid-kit-off: unicode('f3ed'); +$ti-icon-fish: unicode('ef2b'); +$ti-icon-fish-bone: unicode('f287'); +$ti-icon-fish-christianity: unicode('f58b'); +$ti-icon-fish-hook: unicode('f1f9'); +$ti-icon-fish-hook-off: unicode('f3ee'); +$ti-icon-fish-off: unicode('f12b'); +$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'); +$ti-icon-flare: unicode('ee8e'); +$ti-icon-flask: unicode('ebd2'); +$ti-icon-flask-2: unicode('ef60'); +$ti-icon-flask-2-off: unicode('f12f'); +$ti-icon-flask-off: unicode('f130'); +$ti-icon-flip-flops: unicode('f564'); +$ti-icon-flip-horizontal: unicode('eaa7'); +$ti-icon-flip-vertical: unicode('eaa8'); +$ti-icon-float-center: unicode('ebb1'); +$ti-icon-float-left: unicode('ebb2'); +$ti-icon-float-none: unicode('ed13'); +$ti-icon-float-right: unicode('ebb3'); +$ti-icon-flower: unicode('eff6'); +$ti-icon-flower-off: unicode('f131'); +$ti-icon-focus: unicode('eb8d'); +$ti-icon-focus-2: unicode('ebd3'); +$ti-icon-focus-centered: unicode('f02a'); +$ti-icon-fold: unicode('ed56'); +$ti-icon-fold-down: unicode('ed54'); +$ti-icon-fold-up: unicode('ed55'); +$ti-icon-folder: unicode('eaad'); +$ti-icon-folder-minus: unicode('eaaa'); +$ti-icon-folder-off: unicode('ed14'); +$ti-icon-folder-plus: unicode('eaab'); +$ti-icon-folder-x: unicode('eaac'); +$ti-icon-folders: unicode('eaae'); +$ti-icon-folders-off: unicode('f133'); +$ti-icon-forbid: unicode('ebd5'); +$ti-icon-forbid-2: unicode('ebd4'); +$ti-icon-forklift: unicode('ebe9'); +$ti-icon-forms: unicode('ee8f'); +$ti-icon-fountain: unicode('f09b'); +$ti-icon-fountain-off: unicode('f134'); +$ti-icon-frame: unicode('eaaf'); +$ti-icon-frame-off: unicode('f135'); +$ti-icon-free-rights: unicode('efb6'); +$ti-icon-fridge: unicode('f1fa'); +$ti-icon-fridge-off: unicode('f3ef'); +$ti-icon-friends: unicode('eab0'); +$ti-icon-friends-off: unicode('f136'); +$ti-icon-function: unicode('f225'); +$ti-icon-function-off: unicode('f3f0'); +$ti-icon-garden-cart: unicode('f23e'); +$ti-icon-garden-cart-off: unicode('f3f1'); +$ti-icon-gas-station: unicode('ec7d'); +$ti-icon-gas-station-off: unicode('f137'); +$ti-icon-gauge: unicode('eab1'); +$ti-icon-gauge-off: unicode('f138'); +$ti-icon-gavel: unicode('ef90'); +$ti-icon-gender-agender: unicode('f0e1'); +$ti-icon-gender-androgyne: unicode('f0e2'); +$ti-icon-gender-bigender: unicode('f0e3'); +$ti-icon-gender-demiboy: unicode('f0e4'); +$ti-icon-gender-demigirl: unicode('f0e5'); +$ti-icon-gender-epicene: unicode('f0e6'); +$ti-icon-gender-female: unicode('f0e7'); +$ti-icon-gender-femme: unicode('f0e8'); +$ti-icon-gender-genderfluid: unicode('f0e9'); +$ti-icon-gender-genderless: unicode('f0ea'); +$ti-icon-gender-genderqueer: unicode('f0eb'); +$ti-icon-gender-hermaphrodite: unicode('f0ec'); +$ti-icon-gender-intergender: unicode('f0ed'); +$ti-icon-gender-male: unicode('f0ee'); +$ti-icon-gender-neutrois: unicode('f0ef'); +$ti-icon-gender-third: unicode('f0f0'); +$ti-icon-gender-transgender: unicode('f0f1'); +$ti-icon-gender-trasvesti: unicode('f0f2'); +$ti-icon-geometry: unicode('ee90'); +$ti-icon-ghost: unicode('eb8e'); +$ti-icon-ghost-2: unicode('f57c'); +$ti-icon-ghost-off: unicode('f3f2'); +$ti-icon-gif: unicode('f257'); +$ti-icon-gift: unicode('eb68'); +$ti-icon-gift-card: unicode('f3aa'); +$ti-icon-gift-off: unicode('f3f3'); +$ti-icon-git-branch: unicode('eab2'); +$ti-icon-git-branch-deleted: unicode('f57d'); +$ti-icon-git-cherry-pick: unicode('f57e'); +$ti-icon-git-commit: unicode('eab3'); +$ti-icon-git-compare: unicode('eab4'); +$ti-icon-git-fork: unicode('eb8f'); +$ti-icon-git-merge: unicode('eab5'); +$ti-icon-git-pull-request: unicode('eab6'); +$ti-icon-git-pull-request-closed: unicode('ef7f'); +$ti-icon-git-pull-request-draft: unicode('efb7'); +$ti-icon-gizmo: unicode('f02b'); +$ti-icon-glass: unicode('eab8'); +$ti-icon-glass-full: unicode('eab7'); +$ti-icon-glass-off: unicode('ee91'); +$ti-icon-globe: unicode('eab9'); +$ti-icon-globe-off: unicode('f139'); +$ti-icon-go-game: unicode('f512'); +$ti-icon-golf: unicode('ed8c'); +$ti-icon-golf-off: unicode('f13a'); +$ti-icon-gps: unicode('ed7a'); +$ti-icon-gradienter: unicode('f3ab'); +$ti-icon-grain: unicode('ee92'); +$ti-icon-graph: unicode('f288'); +$ti-icon-graph-off: unicode('f3f4'); +$ti-icon-grave: unicode('f580'); +$ti-icon-grave-2: unicode('f57f'); +$ti-icon-grid-dots: unicode('eaba'); +$ti-icon-grid-pattern: unicode('efc9'); +$ti-icon-grill: unicode('efa9'); +$ti-icon-grill-fork: unicode('f35b'); +$ti-icon-grill-off: unicode('f3f5'); +$ti-icon-grill-spatula: unicode('f35c'); +$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'); +$ti-icon-h-4: unicode('ec97'); +$ti-icon-h-5: unicode('ec98'); +$ti-icon-h-6: unicode('ec99'); +$ti-icon-hammer: unicode('ef91'); +$ti-icon-hammer-off: unicode('f13c'); +$ti-icon-hand-click: unicode('ef4f'); +$ti-icon-hand-finger: unicode('ee94'); +$ti-icon-hand-finger-off: unicode('f13d'); +$ti-icon-hand-grab: unicode('f091'); +$ti-icon-hand-little-finger: unicode('ee95'); +$ti-icon-hand-middle-finger: unicode('ec2d'); +$ti-icon-hand-move: unicode('ef50'); +$ti-icon-hand-off: unicode('ed15'); +$ti-icon-hand-ring-finger: unicode('ee96'); +$ti-icon-hand-rock: unicode('ee97'); +$ti-icon-hand-sanitizer: unicode('f5f4'); +$ti-icon-hand-stop: unicode('ec2e'); +$ti-icon-hand-three-fingers: unicode('ee98'); +$ti-icon-hand-two-fingers: unicode('ee99'); +$ti-icon-hanger: unicode('ee9a'); +$ti-icon-hanger-2: unicode('f09c'); +$ti-icon-hanger-off: unicode('f13e'); +$ti-icon-hash: unicode('eabc'); +$ti-icon-haze: unicode('efaa'); +$ti-icon-heading: unicode('ee9b'); +$ti-icon-heading-off: unicode('f13f'); +$ti-icon-headphones: unicode('eabd'); +$ti-icon-headphones-off: unicode('ed1d'); +$ti-icon-headset: unicode('eb90'); +$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'); +$ti-icon-heart-plus: unicode('f142'); +$ti-icon-heart-rate-monitor: unicode('ef61'); +$ti-icon-heartbeat: unicode('ef92'); +$ti-icon-hearts: unicode('f387'); +$ti-icon-hearts-off: unicode('f3f7'); +$ti-icon-helicopter: unicode('ed8e'); +$ti-icon-helicopter-landing: unicode('ed8d'); +$ti-icon-helmet: unicode('efca'); +$ti-icon-helmet-off: unicode('f143'); +$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'); +$ti-icon-hexagon-letter-d: unicode('f466'); +$ti-icon-hexagon-letter-e: unicode('f467'); +$ti-icon-hexagon-letter-f: unicode('f468'); +$ti-icon-hexagon-letter-g: unicode('f469'); +$ti-icon-hexagon-letter-h: unicode('f46a'); +$ti-icon-hexagon-letter-i: unicode('f46b'); +$ti-icon-hexagon-letter-j: unicode('f46c'); +$ti-icon-hexagon-letter-k: unicode('f46d'); +$ti-icon-hexagon-letter-l: unicode('f46e'); +$ti-icon-hexagon-letter-m: unicode('f46f'); +$ti-icon-hexagon-letter-n: unicode('f470'); +$ti-icon-hexagon-letter-o: unicode('f471'); +$ti-icon-hexagon-letter-p: unicode('f472'); +$ti-icon-hexagon-letter-q: unicode('f473'); +$ti-icon-hexagon-letter-r: unicode('f474'); +$ti-icon-hexagon-letter-s: unicode('f475'); +$ti-icon-hexagon-letter-t: unicode('f476'); +$ti-icon-hexagon-letter-u: unicode('f477'); +$ti-icon-hexagon-letter-v: unicode('f4b3'); +$ti-icon-hexagon-letter-w: unicode('f478'); +$ti-icon-hexagon-letter-x: unicode('f479'); +$ti-icon-hexagon-letter-y: unicode('f47a'); +$ti-icon-hexagon-letter-z: unicode('f47b'); +$ti-icon-hexagon-number-0: unicode('f459'); +$ti-icon-hexagon-number-1: unicode('f45a'); +$ti-icon-hexagon-number-2: unicode('f45b'); +$ti-icon-hexagon-number-3: unicode('f45c'); +$ti-icon-hexagon-number-4: unicode('f45d'); +$ti-icon-hexagon-number-5: unicode('f45e'); +$ti-icon-hexagon-number-6: unicode('f45f'); +$ti-icon-hexagon-number-7: unicode('f460'); +$ti-icon-hexagon-number-8: unicode('f461'); +$ti-icon-hexagon-number-9: unicode('f462'); +$ti-icon-hexagon-off: unicode('ee9c'); +$ti-icon-hexagons: unicode('f09d'); +$ti-icon-hexagons-off: unicode('f3f9'); +$ti-icon-hierarchy: unicode('ee9e'); +$ti-icon-hierarchy-2: unicode('ee9d'); +$ti-icon-hierarchy-3: unicode('f289'); +$ti-icon-hierarchy-off: unicode('f3fa'); +$ti-icon-highlight: unicode('ef3f'); +$ti-icon-highlight-off: unicode('f144'); +$ti-icon-history: unicode('ebea'); +$ti-icon-history-off: unicode('f3fb'); +$ti-icon-history-toggle: unicode('f1fc'); +$ti-icon-home: unicode('eac1'); +$ti-icon-home-2: unicode('eac0'); +$ti-icon-home-bolt: unicode('f336'); +$ti-icon-home-cancel: unicode('f350'); +$ti-icon-home-check: unicode('f337'); +$ti-icon-home-cog: unicode('f338'); +$ti-icon-home-dollar: unicode('f339'); +$ti-icon-home-dot: unicode('f33a'); +$ti-icon-home-down: unicode('f33b'); +$ti-icon-home-eco: unicode('f351'); +$ti-icon-home-edit: unicode('f352'); +$ti-icon-home-exclamation: unicode('f33c'); +$ti-icon-home-hand: unicode('f504'); +$ti-icon-home-heart: unicode('f353'); +$ti-icon-home-infinity: unicode('f505'); +$ti-icon-home-link: unicode('f354'); +$ti-icon-home-minus: unicode('f33d'); +$ti-icon-home-move: unicode('f33e'); +$ti-icon-home-off: unicode('f145'); +$ti-icon-home-plus: unicode('f33f'); +$ti-icon-home-question: unicode('f340'); +$ti-icon-home-ribbon: unicode('f355'); +$ti-icon-home-search: unicode('f341'); +$ti-icon-home-share: unicode('f342'); +$ti-icon-home-shield: unicode('f343'); +$ti-icon-home-signal: unicode('f356'); +$ti-icon-home-star: unicode('f344'); +$ti-icon-home-stats: unicode('f345'); +$ti-icon-home-up: unicode('f346'); +$ti-icon-home-x: unicode('f347'); +$ti-icon-horse-toy: unicode('f28a'); +$ti-icon-hotel-service: unicode('ef80'); +$ti-icon-hourglass: unicode('ef93'); +$ti-icon-hourglass-empty: unicode('f146'); +$ti-icon-hourglass-high: unicode('f092'); +$ti-icon-hourglass-low: unicode('f093'); +$ti-icon-hourglass-off: unicode('f147'); +$ti-icon-ice-cream: unicode('eac2'); +$ti-icon-ice-cream-2: unicode('ee9f'); +$ti-icon-ice-cream-off: unicode('f148'); +$ti-icon-ice-skating: unicode('efcb'); +$ti-icon-icons: unicode('f1d4'); +$ti-icon-icons-off: unicode('f3fc'); +$ti-icon-id: unicode('eac3'); +$ti-icon-id-badge: unicode('eff7'); +$ti-icon-id-badge-2: unicode('f076'); +$ti-icon-id-badge-off: unicode('f3fd'); +$ti-icon-id-off: unicode('f149'); +$ti-icon-inbox: unicode('eac4'); +$ti-icon-inbox-off: unicode('f14a'); +$ti-icon-indent-decrease: unicode('eb91'); +$ti-icon-indent-increase: unicode('eb92'); +$ti-icon-infinity: unicode('eb69'); +$ti-icon-infinity-off: unicode('f3fe'); +$ti-icon-info-circle: unicode('eac5'); +$ti-icon-info-square: unicode('eac6'); +$ti-icon-info-square-rounded: unicode('f635'); +$ti-icon-inner-shadow-bottom: unicode('f520'); +$ti-icon-inner-shadow-bottom-left: unicode('f51e'); +$ti-icon-inner-shadow-bottom-right: unicode('f51f'); +$ti-icon-inner-shadow-left: unicode('f521'); +$ti-icon-inner-shadow-right: unicode('f522'); +$ti-icon-inner-shadow-top: unicode('f525'); +$ti-icon-inner-shadow-top-left: unicode('f523'); +$ti-icon-inner-shadow-top-right: unicode('f524'); +$ti-icon-input-search: unicode('f2a2'); +$ti-icon-ironing-1: unicode('f2f4'); +$ti-icon-ironing-2: unicode('f2f5'); +$ti-icon-ironing-3: unicode('f2f6'); +$ti-icon-ironing-off: unicode('f2f7'); +$ti-icon-ironing-steam: unicode('f2f9'); +$ti-icon-ironing-steam-off: unicode('f2f8'); +$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'); +$ti-icon-kayak: unicode('f1d6'); +$ti-icon-kering: unicode('efb8'); +$ti-icon-key: unicode('eac7'); +$ti-icon-key-off: unicode('f14b'); +$ti-icon-keyboard: unicode('ebd6'); +$ti-icon-keyboard-hide: unicode('ec7e'); +$ti-icon-keyboard-off: unicode('eea0'); +$ti-icon-keyboard-show: unicode('ec7f'); +$ti-icon-keyframe: unicode('f576'); +$ti-icon-keyframe-align-center: unicode('f582'); +$ti-icon-keyframe-align-horizontal: unicode('f583'); +$ti-icon-keyframe-align-vertical: unicode('f584'); +$ti-icon-keyframes: unicode('f585'); +$ti-icon-ladder: unicode('efe2'); +$ti-icon-ladder-off: unicode('f14c'); +$ti-icon-lambda: unicode('f541'); +$ti-icon-lamp: unicode('efab'); +$ti-icon-lamp-2: unicode('f09e'); +$ti-icon-lamp-off: unicode('f14d'); +$ti-icon-language: unicode('ebbe'); +$ti-icon-language-hiragana: unicode('ef77'); +$ti-icon-language-katakana: unicode('ef78'); +$ti-icon-language-off: unicode('f14e'); +$ti-icon-lasso: unicode('efac'); +$ti-icon-lasso-off: unicode('f14f'); +$ti-icon-lasso-polygon: unicode('f388'); +$ti-icon-layers-difference: unicode('eac8'); +$ti-icon-layers-intersect: unicode('eac9'); +$ti-icon-layers-intersect-2: unicode('eff8'); +$ti-icon-layers-linked: unicode('eea1'); +$ti-icon-layers-off: unicode('f150'); +$ti-icon-layers-subtract: unicode('eaca'); +$ti-icon-layers-union: unicode('eacb'); +$ti-icon-layout: unicode('eadb'); +$ti-icon-layout-2: unicode('eacc'); +$ti-icon-layout-align-bottom: unicode('eacd'); +$ti-icon-layout-align-center: unicode('eace'); +$ti-icon-layout-align-left: unicode('eacf'); +$ti-icon-layout-align-middle: unicode('ead0'); +$ti-icon-layout-align-right: unicode('ead1'); +$ti-icon-layout-align-top: unicode('ead2'); +$ti-icon-layout-board: unicode('ef95'); +$ti-icon-layout-board-split: unicode('ef94'); +$ti-icon-layout-bottombar: unicode('ead3'); +$ti-icon-layout-bottombar-collapse: unicode('f28b'); +$ti-icon-layout-bottombar-expand: unicode('f28c'); +$ti-icon-layout-cards: unicode('ec13'); +$ti-icon-layout-collage: unicode('f389'); +$ti-icon-layout-columns: unicode('ead4'); +$ti-icon-layout-dashboard: unicode('f02c'); +$ti-icon-layout-distribute-horizontal: unicode('ead5'); +$ti-icon-layout-distribute-vertical: unicode('ead6'); +$ti-icon-layout-grid: unicode('edba'); +$ti-icon-layout-grid-add: unicode('edb9'); +$ti-icon-layout-kanban: unicode('ec3f'); +$ti-icon-layout-list: unicode('ec14'); +$ti-icon-layout-navbar: unicode('ead7'); +$ti-icon-layout-navbar-collapse: unicode('f28d'); +$ti-icon-layout-navbar-expand: unicode('f28e'); +$ti-icon-layout-off: unicode('f151'); +$ti-icon-layout-rows: unicode('ead8'); +$ti-icon-layout-sidebar: unicode('eada'); +$ti-icon-layout-sidebar-left-collapse: unicode('f004'); +$ti-icon-layout-sidebar-left-expand: unicode('f005'); +$ti-icon-layout-sidebar-right: unicode('ead9'); +$ti-icon-layout-sidebar-right-collapse: unicode('f006'); +$ti-icon-layout-sidebar-right-expand: unicode('f007'); +$ti-icon-leaf: unicode('ed4f'); +$ti-icon-leaf-off: unicode('f400'); +$ti-icon-lego: unicode('eadc'); +$ti-icon-lego-off: unicode('f401'); +$ti-icon-lemon: unicode('ef10'); +$ti-icon-lemon-2: unicode('ef81'); +$ti-icon-letter-a: unicode('ec50'); +$ti-icon-letter-b: unicode('ec51'); +$ti-icon-letter-c: unicode('ec52'); +$ti-icon-letter-case: unicode('eea5'); +$ti-icon-letter-case-lower: unicode('eea2'); +$ti-icon-letter-case-toggle: unicode('eea3'); +$ti-icon-letter-case-upper: unicode('eea4'); +$ti-icon-letter-d: unicode('ec53'); +$ti-icon-letter-e: unicode('ec54'); +$ti-icon-letter-f: unicode('ec55'); +$ti-icon-letter-g: unicode('ec56'); +$ti-icon-letter-h: unicode('ec57'); +$ti-icon-letter-i: unicode('ec58'); +$ti-icon-letter-j: unicode('ec59'); +$ti-icon-letter-k: unicode('ec5a'); +$ti-icon-letter-l: unicode('ec5b'); +$ti-icon-letter-m: unicode('ec5c'); +$ti-icon-letter-n: unicode('ec5d'); +$ti-icon-letter-o: unicode('ec5e'); +$ti-icon-letter-p: unicode('ec5f'); +$ti-icon-letter-q: unicode('ec60'); +$ti-icon-letter-r: unicode('ec61'); +$ti-icon-letter-s: unicode('ec62'); +$ti-icon-letter-spacing: unicode('eea6'); +$ti-icon-letter-t: unicode('ec63'); +$ti-icon-letter-u: unicode('ec64'); +$ti-icon-letter-v: unicode('ec65'); +$ti-icon-letter-w: unicode('ec66'); +$ti-icon-letter-x: unicode('ec67'); +$ti-icon-letter-y: unicode('ec68'); +$ti-icon-letter-z: unicode('ec69'); +$ti-icon-license: unicode('ebc0'); +$ti-icon-license-off: unicode('f153'); +$ti-icon-lifebuoy: unicode('eadd'); +$ti-icon-lifebuoy-off: unicode('f154'); +$ti-icon-line: unicode('ec40'); +$ti-icon-line-dashed: unicode('eea7'); +$ti-icon-line-dotted: unicode('eea8'); +$ti-icon-line-height: unicode('eb94'); +$ti-icon-link: unicode('eade'); +$ti-icon-link-off: unicode('f402'); +$ti-icon-list: unicode('eb6b'); +$ti-icon-list-check: unicode('eb6a'); +$ti-icon-list-details: unicode('ef40'); +$ti-icon-list-numbers: unicode('ef11'); +$ti-icon-list-search: unicode('eea9'); +$ti-icon-live-photo: unicode('eadf'); +$ti-icon-live-photo-off: unicode('f403'); +$ti-icon-live-view: unicode('ec6b'); +$ti-icon-loader: unicode('eca3'); +$ti-icon-loader-2: unicode('f226'); +$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'); +$ti-icon-lock-access-off: unicode('f404'); +$ti-icon-lock-off: unicode('ed1e'); +$ti-icon-lock-open: unicode('eae1'); +$ti-icon-lock-open-off: unicode('f156'); +$ti-icon-lock-square: unicode('ef51'); +$ti-icon-lock-square-rounded: unicode('f636'); +$ti-icon-logic-and: unicode('f240'); +$ti-icon-logic-buffer: unicode('f241'); +$ti-icon-logic-nand: unicode('f242'); +$ti-icon-logic-nor: unicode('f243'); +$ti-icon-logic-not: unicode('f244'); +$ti-icon-logic-or: unicode('f245'); +$ti-icon-logic-xnor: unicode('f246'); +$ti-icon-logic-xor: unicode('f247'); +$ti-icon-login: unicode('eba7'); +$ti-icon-logout: unicode('eba8'); +$ti-icon-lollipop: unicode('efcc'); +$ti-icon-lollipop-off: unicode('f157'); +$ti-icon-luggage: unicode('efad'); +$ti-icon-luggage-off: unicode('f158'); +$ti-icon-lungs: unicode('ef62'); +$ti-icon-lungs-off: unicode('f405'); +$ti-icon-macro: unicode('eeab'); +$ti-icon-macro-off: unicode('f406'); +$ti-icon-magnet: unicode('eae3'); +$ti-icon-magnet-off: unicode('f159'); +$ti-icon-mail: unicode('eae5'); +$ti-icon-mail-fast: unicode('f069'); +$ti-icon-mail-forward: unicode('eeac'); +$ti-icon-mail-off: unicode('f15a'); +$ti-icon-mail-opened: unicode('eae4'); +$ti-icon-mailbox: unicode('eead'); +$ti-icon-mailbox-off: unicode('f15b'); +$ti-icon-man: unicode('eae6'); +$ti-icon-manual-gearbox: unicode('ed7b'); +$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'); +$ti-icon-markdown: unicode('ec41'); +$ti-icon-markdown-off: unicode('f407'); +$ti-icon-marquee: unicode('ec77'); +$ti-icon-marquee-2: unicode('eeae'); +$ti-icon-marquee-off: unicode('f15d'); +$ti-icon-mars: unicode('ec80'); +$ti-icon-mask: unicode('eeb0'); +$ti-icon-mask-off: unicode('eeaf'); +$ti-icon-masks-theater: unicode('f263'); +$ti-icon-masks-theater-off: unicode('f408'); +$ti-icon-massage: unicode('eeb1'); +$ti-icon-matchstick: unicode('f577'); +$ti-icon-math: unicode('ebeb'); +$ti-icon-math-1-divide-2: unicode('f4e2'); +$ti-icon-math-1-divide-3: unicode('f4e3'); +$ti-icon-math-avg: unicode('f0f4'); +$ti-icon-math-equal-greater: unicode('f4e4'); +$ti-icon-math-equal-lower: unicode('f4e5'); +$ti-icon-math-function: unicode('eeb2'); +$ti-icon-math-function-off: unicode('f15e'); +$ti-icon-math-function-y: unicode('f4e6'); +$ti-icon-math-greater: unicode('f4e7'); +$ti-icon-math-integral: unicode('f4e9'); +$ti-icon-math-integral-x: unicode('f4e8'); +$ti-icon-math-integrals: unicode('f4ea'); +$ti-icon-math-lower: unicode('f4eb'); +$ti-icon-math-max: unicode('f0f5'); +$ti-icon-math-min: unicode('f0f6'); +$ti-icon-math-not: unicode('f4ec'); +$ti-icon-math-off: unicode('f409'); +$ti-icon-math-pi: unicode('f4ee'); +$ti-icon-math-pi-divide-2: unicode('f4ed'); +$ti-icon-math-symbols: unicode('eeb3'); +$ti-icon-math-x-divide-2: unicode('f4ef'); +$ti-icon-math-x-divide-y: unicode('f4f1'); +$ti-icon-math-x-divide-y-2: unicode('f4f0'); +$ti-icon-math-x-minus-x: unicode('f4f2'); +$ti-icon-math-x-minus-y: unicode('f4f3'); +$ti-icon-math-x-plus-x: unicode('f4f4'); +$ti-icon-math-x-plus-y: unicode('f4f5'); +$ti-icon-math-xy: unicode('f4f6'); +$ti-icon-math-y-minus-y: unicode('f4f7'); +$ti-icon-math-y-plus-y: unicode('f4f8'); +$ti-icon-maximize: unicode('eaea'); +$ti-icon-maximize-off: unicode('f15f'); +$ti-icon-meat: unicode('ef12'); +$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'); +$ti-icon-menorah: unicode('f58c'); +$ti-icon-menu: unicode('eaeb'); +$ti-icon-menu-2: unicode('ec42'); +$ti-icon-menu-order: unicode('f5f5'); +$ti-icon-message: unicode('eaef'); +$ti-icon-message-2: unicode('eaec'); +$ti-icon-message-2-code: unicode('f012'); +$ti-icon-message-2-off: unicode('f40b'); +$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'); +$ti-icon-message-forward: unicode('f28f'); +$ti-icon-message-language: unicode('efae'); +$ti-icon-message-off: unicode('ed41'); +$ti-icon-message-plus: unicode('ec9a'); +$ti-icon-message-report: unicode('ec9b'); +$ti-icon-message-share: unicode('f078'); +$ti-icon-messages: unicode('eb6c'); +$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'); +$ti-icon-microphone-off: unicode('ed16'); +$ti-icon-microscope: unicode('ef64'); +$ti-icon-microscope-off: unicode('f40e'); +$ti-icon-microwave: unicode('f248'); +$ti-icon-microwave-off: unicode('f264'); +$ti-icon-military-award: unicode('f079'); +$ti-icon-military-rank: unicode('efcf'); +$ti-icon-milk: unicode('ef13'); +$ti-icon-milk-off: unicode('f40f'); +$ti-icon-milkshake: unicode('f4c8'); +$ti-icon-minimize: unicode('eaf1'); +$ti-icon-minus: unicode('eaf2'); +$ti-icon-minus-vertical: unicode('eeb4'); +$ti-icon-mist: unicode('ec30'); +$ti-icon-mist-off: unicode('f410'); +$ti-icon-moneybag: unicode('f506'); +$ti-icon-mood-angry: unicode('f2de'); +$ti-icon-mood-annoyed: unicode('f2e0'); +$ti-icon-mood-annoyed-2: unicode('f2df'); +$ti-icon-mood-boy: unicode('ed2d'); +$ti-icon-mood-confuzed: unicode('eaf3'); +$ti-icon-mood-crazy-happy: unicode('ed90'); +$ti-icon-mood-cry: unicode('ecbb'); +$ti-icon-mood-empty: unicode('eeb5'); +$ti-icon-mood-happy: unicode('eaf4'); +$ti-icon-mood-kid: unicode('ec03'); +$ti-icon-mood-look-left: unicode('f2c5'); +$ti-icon-mood-look-right: unicode('f2c6'); +$ti-icon-mood-nerd: unicode('f2e1'); +$ti-icon-mood-nervous: unicode('ef96'); +$ti-icon-mood-neutral: unicode('eaf5'); +$ti-icon-mood-off: unicode('f161'); +$ti-icon-mood-sad: unicode('eaf6'); +$ti-icon-mood-sad-2: unicode('f2e2'); +$ti-icon-mood-sad-dizzy: unicode('f2e3'); +$ti-icon-mood-sad-squint: unicode('f2e4'); +$ti-icon-mood-sick: unicode('f2e5'); +$ti-icon-mood-silence: unicode('f2e6'); +$ti-icon-mood-sing: unicode('f2c7'); +$ti-icon-mood-smile: unicode('eaf7'); +$ti-icon-mood-smile-beam: unicode('f2e7'); +$ti-icon-mood-smile-dizzy: unicode('f2e8'); +$ti-icon-mood-suprised: unicode('ec04'); +$ti-icon-mood-tongue: unicode('eb95'); +$ti-icon-mood-tongue-wink: unicode('f2ea'); +$ti-icon-mood-tongue-wink-2: unicode('f2e9'); +$ti-icon-mood-unamused: unicode('f2eb'); +$ti-icon-mood-wink: unicode('f2ed'); +$ti-icon-mood-wink-2: unicode('f2ec'); +$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'); +$ti-icon-motorbike: unicode('eeb6'); +$ti-icon-mountain: unicode('ef97'); +$ti-icon-mountain-off: unicode('f411'); +$ti-icon-mouse: unicode('eaf9'); +$ti-icon-mouse-2: unicode('f1d7'); +$ti-icon-mouse-off: unicode('f163'); +$ti-icon-moustache: unicode('f4c9'); +$ti-icon-movie: unicode('eafa'); +$ti-icon-movie-off: unicode('f164'); +$ti-icon-mug: unicode('eafb'); +$ti-icon-mug-off: unicode('f165'); +$ti-icon-multiplier-0-5x: unicode('ef41'); +$ti-icon-multiplier-1-5x: unicode('ef42'); +$ti-icon-multiplier-1x: unicode('ef43'); +$ti-icon-multiplier-2x: unicode('ef44'); +$ti-icon-mushroom: unicode('ef14'); +$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'); +$ti-icon-network: unicode('f09f'); +$ti-icon-network-off: unicode('f414'); +$ti-icon-new-section: unicode('ebc1'); +$ti-icon-news: unicode('eafd'); +$ti-icon-news-off: unicode('f167'); +$ti-icon-nfc: unicode('eeb7'); +$ti-icon-nfc-off: unicode('f168'); +$ti-icon-no-copyright: unicode('efb9'); +$ti-icon-no-creative-commons: unicode('efba'); +$ti-icon-no-derivatives: unicode('efbb'); +$ti-icon-north-star: unicode('f014'); +$ti-icon-note: unicode('eb6d'); +$ti-icon-note-off: unicode('f169'); +$ti-icon-notebook: unicode('eb96'); +$ti-icon-notebook-off: unicode('f415'); +$ti-icon-notes: unicode('eb6e'); +$ti-icon-notes-off: unicode('f16a'); +$ti-icon-notification: unicode('eafe'); +$ti-icon-notification-off: unicode('f16b'); +$ti-icon-number: unicode('f1fe'); +$ti-icon-number-0: unicode('edf0'); +$ti-icon-number-1: unicode('edf1'); +$ti-icon-number-2: unicode('edf2'); +$ti-icon-number-3: unicode('edf3'); +$ti-icon-number-4: unicode('edf4'); +$ti-icon-number-5: unicode('edf5'); +$ti-icon-number-6: unicode('edf6'); +$ti-icon-number-7: unicode('edf7'); +$ti-icon-number-8: unicode('edf8'); +$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'); +$ti-icon-olympics-off: unicode('f416'); +$ti-icon-om: unicode('f58d'); +$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'); +$ti-icon-packages: unicode('f2c9'); +$ti-icon-packge-export: unicode('f07a'); +$ti-icon-packge-import: unicode('f07b'); +$ti-icon-pacman: unicode('eebc'); +$ti-icon-page-break: unicode('ec81'); +$ti-icon-paint: unicode('eb00'); +$ti-icon-paint-off: unicode('f16d'); +$ti-icon-palette: unicode('eb01'); +$ti-icon-palette-off: unicode('f16e'); +$ti-icon-panorama-horizontal: unicode('ed33'); +$ti-icon-panorama-horizontal-off: unicode('f417'); +$ti-icon-panorama-vertical: unicode('ed34'); +$ti-icon-panorama-vertical-off: unicode('f418'); +$ti-icon-paper-bag: unicode('f02f'); +$ti-icon-paper-bag-off: unicode('f16f'); +$ti-icon-paperclip: unicode('eb02'); +$ti-icon-parachute: unicode('ed7c'); +$ti-icon-parachute-off: unicode('f170'); +$ti-icon-parentheses: unicode('ebd8'); +$ti-icon-parentheses-off: unicode('f171'); +$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'); +$ti-icon-pencil-minus: unicode('f1eb'); +$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'); +$ti-icon-pepper-off: unicode('f175'); +$ti-icon-percentage: unicode('ecf4'); +$ti-icon-perfume: unicode('f509'); +$ti-icon-perspective: unicode('eebd'); +$ti-icon-perspective-off: unicode('f176'); +$ti-icon-phone: unicode('eb09'); +$ti-icon-phone-call: unicode('eb05'); +$ti-icon-phone-calling: unicode('ec43'); +$ti-icon-phone-check: unicode('ec05'); +$ti-icon-phone-incoming: unicode('eb06'); +$ti-icon-phone-off: unicode('ecf5'); +$ti-icon-phone-outgoing: unicode('eb07'); +$ti-icon-phone-pause: unicode('eb08'); +$ti-icon-phone-plus: unicode('ec06'); +$ti-icon-phone-x: unicode('ec07'); +$ti-icon-photo: unicode('eb0a'); +$ti-icon-photo-cancel: unicode('f35d'); +$ti-icon-photo-check: unicode('f35e'); +$ti-icon-photo-down: unicode('f35f'); +$ti-icon-photo-edit: unicode('f360'); +$ti-icon-photo-heart: unicode('f361'); +$ti-icon-photo-minus: unicode('f362'); +$ti-icon-photo-off: unicode('ecf6'); +$ti-icon-photo-plus: unicode('f363'); +$ti-icon-photo-search: unicode('f364'); +$ti-icon-photo-shield: unicode('f365'); +$ti-icon-photo-star: unicode('f366'); +$ti-icon-photo-up: unicode('f38b'); +$ti-icon-photo-x: unicode('f367'); +$ti-icon-physotherapist: unicode('eebe'); +$ti-icon-picture-in-picture: unicode('ed35'); +$ti-icon-picture-in-picture-off: unicode('ed43'); +$ti-icon-picture-in-picture-on: unicode('ed44'); +$ti-icon-picture-in-picture-top: unicode('efe4'); +$ti-icon-pig: unicode('ef52'); +$ti-icon-pig-money: unicode('f38c'); +$ti-icon-pig-off: unicode('f177'); +$ti-icon-pilcrow: unicode('f5f6'); +$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'); +$ti-icon-placeholder: unicode('f626'); +$ti-icon-plane: unicode('eb6f'); +$ti-icon-plane-arrival: unicode('eb99'); +$ti-icon-plane-departure: unicode('eb9a'); +$ti-icon-plane-inflight: unicode('ef98'); +$ti-icon-plane-off: unicode('f17a'); +$ti-icon-plane-tilt: unicode('f1ed'); +$ti-icon-planet: unicode('ec08'); +$ti-icon-planet-off: unicode('f17b'); +$ti-icon-plant: unicode('ed50'); +$ti-icon-plant-2: unicode('ed7e'); +$ti-icon-plant-2-off: unicode('f17c'); +$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'); +$ti-icon-playlist-x: unicode('f009'); +$ti-icon-playstation-circle: unicode('f2ad'); +$ti-icon-playstation-square: unicode('f2ae'); +$ti-icon-playstation-triangle: unicode('f2af'); +$ti-icon-playstation-x: unicode('f2b0'); +$ti-icon-plug: unicode('ebd9'); +$ti-icon-plug-connected: unicode('f00a'); +$ti-icon-plug-connected-x: unicode('f0a0'); +$ti-icon-plug-off: unicode('f180'); +$ti-icon-plug-x: unicode('f0a1'); +$ti-icon-plus: unicode('eb0b'); +$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'); +$ti-icon-pokeball-off: unicode('f41c'); +$ti-icon-poker-chip: unicode('f515'); +$ti-icon-polaroid: unicode('eec2'); +$ti-icon-polygon: unicode('efd0'); +$ti-icon-polygon-off: unicode('f182'); +$ti-icon-poo: unicode('f258'); +$ti-icon-pool: unicode('ed91'); +$ti-icon-pool-off: unicode('f41d'); +$ti-icon-power: unicode('eb0d'); +$ti-icon-pray: unicode('ecbf'); +$ti-icon-premium-rights: unicode('efbd'); +$ti-icon-prescription: unicode('ef99'); +$ti-icon-presentation: unicode('eb70'); +$ti-icon-presentation-analytics: unicode('eec3'); +$ti-icon-presentation-off: unicode('f183'); +$ti-icon-printer: unicode('eb0e'); +$ti-icon-printer-off: unicode('f184'); +$ti-icon-prison: unicode('ef79'); +$ti-icon-prompt: unicode('eb0f'); +$ti-icon-propeller: unicode('eec4'); +$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'); +$ti-icon-qrcode: unicode('eb11'); +$ti-icon-qrcode-off: unicode('f41e'); +$ti-icon-question-circle: unicode('f637'); +$ti-icon-question-mark: unicode('ec9d'); +$ti-icon-quote: unicode('efbe'); +$ti-icon-quote-off: unicode('f188'); +$ti-icon-radar: unicode('f017'); +$ti-icon-radar-2: unicode('f016'); +$ti-icon-radar-off: unicode('f41f'); +$ti-icon-radio: unicode('ef2d'); +$ti-icon-radio-off: unicode('f420'); +$ti-icon-radioactive: unicode('ecc0'); +$ti-icon-radioactive-off: unicode('f189'); +$ti-icon-radius-bottom-left: unicode('eec6'); +$ti-icon-radius-bottom-right: unicode('eec7'); +$ti-icon-radius-top-left: unicode('eec8'); +$ti-icon-radius-top-right: unicode('eec9'); +$ti-icon-rainbow: unicode('edbc'); +$ti-icon-rainbow-off: unicode('f18a'); +$ti-icon-rating-12-plus: unicode('f266'); +$ti-icon-rating-14-plus: unicode('f267'); +$ti-icon-rating-16-plus: unicode('f268'); +$ti-icon-rating-18-plus: unicode('f269'); +$ti-icon-rating-21-plus: unicode('f26a'); +$ti-icon-razor: unicode('f4b5'); +$ti-icon-razor-electric: unicode('f4b4'); +$ti-icon-receipt: unicode('edfd'); +$ti-icon-receipt-2: unicode('edfa'); +$ti-icon-receipt-off: unicode('edfb'); +$ti-icon-receipt-refund: unicode('edfc'); +$ti-icon-receipt-tax: unicode('edbd'); +$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'); +$ti-icon-refresh-alert: unicode('ed57'); +$ti-icon-refresh-dot: unicode('efbf'); +$ti-icon-refresh-off: unicode('f18d'); +$ti-icon-regex: unicode('f31f'); +$ti-icon-regex-off: unicode('f421'); +$ti-icon-registered: unicode('eb14'); +$ti-icon-relation-many-to-many: unicode('ed7f'); +$ti-icon-relation-one-to-many: unicode('ed80'); +$ti-icon-relation-one-to-one: unicode('ed81'); +$ti-icon-reload: unicode('f3ae'); +$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'); +$ti-icon-report-medical: unicode('eecc'); +$ti-icon-report-money: unicode('eecd'); +$ti-icon-report-off: unicode('f18f'); +$ti-icon-report-search: unicode('ef84'); +$ti-icon-resize: unicode('eecf'); +$ti-icon-ribbon-health: unicode('f58e'); +$ti-icon-ripple: unicode('ed82'); +$ti-icon-ripple-off: unicode('f190'); +$ti-icon-road: unicode('f018'); +$ti-icon-road-off: unicode('f191'); +$ti-icon-road-sign: unicode('ecdd'); +$ti-icon-robot: unicode('f00b'); +$ti-icon-robot-off: unicode('f192'); +$ti-icon-rocket: unicode('ec45'); +$ti-icon-rocket-off: unicode('f193'); +$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'); +$ti-icon-rosette-number-3: unicode('f592'); +$ti-icon-rosette-number-4: unicode('f593'); +$ti-icon-rosette-number-5: unicode('f594'); +$ti-icon-rosette-number-6: unicode('f595'); +$ti-icon-rosette-number-7: unicode('f596'); +$ti-icon-rosette-number-8: unicode('f597'); +$ti-icon-rosette-number-9: unicode('f598'); +$ti-icon-rotate: unicode('eb16'); +$ti-icon-rotate-2: unicode('ebb4'); +$ti-icon-rotate-360: unicode('ef85'); +$ti-icon-rotate-clockwise: unicode('eb15'); +$ti-icon-rotate-clockwise-2: unicode('ebb5'); +$ti-icon-rotate-dot: unicode('efe5'); +$ti-icon-rotate-rectangle: unicode('ec15'); +$ti-icon-route: unicode('eb17'); +$ti-icon-route-2: unicode('f4b6'); +$ti-icon-route-off: unicode('f194'); +$ti-icon-router: unicode('eb18'); +$ti-icon-router-off: unicode('f424'); +$ti-icon-row-insert-bottom: unicode('eed0'); +$ti-icon-row-insert-top: unicode('eed1'); +$ti-icon-rss: unicode('eb19'); +$ti-icon-rubber-stamp: unicode('f5ab'); +$ti-icon-rubber-stamp-off: unicode('f5aa'); +$ti-icon-ruler: unicode('eb1a'); +$ti-icon-ruler-2: unicode('eed2'); +$ti-icon-ruler-2-off: unicode('f195'); +$ti-icon-ruler-3: unicode('f290'); +$ti-icon-ruler-measure: unicode('f291'); +$ti-icon-ruler-off: unicode('f196'); +$ti-icon-run: unicode('ec82'); +$ti-icon-s-turn-down: unicode('f516'); +$ti-icon-s-turn-left: unicode('f517'); +$ti-icon-s-turn-right: unicode('f518'); +$ti-icon-s-turn-up: unicode('f519'); +$ti-icon-sailboat: unicode('ec83'); +$ti-icon-sailboat-2: unicode('f5f7'); +$ti-icon-sailboat-off: unicode('f425'); +$ti-icon-salad: unicode('f50a'); +$ti-icon-salt: unicode('ef16'); +$ti-icon-satellite: unicode('eed3'); +$ti-icon-satellite-off: unicode('f197'); +$ti-icon-sausage: unicode('ef17'); +$ti-icon-scale: unicode('ebc2'); +$ti-icon-scale-off: unicode('f198'); +$ti-icon-scale-outline: unicode('ef53'); +$ti-icon-scale-outline-off: unicode('f199'); +$ti-icon-scan: unicode('ebc8'); +$ti-icon-scan-eye: unicode('f1ff'); +$ti-icon-schema: unicode('f200'); +$ti-icon-schema-off: unicode('f426'); +$ti-icon-school: unicode('ecf7'); +$ti-icon-school-bell: unicode('f64a'); +$ti-icon-school-off: unicode('f19a'); +$ti-icon-scissors: unicode('eb1b'); +$ti-icon-scissors-off: unicode('f19b'); +$ti-icon-scooter: unicode('ec6c'); +$ti-icon-scooter-electric: unicode('ecc1'); +$ti-icon-screen-share: unicode('ed18'); +$ti-icon-screen-share-off: unicode('ed17'); +$ti-icon-screenshot: unicode('f201'); +$ti-icon-scribble: unicode('f0a3'); +$ti-icon-scribble-off: unicode('f427'); +$ti-icon-script: unicode('f2da'); +$ti-icon-script-minus: unicode('f2d7'); +$ti-icon-script-plus: unicode('f2d8'); +$ti-icon-script-x: unicode('f2d9'); +$ti-icon-scuba-mask: unicode('eed4'); +$ti-icon-scuba-mask-off: unicode('f428'); +$ti-icon-sdk: unicode('f3af'); +$ti-icon-search: unicode('eb1c'); +$ti-icon-search-off: unicode('f19c'); +$ti-icon-section: unicode('eed5'); +$ti-icon-section-sign: unicode('f019'); +$ti-icon-seeding: unicode('ed51'); +$ti-icon-seeding-off: unicode('f19d'); +$ti-icon-select: unicode('ec9e'); +$ti-icon-selector: unicode('eb1d'); +$ti-icon-send: unicode('eb1e'); +$ti-icon-send-off: unicode('f429'); +$ti-icon-seo: unicode('f26b'); +$ti-icon-separator: unicode('ebda'); +$ti-icon-separator-horizontal: unicode('ec79'); +$ti-icon-separator-vertical: unicode('ec7a'); +$ti-icon-server: unicode('eb1f'); +$ti-icon-server-2: unicode('f07c'); +$ti-icon-server-bolt: unicode('f320'); +$ti-icon-server-cog: unicode('f321'); +$ti-icon-server-off: unicode('f19e'); +$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'); +$ti-icon-shape: unicode('eb9c'); +$ti-icon-shape-2: unicode('eed9'); +$ti-icon-shape-3: unicode('eeda'); +$ti-icon-shape-off: unicode('f1a0'); +$ti-icon-share: unicode('eb21'); +$ti-icon-share-off: unicode('f1a1'); +$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'); +$ti-icon-shield-off: unicode('ecf8'); +$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'); +$ti-icon-shoe-off: unicode('f1a4'); +$ti-icon-shopping-bag: unicode('f5f8'); +$ti-icon-shopping-cart: unicode('eb25'); +$ti-icon-shopping-cart-discount: unicode('eedb'); +$ti-icon-shopping-cart-off: unicode('eedc'); +$ti-icon-shopping-cart-plus: unicode('eedd'); +$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'); +$ti-icon-signal-5g: unicode('f1f0'); +$ti-icon-signature: unicode('eee0'); +$ti-icon-signature-off: unicode('f1a5'); +$ti-icon-sitemap: unicode('eb9d'); +$ti-icon-sitemap-off: unicode('f1a6'); +$ti-icon-skateboard: unicode('ecc2'); +$ti-icon-skateboard-off: unicode('f42b'); +$ti-icon-skull: unicode('f292'); +$ti-icon-slash: unicode('f4f9'); +$ti-icon-slashes: unicode('f588'); +$ti-icon-sleigh: unicode('ef9c'); +$ti-icon-slice: unicode('ebdb'); +$ti-icon-slideshow: unicode('ebc9'); +$ti-icon-smart-home: unicode('ecde'); +$ti-icon-smart-home-off: unicode('f1a7'); +$ti-icon-smoking: unicode('ecc4'); +$ti-icon-smoking-no: unicode('ecc3'); +$ti-icon-snowflake: unicode('ec0b'); +$ti-icon-snowflake-off: unicode('f1a8'); +$ti-icon-snowman: unicode('f26d'); +$ti-icon-soccer-field: unicode('ed92'); +$ti-icon-social: unicode('ebec'); +$ti-icon-social-off: unicode('f1a9'); +$ti-icon-sock: unicode('eee1'); +$ti-icon-sofa: unicode('efaf'); +$ti-icon-sofa-off: unicode('f42c'); +$ti-icon-sort-0-9: unicode('f54d'); +$ti-icon-sort-9-0: unicode('f54e'); +$ti-icon-sort-a-z: unicode('f54f'); +$ti-icon-sort-ascending: unicode('eb26'); +$ti-icon-sort-ascending-2: unicode('eee2'); +$ti-icon-sort-ascending-letters: unicode('ef18'); +$ti-icon-sort-ascending-numbers: unicode('ef19'); +$ti-icon-sort-descending: unicode('eb27'); +$ti-icon-sort-descending-2: unicode('eee3'); +$ti-icon-sort-descending-letters: unicode('ef1a'); +$ti-icon-sort-descending-numbers: unicode('ef1b'); +$ti-icon-sort-z-a: unicode('f550'); +$ti-icon-sos: unicode('f24a'); +$ti-icon-soup: unicode('ef2e'); +$ti-icon-soup-off: unicode('f42d'); +$ti-icon-source-code: unicode('f4a2'); +$ti-icon-space: unicode('ec0c'); +$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'); +$ti-icon-spiral: unicode('f294'); +$ti-icon-spiral-off: unicode('f42e'); +$ti-icon-sport-billard: unicode('eee4'); +$ti-icon-spray: unicode('f50b'); +$ti-icon-spy: unicode('f227'); +$ti-icon-spy-off: unicode('f42f'); +$ti-icon-square: unicode('eb2c'); +$ti-icon-square-arrow-down: unicode('f4b7'); +$ti-icon-square-arrow-left: unicode('f4b8'); +$ti-icon-square-arrow-right: unicode('f4b9'); +$ti-icon-square-arrow-up: unicode('f4ba'); +$ti-icon-square-asterisk: unicode('f01a'); +$ti-icon-square-check: unicode('eb28'); +$ti-icon-square-chevron-down: unicode('f627'); +$ti-icon-square-chevron-left: unicode('f628'); +$ti-icon-square-chevron-right: unicode('f629'); +$ti-icon-square-chevron-up: unicode('f62a'); +$ti-icon-square-chevrons-down: unicode('f64b'); +$ti-icon-square-chevrons-left: unicode('f64c'); +$ti-icon-square-chevrons-right: unicode('f64d'); +$ti-icon-square-chevrons-up: unicode('f64e'); +$ti-icon-square-dot: unicode('ed59'); +$ti-icon-square-f0: unicode('f526'); +$ti-icon-square-f1: unicode('f527'); +$ti-icon-square-f2: unicode('f528'); +$ti-icon-square-f3: unicode('f529'); +$ti-icon-square-f4: unicode('f52a'); +$ti-icon-square-f5: unicode('f52b'); +$ti-icon-square-f6: unicode('f52c'); +$ti-icon-square-f7: unicode('f52d'); +$ti-icon-square-f8: unicode('f52e'); +$ti-icon-square-f9: unicode('f52f'); +$ti-icon-square-forbid: unicode('ed5b'); +$ti-icon-square-forbid-2: unicode('ed5a'); +$ti-icon-square-half: unicode('effb'); +$ti-icon-square-key: unicode('f638'); +$ti-icon-square-letter-a: unicode('f47c'); +$ti-icon-square-letter-b: unicode('f47d'); +$ti-icon-square-letter-c: unicode('f47e'); +$ti-icon-square-letter-d: unicode('f47f'); +$ti-icon-square-letter-e: unicode('f480'); +$ti-icon-square-letter-f: unicode('f481'); +$ti-icon-square-letter-g: unicode('f482'); +$ti-icon-square-letter-h: unicode('f483'); +$ti-icon-square-letter-i: unicode('f484'); +$ti-icon-square-letter-j: unicode('f485'); +$ti-icon-square-letter-k: unicode('f486'); +$ti-icon-square-letter-l: unicode('f487'); +$ti-icon-square-letter-m: unicode('f488'); +$ti-icon-square-letter-n: unicode('f489'); +$ti-icon-square-letter-o: unicode('f48a'); +$ti-icon-square-letter-p: unicode('f48b'); +$ti-icon-square-letter-q: unicode('f48c'); +$ti-icon-square-letter-r: unicode('f48d'); +$ti-icon-square-letter-s: unicode('f48e'); +$ti-icon-square-letter-t: unicode('f48f'); +$ti-icon-square-letter-u: unicode('f490'); +$ti-icon-square-letter-v: unicode('f4bb'); +$ti-icon-square-letter-w: unicode('f491'); +$ti-icon-square-letter-x: unicode('f4bc'); +$ti-icon-square-letter-y: unicode('f492'); +$ti-icon-square-letter-z: unicode('f493'); +$ti-icon-square-minus: unicode('eb29'); +$ti-icon-square-number-0: unicode('eee5'); +$ti-icon-square-number-1: unicode('eee6'); +$ti-icon-square-number-2: unicode('eee7'); +$ti-icon-square-number-3: unicode('eee8'); +$ti-icon-square-number-4: unicode('eee9'); +$ti-icon-square-number-5: unicode('eeea'); +$ti-icon-square-number-6: unicode('eeeb'); +$ti-icon-square-number-7: unicode('eeec'); +$ti-icon-square-number-8: unicode('eeed'); +$ti-icon-square-number-9: unicode('eeee'); +$ti-icon-square-off: unicode('eeef'); +$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'); +$ti-icon-square-rounded: unicode('f59a'); +$ti-icon-square-rounded-arrow-down: unicode('f639'); +$ti-icon-square-rounded-arrow-left: unicode('f63a'); +$ti-icon-square-rounded-arrow-right: unicode('f63b'); +$ti-icon-square-rounded-arrow-up: unicode('f63c'); +$ti-icon-square-rounded-check: unicode('f63d'); +$ti-icon-square-rounded-chevron-down: unicode('f62b'); +$ti-icon-square-rounded-chevron-left: unicode('f62c'); +$ti-icon-square-rounded-chevron-right: unicode('f62d'); +$ti-icon-square-rounded-chevron-up: unicode('f62e'); +$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'); +$ti-icon-square-rounded-letter-d: unicode('f5b1'); +$ti-icon-square-rounded-letter-e: unicode('f5b2'); +$ti-icon-square-rounded-letter-f: unicode('f5b3'); +$ti-icon-square-rounded-letter-g: unicode('f5b4'); +$ti-icon-square-rounded-letter-h: unicode('f5b5'); +$ti-icon-square-rounded-letter-i: unicode('f5b6'); +$ti-icon-square-rounded-letter-j: unicode('f5b7'); +$ti-icon-square-rounded-letter-k: unicode('f5b8'); +$ti-icon-square-rounded-letter-l: unicode('f5b9'); +$ti-icon-square-rounded-letter-m: unicode('f5ba'); +$ti-icon-square-rounded-letter-n: unicode('f5bb'); +$ti-icon-square-rounded-letter-o: unicode('f5bc'); +$ti-icon-square-rounded-letter-p: unicode('f5bd'); +$ti-icon-square-rounded-letter-q: unicode('f5be'); +$ti-icon-square-rounded-letter-r: unicode('f5bf'); +$ti-icon-square-rounded-letter-s: unicode('f5c0'); +$ti-icon-square-rounded-letter-t: unicode('f5c1'); +$ti-icon-square-rounded-letter-u: unicode('f5c2'); +$ti-icon-square-rounded-letter-v: unicode('f5c3'); +$ti-icon-square-rounded-letter-w: unicode('f5c4'); +$ti-icon-square-rounded-letter-x: unicode('f5c5'); +$ti-icon-square-rounded-letter-y: unicode('f5c6'); +$ti-icon-square-rounded-letter-z: unicode('f5c7'); +$ti-icon-square-rounded-minus: unicode('f63e'); +$ti-icon-square-rounded-number-0: unicode('f5c8'); +$ti-icon-square-rounded-number-1: unicode('f5c9'); +$ti-icon-square-rounded-number-2: unicode('f5ca'); +$ti-icon-square-rounded-number-3: unicode('f5cb'); +$ti-icon-square-rounded-number-4: unicode('f5cc'); +$ti-icon-square-rounded-number-5: unicode('f5cd'); +$ti-icon-square-rounded-number-6: unicode('f5ce'); +$ti-icon-square-rounded-number-7: unicode('f5cf'); +$ti-icon-square-rounded-number-8: unicode('f5d0'); +$ti-icon-square-rounded-number-9: unicode('f5d1'); +$ti-icon-square-rounded-plus: unicode('f63f'); +$ti-icon-square-rounded-x: unicode('f640'); +$ti-icon-square-toggle: unicode('eef4'); +$ti-icon-square-toggle-horizontal: unicode('eef3'); +$ti-icon-square-x: unicode('eb2b'); +$ti-icon-squares-diagonal: unicode('eef5'); +$ti-icon-squares-filled: unicode('eef6'); +$ti-icon-stack: unicode('eb2d'); +$ti-icon-stack-2: unicode('eef7'); +$ti-icon-stack-3: unicode('ef9d'); +$ti-icon-stack-pop: unicode('f234'); +$ti-icon-stack-push: unicode('f235'); +$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'); +$ti-icon-steering-wheel: unicode('ec7b'); +$ti-icon-steering-wheel-off: unicode('f431'); +$ti-icon-step-into: unicode('ece0'); +$ti-icon-step-out: unicode('ece1'); +$ti-icon-stereo-glasses: unicode('f4cb'); +$ti-icon-stethoscope: unicode('edbe'); +$ti-icon-stethoscope-off: unicode('f432'); +$ti-icon-sticker: unicode('eb2f'); +$ti-icon-storm: unicode('f24c'); +$ti-icon-storm-off: unicode('f433'); +$ti-icon-stretching: unicode('f2db'); +$ti-icon-strikethrough: unicode('eb9e'); +$ti-icon-submarine: unicode('ed94'); +$ti-icon-subscript: unicode('eb9f'); +$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'); +$ti-icon-sun-off: unicode('ed63'); +$ti-icon-sun-wind: unicode('f238'); +$ti-icon-sunglasses: unicode('f239'); +$ti-icon-sunrise: unicode('ef1c'); +$ti-icon-sunset: unicode('ec31'); +$ti-icon-sunset-2: unicode('f23a'); +$ti-icon-superscript: unicode('eba0'); +$ti-icon-svg: unicode('f25a'); +$ti-icon-swimming: unicode('ec92'); +$ti-icon-swipe: unicode('f551'); +$ti-icon-switch: unicode('eb33'); +$ti-icon-switch-2: unicode('edbf'); +$ti-icon-switch-3: unicode('edc0'); +$ti-icon-switch-horizontal: unicode('eb31'); +$ti-icon-switch-vertical: unicode('eb32'); +$ti-icon-sword: unicode('f030'); +$ti-icon-sword-off: unicode('f434'); +$ti-icon-swords: unicode('f132'); +$ti-icon-table: unicode('eba1'); +$ti-icon-table-alias: unicode('f25b'); +$ti-icon-table-export: unicode('eef8'); +$ti-icon-table-import: unicode('eef9'); +$ti-icon-table-off: unicode('eefa'); +$ti-icon-table-options: unicode('f25c'); +$ti-icon-table-shortcut: unicode('f25d'); +$ti-icon-tag: unicode('eb34'); +$ti-icon-tag-off: unicode('efc0'); +$ti-icon-tags: unicode('ef86'); +$ti-icon-tags-off: unicode('efc1'); +$ti-icon-tallymark-1: unicode('ec46'); +$ti-icon-tallymark-2: unicode('ec47'); +$ti-icon-tallymark-3: unicode('ec48'); +$ti-icon-tallymark-4: unicode('ec49'); +$ti-icon-tallymarks: unicode('ec4a'); +$ti-icon-tank: unicode('ed95'); +$ti-icon-target: unicode('eb35'); +$ti-icon-target-arrow: unicode('f51a'); +$ti-icon-target-off: unicode('f1ad'); +$ti-icon-teapot: unicode('f552'); +$ti-icon-telescope: unicode('f07d'); +$ti-icon-telescope-off: unicode('f1ae'); +$ti-icon-temperature: unicode('eb38'); +$ti-icon-temperature-celsius: unicode('eb36'); +$ti-icon-temperature-fahrenheit: unicode('eb37'); +$ti-icon-temperature-minus: unicode('ebed'); +$ti-icon-temperature-off: unicode('f1af'); +$ti-icon-temperature-plus: unicode('ebee'); +$ti-icon-template: unicode('eb39'); +$ti-icon-template-off: unicode('f1b0'); +$ti-icon-tent: unicode('eefb'); +$ti-icon-tent-off: unicode('f435'); +$ti-icon-terminal: unicode('ebdc'); +$ti-icon-terminal-2: unicode('ebef'); +$ti-icon-test-pipe: unicode('eb3a'); +$ti-icon-test-pipe-2: unicode('f0a4'); +$ti-icon-test-pipe-off: unicode('f1b1'); +$ti-icon-tex: unicode('f4e0'); +$ti-icon-text-caption: unicode('f4a4'); +$ti-icon-text-color: unicode('f2dc'); +$ti-icon-text-decrease: unicode('f202'); +$ti-icon-text-direction-ltr: unicode('eefc'); +$ti-icon-text-direction-rtl: unicode('eefd'); +$ti-icon-text-increase: unicode('f203'); +$ti-icon-text-orientation: unicode('f2a4'); +$ti-icon-text-plus: unicode('f2a5'); +$ti-icon-text-recognition: unicode('f204'); +$ti-icon-text-resize: unicode('ef87'); +$ti-icon-text-size: unicode('f2b1'); +$ti-icon-text-spellcheck: unicode('f2a6'); +$ti-icon-text-wrap: unicode('ebdd'); +$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'); +$ti-icon-ticket-off: unicode('f1b2'); +$ti-icon-tie: unicode('f07e'); +$ti-icon-tilde: unicode('f4a5'); +$ti-icon-tilt-shift: unicode('eefe'); +$ti-icon-tilt-shift-off: unicode('f1b3'); +$ti-icon-timeline: unicode('f031'); +$ti-icon-timeline-event: unicode('f553'); +$ti-icon-timeline-event-exclamation: unicode('f662'); +$ti-icon-timeline-event-minus: unicode('f663'); +$ti-icon-timeline-event-plus: unicode('f664'); +$ti-icon-timeline-event-text: unicode('f665'); +$ti-icon-timeline-event-x: unicode('f666'); +$ti-icon-tir: unicode('ebf0'); +$ti-icon-toggle-left: unicode('eb3e'); +$ti-icon-toggle-right: unicode('eb3f'); +$ti-icon-toilet-paper: unicode('efd3'); +$ti-icon-toilet-paper-off: unicode('f1b4'); +$ti-icon-tool: unicode('eb40'); +$ti-icon-tools: unicode('ebca'); +$ti-icon-tools-kitchen: unicode('ed64'); +$ti-icon-tools-kitchen-2: unicode('eeff'); +$ti-icon-tools-kitchen-2-off: unicode('f1b5'); +$ti-icon-tools-kitchen-off: unicode('f1b6'); +$ti-icon-tools-off: unicode('f1b7'); +$ti-icon-tooltip: unicode('f2dd'); +$ti-icon-topology-bus: unicode('f5d9'); +$ti-icon-topology-complex: unicode('f5da'); +$ti-icon-topology-full: unicode('f5dc'); +$ti-icon-topology-full-hierarchy: unicode('f5db'); +$ti-icon-topology-ring: unicode('f5df'); +$ti-icon-topology-ring-2: unicode('f5dd'); +$ti-icon-topology-ring-3: unicode('f5de'); +$ti-icon-topology-star: unicode('f5e5'); +$ti-icon-topology-star-2: unicode('f5e0'); +$ti-icon-topology-star-3: unicode('f5e1'); +$ti-icon-topology-star-ring: unicode('f5e4'); +$ti-icon-topology-star-ring-2: unicode('f5e2'); +$ti-icon-topology-star-ring-3: unicode('f5e3'); +$ti-icon-torii: unicode('f59b'); +$ti-icon-tornado: unicode('ece2'); +$ti-icon-tournament: unicode('ecd0'); +$ti-icon-tower: unicode('f2cb'); +$ti-icon-tower-off: unicode('f2ca'); +$ti-icon-track: unicode('ef00'); +$ti-icon-tractor: unicode('ec0d'); +$ti-icon-trademark: unicode('ec0e'); +$ti-icon-traffic-cone: unicode('ec0f'); +$ti-icon-traffic-cone-off: unicode('f1b8'); +$ti-icon-traffic-lights: unicode('ed39'); +$ti-icon-traffic-lights-off: unicode('f1b9'); +$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'); +$ti-icon-transition-top: unicode('f2b5'); +$ti-icon-trash: unicode('eb41'); +$ti-icon-trash-off: unicode('ed65'); +$ti-icon-trash-x: unicode('ef88'); +$ti-icon-tree: unicode('ef01'); +$ti-icon-trees: unicode('ec10'); +$ti-icon-trekking: unicode('f5ad'); +$ti-icon-trending-down: unicode('eb42'); +$ti-icon-trending-down-2: unicode('edc1'); +$ti-icon-trending-down-3: unicode('edc2'); +$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'); +$ti-icon-truck-delivery: unicode('ec4b'); +$ti-icon-truck-loading: unicode('f1da'); +$ti-icon-truck-off: unicode('ef03'); +$ti-icon-truck-return: unicode('ec4c'); +$ti-icon-txt: unicode('f3b1'); +$ti-icon-typography: unicode('ebc5'); +$ti-icon-typography-off: unicode('f1ba'); +$ti-icon-ufo: unicode('f26f'); +$ti-icon-ufo-off: unicode('f26e'); +$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'); +$ti-icon-upload: unicode('eb47'); +$ti-icon-urgent: unicode('eb48'); +$ti-icon-usb: unicode('f00c'); +$ti-icon-user: unicode('eb4d'); +$ti-icon-user-check: unicode('eb49'); +$ti-icon-user-circle: unicode('ef68'); +$ti-icon-user-exclamation: unicode('ec12'); +$ti-icon-user-minus: unicode('eb4a'); +$ti-icon-user-off: unicode('ecf9'); +$ti-icon-user-plus: unicode('eb4b'); +$ti-icon-user-search: unicode('ef89'); +$ti-icon-user-x: unicode('eb4c'); +$ti-icon-users: unicode('ebf2'); +$ti-icon-uv-index: unicode('f3b2'); +$ti-icon-ux-circle: unicode('f369'); +$ti-icon-vaccine: unicode('ef04'); +$ti-icon-vaccine-bottle: unicode('ef69'); +$ti-icon-vaccine-bottle-off: unicode('f439'); +$ti-icon-vaccine-off: unicode('f1bc'); +$ti-icon-vacuum-cleaner: unicode('f5e6'); +$ti-icon-variable: unicode('ef05'); +$ti-icon-variable-minus: unicode('f36a'); +$ti-icon-variable-off: unicode('f1bd'); +$ti-icon-variable-plus: unicode('f36b'); +$ti-icon-vector: unicode('eca9'); +$ti-icon-vector-bezier: unicode('ef1d'); +$ti-icon-vector-bezier-2: unicode('f1a3'); +$ti-icon-vector-bezier-arc: unicode('f4cd'); +$ti-icon-vector-bezier-circle: unicode('f4ce'); +$ti-icon-vector-off: unicode('f1be'); +$ti-icon-vector-spline: unicode('f565'); +$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'); +$ti-icon-video-off: unicode('ed20'); +$ti-icon-video-plus: unicode('ed21'); +$ti-icon-view-360: unicode('ed84'); +$ti-icon-view-360-off: unicode('f1c1'); +$ti-icon-viewfinder: unicode('eb4e'); +$ti-icon-viewfinder-off: unicode('f1c2'); +$ti-icon-viewport-narrow: unicode('ebf3'); +$ti-icon-viewport-wide: unicode('ebf4'); +$ti-icon-vinyl: unicode('f00d'); +$ti-icon-vip: unicode('f3b3'); +$ti-icon-vip-off: unicode('f43a'); +$ti-icon-virus: unicode('eb74'); +$ti-icon-virus-off: unicode('ed66'); +$ti-icon-virus-search: unicode('ed67'); +$ti-icon-vocabulary: unicode('ef1e'); +$ti-icon-vocabulary-off: unicode('f43b'); +$ti-icon-volume: unicode('eb51'); +$ti-icon-volume-2: unicode('eb4f'); +$ti-icon-volume-3: unicode('eb50'); +$ti-icon-volume-off: unicode('f1c3'); +$ti-icon-walk: unicode('ec87'); +$ti-icon-wall: unicode('ef7a'); +$ti-icon-wall-off: unicode('f43c'); +$ti-icon-wallet: unicode('eb75'); +$ti-icon-wallet-off: unicode('f1c4'); +$ti-icon-wallpaper: unicode('ef56'); +$ti-icon-wallpaper-off: unicode('f1c5'); +$ti-icon-wand: unicode('ebcb'); +$ti-icon-wand-off: unicode('f1c6'); +$ti-icon-wash: unicode('f311'); +$ti-icon-wash-dry: unicode('f304'); +$ti-icon-wash-dry-1: unicode('f2fa'); +$ti-icon-wash-dry-2: unicode('f2fb'); +$ti-icon-wash-dry-3: unicode('f2fc'); +$ti-icon-wash-dry-a: unicode('f2fd'); +$ti-icon-wash-dry-dip: unicode('f2fe'); +$ti-icon-wash-dry-f: unicode('f2ff'); +$ti-icon-wash-dry-hang: unicode('f300'); +$ti-icon-wash-dry-off: unicode('f301'); +$ti-icon-wash-dry-p: unicode('f302'); +$ti-icon-wash-dry-shade: unicode('f303'); +$ti-icon-wash-dry-w: unicode('f322'); +$ti-icon-wash-dryclean: unicode('f305'); +$ti-icon-wash-dryclean-off: unicode('f323'); +$ti-icon-wash-gentle: unicode('f306'); +$ti-icon-wash-machine: unicode('f25e'); +$ti-icon-wash-off: unicode('f307'); +$ti-icon-wash-press: unicode('f308'); +$ti-icon-wash-temperature-1: unicode('f309'); +$ti-icon-wash-temperature-2: unicode('f30a'); +$ti-icon-wash-temperature-3: unicode('f30b'); +$ti-icon-wash-temperature-4: unicode('f30c'); +$ti-icon-wash-temperature-5: unicode('f30d'); +$ti-icon-wash-temperature-6: unicode('f30e'); +$ti-icon-wash-tumble-dry: unicode('f30f'); +$ti-icon-wash-tumble-off: unicode('f310'); +$ti-icon-wave-saw-tool: unicode('ecd3'); +$ti-icon-wave-sine: unicode('ecd4'); +$ti-icon-wave-square: unicode('ecd5'); +$ti-icon-webhook: unicode('f01e'); +$ti-icon-webhook-off: unicode('f43d'); +$ti-icon-weight: unicode('f589'); +$ti-icon-wheelchair: unicode('f1db'); +$ti-icon-wheelchair-off: unicode('f43e'); +$ti-icon-whirl: unicode('f51d'); +$ti-icon-wifi: unicode('eb52'); +$ti-icon-wifi-0: unicode('eba3'); +$ti-icon-wifi-1: unicode('eba4'); +$ti-icon-wifi-2: unicode('eba5'); +$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'); +$ti-icon-window-minimize: unicode('f1f2'); +$ti-icon-window-off: unicode('f1c9'); +$ti-icon-windsock: unicode('f06d'); +$ti-icon-wiper: unicode('ecab'); +$ti-icon-wiper-wash: unicode('ecaa'); +$ti-icon-woman: unicode('eb53'); +$ti-icon-wood: unicode('f359'); +$ti-icon-world: unicode('eb54'); +$ti-icon-world-download: unicode('ef8a'); +$ti-icon-world-latitude: unicode('ed2e'); +$ti-icon-world-longitude: unicode('ed2f'); +$ti-icon-world-off: unicode('f1ca'); +$ti-icon-world-upload: unicode('ef8b'); +$ti-icon-world-www: unicode('f38f'); +$ti-icon-wrecking-ball: unicode('ed97'); +$ti-icon-writing: unicode('ef08'); +$ti-icon-writing-off: unicode('f1cb'); +$ti-icon-writing-sign: unicode('ef07'); +$ti-icon-writing-sign-off: unicode('f1cc'); +$ti-icon-x: unicode('eb55'); +$ti-icon-xbox-a: unicode('f2b6'); +$ti-icon-xbox-b: unicode('f2b7'); +$ti-icon-xbox-x: unicode('f2b8'); +$ti-icon-xbox-y: unicode('f2b9'); +$ti-icon-yin-yang: unicode('ec35'); +$ti-icon-yoga: unicode('f01f'); +$ti-icon-zeppelin: unicode('f270'); +$ti-icon-zeppelin-off: unicode('f43f'); +$ti-icon-zip: unicode('f3b4'); +$ti-icon-zodiac-aquarius: unicode('ecac'); +$ti-icon-zodiac-aries: unicode('ecad'); +$ti-icon-zodiac-cancer: unicode('ecae'); +$ti-icon-zodiac-capricorn: unicode('ecaf'); +$ti-icon-zodiac-gemini: unicode('ecb0'); +$ti-icon-zodiac-leo: unicode('ecb1'); +$ti-icon-zodiac-libra: unicode('ecb2'); +$ti-icon-zodiac-pisces: unicode('ecb3'); +$ti-icon-zodiac-sagittarius: unicode('ecb4'); +$ti-icon-zodiac-scorpio: unicode('ecb5'); +$ti-icon-zodiac-taurus: unicode('ecb6'); +$ti-icon-zodiac-virgo: unicode('ecb7'); +$ti-icon-zoom-cancel: unicode('ec4d'); +$ti-icon-zoom-check: unicode('ef09'); +$ti-icon-zoom-code: unicode('f07f'); +$ti-icon-zoom-exclamation: unicode('f080'); +$ti-icon-zoom-in: unicode('eb56'); +$ti-icon-zoom-in-area: unicode('f1dc'); +$ti-icon-zoom-money: unicode('ef0a'); +$ti-icon-zoom-out: unicode('eb57'); +$ti-icon-zoom-out-area: unicode('f1dd'); +$ti-icon-zoom-pan: unicode('f1de'); +$ti-icon-zoom-question: unicode('edeb'); +$ti-icon-zoom-replace: unicode('f2a7'); +$ti-icon-zoom-reset: unicode('f295'); +$ti-icon-zzz: unicode('f228'); +$ti-icon-zzz-off: unicode('f440'); + + +.#{$ti-prefix}-123:before { content: $ti-icon-123; } +.#{$ti-prefix}-24-hours:before { content: $ti-icon-24-hours; } +.#{$ti-prefix}-2fa:before { content: $ti-icon-2fa; } +.#{$ti-prefix}-360:before { content: $ti-icon-360; } +.#{$ti-prefix}-360-view:before { content: $ti-icon-360-view; } +.#{$ti-prefix}-3d-cube-sphere:before { content: $ti-icon-3d-cube-sphere; } +.#{$ti-prefix}-3d-cube-sphere-off:before { content: $ti-icon-3d-cube-sphere-off; } +.#{$ti-prefix}-3d-rotate:before { content: $ti-icon-3d-rotate; } +.#{$ti-prefix}-a-b:before { content: $ti-icon-a-b; } +.#{$ti-prefix}-a-b-2:before { content: $ti-icon-a-b-2; } +.#{$ti-prefix}-a-b-off:before { content: $ti-icon-a-b-off; } +.#{$ti-prefix}-abacus:before { content: $ti-icon-abacus; } +.#{$ti-prefix}-abacus-off:before { content: $ti-icon-abacus-off; } +.#{$ti-prefix}-abc:before { content: $ti-icon-abc; } +.#{$ti-prefix}-access-point:before { content: $ti-icon-access-point; } +.#{$ti-prefix}-access-point-off:before { content: $ti-icon-access-point-off; } +.#{$ti-prefix}-accessible:before { content: $ti-icon-accessible; } +.#{$ti-prefix}-accessible-off:before { content: $ti-icon-accessible-off; } +.#{$ti-prefix}-activity:before { content: $ti-icon-activity; } +.#{$ti-prefix}-activity-heartbeat:before { content: $ti-icon-activity-heartbeat; } +.#{$ti-prefix}-ad:before { content: $ti-icon-ad; } +.#{$ti-prefix}-ad-2:before { content: $ti-icon-ad-2; } +.#{$ti-prefix}-ad-off:before { content: $ti-icon-ad-off; } +.#{$ti-prefix}-address-book:before { content: $ti-icon-address-book; } +.#{$ti-prefix}-address-book-off:before { content: $ti-icon-address-book-off; } +.#{$ti-prefix}-adjustments:before { content: $ti-icon-adjustments; } +.#{$ti-prefix}-adjustments-alt:before { content: $ti-icon-adjustments-alt; } +.#{$ti-prefix}-adjustments-horizontal:before { content: $ti-icon-adjustments-horizontal; } +.#{$ti-prefix}-adjustments-off:before { content: $ti-icon-adjustments-off; } +.#{$ti-prefix}-aerial-lift:before { content: $ti-icon-aerial-lift; } +.#{$ti-prefix}-affiliate:before { content: $ti-icon-affiliate; } +.#{$ti-prefix}-air-balloon:before { content: $ti-icon-air-balloon; } +.#{$ti-prefix}-air-conditioning:before { content: $ti-icon-air-conditioning; } +.#{$ti-prefix}-air-conditioning-disabled:before { content: $ti-icon-air-conditioning-disabled; } +.#{$ti-prefix}-alarm:before { content: $ti-icon-alarm; } +.#{$ti-prefix}-alarm-minus:before { content: $ti-icon-alarm-minus; } +.#{$ti-prefix}-alarm-off:before { content: $ti-icon-alarm-off; } +.#{$ti-prefix}-alarm-plus:before { content: $ti-icon-alarm-plus; } +.#{$ti-prefix}-alarm-snooze:before { content: $ti-icon-alarm-snooze; } +.#{$ti-prefix}-album:before { content: $ti-icon-album; } +.#{$ti-prefix}-album-off:before { content: $ti-icon-album-off; } +.#{$ti-prefix}-alert-circle:before { content: $ti-icon-alert-circle; } +.#{$ti-prefix}-alert-octagon:before { content: $ti-icon-alert-octagon; } +.#{$ti-prefix}-alert-triangle:before { content: $ti-icon-alert-triangle; } +.#{$ti-prefix}-alien:before { content: $ti-icon-alien; } +.#{$ti-prefix}-align-box-bottom-center:before { content: $ti-icon-align-box-bottom-center; } +.#{$ti-prefix}-align-box-bottom-left:before { content: $ti-icon-align-box-bottom-left; } +.#{$ti-prefix}-align-box-bottom-right:before { content: $ti-icon-align-box-bottom-right; } +.#{$ti-prefix}-align-box-left-bottom:before { content: $ti-icon-align-box-left-bottom; } +.#{$ti-prefix}-align-box-left-middle:before { content: $ti-icon-align-box-left-middle; } +.#{$ti-prefix}-align-box-left-top:before { content: $ti-icon-align-box-left-top; } +.#{$ti-prefix}-align-box-right-bottom:before { content: $ti-icon-align-box-right-bottom; } +.#{$ti-prefix}-align-box-right-middle:before { content: $ti-icon-align-box-right-middle; } +.#{$ti-prefix}-align-box-right-top:before { content: $ti-icon-align-box-right-top; } +.#{$ti-prefix}-align-box-top-center:before { content: $ti-icon-align-box-top-center; } +.#{$ti-prefix}-align-box-top-left:before { content: $ti-icon-align-box-top-left; } +.#{$ti-prefix}-align-box-top-right:before { content: $ti-icon-align-box-top-right; } +.#{$ti-prefix}-align-center:before { content: $ti-icon-align-center; } +.#{$ti-prefix}-align-justified:before { content: $ti-icon-align-justified; } +.#{$ti-prefix}-align-left:before { content: $ti-icon-align-left; } +.#{$ti-prefix}-align-right:before { content: $ti-icon-align-right; } +.#{$ti-prefix}-alpha:before { content: $ti-icon-alpha; } +.#{$ti-prefix}-alphabet-cyrillic:before { content: $ti-icon-alphabet-cyrillic; } +.#{$ti-prefix}-alphabet-greek:before { content: $ti-icon-alphabet-greek; } +.#{$ti-prefix}-alphabet-latin:before { content: $ti-icon-alphabet-latin; } +.#{$ti-prefix}-ambulance:before { content: $ti-icon-ambulance; } +.#{$ti-prefix}-ampersand:before { content: $ti-icon-ampersand; } +.#{$ti-prefix}-analyze:before { content: $ti-icon-analyze; } +.#{$ti-prefix}-analyze-off:before { content: $ti-icon-analyze-off; } +.#{$ti-prefix}-anchor:before { content: $ti-icon-anchor; } +.#{$ti-prefix}-anchor-off:before { content: $ti-icon-anchor-off; } +.#{$ti-prefix}-angle:before { content: $ti-icon-angle; } +.#{$ti-prefix}-ankh:before { content: $ti-icon-ankh; } +.#{$ti-prefix}-antenna:before { content: $ti-icon-antenna; } +.#{$ti-prefix}-antenna-bars-1:before { content: $ti-icon-antenna-bars-1; } +.#{$ti-prefix}-antenna-bars-2:before { content: $ti-icon-antenna-bars-2; } +.#{$ti-prefix}-antenna-bars-3:before { content: $ti-icon-antenna-bars-3; } +.#{$ti-prefix}-antenna-bars-4:before { content: $ti-icon-antenna-bars-4; } +.#{$ti-prefix}-antenna-bars-5:before { content: $ti-icon-antenna-bars-5; } +.#{$ti-prefix}-antenna-bars-off:before { content: $ti-icon-antenna-bars-off; } +.#{$ti-prefix}-antenna-off:before { content: $ti-icon-antenna-off; } +.#{$ti-prefix}-aperture:before { content: $ti-icon-aperture; } +.#{$ti-prefix}-aperture-off:before { content: $ti-icon-aperture-off; } +.#{$ti-prefix}-api:before { content: $ti-icon-api; } +.#{$ti-prefix}-api-app:before { content: $ti-icon-api-app; } +.#{$ti-prefix}-api-app-off:before { content: $ti-icon-api-app-off; } +.#{$ti-prefix}-api-off:before { content: $ti-icon-api-off; } +.#{$ti-prefix}-app-window:before { content: $ti-icon-app-window; } +.#{$ti-prefix}-apple:before { content: $ti-icon-apple; } +.#{$ti-prefix}-apps:before { content: $ti-icon-apps; } +.#{$ti-prefix}-apps-off:before { content: $ti-icon-apps-off; } +.#{$ti-prefix}-archive:before { content: $ti-icon-archive; } +.#{$ti-prefix}-archive-off:before { content: $ti-icon-archive-off; } +.#{$ti-prefix}-armchair:before { content: $ti-icon-armchair; } +.#{$ti-prefix}-armchair-2:before { content: $ti-icon-armchair-2; } +.#{$ti-prefix}-armchair-2-off:before { content: $ti-icon-armchair-2-off; } +.#{$ti-prefix}-armchair-off:before { content: $ti-icon-armchair-off; } +.#{$ti-prefix}-arrow-autofit-content:before { content: $ti-icon-arrow-autofit-content; } +.#{$ti-prefix}-arrow-autofit-down:before { content: $ti-icon-arrow-autofit-down; } +.#{$ti-prefix}-arrow-autofit-height:before { content: $ti-icon-arrow-autofit-height; } +.#{$ti-prefix}-arrow-autofit-left:before { content: $ti-icon-arrow-autofit-left; } +.#{$ti-prefix}-arrow-autofit-right:before { content: $ti-icon-arrow-autofit-right; } +.#{$ti-prefix}-arrow-autofit-up:before { content: $ti-icon-arrow-autofit-up; } +.#{$ti-prefix}-arrow-autofit-width:before { content: $ti-icon-arrow-autofit-width; } +.#{$ti-prefix}-arrow-back:before { content: $ti-icon-arrow-back; } +.#{$ti-prefix}-arrow-back-up:before { content: $ti-icon-arrow-back-up; } +.#{$ti-prefix}-arrow-badge-down:before { content: $ti-icon-arrow-badge-down; } +.#{$ti-prefix}-arrow-badge-left:before { content: $ti-icon-arrow-badge-left; } +.#{$ti-prefix}-arrow-badge-right:before { content: $ti-icon-arrow-badge-right; } +.#{$ti-prefix}-arrow-badge-up:before { content: $ti-icon-arrow-badge-up; } +.#{$ti-prefix}-arrow-bar-down:before { content: $ti-icon-arrow-bar-down; } +.#{$ti-prefix}-arrow-bar-left:before { content: $ti-icon-arrow-bar-left; } +.#{$ti-prefix}-arrow-bar-right:before { content: $ti-icon-arrow-bar-right; } +.#{$ti-prefix}-arrow-bar-to-down:before { content: $ti-icon-arrow-bar-to-down; } +.#{$ti-prefix}-arrow-bar-to-left:before { content: $ti-icon-arrow-bar-to-left; } +.#{$ti-prefix}-arrow-bar-to-right:before { content: $ti-icon-arrow-bar-to-right; } +.#{$ti-prefix}-arrow-bar-to-up:before { content: $ti-icon-arrow-bar-to-up; } +.#{$ti-prefix}-arrow-bar-up:before { content: $ti-icon-arrow-bar-up; } +.#{$ti-prefix}-arrow-bear-left:before { content: $ti-icon-arrow-bear-left; } +.#{$ti-prefix}-arrow-bear-left-2:before { content: $ti-icon-arrow-bear-left-2; } +.#{$ti-prefix}-arrow-bear-right:before { content: $ti-icon-arrow-bear-right; } +.#{$ti-prefix}-arrow-bear-right-2:before { content: $ti-icon-arrow-bear-right-2; } +.#{$ti-prefix}-arrow-big-down:before { content: $ti-icon-arrow-big-down; } +.#{$ti-prefix}-arrow-big-down-line:before { content: $ti-icon-arrow-big-down-line; } +.#{$ti-prefix}-arrow-big-down-lines:before { content: $ti-icon-arrow-big-down-lines; } +.#{$ti-prefix}-arrow-big-left:before { content: $ti-icon-arrow-big-left; } +.#{$ti-prefix}-arrow-big-left-line:before { content: $ti-icon-arrow-big-left-line; } +.#{$ti-prefix}-arrow-big-left-lines:before { content: $ti-icon-arrow-big-left-lines; } +.#{$ti-prefix}-arrow-big-right:before { content: $ti-icon-arrow-big-right; } +.#{$ti-prefix}-arrow-big-right-line:before { content: $ti-icon-arrow-big-right-line; } +.#{$ti-prefix}-arrow-big-right-lines:before { content: $ti-icon-arrow-big-right-lines; } +.#{$ti-prefix}-arrow-big-top:before { content: $ti-icon-arrow-big-top; } +.#{$ti-prefix}-arrow-big-up-line:before { content: $ti-icon-arrow-big-up-line; } +.#{$ti-prefix}-arrow-big-up-lines:before { content: $ti-icon-arrow-big-up-lines; } +.#{$ti-prefix}-arrow-bounce:before { content: $ti-icon-arrow-bounce; } +.#{$ti-prefix}-arrow-curve-left:before { content: $ti-icon-arrow-curve-left; } +.#{$ti-prefix}-arrow-curve-right:before { content: $ti-icon-arrow-curve-right; } +.#{$ti-prefix}-arrow-down:before { content: $ti-icon-arrow-down; } +.#{$ti-prefix}-arrow-down-bar:before { content: $ti-icon-arrow-down-bar; } +.#{$ti-prefix}-arrow-down-circle:before { content: $ti-icon-arrow-down-circle; } +.#{$ti-prefix}-arrow-down-left:before { content: $ti-icon-arrow-down-left; } +.#{$ti-prefix}-arrow-down-left-circle:before { content: $ti-icon-arrow-down-left-circle; } +.#{$ti-prefix}-arrow-down-rhombus:before { content: $ti-icon-arrow-down-rhombus; } +.#{$ti-prefix}-arrow-down-right:before { content: $ti-icon-arrow-down-right; } +.#{$ti-prefix}-arrow-down-right-circle:before { content: $ti-icon-arrow-down-right-circle; } +.#{$ti-prefix}-arrow-down-square:before { content: $ti-icon-arrow-down-square; } +.#{$ti-prefix}-arrow-down-tail:before { content: $ti-icon-arrow-down-tail; } +.#{$ti-prefix}-arrow-fork:before { content: $ti-icon-arrow-fork; } +.#{$ti-prefix}-arrow-forward:before { content: $ti-icon-arrow-forward; } +.#{$ti-prefix}-arrow-forward-up:before { content: $ti-icon-arrow-forward-up; } +.#{$ti-prefix}-arrow-guide:before { content: $ti-icon-arrow-guide; } +.#{$ti-prefix}-arrow-iteration:before { content: $ti-icon-arrow-iteration; } +.#{$ti-prefix}-arrow-left:before { content: $ti-icon-arrow-left; } +.#{$ti-prefix}-arrow-left-bar:before { content: $ti-icon-arrow-left-bar; } +.#{$ti-prefix}-arrow-left-circle:before { content: $ti-icon-arrow-left-circle; } +.#{$ti-prefix}-arrow-left-rhombus:before { content: $ti-icon-arrow-left-rhombus; } +.#{$ti-prefix}-arrow-left-right:before { content: $ti-icon-arrow-left-right; } +.#{$ti-prefix}-arrow-left-square:before { content: $ti-icon-arrow-left-square; } +.#{$ti-prefix}-arrow-left-tail:before { content: $ti-icon-arrow-left-tail; } +.#{$ti-prefix}-arrow-loop-left:before { content: $ti-icon-arrow-loop-left; } +.#{$ti-prefix}-arrow-loop-left-2:before { content: $ti-icon-arrow-loop-left-2; } +.#{$ti-prefix}-arrow-loop-right:before { content: $ti-icon-arrow-loop-right; } +.#{$ti-prefix}-arrow-loop-right-2:before { content: $ti-icon-arrow-loop-right-2; } +.#{$ti-prefix}-arrow-merge:before { content: $ti-icon-arrow-merge; } +.#{$ti-prefix}-arrow-merge-both:before { content: $ti-icon-arrow-merge-both; } +.#{$ti-prefix}-arrow-merge-left:before { content: $ti-icon-arrow-merge-left; } +.#{$ti-prefix}-arrow-merge-right:before { content: $ti-icon-arrow-merge-right; } +.#{$ti-prefix}-arrow-move-down:before { content: $ti-icon-arrow-move-down; } +.#{$ti-prefix}-arrow-move-left:before { content: $ti-icon-arrow-move-left; } +.#{$ti-prefix}-arrow-move-right:before { content: $ti-icon-arrow-move-right; } +.#{$ti-prefix}-arrow-move-up:before { content: $ti-icon-arrow-move-up; } +.#{$ti-prefix}-arrow-narrow-down:before { content: $ti-icon-arrow-narrow-down; } +.#{$ti-prefix}-arrow-narrow-left:before { content: $ti-icon-arrow-narrow-left; } +.#{$ti-prefix}-arrow-narrow-right:before { content: $ti-icon-arrow-narrow-right; } +.#{$ti-prefix}-arrow-narrow-up:before { content: $ti-icon-arrow-narrow-up; } +.#{$ti-prefix}-arrow-ramp-left:before { content: $ti-icon-arrow-ramp-left; } +.#{$ti-prefix}-arrow-ramp-left-2:before { content: $ti-icon-arrow-ramp-left-2; } +.#{$ti-prefix}-arrow-ramp-left-3:before { content: $ti-icon-arrow-ramp-left-3; } +.#{$ti-prefix}-arrow-ramp-right:before { content: $ti-icon-arrow-ramp-right; } +.#{$ti-prefix}-arrow-ramp-right-2:before { content: $ti-icon-arrow-ramp-right-2; } +.#{$ti-prefix}-arrow-ramp-right-3:before { content: $ti-icon-arrow-ramp-right-3; } +.#{$ti-prefix}-arrow-right:before { content: $ti-icon-arrow-right; } +.#{$ti-prefix}-arrow-right-bar:before { content: $ti-icon-arrow-right-bar; } +.#{$ti-prefix}-arrow-right-circle:before { content: $ti-icon-arrow-right-circle; } +.#{$ti-prefix}-arrow-right-rhombus:before { content: $ti-icon-arrow-right-rhombus; } +.#{$ti-prefix}-arrow-right-square:before { content: $ti-icon-arrow-right-square; } +.#{$ti-prefix}-arrow-right-tail:before { content: $ti-icon-arrow-right-tail; } +.#{$ti-prefix}-arrow-rotary-first-left:before { content: $ti-icon-arrow-rotary-first-left; } +.#{$ti-prefix}-arrow-rotary-first-right:before { content: $ti-icon-arrow-rotary-first-right; } +.#{$ti-prefix}-arrow-rotary-last-left:before { content: $ti-icon-arrow-rotary-last-left; } +.#{$ti-prefix}-arrow-rotary-last-right:before { content: $ti-icon-arrow-rotary-last-right; } +.#{$ti-prefix}-arrow-rotary-left:before { content: $ti-icon-arrow-rotary-left; } +.#{$ti-prefix}-arrow-rotary-right:before { content: $ti-icon-arrow-rotary-right; } +.#{$ti-prefix}-arrow-rotary-straight:before { content: $ti-icon-arrow-rotary-straight; } +.#{$ti-prefix}-arrow-roundabout-left:before { content: $ti-icon-arrow-roundabout-left; } +.#{$ti-prefix}-arrow-roundabout-right:before { content: $ti-icon-arrow-roundabout-right; } +.#{$ti-prefix}-arrow-sharp-turn-left:before { content: $ti-icon-arrow-sharp-turn-left; } +.#{$ti-prefix}-arrow-sharp-turn-right:before { content: $ti-icon-arrow-sharp-turn-right; } +.#{$ti-prefix}-arrow-up:before { content: $ti-icon-arrow-up; } +.#{$ti-prefix}-arrow-up-bar:before { content: $ti-icon-arrow-up-bar; } +.#{$ti-prefix}-arrow-up-circle:before { content: $ti-icon-arrow-up-circle; } +.#{$ti-prefix}-arrow-up-left:before { content: $ti-icon-arrow-up-left; } +.#{$ti-prefix}-arrow-up-left-circle:before { content: $ti-icon-arrow-up-left-circle; } +.#{$ti-prefix}-arrow-up-rhombus:before { content: $ti-icon-arrow-up-rhombus; } +.#{$ti-prefix}-arrow-up-right:before { content: $ti-icon-arrow-up-right; } +.#{$ti-prefix}-arrow-up-right-circle:before { content: $ti-icon-arrow-up-right-circle; } +.#{$ti-prefix}-arrow-up-square:before { content: $ti-icon-arrow-up-square; } +.#{$ti-prefix}-arrow-up-tail:before { content: $ti-icon-arrow-up-tail; } +.#{$ti-prefix}-arrow-wave-left-down:before { content: $ti-icon-arrow-wave-left-down; } +.#{$ti-prefix}-arrow-wave-left-up:before { content: $ti-icon-arrow-wave-left-up; } +.#{$ti-prefix}-arrow-wave-right-down:before { content: $ti-icon-arrow-wave-right-down; } +.#{$ti-prefix}-arrow-wave-right-up:before { content: $ti-icon-arrow-wave-right-up; } +.#{$ti-prefix}-arrow-zig-zag:before { content: $ti-icon-arrow-zig-zag; } +.#{$ti-prefix}-arrows-cross:before { content: $ti-icon-arrows-cross; } +.#{$ti-prefix}-arrows-diagonal:before { content: $ti-icon-arrows-diagonal; } +.#{$ti-prefix}-arrows-diagonal-2:before { content: $ti-icon-arrows-diagonal-2; } +.#{$ti-prefix}-arrows-diagonal-minimize:before { content: $ti-icon-arrows-diagonal-minimize; } +.#{$ti-prefix}-arrows-diagonal-minimize-2:before { content: $ti-icon-arrows-diagonal-minimize-2; } +.#{$ti-prefix}-arrows-diff:before { content: $ti-icon-arrows-diff; } +.#{$ti-prefix}-arrows-double-ne-sw:before { content: $ti-icon-arrows-double-ne-sw; } +.#{$ti-prefix}-arrows-double-nw-se:before { content: $ti-icon-arrows-double-nw-se; } +.#{$ti-prefix}-arrows-double-se-nw:before { content: $ti-icon-arrows-double-se-nw; } +.#{$ti-prefix}-arrows-double-sw-ne:before { content: $ti-icon-arrows-double-sw-ne; } +.#{$ti-prefix}-arrows-down:before { content: $ti-icon-arrows-down; } +.#{$ti-prefix}-arrows-down-up:before { content: $ti-icon-arrows-down-up; } +.#{$ti-prefix}-arrows-exchange:before { content: $ti-icon-arrows-exchange; } +.#{$ti-prefix}-arrows-exchange-2:before { content: $ti-icon-arrows-exchange-2; } +.#{$ti-prefix}-arrows-horizontal:before { content: $ti-icon-arrows-horizontal; } +.#{$ti-prefix}-arrows-join:before { content: $ti-icon-arrows-join; } +.#{$ti-prefix}-arrows-join-2:before { content: $ti-icon-arrows-join-2; } +.#{$ti-prefix}-arrows-left:before { content: $ti-icon-arrows-left; } +.#{$ti-prefix}-arrows-left-down:before { content: $ti-icon-arrows-left-down; } +.#{$ti-prefix}-arrows-left-right:before { content: $ti-icon-arrows-left-right; } +.#{$ti-prefix}-arrows-maximize:before { content: $ti-icon-arrows-maximize; } +.#{$ti-prefix}-arrows-minimize:before { content: $ti-icon-arrows-minimize; } +.#{$ti-prefix}-arrows-move:before { content: $ti-icon-arrows-move; } +.#{$ti-prefix}-arrows-move-horizontal:before { content: $ti-icon-arrows-move-horizontal; } +.#{$ti-prefix}-arrows-move-vertical:before { content: $ti-icon-arrows-move-vertical; } +.#{$ti-prefix}-arrows-random:before { content: $ti-icon-arrows-random; } +.#{$ti-prefix}-arrows-right:before { content: $ti-icon-arrows-right; } +.#{$ti-prefix}-arrows-right-down:before { content: $ti-icon-arrows-right-down; } +.#{$ti-prefix}-arrows-right-left:before { content: $ti-icon-arrows-right-left; } +.#{$ti-prefix}-arrows-shuffle:before { content: $ti-icon-arrows-shuffle; } +.#{$ti-prefix}-arrows-shuffle-2:before { content: $ti-icon-arrows-shuffle-2; } +.#{$ti-prefix}-arrows-sort:before { content: $ti-icon-arrows-sort; } +.#{$ti-prefix}-arrows-split:before { content: $ti-icon-arrows-split; } +.#{$ti-prefix}-arrows-split-2:before { content: $ti-icon-arrows-split-2; } +.#{$ti-prefix}-arrows-transfer-down:before { content: $ti-icon-arrows-transfer-down; } +.#{$ti-prefix}-arrows-transfer-up:before { content: $ti-icon-arrows-transfer-up; } +.#{$ti-prefix}-arrows-up:before { content: $ti-icon-arrows-up; } +.#{$ti-prefix}-arrows-up-down:before { content: $ti-icon-arrows-up-down; } +.#{$ti-prefix}-arrows-up-left:before { content: $ti-icon-arrows-up-left; } +.#{$ti-prefix}-arrows-up-right:before { content: $ti-icon-arrows-up-right; } +.#{$ti-prefix}-arrows-vertical:before { content: $ti-icon-arrows-vertical; } +.#{$ti-prefix}-artboard:before { content: $ti-icon-artboard; } +.#{$ti-prefix}-artboard-off:before { content: $ti-icon-artboard-off; } +.#{$ti-prefix}-article:before { content: $ti-icon-article; } +.#{$ti-prefix}-article-off:before { content: $ti-icon-article-off; } +.#{$ti-prefix}-aspect-ratio:before { content: $ti-icon-aspect-ratio; } +.#{$ti-prefix}-aspect-ratio-off:before { content: $ti-icon-aspect-ratio-off; } +.#{$ti-prefix}-assembly:before { content: $ti-icon-assembly; } +.#{$ti-prefix}-assembly-off:before { content: $ti-icon-assembly-off; } +.#{$ti-prefix}-asset:before { content: $ti-icon-asset; } +.#{$ti-prefix}-asterisk:before { content: $ti-icon-asterisk; } +.#{$ti-prefix}-asterisk-simple:before { content: $ti-icon-asterisk-simple; } +.#{$ti-prefix}-at:before { content: $ti-icon-at; } +.#{$ti-prefix}-at-off:before { content: $ti-icon-at-off; } +.#{$ti-prefix}-atom:before { content: $ti-icon-atom; } +.#{$ti-prefix}-atom-2:before { content: $ti-icon-atom-2; } +.#{$ti-prefix}-atom-off:before { content: $ti-icon-atom-off; } +.#{$ti-prefix}-augmented-reality:before { content: $ti-icon-augmented-reality; } +.#{$ti-prefix}-augmented-reality-2:before { content: $ti-icon-augmented-reality-2; } +.#{$ti-prefix}-augmented-reality-off:before { content: $ti-icon-augmented-reality-off; } +.#{$ti-prefix}-award:before { content: $ti-icon-award; } +.#{$ti-prefix}-award-off:before { content: $ti-icon-award-off; } +.#{$ti-prefix}-axe:before { content: $ti-icon-axe; } +.#{$ti-prefix}-axis-x:before { content: $ti-icon-axis-x; } +.#{$ti-prefix}-axis-y:before { content: $ti-icon-axis-y; } +.#{$ti-prefix}-baby-bottle:before { content: $ti-icon-baby-bottle; } +.#{$ti-prefix}-baby-carriage:before { content: $ti-icon-baby-carriage; } +.#{$ti-prefix}-backhoe:before { content: $ti-icon-backhoe; } +.#{$ti-prefix}-backpack:before { content: $ti-icon-backpack; } +.#{$ti-prefix}-backpack-off:before { content: $ti-icon-backpack-off; } +.#{$ti-prefix}-backspace:before { content: $ti-icon-backspace; } +.#{$ti-prefix}-badge:before { content: $ti-icon-badge; } +.#{$ti-prefix}-badge-3d:before { content: $ti-icon-badge-3d; } +.#{$ti-prefix}-badge-4k:before { content: $ti-icon-badge-4k; } +.#{$ti-prefix}-badge-8k:before { content: $ti-icon-badge-8k; } +.#{$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; } +.#{$ti-prefix}-badge-tm:before { content: $ti-icon-badge-tm; } +.#{$ti-prefix}-badge-vo:before { content: $ti-icon-badge-vo; } +.#{$ti-prefix}-badge-vr:before { content: $ti-icon-badge-vr; } +.#{$ti-prefix}-badge-wc:before { content: $ti-icon-badge-wc; } +.#{$ti-prefix}-badges:before { content: $ti-icon-badges; } +.#{$ti-prefix}-badges-off:before { content: $ti-icon-badges-off; } +.#{$ti-prefix}-baguette:before { content: $ti-icon-baguette; } +.#{$ti-prefix}-ball-american-football:before { content: $ti-icon-ball-american-football; } +.#{$ti-prefix}-ball-american-football-off:before { content: $ti-icon-ball-american-football-off; } +.#{$ti-prefix}-ball-baseball:before { content: $ti-icon-ball-baseball; } +.#{$ti-prefix}-ball-basketball:before { content: $ti-icon-ball-basketball; } +.#{$ti-prefix}-ball-bowling:before { content: $ti-icon-ball-bowling; } +.#{$ti-prefix}-ball-football:before { content: $ti-icon-ball-football; } +.#{$ti-prefix}-ball-football-off:before { content: $ti-icon-ball-football-off; } +.#{$ti-prefix}-ball-tennis:before { content: $ti-icon-ball-tennis; } +.#{$ti-prefix}-ball-volleyball:before { content: $ti-icon-ball-volleyball; } +.#{$ti-prefix}-ballon:before { content: $ti-icon-ballon; } +.#{$ti-prefix}-ballon-off:before { content: $ti-icon-ballon-off; } +.#{$ti-prefix}-ballpen:before { content: $ti-icon-ballpen; } +.#{$ti-prefix}-ballpen-off:before { content: $ti-icon-ballpen-off; } +.#{$ti-prefix}-ban:before { content: $ti-icon-ban; } +.#{$ti-prefix}-bandage:before { content: $ti-icon-bandage; } +.#{$ti-prefix}-bandage-off:before { content: $ti-icon-bandage-off; } +.#{$ti-prefix}-barbell:before { content: $ti-icon-barbell; } +.#{$ti-prefix}-barbell-off:before { content: $ti-icon-barbell-off; } +.#{$ti-prefix}-barcode:before { content: $ti-icon-barcode; } +.#{$ti-prefix}-barcode-off:before { content: $ti-icon-barcode-off; } +.#{$ti-prefix}-barrel:before { content: $ti-icon-barrel; } +.#{$ti-prefix}-barrel-off:before { content: $ti-icon-barrel-off; } +.#{$ti-prefix}-barrier-block:before { content: $ti-icon-barrier-block; } +.#{$ti-prefix}-barrier-block-off:before { content: $ti-icon-barrier-block-off; } +.#{$ti-prefix}-baseline:before { content: $ti-icon-baseline; } +.#{$ti-prefix}-basket:before { content: $ti-icon-basket; } +.#{$ti-prefix}-basket-off:before { content: $ti-icon-basket-off; } +.#{$ti-prefix}-bat:before { content: $ti-icon-bat; } +.#{$ti-prefix}-bath:before { content: $ti-icon-bath; } +.#{$ti-prefix}-bath-off:before { content: $ti-icon-bath-off; } +.#{$ti-prefix}-battery:before { content: $ti-icon-battery; } +.#{$ti-prefix}-battery-1:before { content: $ti-icon-battery-1; } +.#{$ti-prefix}-battery-2:before { content: $ti-icon-battery-2; } +.#{$ti-prefix}-battery-3:before { content: $ti-icon-battery-3; } +.#{$ti-prefix}-battery-4:before { content: $ti-icon-battery-4; } +.#{$ti-prefix}-battery-automotive:before { content: $ti-icon-battery-automotive; } +.#{$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; } +.#{$ti-prefix}-bed:before { content: $ti-icon-bed; } +.#{$ti-prefix}-bed-off:before { content: $ti-icon-bed-off; } +.#{$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; } +.#{$ti-prefix}-bell-ringing:before { content: $ti-icon-bell-ringing; } +.#{$ti-prefix}-bell-ringing-2:before { content: $ti-icon-bell-ringing-2; } +.#{$ti-prefix}-bell-school:before { content: $ti-icon-bell-school; } +.#{$ti-prefix}-bell-x:before { content: $ti-icon-bell-x; } +.#{$ti-prefix}-bell-z:before { content: $ti-icon-bell-z; } +.#{$ti-prefix}-beta:before { content: $ti-icon-beta; } +.#{$ti-prefix}-bible:before { content: $ti-icon-bible; } +.#{$ti-prefix}-bike:before { content: $ti-icon-bike; } +.#{$ti-prefix}-bike-off:before { content: $ti-icon-bike-off; } +.#{$ti-prefix}-binary:before { content: $ti-icon-binary; } +.#{$ti-prefix}-binary-off:before { content: $ti-icon-binary-off; } +.#{$ti-prefix}-binary-tree:before { content: $ti-icon-binary-tree; } +.#{$ti-prefix}-binary-tree-2:before { content: $ti-icon-binary-tree-2; } +.#{$ti-prefix}-biohazard:before { content: $ti-icon-biohazard; } +.#{$ti-prefix}-biohazard-off:before { content: $ti-icon-biohazard-off; } +.#{$ti-prefix}-blade:before { content: $ti-icon-blade; } +.#{$ti-prefix}-bleach:before { content: $ti-icon-bleach; } +.#{$ti-prefix}-bleach-chlorine:before { content: $ti-icon-bleach-chlorine; } +.#{$ti-prefix}-bleach-no-chlorine:before { content: $ti-icon-bleach-no-chlorine; } +.#{$ti-prefix}-bleach-off:before { content: $ti-icon-bleach-off; } +.#{$ti-prefix}-blockquote:before { content: $ti-icon-blockquote; } +.#{$ti-prefix}-bluetooth:before { content: $ti-icon-bluetooth; } +.#{$ti-prefix}-bluetooth-connected:before { content: $ti-icon-bluetooth-connected; } +.#{$ti-prefix}-bluetooth-off:before { content: $ti-icon-bluetooth-off; } +.#{$ti-prefix}-bluetooth-x:before { content: $ti-icon-bluetooth-x; } +.#{$ti-prefix}-blur:before { content: $ti-icon-blur; } +.#{$ti-prefix}-blur-off:before { content: $ti-icon-blur-off; } +.#{$ti-prefix}-bmp:before { content: $ti-icon-bmp; } +.#{$ti-prefix}-bold:before { content: $ti-icon-bold; } +.#{$ti-prefix}-bold-off:before { content: $ti-icon-bold-off; } +.#{$ti-prefix}-bolt:before { content: $ti-icon-bolt; } +.#{$ti-prefix}-bolt-off:before { content: $ti-icon-bolt-off; } +.#{$ti-prefix}-bomb:before { content: $ti-icon-bomb; } +.#{$ti-prefix}-bone:before { content: $ti-icon-bone; } +.#{$ti-prefix}-bone-off:before { content: $ti-icon-bone-off; } +.#{$ti-prefix}-bong:before { content: $ti-icon-bong; } +.#{$ti-prefix}-bong-off:before { content: $ti-icon-bong-off; } +.#{$ti-prefix}-book:before { content: $ti-icon-book; } +.#{$ti-prefix}-book-2:before { content: $ti-icon-book-2; } +.#{$ti-prefix}-book-download:before { content: $ti-icon-book-download; } +.#{$ti-prefix}-book-off:before { content: $ti-icon-book-off; } +.#{$ti-prefix}-book-upload:before { content: $ti-icon-book-upload; } +.#{$ti-prefix}-bookmark:before { content: $ti-icon-bookmark; } +.#{$ti-prefix}-bookmark-off:before { content: $ti-icon-bookmark-off; } +.#{$ti-prefix}-bookmarks:before { content: $ti-icon-bookmarks; } +.#{$ti-prefix}-bookmarks-off:before { content: $ti-icon-bookmarks-off; } +.#{$ti-prefix}-books:before { content: $ti-icon-books; } +.#{$ti-prefix}-books-off:before { content: $ti-icon-books-off; } +.#{$ti-prefix}-border-all:before { content: $ti-icon-border-all; } +.#{$ti-prefix}-border-bottom:before { content: $ti-icon-border-bottom; } +.#{$ti-prefix}-border-horizontal:before { content: $ti-icon-border-horizontal; } +.#{$ti-prefix}-border-inner:before { content: $ti-icon-border-inner; } +.#{$ti-prefix}-border-left:before { content: $ti-icon-border-left; } +.#{$ti-prefix}-border-none:before { content: $ti-icon-border-none; } +.#{$ti-prefix}-border-outer:before { content: $ti-icon-border-outer; } +.#{$ti-prefix}-border-radius:before { content: $ti-icon-border-radius; } +.#{$ti-prefix}-border-right:before { content: $ti-icon-border-right; } +.#{$ti-prefix}-border-style:before { content: $ti-icon-border-style; } +.#{$ti-prefix}-border-style-2:before { content: $ti-icon-border-style-2; } +.#{$ti-prefix}-border-top:before { content: $ti-icon-border-top; } +.#{$ti-prefix}-border-vertical:before { content: $ti-icon-border-vertical; } +.#{$ti-prefix}-bottle:before { content: $ti-icon-bottle; } +.#{$ti-prefix}-bottle-off:before { content: $ti-icon-bottle-off; } +.#{$ti-prefix}-bounce-left:before { content: $ti-icon-bounce-left; } +.#{$ti-prefix}-bounce-right:before { content: $ti-icon-bounce-right; } +.#{$ti-prefix}-bow:before { content: $ti-icon-bow; } +.#{$ti-prefix}-bowl:before { content: $ti-icon-bowl; } +.#{$ti-prefix}-box:before { content: $ti-icon-box; } +.#{$ti-prefix}-box-align-bottom:before { content: $ti-icon-box-align-bottom; } +.#{$ti-prefix}-box-align-bottom-left:before { content: $ti-icon-box-align-bottom-left; } +.#{$ti-prefix}-box-align-bottom-right:before { content: $ti-icon-box-align-bottom-right; } +.#{$ti-prefix}-box-align-left:before { content: $ti-icon-box-align-left; } +.#{$ti-prefix}-box-align-right:before { content: $ti-icon-box-align-right; } +.#{$ti-prefix}-box-align-top:before { content: $ti-icon-box-align-top; } +.#{$ti-prefix}-box-align-top-left:before { content: $ti-icon-box-align-top-left; } +.#{$ti-prefix}-box-align-top-right:before { content: $ti-icon-box-align-top-right; } +.#{$ti-prefix}-box-margin:before { content: $ti-icon-box-margin; } +.#{$ti-prefix}-box-model:before { content: $ti-icon-box-model; } +.#{$ti-prefix}-box-model-2:before { content: $ti-icon-box-model-2; } +.#{$ti-prefix}-box-model-2-off:before { content: $ti-icon-box-model-2-off; } +.#{$ti-prefix}-box-model-off:before { content: $ti-icon-box-model-off; } +.#{$ti-prefix}-box-multiple:before { content: $ti-icon-box-multiple; } +.#{$ti-prefix}-box-multiple-0:before { content: $ti-icon-box-multiple-0; } +.#{$ti-prefix}-box-multiple-1:before { content: $ti-icon-box-multiple-1; } +.#{$ti-prefix}-box-multiple-2:before { content: $ti-icon-box-multiple-2; } +.#{$ti-prefix}-box-multiple-3:before { content: $ti-icon-box-multiple-3; } +.#{$ti-prefix}-box-multiple-4:before { content: $ti-icon-box-multiple-4; } +.#{$ti-prefix}-box-multiple-5:before { content: $ti-icon-box-multiple-5; } +.#{$ti-prefix}-box-multiple-6:before { content: $ti-icon-box-multiple-6; } +.#{$ti-prefix}-box-multiple-7:before { content: $ti-icon-box-multiple-7; } +.#{$ti-prefix}-box-multiple-8:before { content: $ti-icon-box-multiple-8; } +.#{$ti-prefix}-box-multiple-9:before { content: $ti-icon-box-multiple-9; } +.#{$ti-prefix}-box-off:before { content: $ti-icon-box-off; } +.#{$ti-prefix}-box-padding:before { content: $ti-icon-box-padding; } +.#{$ti-prefix}-box-seam:before { content: $ti-icon-box-seam; } +.#{$ti-prefix}-braces:before { content: $ti-icon-braces; } +.#{$ti-prefix}-braces-off:before { content: $ti-icon-braces-off; } +.#{$ti-prefix}-brackets:before { content: $ti-icon-brackets; } +.#{$ti-prefix}-brackets-contain:before { content: $ti-icon-brackets-contain; } +.#{$ti-prefix}-brackets-contain-end:before { content: $ti-icon-brackets-contain-end; } +.#{$ti-prefix}-brackets-contain-start:before { content: $ti-icon-brackets-contain-start; } +.#{$ti-prefix}-brackets-off:before { content: $ti-icon-brackets-off; } +.#{$ti-prefix}-braile:before { content: $ti-icon-braile; } +.#{$ti-prefix}-brain:before { content: $ti-icon-brain; } +.#{$ti-prefix}-brand-4chan:before { content: $ti-icon-brand-4chan; } +.#{$ti-prefix}-brand-abstract:before { content: $ti-icon-brand-abstract; } +.#{$ti-prefix}-brand-adobe:before { content: $ti-icon-brand-adobe; } +.#{$ti-prefix}-brand-adonis-js:before { content: $ti-icon-brand-adonis-js; } +.#{$ti-prefix}-brand-airbnb:before { content: $ti-icon-brand-airbnb; } +.#{$ti-prefix}-brand-airtable:before { content: $ti-icon-brand-airtable; } +.#{$ti-prefix}-brand-algolia:before { content: $ti-icon-brand-algolia; } +.#{$ti-prefix}-brand-alpine-js:before { content: $ti-icon-brand-alpine-js; } +.#{$ti-prefix}-brand-amazon:before { content: $ti-icon-brand-amazon; } +.#{$ti-prefix}-brand-amd:before { content: $ti-icon-brand-amd; } +.#{$ti-prefix}-brand-amigo:before { content: $ti-icon-brand-amigo; } +.#{$ti-prefix}-brand-amongus:before { content: $ti-icon-brand-amongus; } +.#{$ti-prefix}-brand-android:before { content: $ti-icon-brand-android; } +.#{$ti-prefix}-brand-angular:before { content: $ti-icon-brand-angular; } +.#{$ti-prefix}-brand-ao3:before { content: $ti-icon-brand-ao3; } +.#{$ti-prefix}-brand-appgallery:before { content: $ti-icon-brand-appgallery; } +.#{$ti-prefix}-brand-apple:before { content: $ti-icon-brand-apple; } +.#{$ti-prefix}-brand-apple-arcade:before { content: $ti-icon-brand-apple-arcade; } +.#{$ti-prefix}-brand-apple-podcast:before { content: $ti-icon-brand-apple-podcast; } +.#{$ti-prefix}-brand-appstore:before { content: $ti-icon-brand-appstore; } +.#{$ti-prefix}-brand-asana:before { content: $ti-icon-brand-asana; } +.#{$ti-prefix}-brand-backbone:before { content: $ti-icon-brand-backbone; } +.#{$ti-prefix}-brand-badoo:before { content: $ti-icon-brand-badoo; } +.#{$ti-prefix}-brand-baidu:before { content: $ti-icon-brand-baidu; } +.#{$ti-prefix}-brand-bandcamp:before { content: $ti-icon-brand-bandcamp; } +.#{$ti-prefix}-brand-bandlab:before { content: $ti-icon-brand-bandlab; } +.#{$ti-prefix}-brand-beats:before { content: $ti-icon-brand-beats; } +.#{$ti-prefix}-brand-behance:before { content: $ti-icon-brand-behance; } +.#{$ti-prefix}-brand-binance:before { content: $ti-icon-brand-binance; } +.#{$ti-prefix}-brand-bing:before { content: $ti-icon-brand-bing; } +.#{$ti-prefix}-brand-bitbucket:before { content: $ti-icon-brand-bitbucket; } +.#{$ti-prefix}-brand-blackbery:before { content: $ti-icon-brand-blackbery; } +.#{$ti-prefix}-brand-blender:before { content: $ti-icon-brand-blender; } +.#{$ti-prefix}-brand-blogger:before { content: $ti-icon-brand-blogger; } +.#{$ti-prefix}-brand-booking:before { content: $ti-icon-brand-booking; } +.#{$ti-prefix}-brand-bootstrap:before { content: $ti-icon-brand-bootstrap; } +.#{$ti-prefix}-brand-bulma:before { content: $ti-icon-brand-bulma; } +.#{$ti-prefix}-brand-bumble:before { content: $ti-icon-brand-bumble; } +.#{$ti-prefix}-brand-bunpo:before { content: $ti-icon-brand-bunpo; } +.#{$ti-prefix}-brand-c-sharp:before { content: $ti-icon-brand-c-sharp; } +.#{$ti-prefix}-brand-campaignmonitor:before { content: $ti-icon-brand-campaignmonitor; } +.#{$ti-prefix}-brand-carbon:before { content: $ti-icon-brand-carbon; } +.#{$ti-prefix}-brand-cashapp:before { content: $ti-icon-brand-cashapp; } +.#{$ti-prefix}-brand-chrome:before { content: $ti-icon-brand-chrome; } +.#{$ti-prefix}-brand-citymapper:before { content: $ti-icon-brand-citymapper; } +.#{$ti-prefix}-brand-codecov:before { content: $ti-icon-brand-codecov; } +.#{$ti-prefix}-brand-codepen:before { content: $ti-icon-brand-codepen; } +.#{$ti-prefix}-brand-codesandbox:before { content: $ti-icon-brand-codesandbox; } +.#{$ti-prefix}-brand-cohost:before { content: $ti-icon-brand-cohost; } +.#{$ti-prefix}-brand-coinbase:before { content: $ti-icon-brand-coinbase; } +.#{$ti-prefix}-brand-comedy-central:before { content: $ti-icon-brand-comedy-central; } +.#{$ti-prefix}-brand-coreos:before { content: $ti-icon-brand-coreos; } +.#{$ti-prefix}-brand-couchdb:before { content: $ti-icon-brand-couchdb; } +.#{$ti-prefix}-brand-couchsurfing:before { content: $ti-icon-brand-couchsurfing; } +.#{$ti-prefix}-brand-cpp:before { content: $ti-icon-brand-cpp; } +.#{$ti-prefix}-brand-css3:before { content: $ti-icon-brand-css3; } +.#{$ti-prefix}-brand-ctemplar:before { content: $ti-icon-brand-ctemplar; } +.#{$ti-prefix}-brand-cucumber:before { content: $ti-icon-brand-cucumber; } +.#{$ti-prefix}-brand-cupra:before { content: $ti-icon-brand-cupra; } +.#{$ti-prefix}-brand-cypress:before { content: $ti-icon-brand-cypress; } +.#{$ti-prefix}-brand-d3:before { content: $ti-icon-brand-d3; } +.#{$ti-prefix}-brand-days-counter:before { content: $ti-icon-brand-days-counter; } +.#{$ti-prefix}-brand-dcos:before { content: $ti-icon-brand-dcos; } +.#{$ti-prefix}-brand-debian:before { content: $ti-icon-brand-debian; } +.#{$ti-prefix}-brand-deliveroo:before { content: $ti-icon-brand-deliveroo; } +.#{$ti-prefix}-brand-deno:before { content: $ti-icon-brand-deno; } +.#{$ti-prefix}-brand-denodo:before { content: $ti-icon-brand-denodo; } +.#{$ti-prefix}-brand-deviantart:before { content: $ti-icon-brand-deviantart; } +.#{$ti-prefix}-brand-dingtalk:before { content: $ti-icon-brand-dingtalk; } +.#{$ti-prefix}-brand-discord:before { content: $ti-icon-brand-discord; } +.#{$ti-prefix}-brand-disney:before { content: $ti-icon-brand-disney; } +.#{$ti-prefix}-brand-disqus:before { content: $ti-icon-brand-disqus; } +.#{$ti-prefix}-brand-django:before { content: $ti-icon-brand-django; } +.#{$ti-prefix}-brand-docker:before { content: $ti-icon-brand-docker; } +.#{$ti-prefix}-brand-doctrine:before { content: $ti-icon-brand-doctrine; } +.#{$ti-prefix}-brand-dolby-digital:before { content: $ti-icon-brand-dolby-digital; } +.#{$ti-prefix}-brand-douban:before { content: $ti-icon-brand-douban; } +.#{$ti-prefix}-brand-dribbble:before { content: $ti-icon-brand-dribbble; } +.#{$ti-prefix}-brand-drops:before { content: $ti-icon-brand-drops; } +.#{$ti-prefix}-brand-drupal:before { content: $ti-icon-brand-drupal; } +.#{$ti-prefix}-brand-edge:before { content: $ti-icon-brand-edge; } +.#{$ti-prefix}-brand-elastic:before { content: $ti-icon-brand-elastic; } +.#{$ti-prefix}-brand-ember:before { content: $ti-icon-brand-ember; } +.#{$ti-prefix}-brand-envato:before { content: $ti-icon-brand-envato; } +.#{$ti-prefix}-brand-etsy:before { content: $ti-icon-brand-etsy; } +.#{$ti-prefix}-brand-evernote:before { content: $ti-icon-brand-evernote; } +.#{$ti-prefix}-brand-facebook:before { content: $ti-icon-brand-facebook; } +.#{$ti-prefix}-brand-figma:before { content: $ti-icon-brand-figma; } +.#{$ti-prefix}-brand-finder:before { content: $ti-icon-brand-finder; } +.#{$ti-prefix}-brand-firebase:before { content: $ti-icon-brand-firebase; } +.#{$ti-prefix}-brand-firefox:before { content: $ti-icon-brand-firefox; } +.#{$ti-prefix}-brand-flickr:before { content: $ti-icon-brand-flickr; } +.#{$ti-prefix}-brand-flightradar24:before { content: $ti-icon-brand-flightradar24; } +.#{$ti-prefix}-brand-flipboard:before { content: $ti-icon-brand-flipboard; } +.#{$ti-prefix}-brand-flutter:before { content: $ti-icon-brand-flutter; } +.#{$ti-prefix}-brand-fortnite:before { content: $ti-icon-brand-fortnite; } +.#{$ti-prefix}-brand-foursquare:before { content: $ti-icon-brand-foursquare; } +.#{$ti-prefix}-brand-framer:before { content: $ti-icon-brand-framer; } +.#{$ti-prefix}-brand-funimation:before { content: $ti-icon-brand-funimation; } +.#{$ti-prefix}-brand-gatsby:before { content: $ti-icon-brand-gatsby; } +.#{$ti-prefix}-brand-git:before { content: $ti-icon-brand-git; } +.#{$ti-prefix}-brand-github:before { content: $ti-icon-brand-github; } +.#{$ti-prefix}-brand-github-copilot:before { content: $ti-icon-brand-github-copilot; } +.#{$ti-prefix}-brand-gitlab:before { content: $ti-icon-brand-gitlab; } +.#{$ti-prefix}-brand-gmail:before { content: $ti-icon-brand-gmail; } +.#{$ti-prefix}-brand-google:before { content: $ti-icon-brand-google; } +.#{$ti-prefix}-brand-google-analytics:before { content: $ti-icon-brand-google-analytics; } +.#{$ti-prefix}-brand-google-big-query:before { content: $ti-icon-brand-google-big-query; } +.#{$ti-prefix}-brand-google-drive:before { content: $ti-icon-brand-google-drive; } +.#{$ti-prefix}-brand-google-fit:before { content: $ti-icon-brand-google-fit; } +.#{$ti-prefix}-brand-google-home:before { content: $ti-icon-brand-google-home; } +.#{$ti-prefix}-brand-google-one:before { content: $ti-icon-brand-google-one; } +.#{$ti-prefix}-brand-google-photos:before { content: $ti-icon-brand-google-photos; } +.#{$ti-prefix}-brand-google-play:before { content: $ti-icon-brand-google-play; } +.#{$ti-prefix}-brand-google-podcasts:before { content: $ti-icon-brand-google-podcasts; } +.#{$ti-prefix}-brand-grammarly:before { content: $ti-icon-brand-grammarly; } +.#{$ti-prefix}-brand-graphql:before { content: $ti-icon-brand-graphql; } +.#{$ti-prefix}-brand-gravatar:before { content: $ti-icon-brand-gravatar; } +.#{$ti-prefix}-brand-grindr:before { content: $ti-icon-brand-grindr; } +.#{$ti-prefix}-brand-guardian:before { content: $ti-icon-brand-guardian; } +.#{$ti-prefix}-brand-gumroad:before { content: $ti-icon-brand-gumroad; } +.#{$ti-prefix}-brand-hbo:before { content: $ti-icon-brand-hbo; } +.#{$ti-prefix}-brand-headlessui:before { content: $ti-icon-brand-headlessui; } +.#{$ti-prefix}-brand-hipchat:before { content: $ti-icon-brand-hipchat; } +.#{$ti-prefix}-brand-html5:before { content: $ti-icon-brand-html5; } +.#{$ti-prefix}-brand-inertia:before { content: $ti-icon-brand-inertia; } +.#{$ti-prefix}-brand-instagram:before { content: $ti-icon-brand-instagram; } +.#{$ti-prefix}-brand-intercom:before { content: $ti-icon-brand-intercom; } +.#{$ti-prefix}-brand-javascript:before { content: $ti-icon-brand-javascript; } +.#{$ti-prefix}-brand-kickstarter:before { content: $ti-icon-brand-kickstarter; } +.#{$ti-prefix}-brand-kotlin:before { content: $ti-icon-brand-kotlin; } +.#{$ti-prefix}-brand-laravel:before { content: $ti-icon-brand-laravel; } +.#{$ti-prefix}-brand-lastfm:before { content: $ti-icon-brand-lastfm; } +.#{$ti-prefix}-brand-linkedin:before { content: $ti-icon-brand-linkedin; } +.#{$ti-prefix}-brand-linktree:before { content: $ti-icon-brand-linktree; } +.#{$ti-prefix}-brand-linqpad:before { content: $ti-icon-brand-linqpad; } +.#{$ti-prefix}-brand-loom:before { content: $ti-icon-brand-loom; } +.#{$ti-prefix}-brand-mailgun:before { content: $ti-icon-brand-mailgun; } +.#{$ti-prefix}-brand-mantine:before { content: $ti-icon-brand-mantine; } +.#{$ti-prefix}-brand-mastercard:before { content: $ti-icon-brand-mastercard; } +.#{$ti-prefix}-brand-mastodon:before { content: $ti-icon-brand-mastodon; } +.#{$ti-prefix}-brand-matrix:before { content: $ti-icon-brand-matrix; } +.#{$ti-prefix}-brand-mcdonalds:before { content: $ti-icon-brand-mcdonalds; } +.#{$ti-prefix}-brand-medium:before { content: $ti-icon-brand-medium; } +.#{$ti-prefix}-brand-mercedes:before { content: $ti-icon-brand-mercedes; } +.#{$ti-prefix}-brand-messenger:before { content: $ti-icon-brand-messenger; } +.#{$ti-prefix}-brand-meta:before { content: $ti-icon-brand-meta; } +.#{$ti-prefix}-brand-miniprogram:before { content: $ti-icon-brand-miniprogram; } +.#{$ti-prefix}-brand-mixpanel:before { content: $ti-icon-brand-mixpanel; } +.#{$ti-prefix}-brand-monday:before { content: $ti-icon-brand-monday; } +.#{$ti-prefix}-brand-mongodb:before { content: $ti-icon-brand-mongodb; } +.#{$ti-prefix}-brand-my-oppo:before { content: $ti-icon-brand-my-oppo; } +.#{$ti-prefix}-brand-mysql:before { content: $ti-icon-brand-mysql; } +.#{$ti-prefix}-brand-national-geographic:before { content: $ti-icon-brand-national-geographic; } +.#{$ti-prefix}-brand-nem:before { content: $ti-icon-brand-nem; } +.#{$ti-prefix}-brand-netbeans:before { content: $ti-icon-brand-netbeans; } +.#{$ti-prefix}-brand-netease-music:before { content: $ti-icon-brand-netease-music; } +.#{$ti-prefix}-brand-netflix:before { content: $ti-icon-brand-netflix; } +.#{$ti-prefix}-brand-nexo:before { content: $ti-icon-brand-nexo; } +.#{$ti-prefix}-brand-nextcloud:before { content: $ti-icon-brand-nextcloud; } +.#{$ti-prefix}-brand-nextjs:before { content: $ti-icon-brand-nextjs; } +.#{$ti-prefix}-brand-nord-vpn:before { content: $ti-icon-brand-nord-vpn; } +.#{$ti-prefix}-brand-notion:before { content: $ti-icon-brand-notion; } +.#{$ti-prefix}-brand-npm:before { content: $ti-icon-brand-npm; } +.#{$ti-prefix}-brand-nuxt:before { content: $ti-icon-brand-nuxt; } +.#{$ti-prefix}-brand-nytimes:before { content: $ti-icon-brand-nytimes; } +.#{$ti-prefix}-brand-office:before { content: $ti-icon-brand-office; } +.#{$ti-prefix}-brand-ok-ru:before { content: $ti-icon-brand-ok-ru; } +.#{$ti-prefix}-brand-onedrive:before { content: $ti-icon-brand-onedrive; } +.#{$ti-prefix}-brand-onlyfans:before { content: $ti-icon-brand-onlyfans; } +.#{$ti-prefix}-brand-open-source:before { content: $ti-icon-brand-open-source; } +.#{$ti-prefix}-brand-openvpn:before { content: $ti-icon-brand-openvpn; } +.#{$ti-prefix}-brand-opera:before { content: $ti-icon-brand-opera; } +.#{$ti-prefix}-brand-pagekit:before { content: $ti-icon-brand-pagekit; } +.#{$ti-prefix}-brand-patreon:before { content: $ti-icon-brand-patreon; } +.#{$ti-prefix}-brand-paypal:before { content: $ti-icon-brand-paypal; } +.#{$ti-prefix}-brand-paypay:before { content: $ti-icon-brand-paypay; } +.#{$ti-prefix}-brand-peanut:before { content: $ti-icon-brand-peanut; } +.#{$ti-prefix}-brand-pepsi:before { content: $ti-icon-brand-pepsi; } +.#{$ti-prefix}-brand-php:before { content: $ti-icon-brand-php; } +.#{$ti-prefix}-brand-picsart:before { content: $ti-icon-brand-picsart; } +.#{$ti-prefix}-brand-pinterest:before { content: $ti-icon-brand-pinterest; } +.#{$ti-prefix}-brand-pocket:before { content: $ti-icon-brand-pocket; } +.#{$ti-prefix}-brand-polymer:before { content: $ti-icon-brand-polymer; } +.#{$ti-prefix}-brand-powershell:before { content: $ti-icon-brand-powershell; } +.#{$ti-prefix}-brand-prisma:before { content: $ti-icon-brand-prisma; } +.#{$ti-prefix}-brand-producthunt:before { content: $ti-icon-brand-producthunt; } +.#{$ti-prefix}-brand-pushbullet:before { content: $ti-icon-brand-pushbullet; } +.#{$ti-prefix}-brand-pushover:before { content: $ti-icon-brand-pushover; } +.#{$ti-prefix}-brand-python:before { content: $ti-icon-brand-python; } +.#{$ti-prefix}-brand-qq:before { content: $ti-icon-brand-qq; } +.#{$ti-prefix}-brand-react:before { content: $ti-icon-brand-react; } +.#{$ti-prefix}-brand-react-native:before { content: $ti-icon-brand-react-native; } +.#{$ti-prefix}-brand-reason:before { content: $ti-icon-brand-reason; } +.#{$ti-prefix}-brand-reddit:before { content: $ti-icon-brand-reddit; } +.#{$ti-prefix}-brand-redhat:before { content: $ti-icon-brand-redhat; } +.#{$ti-prefix}-brand-redux:before { content: $ti-icon-brand-redux; } +.#{$ti-prefix}-brand-revolut:before { content: $ti-icon-brand-revolut; } +.#{$ti-prefix}-brand-safari:before { content: $ti-icon-brand-safari; } +.#{$ti-prefix}-brand-samsungpass:before { content: $ti-icon-brand-samsungpass; } +.#{$ti-prefix}-brand-sass:before { content: $ti-icon-brand-sass; } +.#{$ti-prefix}-brand-sentry:before { content: $ti-icon-brand-sentry; } +.#{$ti-prefix}-brand-sharik:before { content: $ti-icon-brand-sharik; } +.#{$ti-prefix}-brand-shazam:before { content: $ti-icon-brand-shazam; } +.#{$ti-prefix}-brand-shopee:before { content: $ti-icon-brand-shopee; } +.#{$ti-prefix}-brand-sketch:before { content: $ti-icon-brand-sketch; } +.#{$ti-prefix}-brand-skype:before { content: $ti-icon-brand-skype; } +.#{$ti-prefix}-brand-slack:before { content: $ti-icon-brand-slack; } +.#{$ti-prefix}-brand-snapchat:before { content: $ti-icon-brand-snapchat; } +.#{$ti-prefix}-brand-snapseed:before { content: $ti-icon-brand-snapseed; } +.#{$ti-prefix}-brand-snowflake:before { content: $ti-icon-brand-snowflake; } +.#{$ti-prefix}-brand-socket-io:before { content: $ti-icon-brand-socket-io; } +.#{$ti-prefix}-brand-solidjs:before { content: $ti-icon-brand-solidjs; } +.#{$ti-prefix}-brand-soundcloud:before { content: $ti-icon-brand-soundcloud; } +.#{$ti-prefix}-brand-spacehey:before { content: $ti-icon-brand-spacehey; } +.#{$ti-prefix}-brand-spotify:before { content: $ti-icon-brand-spotify; } +.#{$ti-prefix}-brand-stackoverflow:before { content: $ti-icon-brand-stackoverflow; } +.#{$ti-prefix}-brand-stackshare:before { content: $ti-icon-brand-stackshare; } +.#{$ti-prefix}-brand-steam:before { content: $ti-icon-brand-steam; } +.#{$ti-prefix}-brand-storybook:before { content: $ti-icon-brand-storybook; } +.#{$ti-prefix}-brand-storytel:before { content: $ti-icon-brand-storytel; } +.#{$ti-prefix}-brand-strava:before { content: $ti-icon-brand-strava; } +.#{$ti-prefix}-brand-stripe:before { content: $ti-icon-brand-stripe; } +.#{$ti-prefix}-brand-sublime-text:before { content: $ti-icon-brand-sublime-text; } +.#{$ti-prefix}-brand-superhuman:before { content: $ti-icon-brand-superhuman; } +.#{$ti-prefix}-brand-supernova:before { content: $ti-icon-brand-supernova; } +.#{$ti-prefix}-brand-surfshark:before { content: $ti-icon-brand-surfshark; } +.#{$ti-prefix}-brand-svelte:before { content: $ti-icon-brand-svelte; } +.#{$ti-prefix}-brand-symfony:before { content: $ti-icon-brand-symfony; } +.#{$ti-prefix}-brand-tabler:before { content: $ti-icon-brand-tabler; } +.#{$ti-prefix}-brand-tailwind:before { content: $ti-icon-brand-tailwind; } +.#{$ti-prefix}-brand-taobao:before { content: $ti-icon-brand-taobao; } +.#{$ti-prefix}-brand-ted:before { content: $ti-icon-brand-ted; } +.#{$ti-prefix}-brand-telegram:before { content: $ti-icon-brand-telegram; } +.#{$ti-prefix}-brand-tether:before { content: $ti-icon-brand-tether; } +.#{$ti-prefix}-brand-threejs:before { content: $ti-icon-brand-threejs; } +.#{$ti-prefix}-brand-tidal:before { content: $ti-icon-brand-tidal; } +.#{$ti-prefix}-brand-tiktok:before { content: $ti-icon-brand-tiktok; } +.#{$ti-prefix}-brand-tinder:before { content: $ti-icon-brand-tinder; } +.#{$ti-prefix}-brand-topbuzz:before { content: $ti-icon-brand-topbuzz; } +.#{$ti-prefix}-brand-torchain:before { content: $ti-icon-brand-torchain; } +.#{$ti-prefix}-brand-toyota:before { content: $ti-icon-brand-toyota; } +.#{$ti-prefix}-brand-trello:before { content: $ti-icon-brand-trello; } +.#{$ti-prefix}-brand-tripadvisor:before { content: $ti-icon-brand-tripadvisor; } +.#{$ti-prefix}-brand-tumblr:before { content: $ti-icon-brand-tumblr; } +.#{$ti-prefix}-brand-twilio:before { content: $ti-icon-brand-twilio; } +.#{$ti-prefix}-brand-twitch:before { content: $ti-icon-brand-twitch; } +.#{$ti-prefix}-brand-twitter:before { content: $ti-icon-brand-twitter; } +.#{$ti-prefix}-brand-typescript:before { content: $ti-icon-brand-typescript; } +.#{$ti-prefix}-brand-uber:before { content: $ti-icon-brand-uber; } +.#{$ti-prefix}-brand-ubuntu:before { content: $ti-icon-brand-ubuntu; } +.#{$ti-prefix}-brand-unity:before { content: $ti-icon-brand-unity; } +.#{$ti-prefix}-brand-unsplash:before { content: $ti-icon-brand-unsplash; } +.#{$ti-prefix}-brand-upwork:before { content: $ti-icon-brand-upwork; } +.#{$ti-prefix}-brand-valorant:before { content: $ti-icon-brand-valorant; } +.#{$ti-prefix}-brand-vercel:before { content: $ti-icon-brand-vercel; } +.#{$ti-prefix}-brand-vimeo:before { content: $ti-icon-brand-vimeo; } +.#{$ti-prefix}-brand-vinted:before { content: $ti-icon-brand-vinted; } +.#{$ti-prefix}-brand-visa:before { content: $ti-icon-brand-visa; } +.#{$ti-prefix}-brand-visual-studio:before { content: $ti-icon-brand-visual-studio; } +.#{$ti-prefix}-brand-vite:before { content: $ti-icon-brand-vite; } +.#{$ti-prefix}-brand-vivaldi:before { content: $ti-icon-brand-vivaldi; } +.#{$ti-prefix}-brand-vk:before { content: $ti-icon-brand-vk; } +.#{$ti-prefix}-brand-volkswagen:before { content: $ti-icon-brand-volkswagen; } +.#{$ti-prefix}-brand-vsco:before { content: $ti-icon-brand-vsco; } +.#{$ti-prefix}-brand-vscode:before { content: $ti-icon-brand-vscode; } +.#{$ti-prefix}-brand-vue:before { content: $ti-icon-brand-vue; } +.#{$ti-prefix}-brand-walmart:before { content: $ti-icon-brand-walmart; } +.#{$ti-prefix}-brand-waze:before { content: $ti-icon-brand-waze; } +.#{$ti-prefix}-brand-webflow:before { content: $ti-icon-brand-webflow; } +.#{$ti-prefix}-brand-wechat:before { content: $ti-icon-brand-wechat; } +.#{$ti-prefix}-brand-weibo:before { content: $ti-icon-brand-weibo; } +.#{$ti-prefix}-brand-whatsapp:before { content: $ti-icon-brand-whatsapp; } +.#{$ti-prefix}-brand-windows:before { content: $ti-icon-brand-windows; } +.#{$ti-prefix}-brand-windy:before { content: $ti-icon-brand-windy; } +.#{$ti-prefix}-brand-wish:before { content: $ti-icon-brand-wish; } +.#{$ti-prefix}-brand-wix:before { content: $ti-icon-brand-wix; } +.#{$ti-prefix}-brand-wordpress:before { content: $ti-icon-brand-wordpress; } +.#{$ti-prefix}-brand-xbox:before { content: $ti-icon-brand-xbox; } +.#{$ti-prefix}-brand-xing:before { content: $ti-icon-brand-xing; } +.#{$ti-prefix}-brand-yahoo:before { content: $ti-icon-brand-yahoo; } +.#{$ti-prefix}-brand-yatse:before { content: $ti-icon-brand-yatse; } +.#{$ti-prefix}-brand-ycombinator:before { content: $ti-icon-brand-ycombinator; } +.#{$ti-prefix}-brand-youtube:before { content: $ti-icon-brand-youtube; } +.#{$ti-prefix}-brand-youtube-kids:before { content: $ti-icon-brand-youtube-kids; } +.#{$ti-prefix}-brand-zalando:before { content: $ti-icon-brand-zalando; } +.#{$ti-prefix}-brand-zapier:before { content: $ti-icon-brand-zapier; } +.#{$ti-prefix}-brand-zeit:before { content: $ti-icon-brand-zeit; } +.#{$ti-prefix}-brand-zhihu:before { content: $ti-icon-brand-zhihu; } +.#{$ti-prefix}-brand-zoom:before { content: $ti-icon-brand-zoom; } +.#{$ti-prefix}-brand-zulip:before { content: $ti-icon-brand-zulip; } +.#{$ti-prefix}-brand-zwift:before { content: $ti-icon-brand-zwift; } +.#{$ti-prefix}-bread:before { content: $ti-icon-bread; } +.#{$ti-prefix}-bread-off:before { content: $ti-icon-bread-off; } +.#{$ti-prefix}-briefcase:before { content: $ti-icon-briefcase; } +.#{$ti-prefix}-briefcase-off:before { content: $ti-icon-briefcase-off; } +.#{$ti-prefix}-brightness:before { content: $ti-icon-brightness; } +.#{$ti-prefix}-brightness-2:before { content: $ti-icon-brightness-2; } +.#{$ti-prefix}-brightness-down:before { content: $ti-icon-brightness-down; } +.#{$ti-prefix}-brightness-half:before { content: $ti-icon-brightness-half; } +.#{$ti-prefix}-brightness-off:before { content: $ti-icon-brightness-off; } +.#{$ti-prefix}-brightness-up:before { content: $ti-icon-brightness-up; } +.#{$ti-prefix}-broadcast:before { content: $ti-icon-broadcast; } +.#{$ti-prefix}-broadcast-off:before { content: $ti-icon-broadcast-off; } +.#{$ti-prefix}-browser:before { content: $ti-icon-browser; } +.#{$ti-prefix}-browser-check:before { content: $ti-icon-browser-check; } +.#{$ti-prefix}-browser-off:before { content: $ti-icon-browser-off; } +.#{$ti-prefix}-browser-plus:before { content: $ti-icon-browser-plus; } +.#{$ti-prefix}-browser-x:before { content: $ti-icon-browser-x; } +.#{$ti-prefix}-brush:before { content: $ti-icon-brush; } +.#{$ti-prefix}-brush-off:before { content: $ti-icon-brush-off; } +.#{$ti-prefix}-bucket:before { content: $ti-icon-bucket; } +.#{$ti-prefix}-bucket-droplet:before { content: $ti-icon-bucket-droplet; } +.#{$ti-prefix}-bucket-off:before { content: $ti-icon-bucket-off; } +.#{$ti-prefix}-bug:before { content: $ti-icon-bug; } +.#{$ti-prefix}-bug-off:before { content: $ti-icon-bug-off; } +.#{$ti-prefix}-building:before { content: $ti-icon-building; } +.#{$ti-prefix}-building-arch:before { content: $ti-icon-building-arch; } +.#{$ti-prefix}-building-bank:before { content: $ti-icon-building-bank; } +.#{$ti-prefix}-building-bridge:before { content: $ti-icon-building-bridge; } +.#{$ti-prefix}-building-bridge-2:before { content: $ti-icon-building-bridge-2; } +.#{$ti-prefix}-building-broadcast-tower:before { content: $ti-icon-building-broadcast-tower; } +.#{$ti-prefix}-building-carousel:before { content: $ti-icon-building-carousel; } +.#{$ti-prefix}-building-castle:before { content: $ti-icon-building-castle; } +.#{$ti-prefix}-building-church:before { content: $ti-icon-building-church; } +.#{$ti-prefix}-building-circus:before { content: $ti-icon-building-circus; } +.#{$ti-prefix}-building-community:before { content: $ti-icon-building-community; } +.#{$ti-prefix}-building-cottage:before { content: $ti-icon-building-cottage; } +.#{$ti-prefix}-building-estate:before { content: $ti-icon-building-estate; } +.#{$ti-prefix}-building-factory:before { content: $ti-icon-building-factory; } +.#{$ti-prefix}-building-factory-2:before { content: $ti-icon-building-factory-2; } +.#{$ti-prefix}-building-fortress:before { content: $ti-icon-building-fortress; } +.#{$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-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; } +.#{$ti-prefix}-building-tunnel:before { content: $ti-icon-building-tunnel; } +.#{$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; } +.#{$ti-prefix}-bus-off:before { content: $ti-icon-bus-off; } +.#{$ti-prefix}-bus-stop:before { content: $ti-icon-bus-stop; } +.#{$ti-prefix}-businessplan:before { content: $ti-icon-businessplan; } +.#{$ti-prefix}-butterfly:before { content: $ti-icon-butterfly; } +.#{$ti-prefix}-cactus:before { content: $ti-icon-cactus; } +.#{$ti-prefix}-cactus-off:before { content: $ti-icon-cactus-off; } +.#{$ti-prefix}-cake:before { content: $ti-icon-cake; } +.#{$ti-prefix}-cake-off:before { content: $ti-icon-cake-off; } +.#{$ti-prefix}-calculator:before { content: $ti-icon-calculator; } +.#{$ti-prefix}-calculator-off:before { content: $ti-icon-calculator-off; } +.#{$ti-prefix}-calendar:before { content: $ti-icon-calendar; } +.#{$ti-prefix}-calendar-due:before { content: $ti-icon-calendar-due; } +.#{$ti-prefix}-calendar-event:before { content: $ti-icon-calendar-event; } +.#{$ti-prefix}-calendar-minus:before { content: $ti-icon-calendar-minus; } +.#{$ti-prefix}-calendar-off:before { content: $ti-icon-calendar-off; } +.#{$ti-prefix}-calendar-plus:before { content: $ti-icon-calendar-plus; } +.#{$ti-prefix}-calendar-stats:before { content: $ti-icon-calendar-stats; } +.#{$ti-prefix}-calendar-time:before { content: $ti-icon-calendar-time; } +.#{$ti-prefix}-camera:before { content: $ti-icon-camera; } +.#{$ti-prefix}-camera-minus:before { content: $ti-icon-camera-minus; } +.#{$ti-prefix}-camera-off:before { content: $ti-icon-camera-off; } +.#{$ti-prefix}-camera-plus:before { content: $ti-icon-camera-plus; } +.#{$ti-prefix}-camera-rotate:before { content: $ti-icon-camera-rotate; } +.#{$ti-prefix}-camera-selfie:before { content: $ti-icon-camera-selfie; } +.#{$ti-prefix}-campfire:before { content: $ti-icon-campfire; } +.#{$ti-prefix}-candle:before { content: $ti-icon-candle; } +.#{$ti-prefix}-candy:before { content: $ti-icon-candy; } +.#{$ti-prefix}-candy-off:before { content: $ti-icon-candy-off; } +.#{$ti-prefix}-cane:before { content: $ti-icon-cane; } +.#{$ti-prefix}-cannabis:before { content: $ti-icon-cannabis; } +.#{$ti-prefix}-capture:before { content: $ti-icon-capture; } +.#{$ti-prefix}-capture-off:before { content: $ti-icon-capture-off; } +.#{$ti-prefix}-car:before { content: $ti-icon-car; } +.#{$ti-prefix}-car-crane:before { content: $ti-icon-car-crane; } +.#{$ti-prefix}-car-crash:before { content: $ti-icon-car-crash; } +.#{$ti-prefix}-car-off:before { content: $ti-icon-car-off; } +.#{$ti-prefix}-car-turbine:before { content: $ti-icon-car-turbine; } +.#{$ti-prefix}-caravan:before { content: $ti-icon-caravan; } +.#{$ti-prefix}-cardboards:before { content: $ti-icon-cardboards; } +.#{$ti-prefix}-cardboards-off:before { content: $ti-icon-cardboards-off; } +.#{$ti-prefix}-cards:before { content: $ti-icon-cards; } +.#{$ti-prefix}-caret-down:before { content: $ti-icon-caret-down; } +.#{$ti-prefix}-caret-left:before { content: $ti-icon-caret-left; } +.#{$ti-prefix}-caret-right:before { content: $ti-icon-caret-right; } +.#{$ti-prefix}-caret-up:before { content: $ti-icon-caret-up; } +.#{$ti-prefix}-carousel-horizontal:before { content: $ti-icon-carousel-horizontal; } +.#{$ti-prefix}-carousel-vertical:before { content: $ti-icon-carousel-vertical; } +.#{$ti-prefix}-carrot:before { content: $ti-icon-carrot; } +.#{$ti-prefix}-carrot-off:before { content: $ti-icon-carrot-off; } +.#{$ti-prefix}-cash:before { content: $ti-icon-cash; } +.#{$ti-prefix}-cash-banknote:before { content: $ti-icon-cash-banknote; } +.#{$ti-prefix}-cash-banknote-off:before { content: $ti-icon-cash-banknote-off; } +.#{$ti-prefix}-cash-off:before { content: $ti-icon-cash-off; } +.#{$ti-prefix}-cast:before { content: $ti-icon-cast; } +.#{$ti-prefix}-cast-off:before { content: $ti-icon-cast-off; } +.#{$ti-prefix}-cat:before { content: $ti-icon-cat; } +.#{$ti-prefix}-category:before { content: $ti-icon-category; } +.#{$ti-prefix}-category-2:before { content: $ti-icon-category-2; } +.#{$ti-prefix}-ce:before { content: $ti-icon-ce; } +.#{$ti-prefix}-ce-off:before { content: $ti-icon-ce-off; } +.#{$ti-prefix}-cell:before { content: $ti-icon-cell; } +.#{$ti-prefix}-cell-signal-1:before { content: $ti-icon-cell-signal-1; } +.#{$ti-prefix}-cell-signal-2:before { content: $ti-icon-cell-signal-2; } +.#{$ti-prefix}-cell-signal-3:before { content: $ti-icon-cell-signal-3; } +.#{$ti-prefix}-cell-signal-4:before { content: $ti-icon-cell-signal-4; } +.#{$ti-prefix}-cell-signal-5:before { content: $ti-icon-cell-signal-5; } +.#{$ti-prefix}-cell-signal-off:before { content: $ti-icon-cell-signal-off; } +.#{$ti-prefix}-certificate:before { content: $ti-icon-certificate; } +.#{$ti-prefix}-certificate-2:before { content: $ti-icon-certificate-2; } +.#{$ti-prefix}-certificate-2-off:before { content: $ti-icon-certificate-2-off; } +.#{$ti-prefix}-certificate-off:before { content: $ti-icon-certificate-off; } +.#{$ti-prefix}-chair-director:before { content: $ti-icon-chair-director; } +.#{$ti-prefix}-chalkboard:before { content: $ti-icon-chalkboard; } +.#{$ti-prefix}-chalkboard-off:before { content: $ti-icon-chalkboard-off; } +.#{$ti-prefix}-charging-pile:before { content: $ti-icon-charging-pile; } +.#{$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; } +.#{$ti-prefix}-chart-grid-dots:before { content: $ti-icon-chart-grid-dots; } +.#{$ti-prefix}-chart-histogram:before { content: $ti-icon-chart-histogram; } +.#{$ti-prefix}-chart-infographic:before { content: $ti-icon-chart-infographic; } +.#{$ti-prefix}-chart-line:before { content: $ti-icon-chart-line; } +.#{$ti-prefix}-chart-pie:before { content: $ti-icon-chart-pie; } +.#{$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; } +.#{$ti-prefix}-chart-sankey:before { content: $ti-icon-chart-sankey; } +.#{$ti-prefix}-chart-treemap:before { content: $ti-icon-chart-treemap; } +.#{$ti-prefix}-check:before { content: $ti-icon-check; } +.#{$ti-prefix}-checkbox:before { content: $ti-icon-checkbox; } +.#{$ti-prefix}-checklist:before { content: $ti-icon-checklist; } +.#{$ti-prefix}-checks:before { content: $ti-icon-checks; } +.#{$ti-prefix}-checkup-list:before { content: $ti-icon-checkup-list; } +.#{$ti-prefix}-cheese:before { content: $ti-icon-cheese; } +.#{$ti-prefix}-chef-hat:before { content: $ti-icon-chef-hat; } +.#{$ti-prefix}-chef-hat-off:before { content: $ti-icon-chef-hat-off; } +.#{$ti-prefix}-cherry:before { content: $ti-icon-cherry; } +.#{$ti-prefix}-chess:before { content: $ti-icon-chess; } +.#{$ti-prefix}-chess-bishop:before { content: $ti-icon-chess-bishop; } +.#{$ti-prefix}-chess-king:before { content: $ti-icon-chess-king; } +.#{$ti-prefix}-chess-knight:before { content: $ti-icon-chess-knight; } +.#{$ti-prefix}-chess-queen:before { content: $ti-icon-chess-queen; } +.#{$ti-prefix}-chess-rook:before { content: $ti-icon-chess-rook; } +.#{$ti-prefix}-chevron-down:before { content: $ti-icon-chevron-down; } +.#{$ti-prefix}-chevron-down-left:before { content: $ti-icon-chevron-down-left; } +.#{$ti-prefix}-chevron-down-right:before { content: $ti-icon-chevron-down-right; } +.#{$ti-prefix}-chevron-left:before { content: $ti-icon-chevron-left; } +.#{$ti-prefix}-chevron-right:before { content: $ti-icon-chevron-right; } +.#{$ti-prefix}-chevron-up:before { content: $ti-icon-chevron-up; } +.#{$ti-prefix}-chevron-up-left:before { content: $ti-icon-chevron-up-left; } +.#{$ti-prefix}-chevron-up-right:before { content: $ti-icon-chevron-up-right; } +.#{$ti-prefix}-chevrons-down:before { content: $ti-icon-chevrons-down; } +.#{$ti-prefix}-chevrons-down-left:before { content: $ti-icon-chevrons-down-left; } +.#{$ti-prefix}-chevrons-down-right:before { content: $ti-icon-chevrons-down-right; } +.#{$ti-prefix}-chevrons-left:before { content: $ti-icon-chevrons-left; } +.#{$ti-prefix}-chevrons-right:before { content: $ti-icon-chevrons-right; } +.#{$ti-prefix}-chevrons-up:before { content: $ti-icon-chevrons-up; } +.#{$ti-prefix}-chevrons-up-left:before { content: $ti-icon-chevrons-up-left; } +.#{$ti-prefix}-chevrons-up-right:before { content: $ti-icon-chevrons-up-right; } +.#{$ti-prefix}-chisel:before { content: $ti-icon-chisel; } +.#{$ti-prefix}-christmas-tree:before { content: $ti-icon-christmas-tree; } +.#{$ti-prefix}-christmas-tree-off:before { content: $ti-icon-christmas-tree-off; } +.#{$ti-prefix}-circle:before { content: $ti-icon-circle; } +.#{$ti-prefix}-circle-caret-down:before { content: $ti-icon-circle-caret-down; } +.#{$ti-prefix}-circle-caret-left:before { content: $ti-icon-circle-caret-left; } +.#{$ti-prefix}-circle-caret-right:before { content: $ti-icon-circle-caret-right; } +.#{$ti-prefix}-circle-caret-up:before { content: $ti-icon-circle-caret-up; } +.#{$ti-prefix}-circle-check:before { content: $ti-icon-circle-check; } +.#{$ti-prefix}-circle-chevron-down:before { content: $ti-icon-circle-chevron-down; } +.#{$ti-prefix}-circle-chevron-left:before { content: $ti-icon-circle-chevron-left; } +.#{$ti-prefix}-circle-chevron-right:before { content: $ti-icon-circle-chevron-right; } +.#{$ti-prefix}-circle-chevron-up:before { content: $ti-icon-circle-chevron-up; } +.#{$ti-prefix}-circle-chevrons-down:before { content: $ti-icon-circle-chevrons-down; } +.#{$ti-prefix}-circle-chevrons-left:before { content: $ti-icon-circle-chevrons-left; } +.#{$ti-prefix}-circle-chevrons-right:before { content: $ti-icon-circle-chevrons-right; } +.#{$ti-prefix}-circle-chevrons-up:before { content: $ti-icon-circle-chevrons-up; } +.#{$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; } +.#{$ti-prefix}-circle-key:before { content: $ti-icon-circle-key; } +.#{$ti-prefix}-circle-letter-a:before { content: $ti-icon-circle-letter-a; } +.#{$ti-prefix}-circle-letter-b:before { content: $ti-icon-circle-letter-b; } +.#{$ti-prefix}-circle-letter-c:before { content: $ti-icon-circle-letter-c; } +.#{$ti-prefix}-circle-letter-d:before { content: $ti-icon-circle-letter-d; } +.#{$ti-prefix}-circle-letter-e:before { content: $ti-icon-circle-letter-e; } +.#{$ti-prefix}-circle-letter-f:before { content: $ti-icon-circle-letter-f; } +.#{$ti-prefix}-circle-letter-g:before { content: $ti-icon-circle-letter-g; } +.#{$ti-prefix}-circle-letter-h:before { content: $ti-icon-circle-letter-h; } +.#{$ti-prefix}-circle-letter-i:before { content: $ti-icon-circle-letter-i; } +.#{$ti-prefix}-circle-letter-j:before { content: $ti-icon-circle-letter-j; } +.#{$ti-prefix}-circle-letter-k:before { content: $ti-icon-circle-letter-k; } +.#{$ti-prefix}-circle-letter-l:before { content: $ti-icon-circle-letter-l; } +.#{$ti-prefix}-circle-letter-m:before { content: $ti-icon-circle-letter-m; } +.#{$ti-prefix}-circle-letter-n:before { content: $ti-icon-circle-letter-n; } +.#{$ti-prefix}-circle-letter-o:before { content: $ti-icon-circle-letter-o; } +.#{$ti-prefix}-circle-letter-p:before { content: $ti-icon-circle-letter-p; } +.#{$ti-prefix}-circle-letter-q:before { content: $ti-icon-circle-letter-q; } +.#{$ti-prefix}-circle-letter-r:before { content: $ti-icon-circle-letter-r; } +.#{$ti-prefix}-circle-letter-s:before { content: $ti-icon-circle-letter-s; } +.#{$ti-prefix}-circle-letter-t:before { content: $ti-icon-circle-letter-t; } +.#{$ti-prefix}-circle-letter-u:before { content: $ti-icon-circle-letter-u; } +.#{$ti-prefix}-circle-letter-v:before { content: $ti-icon-circle-letter-v; } +.#{$ti-prefix}-circle-letter-w:before { content: $ti-icon-circle-letter-w; } +.#{$ti-prefix}-circle-letter-x:before { content: $ti-icon-circle-letter-x; } +.#{$ti-prefix}-circle-letter-y:before { content: $ti-icon-circle-letter-y; } +.#{$ti-prefix}-circle-letter-z:before { content: $ti-icon-circle-letter-z; } +.#{$ti-prefix}-circle-minus:before { content: $ti-icon-circle-minus; } +.#{$ti-prefix}-circle-number-0:before { content: $ti-icon-circle-number-0; } +.#{$ti-prefix}-circle-number-1:before { content: $ti-icon-circle-number-1; } +.#{$ti-prefix}-circle-number-2:before { content: $ti-icon-circle-number-2; } +.#{$ti-prefix}-circle-number-3:before { content: $ti-icon-circle-number-3; } +.#{$ti-prefix}-circle-number-4:before { content: $ti-icon-circle-number-4; } +.#{$ti-prefix}-circle-number-5:before { content: $ti-icon-circle-number-5; } +.#{$ti-prefix}-circle-number-6:before { content: $ti-icon-circle-number-6; } +.#{$ti-prefix}-circle-number-7:before { content: $ti-icon-circle-number-7; } +.#{$ti-prefix}-circle-number-8:before { content: $ti-icon-circle-number-8; } +.#{$ti-prefix}-circle-number-9:before { content: $ti-icon-circle-number-9; } +.#{$ti-prefix}-circle-off:before { content: $ti-icon-circle-off; } +.#{$ti-prefix}-circle-plus:before { content: $ti-icon-circle-plus; } +.#{$ti-prefix}-circle-rectangle:before { content: $ti-icon-circle-rectangle; } +.#{$ti-prefix}-circle-rectangle-off:before { content: $ti-icon-circle-rectangle-off; } +.#{$ti-prefix}-circle-square:before { content: $ti-icon-circle-square; } +.#{$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; } +.#{$ti-prefix}-circuit-bulb:before { content: $ti-icon-circuit-bulb; } +.#{$ti-prefix}-circuit-capacitor:before { content: $ti-icon-circuit-capacitor; } +.#{$ti-prefix}-circuit-capacitor-polarized:before { content: $ti-icon-circuit-capacitor-polarized; } +.#{$ti-prefix}-circuit-cell:before { content: $ti-icon-circuit-cell; } +.#{$ti-prefix}-circuit-cell-plus:before { content: $ti-icon-circuit-cell-plus; } +.#{$ti-prefix}-circuit-changeover:before { content: $ti-icon-circuit-changeover; } +.#{$ti-prefix}-circuit-diode:before { content: $ti-icon-circuit-diode; } +.#{$ti-prefix}-circuit-diode-zener:before { content: $ti-icon-circuit-diode-zener; } +.#{$ti-prefix}-circuit-ground:before { content: $ti-icon-circuit-ground; } +.#{$ti-prefix}-circuit-ground-digital:before { content: $ti-icon-circuit-ground-digital; } +.#{$ti-prefix}-circuit-inductor:before { content: $ti-icon-circuit-inductor; } +.#{$ti-prefix}-circuit-motor:before { content: $ti-icon-circuit-motor; } +.#{$ti-prefix}-circuit-pushbutton:before { content: $ti-icon-circuit-pushbutton; } +.#{$ti-prefix}-circuit-resistor:before { content: $ti-icon-circuit-resistor; } +.#{$ti-prefix}-circuit-switch-closed:before { content: $ti-icon-circuit-switch-closed; } +.#{$ti-prefix}-circuit-switch-open:before { content: $ti-icon-circuit-switch-open; } +.#{$ti-prefix}-circuit-voltmeter:before { content: $ti-icon-circuit-voltmeter; } +.#{$ti-prefix}-clear-all:before { content: $ti-icon-clear-all; } +.#{$ti-prefix}-clear-formatting:before { content: $ti-icon-clear-formatting; } +.#{$ti-prefix}-click:before { content: $ti-icon-click; } +.#{$ti-prefix}-clipboard:before { content: $ti-icon-clipboard; } +.#{$ti-prefix}-clipboard-check:before { content: $ti-icon-clipboard-check; } +.#{$ti-prefix}-clipboard-copy:before { content: $ti-icon-clipboard-copy; } +.#{$ti-prefix}-clipboard-data:before { content: $ti-icon-clipboard-data; } +.#{$ti-prefix}-clipboard-heart:before { content: $ti-icon-clipboard-heart; } +.#{$ti-prefix}-clipboard-list:before { content: $ti-icon-clipboard-list; } +.#{$ti-prefix}-clipboard-off:before { content: $ti-icon-clipboard-off; } +.#{$ti-prefix}-clipboard-plus:before { content: $ti-icon-clipboard-plus; } +.#{$ti-prefix}-clipboard-text:before { content: $ti-icon-clipboard-text; } +.#{$ti-prefix}-clipboard-typography:before { content: $ti-icon-clipboard-typography; } +.#{$ti-prefix}-clipboard-x:before { content: $ti-icon-clipboard-x; } +.#{$ti-prefix}-clock:before { content: $ti-icon-clock; } +.#{$ti-prefix}-clock-2:before { content: $ti-icon-clock-2; } +.#{$ti-prefix}-clock-cancel:before { content: $ti-icon-clock-cancel; } +.#{$ti-prefix}-clock-edit:before { content: $ti-icon-clock-edit; } +.#{$ti-prefix}-clock-hour-1:before { content: $ti-icon-clock-hour-1; } +.#{$ti-prefix}-clock-hour-10:before { content: $ti-icon-clock-hour-10; } +.#{$ti-prefix}-clock-hour-11:before { content: $ti-icon-clock-hour-11; } +.#{$ti-prefix}-clock-hour-12:before { content: $ti-icon-clock-hour-12; } +.#{$ti-prefix}-clock-hour-2:before { content: $ti-icon-clock-hour-2; } +.#{$ti-prefix}-clock-hour-3:before { content: $ti-icon-clock-hour-3; } +.#{$ti-prefix}-clock-hour-4:before { content: $ti-icon-clock-hour-4; } +.#{$ti-prefix}-clock-hour-5:before { content: $ti-icon-clock-hour-5; } +.#{$ti-prefix}-clock-hour-6:before { content: $ti-icon-clock-hour-6; } +.#{$ti-prefix}-clock-hour-7:before { content: $ti-icon-clock-hour-7; } +.#{$ti-prefix}-clock-hour-8:before { content: $ti-icon-clock-hour-8; } +.#{$ti-prefix}-clock-hour-9:before { content: $ti-icon-clock-hour-9; } +.#{$ti-prefix}-clock-off:before { content: $ti-icon-clock-off; } +.#{$ti-prefix}-clock-pause:before { content: $ti-icon-clock-pause; } +.#{$ti-prefix}-clock-play:before { content: $ti-icon-clock-play; } +.#{$ti-prefix}-clock-record:before { content: $ti-icon-clock-record; } +.#{$ti-prefix}-clock-stop:before { content: $ti-icon-clock-stop; } +.#{$ti-prefix}-clothes-rack:before { content: $ti-icon-clothes-rack; } +.#{$ti-prefix}-clothes-rack-off:before { content: $ti-icon-clothes-rack-off; } +.#{$ti-prefix}-cloud:before { content: $ti-icon-cloud; } +.#{$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; } +.#{$ti-prefix}-cloud-off:before { content: $ti-icon-cloud-off; } +.#{$ti-prefix}-cloud-rain:before { content: $ti-icon-cloud-rain; } +.#{$ti-prefix}-cloud-snow:before { content: $ti-icon-cloud-snow; } +.#{$ti-prefix}-cloud-storm:before { content: $ti-icon-cloud-storm; } +.#{$ti-prefix}-cloud-upload:before { content: $ti-icon-cloud-upload; } +.#{$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; } +.#{$ti-prefix}-code-circle-2:before { content: $ti-icon-code-circle-2; } +.#{$ti-prefix}-code-dots:before { content: $ti-icon-code-dots; } +.#{$ti-prefix}-code-minus:before { content: $ti-icon-code-minus; } +.#{$ti-prefix}-code-off:before { content: $ti-icon-code-off; } +.#{$ti-prefix}-code-plus:before { content: $ti-icon-code-plus; } +.#{$ti-prefix}-coffee:before { content: $ti-icon-coffee; } +.#{$ti-prefix}-coffee-off:before { content: $ti-icon-coffee-off; } +.#{$ti-prefix}-coffin:before { content: $ti-icon-coffin; } +.#{$ti-prefix}-coin:before { content: $ti-icon-coin; } +.#{$ti-prefix}-coin-bitcoin:before { content: $ti-icon-coin-bitcoin; } +.#{$ti-prefix}-coin-euro:before { content: $ti-icon-coin-euro; } +.#{$ti-prefix}-coin-monero:before { content: $ti-icon-coin-monero; } +.#{$ti-prefix}-coin-off:before { content: $ti-icon-coin-off; } +.#{$ti-prefix}-coin-pound:before { content: $ti-icon-coin-pound; } +.#{$ti-prefix}-coin-rupee:before { content: $ti-icon-coin-rupee; } +.#{$ti-prefix}-coin-yen:before { content: $ti-icon-coin-yen; } +.#{$ti-prefix}-coin-yuan:before { content: $ti-icon-coin-yuan; } +.#{$ti-prefix}-coins:before { content: $ti-icon-coins; } +.#{$ti-prefix}-color-filter:before { content: $ti-icon-color-filter; } +.#{$ti-prefix}-color-picker:before { content: $ti-icon-color-picker; } +.#{$ti-prefix}-color-picker-off:before { content: $ti-icon-color-picker-off; } +.#{$ti-prefix}-color-swatch:before { content: $ti-icon-color-swatch; } +.#{$ti-prefix}-color-swatch-off:before { content: $ti-icon-color-swatch-off; } +.#{$ti-prefix}-column-insert-left:before { content: $ti-icon-column-insert-left; } +.#{$ti-prefix}-column-insert-right:before { content: $ti-icon-column-insert-right; } +.#{$ti-prefix}-columns:before { content: $ti-icon-columns; } +.#{$ti-prefix}-columns-off:before { content: $ti-icon-columns-off; } +.#{$ti-prefix}-comet:before { content: $ti-icon-comet; } +.#{$ti-prefix}-command:before { content: $ti-icon-command; } +.#{$ti-prefix}-command-off:before { content: $ti-icon-command-off; } +.#{$ti-prefix}-compass:before { content: $ti-icon-compass; } +.#{$ti-prefix}-compass-off:before { content: $ti-icon-compass-off; } +.#{$ti-prefix}-components:before { content: $ti-icon-components; } +.#{$ti-prefix}-components-off:before { content: $ti-icon-components-off; } +.#{$ti-prefix}-cone:before { content: $ti-icon-cone; } +.#{$ti-prefix}-cone-2:before { content: $ti-icon-cone-2; } +.#{$ti-prefix}-cone-off:before { content: $ti-icon-cone-off; } +.#{$ti-prefix}-confetti:before { content: $ti-icon-confetti; } +.#{$ti-prefix}-confetti-off:before { content: $ti-icon-confetti-off; } +.#{$ti-prefix}-confucius:before { content: $ti-icon-confucius; } +.#{$ti-prefix}-container:before { content: $ti-icon-container; } +.#{$ti-prefix}-container-off:before { content: $ti-icon-container-off; } +.#{$ti-prefix}-contrast:before { content: $ti-icon-contrast; } +.#{$ti-prefix}-contrast-2:before { content: $ti-icon-contrast-2; } +.#{$ti-prefix}-contrast-2-off:before { content: $ti-icon-contrast-2-off; } +.#{$ti-prefix}-contrast-off:before { content: $ti-icon-contrast-off; } +.#{$ti-prefix}-cooker:before { content: $ti-icon-cooker; } +.#{$ti-prefix}-cookie:before { content: $ti-icon-cookie; } +.#{$ti-prefix}-cookie-man:before { content: $ti-icon-cookie-man; } +.#{$ti-prefix}-cookie-off:before { content: $ti-icon-cookie-off; } +.#{$ti-prefix}-copy:before { content: $ti-icon-copy; } +.#{$ti-prefix}-copy-off:before { content: $ti-icon-copy-off; } +.#{$ti-prefix}-copyleft:before { content: $ti-icon-copyleft; } +.#{$ti-prefix}-copyleft-off:before { content: $ti-icon-copyleft-off; } +.#{$ti-prefix}-copyright:before { content: $ti-icon-copyright; } +.#{$ti-prefix}-copyright-off:before { content: $ti-icon-copyright-off; } +.#{$ti-prefix}-corner-down-left:before { content: $ti-icon-corner-down-left; } +.#{$ti-prefix}-corner-down-left-double:before { content: $ti-icon-corner-down-left-double; } +.#{$ti-prefix}-corner-down-right:before { content: $ti-icon-corner-down-right; } +.#{$ti-prefix}-corner-down-right-double:before { content: $ti-icon-corner-down-right-double; } +.#{$ti-prefix}-corner-left-down:before { content: $ti-icon-corner-left-down; } +.#{$ti-prefix}-corner-left-down-double:before { content: $ti-icon-corner-left-down-double; } +.#{$ti-prefix}-corner-left-up:before { content: $ti-icon-corner-left-up; } +.#{$ti-prefix}-corner-left-up-double:before { content: $ti-icon-corner-left-up-double; } +.#{$ti-prefix}-corner-right-down:before { content: $ti-icon-corner-right-down; } +.#{$ti-prefix}-corner-right-down-double:before { content: $ti-icon-corner-right-down-double; } +.#{$ti-prefix}-corner-right-up:before { content: $ti-icon-corner-right-up; } +.#{$ti-prefix}-corner-right-up-double:before { content: $ti-icon-corner-right-up-double; } +.#{$ti-prefix}-corner-up-left:before { content: $ti-icon-corner-up-left; } +.#{$ti-prefix}-corner-up-left-double:before { content: $ti-icon-corner-up-left-double; } +.#{$ti-prefix}-corner-up-right:before { content: $ti-icon-corner-up-right; } +.#{$ti-prefix}-corner-up-right-double:before { content: $ti-icon-corner-up-right-double; } +.#{$ti-prefix}-cpu:before { content: $ti-icon-cpu; } +.#{$ti-prefix}-cpu-2:before { content: $ti-icon-cpu-2; } +.#{$ti-prefix}-cpu-off:before { content: $ti-icon-cpu-off; } +.#{$ti-prefix}-crane:before { content: $ti-icon-crane; } +.#{$ti-prefix}-crane-off:before { content: $ti-icon-crane-off; } +.#{$ti-prefix}-creative-commons:before { content: $ti-icon-creative-commons; } +.#{$ti-prefix}-creative-commons-by:before { content: $ti-icon-creative-commons-by; } +.#{$ti-prefix}-creative-commons-nc:before { content: $ti-icon-creative-commons-nc; } +.#{$ti-prefix}-creative-commons-nd:before { content: $ti-icon-creative-commons-nd; } +.#{$ti-prefix}-creative-commons-off:before { content: $ti-icon-creative-commons-off; } +.#{$ti-prefix}-creative-commons-sa:before { content: $ti-icon-creative-commons-sa; } +.#{$ti-prefix}-creative-commons-zero:before { content: $ti-icon-creative-commons-zero; } +.#{$ti-prefix}-credit-card:before { content: $ti-icon-credit-card; } +.#{$ti-prefix}-credit-card-off:before { content: $ti-icon-credit-card-off; } +.#{$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; } +.#{$ti-prefix}-crown-off:before { content: $ti-icon-crown-off; } +.#{$ti-prefix}-crutches:before { content: $ti-icon-crutches; } +.#{$ti-prefix}-crutches-off:before { content: $ti-icon-crutches-off; } +.#{$ti-prefix}-crystal-ball:before { content: $ti-icon-crystal-ball; } +.#{$ti-prefix}-cube-send:before { content: $ti-icon-cube-send; } +.#{$ti-prefix}-cube-unfolded:before { content: $ti-icon-cube-unfolded; } +.#{$ti-prefix}-cup:before { content: $ti-icon-cup; } +.#{$ti-prefix}-cup-off:before { content: $ti-icon-cup-off; } +.#{$ti-prefix}-curling:before { content: $ti-icon-curling; } +.#{$ti-prefix}-curly-loop:before { content: $ti-icon-curly-loop; } +.#{$ti-prefix}-currency:before { content: $ti-icon-currency; } +.#{$ti-prefix}-currency-afghani:before { content: $ti-icon-currency-afghani; } +.#{$ti-prefix}-currency-bahraini:before { content: $ti-icon-currency-bahraini; } +.#{$ti-prefix}-currency-baht:before { content: $ti-icon-currency-baht; } +.#{$ti-prefix}-currency-bitcoin:before { content: $ti-icon-currency-bitcoin; } +.#{$ti-prefix}-currency-cent:before { content: $ti-icon-currency-cent; } +.#{$ti-prefix}-currency-dinar:before { content: $ti-icon-currency-dinar; } +.#{$ti-prefix}-currency-dirham:before { content: $ti-icon-currency-dirham; } +.#{$ti-prefix}-currency-dogecoin:before { content: $ti-icon-currency-dogecoin; } +.#{$ti-prefix}-currency-dollar:before { content: $ti-icon-currency-dollar; } +.#{$ti-prefix}-currency-dollar-australian:before { content: $ti-icon-currency-dollar-australian; } +.#{$ti-prefix}-currency-dollar-brunei:before { content: $ti-icon-currency-dollar-brunei; } +.#{$ti-prefix}-currency-dollar-canadian:before { content: $ti-icon-currency-dollar-canadian; } +.#{$ti-prefix}-currency-dollar-guyanese:before { content: $ti-icon-currency-dollar-guyanese; } +.#{$ti-prefix}-currency-dollar-off:before { content: $ti-icon-currency-dollar-off; } +.#{$ti-prefix}-currency-dollar-singapore:before { content: $ti-icon-currency-dollar-singapore; } +.#{$ti-prefix}-currency-dollar-zimbabwean:before { content: $ti-icon-currency-dollar-zimbabwean; } +.#{$ti-prefix}-currency-dong:before { content: $ti-icon-currency-dong; } +.#{$ti-prefix}-currency-dram:before { content: $ti-icon-currency-dram; } +.#{$ti-prefix}-currency-ethereum:before { content: $ti-icon-currency-ethereum; } +.#{$ti-prefix}-currency-euro:before { content: $ti-icon-currency-euro; } +.#{$ti-prefix}-currency-euro-off:before { content: $ti-icon-currency-euro-off; } +.#{$ti-prefix}-currency-forint:before { content: $ti-icon-currency-forint; } +.#{$ti-prefix}-currency-frank:before { content: $ti-icon-currency-frank; } +.#{$ti-prefix}-currency-guarani:before { content: $ti-icon-currency-guarani; } +.#{$ti-prefix}-currency-hryvnia:before { content: $ti-icon-currency-hryvnia; } +.#{$ti-prefix}-currency-kip:before { content: $ti-icon-currency-kip; } +.#{$ti-prefix}-currency-krone-czech:before { content: $ti-icon-currency-krone-czech; } +.#{$ti-prefix}-currency-krone-danish:before { content: $ti-icon-currency-krone-danish; } +.#{$ti-prefix}-currency-krone-swedish:before { content: $ti-icon-currency-krone-swedish; } +.#{$ti-prefix}-currency-lari:before { content: $ti-icon-currency-lari; } +.#{$ti-prefix}-currency-leu:before { content: $ti-icon-currency-leu; } +.#{$ti-prefix}-currency-lira:before { content: $ti-icon-currency-lira; } +.#{$ti-prefix}-currency-litecoin:before { content: $ti-icon-currency-litecoin; } +.#{$ti-prefix}-currency-lyd:before { content: $ti-icon-currency-lyd; } +.#{$ti-prefix}-currency-manat:before { content: $ti-icon-currency-manat; } +.#{$ti-prefix}-currency-monero:before { content: $ti-icon-currency-monero; } +.#{$ti-prefix}-currency-naira:before { content: $ti-icon-currency-naira; } +.#{$ti-prefix}-currency-off:before { content: $ti-icon-currency-off; } +.#{$ti-prefix}-currency-paanga:before { content: $ti-icon-currency-paanga; } +.#{$ti-prefix}-currency-peso:before { content: $ti-icon-currency-peso; } +.#{$ti-prefix}-currency-pound:before { content: $ti-icon-currency-pound; } +.#{$ti-prefix}-currency-pound-off:before { content: $ti-icon-currency-pound-off; } +.#{$ti-prefix}-currency-quetzal:before { content: $ti-icon-currency-quetzal; } +.#{$ti-prefix}-currency-real:before { content: $ti-icon-currency-real; } +.#{$ti-prefix}-currency-renminbi:before { content: $ti-icon-currency-renminbi; } +.#{$ti-prefix}-currency-ripple:before { content: $ti-icon-currency-ripple; } +.#{$ti-prefix}-currency-riyal:before { content: $ti-icon-currency-riyal; } +.#{$ti-prefix}-currency-rubel:before { content: $ti-icon-currency-rubel; } +.#{$ti-prefix}-currency-rufiyaa:before { content: $ti-icon-currency-rufiyaa; } +.#{$ti-prefix}-currency-rupee:before { content: $ti-icon-currency-rupee; } +.#{$ti-prefix}-currency-rupee-nepalese:before { content: $ti-icon-currency-rupee-nepalese; } +.#{$ti-prefix}-currency-shekel:before { content: $ti-icon-currency-shekel; } +.#{$ti-prefix}-currency-solana:before { content: $ti-icon-currency-solana; } +.#{$ti-prefix}-currency-som:before { content: $ti-icon-currency-som; } +.#{$ti-prefix}-currency-taka:before { content: $ti-icon-currency-taka; } +.#{$ti-prefix}-currency-tenge:before { content: $ti-icon-currency-tenge; } +.#{$ti-prefix}-currency-tugrik:before { content: $ti-icon-currency-tugrik; } +.#{$ti-prefix}-currency-won:before { content: $ti-icon-currency-won; } +.#{$ti-prefix}-currency-yen:before { content: $ti-icon-currency-yen; } +.#{$ti-prefix}-currency-yen-off:before { content: $ti-icon-currency-yen-off; } +.#{$ti-prefix}-currency-yuan:before { content: $ti-icon-currency-yuan; } +.#{$ti-prefix}-currency-zloty:before { content: $ti-icon-currency-zloty; } +.#{$ti-prefix}-current-location:before { content: $ti-icon-current-location; } +.#{$ti-prefix}-current-location-off:before { content: $ti-icon-current-location-off; } +.#{$ti-prefix}-cursor-off:before { content: $ti-icon-cursor-off; } +.#{$ti-prefix}-cursor-text:before { content: $ti-icon-cursor-text; } +.#{$ti-prefix}-cut:before { content: $ti-icon-cut; } +.#{$ti-prefix}-cylinder:before { content: $ti-icon-cylinder; } +.#{$ti-prefix}-dashboard:before { content: $ti-icon-dashboard; } +.#{$ti-prefix}-dashboard-off:before { content: $ti-icon-dashboard-off; } +.#{$ti-prefix}-database:before { content: $ti-icon-database; } +.#{$ti-prefix}-database-export:before { content: $ti-icon-database-export; } +.#{$ti-prefix}-database-import:before { content: $ti-icon-database-import; } +.#{$ti-prefix}-database-off:before { content: $ti-icon-database-off; } +.#{$ti-prefix}-deer:before { content: $ti-icon-deer; } +.#{$ti-prefix}-delta:before { content: $ti-icon-delta; } +.#{$ti-prefix}-dental:before { content: $ti-icon-dental; } +.#{$ti-prefix}-dental-broken:before { content: $ti-icon-dental-broken; } +.#{$ti-prefix}-dental-off:before { content: $ti-icon-dental-off; } +.#{$ti-prefix}-details:before { content: $ti-icon-details; } +.#{$ti-prefix}-details-off:before { content: $ti-icon-details-off; } +.#{$ti-prefix}-device-airpods:before { content: $ti-icon-device-airpods; } +.#{$ti-prefix}-device-airpods-case:before { content: $ti-icon-device-airpods-case; } +.#{$ti-prefix}-device-analytics:before { content: $ti-icon-device-analytics; } +.#{$ti-prefix}-device-audio-tape:before { content: $ti-icon-device-audio-tape; } +.#{$ti-prefix}-device-camera-phone:before { content: $ti-icon-device-camera-phone; } +.#{$ti-prefix}-device-cctv:before { content: $ti-icon-device-cctv; } +.#{$ti-prefix}-device-cctv-off:before { content: $ti-icon-device-cctv-off; } +.#{$ti-prefix}-device-computer-camera:before { content: $ti-icon-device-computer-camera; } +.#{$ti-prefix}-device-computer-camera-off:before { content: $ti-icon-device-computer-camera-off; } +.#{$ti-prefix}-device-desktop:before { content: $ti-icon-device-desktop; } +.#{$ti-prefix}-device-desktop-analytics:before { content: $ti-icon-device-desktop-analytics; } +.#{$ti-prefix}-device-desktop-off:before { content: $ti-icon-device-desktop-off; } +.#{$ti-prefix}-device-floppy:before { content: $ti-icon-device-floppy; } +.#{$ti-prefix}-device-gamepad:before { content: $ti-icon-device-gamepad; } +.#{$ti-prefix}-device-gamepad-2:before { content: $ti-icon-device-gamepad-2; } +.#{$ti-prefix}-device-heart-monitor:before { content: $ti-icon-device-heart-monitor; } +.#{$ti-prefix}-device-ipad:before { content: $ti-icon-device-ipad; } +.#{$ti-prefix}-device-ipad-horizontal:before { content: $ti-icon-device-ipad-horizontal; } +.#{$ti-prefix}-device-landline-phone:before { content: $ti-icon-device-landline-phone; } +.#{$ti-prefix}-device-laptop:before { content: $ti-icon-device-laptop; } +.#{$ti-prefix}-device-laptop-off:before { content: $ti-icon-device-laptop-off; } +.#{$ti-prefix}-device-mobile:before { content: $ti-icon-device-mobile; } +.#{$ti-prefix}-device-mobile-charging:before { content: $ti-icon-device-mobile-charging; } +.#{$ti-prefix}-device-mobile-message:before { content: $ti-icon-device-mobile-message; } +.#{$ti-prefix}-device-mobile-off:before { content: $ti-icon-device-mobile-off; } +.#{$ti-prefix}-device-mobile-rotated:before { content: $ti-icon-device-mobile-rotated; } +.#{$ti-prefix}-device-mobile-vibration:before { content: $ti-icon-device-mobile-vibration; } +.#{$ti-prefix}-device-nintendo:before { content: $ti-icon-device-nintendo; } +.#{$ti-prefix}-device-nintendo-off:before { content: $ti-icon-device-nintendo-off; } +.#{$ti-prefix}-device-sd-card:before { content: $ti-icon-device-sd-card; } +.#{$ti-prefix}-device-sim:before { content: $ti-icon-device-sim; } +.#{$ti-prefix}-device-sim-1:before { content: $ti-icon-device-sim-1; } +.#{$ti-prefix}-device-sim-2:before { content: $ti-icon-device-sim-2; } +.#{$ti-prefix}-device-sim-3:before { content: $ti-icon-device-sim-3; } +.#{$ti-prefix}-device-speaker:before { content: $ti-icon-device-speaker; } +.#{$ti-prefix}-device-speaker-off:before { content: $ti-icon-device-speaker-off; } +.#{$ti-prefix}-device-tablet:before { content: $ti-icon-device-tablet; } +.#{$ti-prefix}-device-tablet-off:before { content: $ti-icon-device-tablet-off; } +.#{$ti-prefix}-device-tv:before { content: $ti-icon-device-tv; } +.#{$ti-prefix}-device-tv-off:before { content: $ti-icon-device-tv-off; } +.#{$ti-prefix}-device-tv-old:before { content: $ti-icon-device-tv-old; } +.#{$ti-prefix}-device-watch:before { content: $ti-icon-device-watch; } +.#{$ti-prefix}-device-watch-off:before { content: $ti-icon-device-watch-off; } +.#{$ti-prefix}-device-watch-stats:before { content: $ti-icon-device-watch-stats; } +.#{$ti-prefix}-device-watch-stats-2:before { content: $ti-icon-device-watch-stats-2; } +.#{$ti-prefix}-devices:before { content: $ti-icon-devices; } +.#{$ti-prefix}-devices-2:before { content: $ti-icon-devices-2; } +.#{$ti-prefix}-devices-off:before { content: $ti-icon-devices-off; } +.#{$ti-prefix}-devices-pc:before { content: $ti-icon-devices-pc; } +.#{$ti-prefix}-devices-pc-off:before { content: $ti-icon-devices-pc-off; } +.#{$ti-prefix}-dialpad:before { content: $ti-icon-dialpad; } +.#{$ti-prefix}-dialpad-off:before { content: $ti-icon-dialpad-off; } +.#{$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; } +.#{$ti-prefix}-dice-3:before { content: $ti-icon-dice-3; } +.#{$ti-prefix}-dice-4:before { content: $ti-icon-dice-4; } +.#{$ti-prefix}-dice-5:before { content: $ti-icon-dice-5; } +.#{$ti-prefix}-dice-6:before { content: $ti-icon-dice-6; } +.#{$ti-prefix}-dimensions:before { content: $ti-icon-dimensions; } +.#{$ti-prefix}-direction:before { content: $ti-icon-direction; } +.#{$ti-prefix}-direction-horizontal:before { content: $ti-icon-direction-horizontal; } +.#{$ti-prefix}-direction-sign:before { content: $ti-icon-direction-sign; } +.#{$ti-prefix}-direction-sign-off:before { content: $ti-icon-direction-sign-off; } +.#{$ti-prefix}-directions:before { content: $ti-icon-directions; } +.#{$ti-prefix}-directions-off:before { content: $ti-icon-directions-off; } +.#{$ti-prefix}-disabled:before { content: $ti-icon-disabled; } +.#{$ti-prefix}-disabled-2:before { content: $ti-icon-disabled-2; } +.#{$ti-prefix}-disabled-off:before { content: $ti-icon-disabled-off; } +.#{$ti-prefix}-disc:before { content: $ti-icon-disc; } +.#{$ti-prefix}-disc-golf:before { content: $ti-icon-disc-golf; } +.#{$ti-prefix}-disc-off:before { content: $ti-icon-disc-off; } +.#{$ti-prefix}-discount:before { content: $ti-icon-discount; } +.#{$ti-prefix}-discount-2:before { content: $ti-icon-discount-2; } +.#{$ti-prefix}-discount-2-off:before { content: $ti-icon-discount-2-off; } +.#{$ti-prefix}-discount-check:before { content: $ti-icon-discount-check; } +.#{$ti-prefix}-discount-off:before { content: $ti-icon-discount-off; } +.#{$ti-prefix}-divide:before { content: $ti-icon-divide; } +.#{$ti-prefix}-dna:before { content: $ti-icon-dna; } +.#{$ti-prefix}-dna-2:before { content: $ti-icon-dna-2; } +.#{$ti-prefix}-dna-2-off:before { content: $ti-icon-dna-2-off; } +.#{$ti-prefix}-dna-off:before { content: $ti-icon-dna-off; } +.#{$ti-prefix}-dog:before { content: $ti-icon-dog; } +.#{$ti-prefix}-dog-bowl:before { content: $ti-icon-dog-bowl; } +.#{$ti-prefix}-door:before { content: $ti-icon-door; } +.#{$ti-prefix}-door-enter:before { content: $ti-icon-door-enter; } +.#{$ti-prefix}-door-exit:before { content: $ti-icon-door-exit; } +.#{$ti-prefix}-door-off:before { content: $ti-icon-door-off; } +.#{$ti-prefix}-dots:before { content: $ti-icon-dots; } +.#{$ti-prefix}-dots-circle-horizontal:before { content: $ti-icon-dots-circle-horizontal; } +.#{$ti-prefix}-dots-diagonal:before { content: $ti-icon-dots-diagonal; } +.#{$ti-prefix}-dots-diagonal-2:before { content: $ti-icon-dots-diagonal-2; } +.#{$ti-prefix}-dots-vertical:before { content: $ti-icon-dots-vertical; } +.#{$ti-prefix}-download:before { content: $ti-icon-download; } +.#{$ti-prefix}-download-off:before { content: $ti-icon-download-off; } +.#{$ti-prefix}-drag-drop:before { content: $ti-icon-drag-drop; } +.#{$ti-prefix}-drag-drop-2:before { content: $ti-icon-drag-drop-2; } +.#{$ti-prefix}-drone:before { content: $ti-icon-drone; } +.#{$ti-prefix}-drone-off:before { content: $ti-icon-drone-off; } +.#{$ti-prefix}-drop-circle:before { content: $ti-icon-drop-circle; } +.#{$ti-prefix}-droplet:before { content: $ti-icon-droplet; } +.#{$ti-prefix}-droplet-filled:before { content: $ti-icon-droplet-filled; } +.#{$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; } +.#{$ti-prefix}-ear-off:before { content: $ti-icon-ear-off; } +.#{$ti-prefix}-ease-in:before { content: $ti-icon-ease-in; } +.#{$ti-prefix}-ease-in-control-point:before { content: $ti-icon-ease-in-control-point; } +.#{$ti-prefix}-ease-in-out:before { content: $ti-icon-ease-in-out; } +.#{$ti-prefix}-ease-in-out-control-points:before { content: $ti-icon-ease-in-out-control-points; } +.#{$ti-prefix}-ease-out:before { content: $ti-icon-ease-out; } +.#{$ti-prefix}-ease-out-control-point:before { content: $ti-icon-ease-out-control-point; } +.#{$ti-prefix}-edit:before { content: $ti-icon-edit; } +.#{$ti-prefix}-edit-circle:before { content: $ti-icon-edit-circle; } +.#{$ti-prefix}-edit-circle-off:before { content: $ti-icon-edit-circle-off; } +.#{$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; } +.#{$ti-prefix}-elevator:before { content: $ti-icon-elevator; } +.#{$ti-prefix}-elevator-off:before { content: $ti-icon-elevator-off; } +.#{$ti-prefix}-emergency-bed:before { content: $ti-icon-emergency-bed; } +.#{$ti-prefix}-empathize:before { content: $ti-icon-empathize; } +.#{$ti-prefix}-empathize-off:before { content: $ti-icon-empathize-off; } +.#{$ti-prefix}-emphasis:before { content: $ti-icon-emphasis; } +.#{$ti-prefix}-engine:before { content: $ti-icon-engine; } +.#{$ti-prefix}-engine-off:before { content: $ti-icon-engine-off; } +.#{$ti-prefix}-equal:before { content: $ti-icon-equal; } +.#{$ti-prefix}-equal-double:before { content: $ti-icon-equal-double; } +.#{$ti-prefix}-equal-not:before { content: $ti-icon-equal-not; } +.#{$ti-prefix}-eraser:before { content: $ti-icon-eraser; } +.#{$ti-prefix}-eraser-off:before { content: $ti-icon-eraser-off; } +.#{$ti-prefix}-error-404:before { content: $ti-icon-error-404; } +.#{$ti-prefix}-error-404-off:before { content: $ti-icon-error-404-off; } +.#{$ti-prefix}-exchange:before { content: $ti-icon-exchange; } +.#{$ti-prefix}-exchange-off:before { content: $ti-icon-exchange-off; } +.#{$ti-prefix}-exclamation-circle:before { content: $ti-icon-exclamation-circle; } +.#{$ti-prefix}-exclamation-mark:before { content: $ti-icon-exclamation-mark; } +.#{$ti-prefix}-exclamation-mark-off:before { content: $ti-icon-exclamation-mark-off; } +.#{$ti-prefix}-explicit:before { content: $ti-icon-explicit; } +.#{$ti-prefix}-explicit-off:before { content: $ti-icon-explicit-off; } +.#{$ti-prefix}-exposure:before { content: $ti-icon-exposure; } +.#{$ti-prefix}-exposure-0:before { content: $ti-icon-exposure-0; } +.#{$ti-prefix}-exposure-minus-1:before { content: $ti-icon-exposure-minus-1; } +.#{$ti-prefix}-exposure-minus-2:before { content: $ti-icon-exposure-minus-2; } +.#{$ti-prefix}-exposure-off:before { content: $ti-icon-exposure-off; } +.#{$ti-prefix}-exposure-plus-1:before { content: $ti-icon-exposure-plus-1; } +.#{$ti-prefix}-exposure-plus-2:before { content: $ti-icon-exposure-plus-2; } +.#{$ti-prefix}-external-link:before { content: $ti-icon-external-link; } +.#{$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; } +.#{$ti-prefix}-eyeglass-2:before { content: $ti-icon-eyeglass-2; } +.#{$ti-prefix}-eyeglass-off:before { content: $ti-icon-eyeglass-off; } +.#{$ti-prefix}-face-id:before { content: $ti-icon-face-id; } +.#{$ti-prefix}-face-id-error:before { content: $ti-icon-face-id-error; } +.#{$ti-prefix}-face-mask:before { content: $ti-icon-face-mask; } +.#{$ti-prefix}-face-mask-off:before { content: $ti-icon-face-mask-off; } +.#{$ti-prefix}-fall:before { content: $ti-icon-fall; } +.#{$ti-prefix}-feather:before { content: $ti-icon-feather; } +.#{$ti-prefix}-feather-off:before { content: $ti-icon-feather-off; } +.#{$ti-prefix}-fence:before { content: $ti-icon-fence; } +.#{$ti-prefix}-fence-off:before { content: $ti-icon-fence-off; } +.#{$ti-prefix}-fidget-spinner:before { content: $ti-icon-fidget-spinner; } +.#{$ti-prefix}-file:before { content: $ti-icon-file; } +.#{$ti-prefix}-file-3d:before { content: $ti-icon-file-3d; } +.#{$ti-prefix}-file-alert:before { content: $ti-icon-file-alert; } +.#{$ti-prefix}-file-analytics:before { content: $ti-icon-file-analytics; } +.#{$ti-prefix}-file-arrow-left:before { content: $ti-icon-file-arrow-left; } +.#{$ti-prefix}-file-arrow-right:before { content: $ti-icon-file-arrow-right; } +.#{$ti-prefix}-file-barcode:before { content: $ti-icon-file-barcode; } +.#{$ti-prefix}-file-broken:before { content: $ti-icon-file-broken; } +.#{$ti-prefix}-file-certificate:before { content: $ti-icon-file-certificate; } +.#{$ti-prefix}-file-chart:before { content: $ti-icon-file-chart; } +.#{$ti-prefix}-file-check:before { content: $ti-icon-file-check; } +.#{$ti-prefix}-file-code:before { content: $ti-icon-file-code; } +.#{$ti-prefix}-file-code-2:before { content: $ti-icon-file-code-2; } +.#{$ti-prefix}-file-database:before { content: $ti-icon-file-database; } +.#{$ti-prefix}-file-delta:before { content: $ti-icon-file-delta; } +.#{$ti-prefix}-file-description:before { content: $ti-icon-file-description; } +.#{$ti-prefix}-file-diff:before { content: $ti-icon-file-diff; } +.#{$ti-prefix}-file-digit:before { content: $ti-icon-file-digit; } +.#{$ti-prefix}-file-dislike:before { content: $ti-icon-file-dislike; } +.#{$ti-prefix}-file-dollar:before { content: $ti-icon-file-dollar; } +.#{$ti-prefix}-file-dots:before { content: $ti-icon-file-dots; } +.#{$ti-prefix}-file-download:before { content: $ti-icon-file-download; } +.#{$ti-prefix}-file-euro:before { content: $ti-icon-file-euro; } +.#{$ti-prefix}-file-export:before { content: $ti-icon-file-export; } +.#{$ti-prefix}-file-function:before { content: $ti-icon-file-function; } +.#{$ti-prefix}-file-horizontal:before { content: $ti-icon-file-horizontal; } +.#{$ti-prefix}-file-import:before { content: $ti-icon-file-import; } +.#{$ti-prefix}-file-infinity:before { content: $ti-icon-file-infinity; } +.#{$ti-prefix}-file-info:before { content: $ti-icon-file-info; } +.#{$ti-prefix}-file-invoice:before { content: $ti-icon-file-invoice; } +.#{$ti-prefix}-file-lambda:before { content: $ti-icon-file-lambda; } +.#{$ti-prefix}-file-like:before { content: $ti-icon-file-like; } +.#{$ti-prefix}-file-minus:before { content: $ti-icon-file-minus; } +.#{$ti-prefix}-file-music:before { content: $ti-icon-file-music; } +.#{$ti-prefix}-file-off:before { content: $ti-icon-file-off; } +.#{$ti-prefix}-file-orientation:before { content: $ti-icon-file-orientation; } +.#{$ti-prefix}-file-pencil:before { content: $ti-icon-file-pencil; } +.#{$ti-prefix}-file-percent:before { content: $ti-icon-file-percent; } +.#{$ti-prefix}-file-phone:before { content: $ti-icon-file-phone; } +.#{$ti-prefix}-file-plus:before { content: $ti-icon-file-plus; } +.#{$ti-prefix}-file-power:before { content: $ti-icon-file-power; } +.#{$ti-prefix}-file-report:before { content: $ti-icon-file-report; } +.#{$ti-prefix}-file-rss:before { content: $ti-icon-file-rss; } +.#{$ti-prefix}-file-scissors:before { content: $ti-icon-file-scissors; } +.#{$ti-prefix}-file-search:before { content: $ti-icon-file-search; } +.#{$ti-prefix}-file-settings:before { content: $ti-icon-file-settings; } +.#{$ti-prefix}-file-shredder:before { content: $ti-icon-file-shredder; } +.#{$ti-prefix}-file-signal:before { content: $ti-icon-file-signal; } +.#{$ti-prefix}-file-spreadsheet:before { content: $ti-icon-file-spreadsheet; } +.#{$ti-prefix}-file-stack:before { content: $ti-icon-file-stack; } +.#{$ti-prefix}-file-star:before { content: $ti-icon-file-star; } +.#{$ti-prefix}-file-symlink:before { content: $ti-icon-file-symlink; } +.#{$ti-prefix}-file-text:before { content: $ti-icon-file-text; } +.#{$ti-prefix}-file-time:before { content: $ti-icon-file-time; } +.#{$ti-prefix}-file-typography:before { content: $ti-icon-file-typography; } +.#{$ti-prefix}-file-unknown:before { content: $ti-icon-file-unknown; } +.#{$ti-prefix}-file-upload:before { content: $ti-icon-file-upload; } +.#{$ti-prefix}-file-vector:before { content: $ti-icon-file-vector; } +.#{$ti-prefix}-file-x:before { content: $ti-icon-file-x; } +.#{$ti-prefix}-file-zip:before { content: $ti-icon-file-zip; } +.#{$ti-prefix}-files:before { content: $ti-icon-files; } +.#{$ti-prefix}-files-off:before { content: $ti-icon-files-off; } +.#{$ti-prefix}-filter:before { content: $ti-icon-filter; } +.#{$ti-prefix}-filter-off:before { content: $ti-icon-filter-off; } +.#{$ti-prefix}-fingerprint:before { content: $ti-icon-fingerprint; } +.#{$ti-prefix}-fingerprint-off:before { content: $ti-icon-fingerprint-off; } +.#{$ti-prefix}-fire-hydrant:before { content: $ti-icon-fire-hydrant; } +.#{$ti-prefix}-fire-hydrant-off:before { content: $ti-icon-fire-hydrant-off; } +.#{$ti-prefix}-firetruck:before { content: $ti-icon-firetruck; } +.#{$ti-prefix}-first-aid-kit:before { content: $ti-icon-first-aid-kit; } +.#{$ti-prefix}-first-aid-kit-off:before { content: $ti-icon-first-aid-kit-off; } +.#{$ti-prefix}-fish:before { content: $ti-icon-fish; } +.#{$ti-prefix}-fish-bone:before { content: $ti-icon-fish-bone; } +.#{$ti-prefix}-fish-christianity:before { content: $ti-icon-fish-christianity; } +.#{$ti-prefix}-fish-hook:before { content: $ti-icon-fish-hook; } +.#{$ti-prefix}-fish-hook-off:before { content: $ti-icon-fish-hook-off; } +.#{$ti-prefix}-fish-off:before { content: $ti-icon-fish-off; } +.#{$ti-prefix}-flag:before { content: $ti-icon-flag; } +.#{$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; } +.#{$ti-prefix}-flare:before { content: $ti-icon-flare; } +.#{$ti-prefix}-flask:before { content: $ti-icon-flask; } +.#{$ti-prefix}-flask-2:before { content: $ti-icon-flask-2; } +.#{$ti-prefix}-flask-2-off:before { content: $ti-icon-flask-2-off; } +.#{$ti-prefix}-flask-off:before { content: $ti-icon-flask-off; } +.#{$ti-prefix}-flip-flops:before { content: $ti-icon-flip-flops; } +.#{$ti-prefix}-flip-horizontal:before { content: $ti-icon-flip-horizontal; } +.#{$ti-prefix}-flip-vertical:before { content: $ti-icon-flip-vertical; } +.#{$ti-prefix}-float-center:before { content: $ti-icon-float-center; } +.#{$ti-prefix}-float-left:before { content: $ti-icon-float-left; } +.#{$ti-prefix}-float-none:before { content: $ti-icon-float-none; } +.#{$ti-prefix}-float-right:before { content: $ti-icon-float-right; } +.#{$ti-prefix}-flower:before { content: $ti-icon-flower; } +.#{$ti-prefix}-flower-off:before { content: $ti-icon-flower-off; } +.#{$ti-prefix}-focus:before { content: $ti-icon-focus; } +.#{$ti-prefix}-focus-2:before { content: $ti-icon-focus-2; } +.#{$ti-prefix}-focus-centered:before { content: $ti-icon-focus-centered; } +.#{$ti-prefix}-fold:before { content: $ti-icon-fold; } +.#{$ti-prefix}-fold-down:before { content: $ti-icon-fold-down; } +.#{$ti-prefix}-fold-up:before { content: $ti-icon-fold-up; } +.#{$ti-prefix}-folder:before { content: $ti-icon-folder; } +.#{$ti-prefix}-folder-minus:before { content: $ti-icon-folder-minus; } +.#{$ti-prefix}-folder-off:before { content: $ti-icon-folder-off; } +.#{$ti-prefix}-folder-plus:before { content: $ti-icon-folder-plus; } +.#{$ti-prefix}-folder-x:before { content: $ti-icon-folder-x; } +.#{$ti-prefix}-folders:before { content: $ti-icon-folders; } +.#{$ti-prefix}-folders-off:before { content: $ti-icon-folders-off; } +.#{$ti-prefix}-forbid:before { content: $ti-icon-forbid; } +.#{$ti-prefix}-forbid-2:before { content: $ti-icon-forbid-2; } +.#{$ti-prefix}-forklift:before { content: $ti-icon-forklift; } +.#{$ti-prefix}-forms:before { content: $ti-icon-forms; } +.#{$ti-prefix}-fountain:before { content: $ti-icon-fountain; } +.#{$ti-prefix}-fountain-off:before { content: $ti-icon-fountain-off; } +.#{$ti-prefix}-frame:before { content: $ti-icon-frame; } +.#{$ti-prefix}-frame-off:before { content: $ti-icon-frame-off; } +.#{$ti-prefix}-free-rights:before { content: $ti-icon-free-rights; } +.#{$ti-prefix}-fridge:before { content: $ti-icon-fridge; } +.#{$ti-prefix}-fridge-off:before { content: $ti-icon-fridge-off; } +.#{$ti-prefix}-friends:before { content: $ti-icon-friends; } +.#{$ti-prefix}-friends-off:before { content: $ti-icon-friends-off; } +.#{$ti-prefix}-function:before { content: $ti-icon-function; } +.#{$ti-prefix}-function-off:before { content: $ti-icon-function-off; } +.#{$ti-prefix}-garden-cart:before { content: $ti-icon-garden-cart; } +.#{$ti-prefix}-garden-cart-off:before { content: $ti-icon-garden-cart-off; } +.#{$ti-prefix}-gas-station:before { content: $ti-icon-gas-station; } +.#{$ti-prefix}-gas-station-off:before { content: $ti-icon-gas-station-off; } +.#{$ti-prefix}-gauge:before { content: $ti-icon-gauge; } +.#{$ti-prefix}-gauge-off:before { content: $ti-icon-gauge-off; } +.#{$ti-prefix}-gavel:before { content: $ti-icon-gavel; } +.#{$ti-prefix}-gender-agender:before { content: $ti-icon-gender-agender; } +.#{$ti-prefix}-gender-androgyne:before { content: $ti-icon-gender-androgyne; } +.#{$ti-prefix}-gender-bigender:before { content: $ti-icon-gender-bigender; } +.#{$ti-prefix}-gender-demiboy:before { content: $ti-icon-gender-demiboy; } +.#{$ti-prefix}-gender-demigirl:before { content: $ti-icon-gender-demigirl; } +.#{$ti-prefix}-gender-epicene:before { content: $ti-icon-gender-epicene; } +.#{$ti-prefix}-gender-female:before { content: $ti-icon-gender-female; } +.#{$ti-prefix}-gender-femme:before { content: $ti-icon-gender-femme; } +.#{$ti-prefix}-gender-genderfluid:before { content: $ti-icon-gender-genderfluid; } +.#{$ti-prefix}-gender-genderless:before { content: $ti-icon-gender-genderless; } +.#{$ti-prefix}-gender-genderqueer:before { content: $ti-icon-gender-genderqueer; } +.#{$ti-prefix}-gender-hermaphrodite:before { content: $ti-icon-gender-hermaphrodite; } +.#{$ti-prefix}-gender-intergender:before { content: $ti-icon-gender-intergender; } +.#{$ti-prefix}-gender-male:before { content: $ti-icon-gender-male; } +.#{$ti-prefix}-gender-neutrois:before { content: $ti-icon-gender-neutrois; } +.#{$ti-prefix}-gender-third:before { content: $ti-icon-gender-third; } +.#{$ti-prefix}-gender-transgender:before { content: $ti-icon-gender-transgender; } +.#{$ti-prefix}-gender-trasvesti:before { content: $ti-icon-gender-trasvesti; } +.#{$ti-prefix}-geometry:before { content: $ti-icon-geometry; } +.#{$ti-prefix}-ghost:before { content: $ti-icon-ghost; } +.#{$ti-prefix}-ghost-2:before { content: $ti-icon-ghost-2; } +.#{$ti-prefix}-ghost-off:before { content: $ti-icon-ghost-off; } +.#{$ti-prefix}-gif:before { content: $ti-icon-gif; } +.#{$ti-prefix}-gift:before { content: $ti-icon-gift; } +.#{$ti-prefix}-gift-card:before { content: $ti-icon-gift-card; } +.#{$ti-prefix}-gift-off:before { content: $ti-icon-gift-off; } +.#{$ti-prefix}-git-branch:before { content: $ti-icon-git-branch; } +.#{$ti-prefix}-git-branch-deleted:before { content: $ti-icon-git-branch-deleted; } +.#{$ti-prefix}-git-cherry-pick:before { content: $ti-icon-git-cherry-pick; } +.#{$ti-prefix}-git-commit:before { content: $ti-icon-git-commit; } +.#{$ti-prefix}-git-compare:before { content: $ti-icon-git-compare; } +.#{$ti-prefix}-git-fork:before { content: $ti-icon-git-fork; } +.#{$ti-prefix}-git-merge:before { content: $ti-icon-git-merge; } +.#{$ti-prefix}-git-pull-request:before { content: $ti-icon-git-pull-request; } +.#{$ti-prefix}-git-pull-request-closed:before { content: $ti-icon-git-pull-request-closed; } +.#{$ti-prefix}-git-pull-request-draft:before { content: $ti-icon-git-pull-request-draft; } +.#{$ti-prefix}-gizmo:before { content: $ti-icon-gizmo; } +.#{$ti-prefix}-glass:before { content: $ti-icon-glass; } +.#{$ti-prefix}-glass-full:before { content: $ti-icon-glass-full; } +.#{$ti-prefix}-glass-off:before { content: $ti-icon-glass-off; } +.#{$ti-prefix}-globe:before { content: $ti-icon-globe; } +.#{$ti-prefix}-globe-off:before { content: $ti-icon-globe-off; } +.#{$ti-prefix}-go-game:before { content: $ti-icon-go-game; } +.#{$ti-prefix}-golf:before { content: $ti-icon-golf; } +.#{$ti-prefix}-golf-off:before { content: $ti-icon-golf-off; } +.#{$ti-prefix}-gps:before { content: $ti-icon-gps; } +.#{$ti-prefix}-gradienter:before { content: $ti-icon-gradienter; } +.#{$ti-prefix}-grain:before { content: $ti-icon-grain; } +.#{$ti-prefix}-graph:before { content: $ti-icon-graph; } +.#{$ti-prefix}-graph-off:before { content: $ti-icon-graph-off; } +.#{$ti-prefix}-grave:before { content: $ti-icon-grave; } +.#{$ti-prefix}-grave-2:before { content: $ti-icon-grave-2; } +.#{$ti-prefix}-grid-dots:before { content: $ti-icon-grid-dots; } +.#{$ti-prefix}-grid-pattern:before { content: $ti-icon-grid-pattern; } +.#{$ti-prefix}-grill:before { content: $ti-icon-grill; } +.#{$ti-prefix}-grill-fork:before { content: $ti-icon-grill-fork; } +.#{$ti-prefix}-grill-off:before { content: $ti-icon-grill-off; } +.#{$ti-prefix}-grill-spatula:before { content: $ti-icon-grill-spatula; } +.#{$ti-prefix}-grip-horizontal:before { content: $ti-icon-grip-horizontal; } +.#{$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; } +.#{$ti-prefix}-h-4:before { content: $ti-icon-h-4; } +.#{$ti-prefix}-h-5:before { content: $ti-icon-h-5; } +.#{$ti-prefix}-h-6:before { content: $ti-icon-h-6; } +.#{$ti-prefix}-hammer:before { content: $ti-icon-hammer; } +.#{$ti-prefix}-hammer-off:before { content: $ti-icon-hammer-off; } +.#{$ti-prefix}-hand-click:before { content: $ti-icon-hand-click; } +.#{$ti-prefix}-hand-finger:before { content: $ti-icon-hand-finger; } +.#{$ti-prefix}-hand-finger-off:before { content: $ti-icon-hand-finger-off; } +.#{$ti-prefix}-hand-grab:before { content: $ti-icon-hand-grab; } +.#{$ti-prefix}-hand-little-finger:before { content: $ti-icon-hand-little-finger; } +.#{$ti-prefix}-hand-middle-finger:before { content: $ti-icon-hand-middle-finger; } +.#{$ti-prefix}-hand-move:before { content: $ti-icon-hand-move; } +.#{$ti-prefix}-hand-off:before { content: $ti-icon-hand-off; } +.#{$ti-prefix}-hand-ring-finger:before { content: $ti-icon-hand-ring-finger; } +.#{$ti-prefix}-hand-rock:before { content: $ti-icon-hand-rock; } +.#{$ti-prefix}-hand-sanitizer:before { content: $ti-icon-hand-sanitizer; } +.#{$ti-prefix}-hand-stop:before { content: $ti-icon-hand-stop; } +.#{$ti-prefix}-hand-three-fingers:before { content: $ti-icon-hand-three-fingers; } +.#{$ti-prefix}-hand-two-fingers:before { content: $ti-icon-hand-two-fingers; } +.#{$ti-prefix}-hanger:before { content: $ti-icon-hanger; } +.#{$ti-prefix}-hanger-2:before { content: $ti-icon-hanger-2; } +.#{$ti-prefix}-hanger-off:before { content: $ti-icon-hanger-off; } +.#{$ti-prefix}-hash:before { content: $ti-icon-hash; } +.#{$ti-prefix}-haze:before { content: $ti-icon-haze; } +.#{$ti-prefix}-heading:before { content: $ti-icon-heading; } +.#{$ti-prefix}-heading-off:before { content: $ti-icon-heading-off; } +.#{$ti-prefix}-headphones:before { content: $ti-icon-headphones; } +.#{$ti-prefix}-headphones-off:before { content: $ti-icon-headphones-off; } +.#{$ti-prefix}-headset:before { content: $ti-icon-headset; } +.#{$ti-prefix}-headset-off:before { content: $ti-icon-headset-off; } +.#{$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; } +.#{$ti-prefix}-heart-plus:before { content: $ti-icon-heart-plus; } +.#{$ti-prefix}-heart-rate-monitor:before { content: $ti-icon-heart-rate-monitor; } +.#{$ti-prefix}-heartbeat:before { content: $ti-icon-heartbeat; } +.#{$ti-prefix}-hearts:before { content: $ti-icon-hearts; } +.#{$ti-prefix}-hearts-off:before { content: $ti-icon-hearts-off; } +.#{$ti-prefix}-helicopter:before { content: $ti-icon-helicopter; } +.#{$ti-prefix}-helicopter-landing:before { content: $ti-icon-helicopter-landing; } +.#{$ti-prefix}-helmet:before { content: $ti-icon-helmet; } +.#{$ti-prefix}-helmet-off:before { content: $ti-icon-helmet-off; } +.#{$ti-prefix}-help:before { content: $ti-icon-help; } +.#{$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; } +.#{$ti-prefix}-hexagon-letter-d:before { content: $ti-icon-hexagon-letter-d; } +.#{$ti-prefix}-hexagon-letter-e:before { content: $ti-icon-hexagon-letter-e; } +.#{$ti-prefix}-hexagon-letter-f:before { content: $ti-icon-hexagon-letter-f; } +.#{$ti-prefix}-hexagon-letter-g:before { content: $ti-icon-hexagon-letter-g; } +.#{$ti-prefix}-hexagon-letter-h:before { content: $ti-icon-hexagon-letter-h; } +.#{$ti-prefix}-hexagon-letter-i:before { content: $ti-icon-hexagon-letter-i; } +.#{$ti-prefix}-hexagon-letter-j:before { content: $ti-icon-hexagon-letter-j; } +.#{$ti-prefix}-hexagon-letter-k:before { content: $ti-icon-hexagon-letter-k; } +.#{$ti-prefix}-hexagon-letter-l:before { content: $ti-icon-hexagon-letter-l; } +.#{$ti-prefix}-hexagon-letter-m:before { content: $ti-icon-hexagon-letter-m; } +.#{$ti-prefix}-hexagon-letter-n:before { content: $ti-icon-hexagon-letter-n; } +.#{$ti-prefix}-hexagon-letter-o:before { content: $ti-icon-hexagon-letter-o; } +.#{$ti-prefix}-hexagon-letter-p:before { content: $ti-icon-hexagon-letter-p; } +.#{$ti-prefix}-hexagon-letter-q:before { content: $ti-icon-hexagon-letter-q; } +.#{$ti-prefix}-hexagon-letter-r:before { content: $ti-icon-hexagon-letter-r; } +.#{$ti-prefix}-hexagon-letter-s:before { content: $ti-icon-hexagon-letter-s; } +.#{$ti-prefix}-hexagon-letter-t:before { content: $ti-icon-hexagon-letter-t; } +.#{$ti-prefix}-hexagon-letter-u:before { content: $ti-icon-hexagon-letter-u; } +.#{$ti-prefix}-hexagon-letter-v:before { content: $ti-icon-hexagon-letter-v; } +.#{$ti-prefix}-hexagon-letter-w:before { content: $ti-icon-hexagon-letter-w; } +.#{$ti-prefix}-hexagon-letter-x:before { content: $ti-icon-hexagon-letter-x; } +.#{$ti-prefix}-hexagon-letter-y:before { content: $ti-icon-hexagon-letter-y; } +.#{$ti-prefix}-hexagon-letter-z:before { content: $ti-icon-hexagon-letter-z; } +.#{$ti-prefix}-hexagon-number-0:before { content: $ti-icon-hexagon-number-0; } +.#{$ti-prefix}-hexagon-number-1:before { content: $ti-icon-hexagon-number-1; } +.#{$ti-prefix}-hexagon-number-2:before { content: $ti-icon-hexagon-number-2; } +.#{$ti-prefix}-hexagon-number-3:before { content: $ti-icon-hexagon-number-3; } +.#{$ti-prefix}-hexagon-number-4:before { content: $ti-icon-hexagon-number-4; } +.#{$ti-prefix}-hexagon-number-5:before { content: $ti-icon-hexagon-number-5; } +.#{$ti-prefix}-hexagon-number-6:before { content: $ti-icon-hexagon-number-6; } +.#{$ti-prefix}-hexagon-number-7:before { content: $ti-icon-hexagon-number-7; } +.#{$ti-prefix}-hexagon-number-8:before { content: $ti-icon-hexagon-number-8; } +.#{$ti-prefix}-hexagon-number-9:before { content: $ti-icon-hexagon-number-9; } +.#{$ti-prefix}-hexagon-off:before { content: $ti-icon-hexagon-off; } +.#{$ti-prefix}-hexagons:before { content: $ti-icon-hexagons; } +.#{$ti-prefix}-hexagons-off:before { content: $ti-icon-hexagons-off; } +.#{$ti-prefix}-hierarchy:before { content: $ti-icon-hierarchy; } +.#{$ti-prefix}-hierarchy-2:before { content: $ti-icon-hierarchy-2; } +.#{$ti-prefix}-hierarchy-3:before { content: $ti-icon-hierarchy-3; } +.#{$ti-prefix}-hierarchy-off:before { content: $ti-icon-hierarchy-off; } +.#{$ti-prefix}-highlight:before { content: $ti-icon-highlight; } +.#{$ti-prefix}-highlight-off:before { content: $ti-icon-highlight-off; } +.#{$ti-prefix}-history:before { content: $ti-icon-history; } +.#{$ti-prefix}-history-off:before { content: $ti-icon-history-off; } +.#{$ti-prefix}-history-toggle:before { content: $ti-icon-history-toggle; } +.#{$ti-prefix}-home:before { content: $ti-icon-home; } +.#{$ti-prefix}-home-2:before { content: $ti-icon-home-2; } +.#{$ti-prefix}-home-bolt:before { content: $ti-icon-home-bolt; } +.#{$ti-prefix}-home-cancel:before { content: $ti-icon-home-cancel; } +.#{$ti-prefix}-home-check:before { content: $ti-icon-home-check; } +.#{$ti-prefix}-home-cog:before { content: $ti-icon-home-cog; } +.#{$ti-prefix}-home-dollar:before { content: $ti-icon-home-dollar; } +.#{$ti-prefix}-home-dot:before { content: $ti-icon-home-dot; } +.#{$ti-prefix}-home-down:before { content: $ti-icon-home-down; } +.#{$ti-prefix}-home-eco:before { content: $ti-icon-home-eco; } +.#{$ti-prefix}-home-edit:before { content: $ti-icon-home-edit; } +.#{$ti-prefix}-home-exclamation:before { content: $ti-icon-home-exclamation; } +.#{$ti-prefix}-home-hand:before { content: $ti-icon-home-hand; } +.#{$ti-prefix}-home-heart:before { content: $ti-icon-home-heart; } +.#{$ti-prefix}-home-infinity:before { content: $ti-icon-home-infinity; } +.#{$ti-prefix}-home-link:before { content: $ti-icon-home-link; } +.#{$ti-prefix}-home-minus:before { content: $ti-icon-home-minus; } +.#{$ti-prefix}-home-move:before { content: $ti-icon-home-move; } +.#{$ti-prefix}-home-off:before { content: $ti-icon-home-off; } +.#{$ti-prefix}-home-plus:before { content: $ti-icon-home-plus; } +.#{$ti-prefix}-home-question:before { content: $ti-icon-home-question; } +.#{$ti-prefix}-home-ribbon:before { content: $ti-icon-home-ribbon; } +.#{$ti-prefix}-home-search:before { content: $ti-icon-home-search; } +.#{$ti-prefix}-home-share:before { content: $ti-icon-home-share; } +.#{$ti-prefix}-home-shield:before { content: $ti-icon-home-shield; } +.#{$ti-prefix}-home-signal:before { content: $ti-icon-home-signal; } +.#{$ti-prefix}-home-star:before { content: $ti-icon-home-star; } +.#{$ti-prefix}-home-stats:before { content: $ti-icon-home-stats; } +.#{$ti-prefix}-home-up:before { content: $ti-icon-home-up; } +.#{$ti-prefix}-home-x:before { content: $ti-icon-home-x; } +.#{$ti-prefix}-horse-toy:before { content: $ti-icon-horse-toy; } +.#{$ti-prefix}-hotel-service:before { content: $ti-icon-hotel-service; } +.#{$ti-prefix}-hourglass:before { content: $ti-icon-hourglass; } +.#{$ti-prefix}-hourglass-empty:before { content: $ti-icon-hourglass-empty; } +.#{$ti-prefix}-hourglass-high:before { content: $ti-icon-hourglass-high; } +.#{$ti-prefix}-hourglass-low:before { content: $ti-icon-hourglass-low; } +.#{$ti-prefix}-hourglass-off:before { content: $ti-icon-hourglass-off; } +.#{$ti-prefix}-ice-cream:before { content: $ti-icon-ice-cream; } +.#{$ti-prefix}-ice-cream-2:before { content: $ti-icon-ice-cream-2; } +.#{$ti-prefix}-ice-cream-off:before { content: $ti-icon-ice-cream-off; } +.#{$ti-prefix}-ice-skating:before { content: $ti-icon-ice-skating; } +.#{$ti-prefix}-icons:before { content: $ti-icon-icons; } +.#{$ti-prefix}-icons-off:before { content: $ti-icon-icons-off; } +.#{$ti-prefix}-id:before { content: $ti-icon-id; } +.#{$ti-prefix}-id-badge:before { content: $ti-icon-id-badge; } +.#{$ti-prefix}-id-badge-2:before { content: $ti-icon-id-badge-2; } +.#{$ti-prefix}-id-badge-off:before { content: $ti-icon-id-badge-off; } +.#{$ti-prefix}-id-off:before { content: $ti-icon-id-off; } +.#{$ti-prefix}-inbox:before { content: $ti-icon-inbox; } +.#{$ti-prefix}-inbox-off:before { content: $ti-icon-inbox-off; } +.#{$ti-prefix}-indent-decrease:before { content: $ti-icon-indent-decrease; } +.#{$ti-prefix}-indent-increase:before { content: $ti-icon-indent-increase; } +.#{$ti-prefix}-infinity:before { content: $ti-icon-infinity; } +.#{$ti-prefix}-infinity-off:before { content: $ti-icon-infinity-off; } +.#{$ti-prefix}-info-circle:before { content: $ti-icon-info-circle; } +.#{$ti-prefix}-info-square:before { content: $ti-icon-info-square; } +.#{$ti-prefix}-info-square-rounded:before { content: $ti-icon-info-square-rounded; } +.#{$ti-prefix}-inner-shadow-bottom:before { content: $ti-icon-inner-shadow-bottom; } +.#{$ti-prefix}-inner-shadow-bottom-left:before { content: $ti-icon-inner-shadow-bottom-left; } +.#{$ti-prefix}-inner-shadow-bottom-right:before { content: $ti-icon-inner-shadow-bottom-right; } +.#{$ti-prefix}-inner-shadow-left:before { content: $ti-icon-inner-shadow-left; } +.#{$ti-prefix}-inner-shadow-right:before { content: $ti-icon-inner-shadow-right; } +.#{$ti-prefix}-inner-shadow-top:before { content: $ti-icon-inner-shadow-top; } +.#{$ti-prefix}-inner-shadow-top-left:before { content: $ti-icon-inner-shadow-top-left; } +.#{$ti-prefix}-inner-shadow-top-right:before { content: $ti-icon-inner-shadow-top-right; } +.#{$ti-prefix}-input-search:before { content: $ti-icon-input-search; } +.#{$ti-prefix}-ironing-1:before { content: $ti-icon-ironing-1; } +.#{$ti-prefix}-ironing-2:before { content: $ti-icon-ironing-2; } +.#{$ti-prefix}-ironing-3:before { content: $ti-icon-ironing-3; } +.#{$ti-prefix}-ironing-off:before { content: $ti-icon-ironing-off; } +.#{$ti-prefix}-ironing-steam:before { content: $ti-icon-ironing-steam; } +.#{$ti-prefix}-ironing-steam-off:before { content: $ti-icon-ironing-steam-off; } +.#{$ti-prefix}-italic:before { content: $ti-icon-italic; } +.#{$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; } +.#{$ti-prefix}-kayak:before { content: $ti-icon-kayak; } +.#{$ti-prefix}-kering:before { content: $ti-icon-kering; } +.#{$ti-prefix}-key:before { content: $ti-icon-key; } +.#{$ti-prefix}-key-off:before { content: $ti-icon-key-off; } +.#{$ti-prefix}-keyboard:before { content: $ti-icon-keyboard; } +.#{$ti-prefix}-keyboard-hide:before { content: $ti-icon-keyboard-hide; } +.#{$ti-prefix}-keyboard-off:before { content: $ti-icon-keyboard-off; } +.#{$ti-prefix}-keyboard-show:before { content: $ti-icon-keyboard-show; } +.#{$ti-prefix}-keyframe:before { content: $ti-icon-keyframe; } +.#{$ti-prefix}-keyframe-align-center:before { content: $ti-icon-keyframe-align-center; } +.#{$ti-prefix}-keyframe-align-horizontal:before { content: $ti-icon-keyframe-align-horizontal; } +.#{$ti-prefix}-keyframe-align-vertical:before { content: $ti-icon-keyframe-align-vertical; } +.#{$ti-prefix}-keyframes:before { content: $ti-icon-keyframes; } +.#{$ti-prefix}-ladder:before { content: $ti-icon-ladder; } +.#{$ti-prefix}-ladder-off:before { content: $ti-icon-ladder-off; } +.#{$ti-prefix}-lambda:before { content: $ti-icon-lambda; } +.#{$ti-prefix}-lamp:before { content: $ti-icon-lamp; } +.#{$ti-prefix}-lamp-2:before { content: $ti-icon-lamp-2; } +.#{$ti-prefix}-lamp-off:before { content: $ti-icon-lamp-off; } +.#{$ti-prefix}-language:before { content: $ti-icon-language; } +.#{$ti-prefix}-language-hiragana:before { content: $ti-icon-language-hiragana; } +.#{$ti-prefix}-language-katakana:before { content: $ti-icon-language-katakana; } +.#{$ti-prefix}-language-off:before { content: $ti-icon-language-off; } +.#{$ti-prefix}-lasso:before { content: $ti-icon-lasso; } +.#{$ti-prefix}-lasso-off:before { content: $ti-icon-lasso-off; } +.#{$ti-prefix}-lasso-polygon:before { content: $ti-icon-lasso-polygon; } +.#{$ti-prefix}-layers-difference:before { content: $ti-icon-layers-difference; } +.#{$ti-prefix}-layers-intersect:before { content: $ti-icon-layers-intersect; } +.#{$ti-prefix}-layers-intersect-2:before { content: $ti-icon-layers-intersect-2; } +.#{$ti-prefix}-layers-linked:before { content: $ti-icon-layers-linked; } +.#{$ti-prefix}-layers-off:before { content: $ti-icon-layers-off; } +.#{$ti-prefix}-layers-subtract:before { content: $ti-icon-layers-subtract; } +.#{$ti-prefix}-layers-union:before { content: $ti-icon-layers-union; } +.#{$ti-prefix}-layout:before { content: $ti-icon-layout; } +.#{$ti-prefix}-layout-2:before { content: $ti-icon-layout-2; } +.#{$ti-prefix}-layout-align-bottom:before { content: $ti-icon-layout-align-bottom; } +.#{$ti-prefix}-layout-align-center:before { content: $ti-icon-layout-align-center; } +.#{$ti-prefix}-layout-align-left:before { content: $ti-icon-layout-align-left; } +.#{$ti-prefix}-layout-align-middle:before { content: $ti-icon-layout-align-middle; } +.#{$ti-prefix}-layout-align-right:before { content: $ti-icon-layout-align-right; } +.#{$ti-prefix}-layout-align-top:before { content: $ti-icon-layout-align-top; } +.#{$ti-prefix}-layout-board:before { content: $ti-icon-layout-board; } +.#{$ti-prefix}-layout-board-split:before { content: $ti-icon-layout-board-split; } +.#{$ti-prefix}-layout-bottombar:before { content: $ti-icon-layout-bottombar; } +.#{$ti-prefix}-layout-bottombar-collapse:before { content: $ti-icon-layout-bottombar-collapse; } +.#{$ti-prefix}-layout-bottombar-expand:before { content: $ti-icon-layout-bottombar-expand; } +.#{$ti-prefix}-layout-cards:before { content: $ti-icon-layout-cards; } +.#{$ti-prefix}-layout-collage:before { content: $ti-icon-layout-collage; } +.#{$ti-prefix}-layout-columns:before { content: $ti-icon-layout-columns; } +.#{$ti-prefix}-layout-dashboard:before { content: $ti-icon-layout-dashboard; } +.#{$ti-prefix}-layout-distribute-horizontal:before { content: $ti-icon-layout-distribute-horizontal; } +.#{$ti-prefix}-layout-distribute-vertical:before { content: $ti-icon-layout-distribute-vertical; } +.#{$ti-prefix}-layout-grid:before { content: $ti-icon-layout-grid; } +.#{$ti-prefix}-layout-grid-add:before { content: $ti-icon-layout-grid-add; } +.#{$ti-prefix}-layout-kanban:before { content: $ti-icon-layout-kanban; } +.#{$ti-prefix}-layout-list:before { content: $ti-icon-layout-list; } +.#{$ti-prefix}-layout-navbar:before { content: $ti-icon-layout-navbar; } +.#{$ti-prefix}-layout-navbar-collapse:before { content: $ti-icon-layout-navbar-collapse; } +.#{$ti-prefix}-layout-navbar-expand:before { content: $ti-icon-layout-navbar-expand; } +.#{$ti-prefix}-layout-off:before { content: $ti-icon-layout-off; } +.#{$ti-prefix}-layout-rows:before { content: $ti-icon-layout-rows; } +.#{$ti-prefix}-layout-sidebar:before { content: $ti-icon-layout-sidebar; } +.#{$ti-prefix}-layout-sidebar-left-collapse:before { content: $ti-icon-layout-sidebar-left-collapse; } +.#{$ti-prefix}-layout-sidebar-left-expand:before { content: $ti-icon-layout-sidebar-left-expand; } +.#{$ti-prefix}-layout-sidebar-right:before { content: $ti-icon-layout-sidebar-right; } +.#{$ti-prefix}-layout-sidebar-right-collapse:before { content: $ti-icon-layout-sidebar-right-collapse; } +.#{$ti-prefix}-layout-sidebar-right-expand:before { content: $ti-icon-layout-sidebar-right-expand; } +.#{$ti-prefix}-leaf:before { content: $ti-icon-leaf; } +.#{$ti-prefix}-leaf-off:before { content: $ti-icon-leaf-off; } +.#{$ti-prefix}-lego:before { content: $ti-icon-lego; } +.#{$ti-prefix}-lego-off:before { content: $ti-icon-lego-off; } +.#{$ti-prefix}-lemon:before { content: $ti-icon-lemon; } +.#{$ti-prefix}-lemon-2:before { content: $ti-icon-lemon-2; } +.#{$ti-prefix}-letter-a:before { content: $ti-icon-letter-a; } +.#{$ti-prefix}-letter-b:before { content: $ti-icon-letter-b; } +.#{$ti-prefix}-letter-c:before { content: $ti-icon-letter-c; } +.#{$ti-prefix}-letter-case:before { content: $ti-icon-letter-case; } +.#{$ti-prefix}-letter-case-lower:before { content: $ti-icon-letter-case-lower; } +.#{$ti-prefix}-letter-case-toggle:before { content: $ti-icon-letter-case-toggle; } +.#{$ti-prefix}-letter-case-upper:before { content: $ti-icon-letter-case-upper; } +.#{$ti-prefix}-letter-d:before { content: $ti-icon-letter-d; } +.#{$ti-prefix}-letter-e:before { content: $ti-icon-letter-e; } +.#{$ti-prefix}-letter-f:before { content: $ti-icon-letter-f; } +.#{$ti-prefix}-letter-g:before { content: $ti-icon-letter-g; } +.#{$ti-prefix}-letter-h:before { content: $ti-icon-letter-h; } +.#{$ti-prefix}-letter-i:before { content: $ti-icon-letter-i; } +.#{$ti-prefix}-letter-j:before { content: $ti-icon-letter-j; } +.#{$ti-prefix}-letter-k:before { content: $ti-icon-letter-k; } +.#{$ti-prefix}-letter-l:before { content: $ti-icon-letter-l; } +.#{$ti-prefix}-letter-m:before { content: $ti-icon-letter-m; } +.#{$ti-prefix}-letter-n:before { content: $ti-icon-letter-n; } +.#{$ti-prefix}-letter-o:before { content: $ti-icon-letter-o; } +.#{$ti-prefix}-letter-p:before { content: $ti-icon-letter-p; } +.#{$ti-prefix}-letter-q:before { content: $ti-icon-letter-q; } +.#{$ti-prefix}-letter-r:before { content: $ti-icon-letter-r; } +.#{$ti-prefix}-letter-s:before { content: $ti-icon-letter-s; } +.#{$ti-prefix}-letter-spacing:before { content: $ti-icon-letter-spacing; } +.#{$ti-prefix}-letter-t:before { content: $ti-icon-letter-t; } +.#{$ti-prefix}-letter-u:before { content: $ti-icon-letter-u; } +.#{$ti-prefix}-letter-v:before { content: $ti-icon-letter-v; } +.#{$ti-prefix}-letter-w:before { content: $ti-icon-letter-w; } +.#{$ti-prefix}-letter-x:before { content: $ti-icon-letter-x; } +.#{$ti-prefix}-letter-y:before { content: $ti-icon-letter-y; } +.#{$ti-prefix}-letter-z:before { content: $ti-icon-letter-z; } +.#{$ti-prefix}-license:before { content: $ti-icon-license; } +.#{$ti-prefix}-license-off:before { content: $ti-icon-license-off; } +.#{$ti-prefix}-lifebuoy:before { content: $ti-icon-lifebuoy; } +.#{$ti-prefix}-lifebuoy-off:before { content: $ti-icon-lifebuoy-off; } +.#{$ti-prefix}-line:before { content: $ti-icon-line; } +.#{$ti-prefix}-line-dashed:before { content: $ti-icon-line-dashed; } +.#{$ti-prefix}-line-dotted:before { content: $ti-icon-line-dotted; } +.#{$ti-prefix}-line-height:before { content: $ti-icon-line-height; } +.#{$ti-prefix}-link:before { content: $ti-icon-link; } +.#{$ti-prefix}-link-off:before { content: $ti-icon-link-off; } +.#{$ti-prefix}-list:before { content: $ti-icon-list; } +.#{$ti-prefix}-list-check:before { content: $ti-icon-list-check; } +.#{$ti-prefix}-list-details:before { content: $ti-icon-list-details; } +.#{$ti-prefix}-list-numbers:before { content: $ti-icon-list-numbers; } +.#{$ti-prefix}-list-search:before { content: $ti-icon-list-search; } +.#{$ti-prefix}-live-photo:before { content: $ti-icon-live-photo; } +.#{$ti-prefix}-live-photo-off:before { content: $ti-icon-live-photo-off; } +.#{$ti-prefix}-live-view:before { content: $ti-icon-live-view; } +.#{$ti-prefix}-loader:before { content: $ti-icon-loader; } +.#{$ti-prefix}-loader-2:before { content: $ti-icon-loader-2; } +.#{$ti-prefix}-loader-3:before { content: $ti-icon-loader-3; } +.#{$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; } +.#{$ti-prefix}-lock-access-off:before { content: $ti-icon-lock-access-off; } +.#{$ti-prefix}-lock-off:before { content: $ti-icon-lock-off; } +.#{$ti-prefix}-lock-open:before { content: $ti-icon-lock-open; } +.#{$ti-prefix}-lock-open-off:before { content: $ti-icon-lock-open-off; } +.#{$ti-prefix}-lock-square:before { content: $ti-icon-lock-square; } +.#{$ti-prefix}-lock-square-rounded:before { content: $ti-icon-lock-square-rounded; } +.#{$ti-prefix}-logic-and:before { content: $ti-icon-logic-and; } +.#{$ti-prefix}-logic-buffer:before { content: $ti-icon-logic-buffer; } +.#{$ti-prefix}-logic-nand:before { content: $ti-icon-logic-nand; } +.#{$ti-prefix}-logic-nor:before { content: $ti-icon-logic-nor; } +.#{$ti-prefix}-logic-not:before { content: $ti-icon-logic-not; } +.#{$ti-prefix}-logic-or:before { content: $ti-icon-logic-or; } +.#{$ti-prefix}-logic-xnor:before { content: $ti-icon-logic-xnor; } +.#{$ti-prefix}-logic-xor:before { content: $ti-icon-logic-xor; } +.#{$ti-prefix}-login:before { content: $ti-icon-login; } +.#{$ti-prefix}-logout:before { content: $ti-icon-logout; } +.#{$ti-prefix}-lollipop:before { content: $ti-icon-lollipop; } +.#{$ti-prefix}-lollipop-off:before { content: $ti-icon-lollipop-off; } +.#{$ti-prefix}-luggage:before { content: $ti-icon-luggage; } +.#{$ti-prefix}-luggage-off:before { content: $ti-icon-luggage-off; } +.#{$ti-prefix}-lungs:before { content: $ti-icon-lungs; } +.#{$ti-prefix}-lungs-off:before { content: $ti-icon-lungs-off; } +.#{$ti-prefix}-macro:before { content: $ti-icon-macro; } +.#{$ti-prefix}-macro-off:before { content: $ti-icon-macro-off; } +.#{$ti-prefix}-magnet:before { content: $ti-icon-magnet; } +.#{$ti-prefix}-magnet-off:before { content: $ti-icon-magnet-off; } +.#{$ti-prefix}-mail:before { content: $ti-icon-mail; } +.#{$ti-prefix}-mail-fast:before { content: $ti-icon-mail-fast; } +.#{$ti-prefix}-mail-forward:before { content: $ti-icon-mail-forward; } +.#{$ti-prefix}-mail-off:before { content: $ti-icon-mail-off; } +.#{$ti-prefix}-mail-opened:before { content: $ti-icon-mail-opened; } +.#{$ti-prefix}-mailbox:before { content: $ti-icon-mailbox; } +.#{$ti-prefix}-mailbox-off:before { content: $ti-icon-mailbox-off; } +.#{$ti-prefix}-man:before { content: $ti-icon-man; } +.#{$ti-prefix}-manual-gearbox:before { content: $ti-icon-manual-gearbox; } +.#{$ti-prefix}-map:before { content: $ti-icon-map; } +.#{$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; } +.#{$ti-prefix}-markdown:before { content: $ti-icon-markdown; } +.#{$ti-prefix}-markdown-off:before { content: $ti-icon-markdown-off; } +.#{$ti-prefix}-marquee:before { content: $ti-icon-marquee; } +.#{$ti-prefix}-marquee-2:before { content: $ti-icon-marquee-2; } +.#{$ti-prefix}-marquee-off:before { content: $ti-icon-marquee-off; } +.#{$ti-prefix}-mars:before { content: $ti-icon-mars; } +.#{$ti-prefix}-mask:before { content: $ti-icon-mask; } +.#{$ti-prefix}-mask-off:before { content: $ti-icon-mask-off; } +.#{$ti-prefix}-masks-theater:before { content: $ti-icon-masks-theater; } +.#{$ti-prefix}-masks-theater-off:before { content: $ti-icon-masks-theater-off; } +.#{$ti-prefix}-massage:before { content: $ti-icon-massage; } +.#{$ti-prefix}-matchstick:before { content: $ti-icon-matchstick; } +.#{$ti-prefix}-math:before { content: $ti-icon-math; } +.#{$ti-prefix}-math-1-divide-2:before { content: $ti-icon-math-1-divide-2; } +.#{$ti-prefix}-math-1-divide-3:before { content: $ti-icon-math-1-divide-3; } +.#{$ti-prefix}-math-avg:before { content: $ti-icon-math-avg; } +.#{$ti-prefix}-math-equal-greater:before { content: $ti-icon-math-equal-greater; } +.#{$ti-prefix}-math-equal-lower:before { content: $ti-icon-math-equal-lower; } +.#{$ti-prefix}-math-function:before { content: $ti-icon-math-function; } +.#{$ti-prefix}-math-function-off:before { content: $ti-icon-math-function-off; } +.#{$ti-prefix}-math-function-y:before { content: $ti-icon-math-function-y; } +.#{$ti-prefix}-math-greater:before { content: $ti-icon-math-greater; } +.#{$ti-prefix}-math-integral:before { content: $ti-icon-math-integral; } +.#{$ti-prefix}-math-integral-x:before { content: $ti-icon-math-integral-x; } +.#{$ti-prefix}-math-integrals:before { content: $ti-icon-math-integrals; } +.#{$ti-prefix}-math-lower:before { content: $ti-icon-math-lower; } +.#{$ti-prefix}-math-max:before { content: $ti-icon-math-max; } +.#{$ti-prefix}-math-min:before { content: $ti-icon-math-min; } +.#{$ti-prefix}-math-not:before { content: $ti-icon-math-not; } +.#{$ti-prefix}-math-off:before { content: $ti-icon-math-off; } +.#{$ti-prefix}-math-pi:before { content: $ti-icon-math-pi; } +.#{$ti-prefix}-math-pi-divide-2:before { content: $ti-icon-math-pi-divide-2; } +.#{$ti-prefix}-math-symbols:before { content: $ti-icon-math-symbols; } +.#{$ti-prefix}-math-x-divide-2:before { content: $ti-icon-math-x-divide-2; } +.#{$ti-prefix}-math-x-divide-y:before { content: $ti-icon-math-x-divide-y; } +.#{$ti-prefix}-math-x-divide-y-2:before { content: $ti-icon-math-x-divide-y-2; } +.#{$ti-prefix}-math-x-minus-x:before { content: $ti-icon-math-x-minus-x; } +.#{$ti-prefix}-math-x-minus-y:before { content: $ti-icon-math-x-minus-y; } +.#{$ti-prefix}-math-x-plus-x:before { content: $ti-icon-math-x-plus-x; } +.#{$ti-prefix}-math-x-plus-y:before { content: $ti-icon-math-x-plus-y; } +.#{$ti-prefix}-math-xy:before { content: $ti-icon-math-xy; } +.#{$ti-prefix}-math-y-minus-y:before { content: $ti-icon-math-y-minus-y; } +.#{$ti-prefix}-math-y-plus-y:before { content: $ti-icon-math-y-plus-y; } +.#{$ti-prefix}-maximize:before { content: $ti-icon-maximize; } +.#{$ti-prefix}-maximize-off:before { content: $ti-icon-maximize-off; } +.#{$ti-prefix}-meat:before { content: $ti-icon-meat; } +.#{$ti-prefix}-meat-off:before { content: $ti-icon-meat-off; } +.#{$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; } +.#{$ti-prefix}-menorah:before { content: $ti-icon-menorah; } +.#{$ti-prefix}-menu:before { content: $ti-icon-menu; } +.#{$ti-prefix}-menu-2:before { content: $ti-icon-menu-2; } +.#{$ti-prefix}-menu-order:before { content: $ti-icon-menu-order; } +.#{$ti-prefix}-message:before { content: $ti-icon-message; } +.#{$ti-prefix}-message-2:before { content: $ti-icon-message-2; } +.#{$ti-prefix}-message-2-code:before { content: $ti-icon-message-2-code; } +.#{$ti-prefix}-message-2-off:before { content: $ti-icon-message-2-off; } +.#{$ti-prefix}-message-2-share:before { content: $ti-icon-message-2-share; } +.#{$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; } +.#{$ti-prefix}-message-forward:before { content: $ti-icon-message-forward; } +.#{$ti-prefix}-message-language:before { content: $ti-icon-message-language; } +.#{$ti-prefix}-message-off:before { content: $ti-icon-message-off; } +.#{$ti-prefix}-message-plus:before { content: $ti-icon-message-plus; } +.#{$ti-prefix}-message-report:before { content: $ti-icon-message-report; } +.#{$ti-prefix}-message-share:before { content: $ti-icon-message-share; } +.#{$ti-prefix}-messages:before { content: $ti-icon-messages; } +.#{$ti-prefix}-messages-off:before { content: $ti-icon-messages-off; } +.#{$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; } +.#{$ti-prefix}-microphone-off:before { content: $ti-icon-microphone-off; } +.#{$ti-prefix}-microscope:before { content: $ti-icon-microscope; } +.#{$ti-prefix}-microscope-off:before { content: $ti-icon-microscope-off; } +.#{$ti-prefix}-microwave:before { content: $ti-icon-microwave; } +.#{$ti-prefix}-microwave-off:before { content: $ti-icon-microwave-off; } +.#{$ti-prefix}-military-award:before { content: $ti-icon-military-award; } +.#{$ti-prefix}-military-rank:before { content: $ti-icon-military-rank; } +.#{$ti-prefix}-milk:before { content: $ti-icon-milk; } +.#{$ti-prefix}-milk-off:before { content: $ti-icon-milk-off; } +.#{$ti-prefix}-milkshake:before { content: $ti-icon-milkshake; } +.#{$ti-prefix}-minimize:before { content: $ti-icon-minimize; } +.#{$ti-prefix}-minus:before { content: $ti-icon-minus; } +.#{$ti-prefix}-minus-vertical:before { content: $ti-icon-minus-vertical; } +.#{$ti-prefix}-mist:before { content: $ti-icon-mist; } +.#{$ti-prefix}-mist-off:before { content: $ti-icon-mist-off; } +.#{$ti-prefix}-moneybag:before { content: $ti-icon-moneybag; } +.#{$ti-prefix}-mood-angry:before { content: $ti-icon-mood-angry; } +.#{$ti-prefix}-mood-annoyed:before { content: $ti-icon-mood-annoyed; } +.#{$ti-prefix}-mood-annoyed-2:before { content: $ti-icon-mood-annoyed-2; } +.#{$ti-prefix}-mood-boy:before { content: $ti-icon-mood-boy; } +.#{$ti-prefix}-mood-confuzed:before { content: $ti-icon-mood-confuzed; } +.#{$ti-prefix}-mood-crazy-happy:before { content: $ti-icon-mood-crazy-happy; } +.#{$ti-prefix}-mood-cry:before { content: $ti-icon-mood-cry; } +.#{$ti-prefix}-mood-empty:before { content: $ti-icon-mood-empty; } +.#{$ti-prefix}-mood-happy:before { content: $ti-icon-mood-happy; } +.#{$ti-prefix}-mood-kid:before { content: $ti-icon-mood-kid; } +.#{$ti-prefix}-mood-look-left:before { content: $ti-icon-mood-look-left; } +.#{$ti-prefix}-mood-look-right:before { content: $ti-icon-mood-look-right; } +.#{$ti-prefix}-mood-nerd:before { content: $ti-icon-mood-nerd; } +.#{$ti-prefix}-mood-nervous:before { content: $ti-icon-mood-nervous; } +.#{$ti-prefix}-mood-neutral:before { content: $ti-icon-mood-neutral; } +.#{$ti-prefix}-mood-off:before { content: $ti-icon-mood-off; } +.#{$ti-prefix}-mood-sad:before { content: $ti-icon-mood-sad; } +.#{$ti-prefix}-mood-sad-2:before { content: $ti-icon-mood-sad-2; } +.#{$ti-prefix}-mood-sad-dizzy:before { content: $ti-icon-mood-sad-dizzy; } +.#{$ti-prefix}-mood-sad-squint:before { content: $ti-icon-mood-sad-squint; } +.#{$ti-prefix}-mood-sick:before { content: $ti-icon-mood-sick; } +.#{$ti-prefix}-mood-silence:before { content: $ti-icon-mood-silence; } +.#{$ti-prefix}-mood-sing:before { content: $ti-icon-mood-sing; } +.#{$ti-prefix}-mood-smile:before { content: $ti-icon-mood-smile; } +.#{$ti-prefix}-mood-smile-beam:before { content: $ti-icon-mood-smile-beam; } +.#{$ti-prefix}-mood-smile-dizzy:before { content: $ti-icon-mood-smile-dizzy; } +.#{$ti-prefix}-mood-suprised:before { content: $ti-icon-mood-suprised; } +.#{$ti-prefix}-mood-tongue:before { content: $ti-icon-mood-tongue; } +.#{$ti-prefix}-mood-tongue-wink:before { content: $ti-icon-mood-tongue-wink; } +.#{$ti-prefix}-mood-tongue-wink-2:before { content: $ti-icon-mood-tongue-wink-2; } +.#{$ti-prefix}-mood-unamused:before { content: $ti-icon-mood-unamused; } +.#{$ti-prefix}-mood-wink:before { content: $ti-icon-mood-wink; } +.#{$ti-prefix}-mood-wink-2:before { content: $ti-icon-mood-wink-2; } +.#{$ti-prefix}-mood-wrrr:before { content: $ti-icon-mood-wrrr; } +.#{$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; } +.#{$ti-prefix}-motorbike:before { content: $ti-icon-motorbike; } +.#{$ti-prefix}-mountain:before { content: $ti-icon-mountain; } +.#{$ti-prefix}-mountain-off:before { content: $ti-icon-mountain-off; } +.#{$ti-prefix}-mouse:before { content: $ti-icon-mouse; } +.#{$ti-prefix}-mouse-2:before { content: $ti-icon-mouse-2; } +.#{$ti-prefix}-mouse-off:before { content: $ti-icon-mouse-off; } +.#{$ti-prefix}-moustache:before { content: $ti-icon-moustache; } +.#{$ti-prefix}-movie:before { content: $ti-icon-movie; } +.#{$ti-prefix}-movie-off:before { content: $ti-icon-movie-off; } +.#{$ti-prefix}-mug:before { content: $ti-icon-mug; } +.#{$ti-prefix}-mug-off:before { content: $ti-icon-mug-off; } +.#{$ti-prefix}-multiplier-0-5x:before { content: $ti-icon-multiplier-0-5x; } +.#{$ti-prefix}-multiplier-1-5x:before { content: $ti-icon-multiplier-1-5x; } +.#{$ti-prefix}-multiplier-1x:before { content: $ti-icon-multiplier-1x; } +.#{$ti-prefix}-multiplier-2x:before { content: $ti-icon-multiplier-2x; } +.#{$ti-prefix}-mushroom:before { content: $ti-icon-mushroom; } +.#{$ti-prefix}-mushroom-off:before { content: $ti-icon-mushroom-off; } +.#{$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; } +.#{$ti-prefix}-network:before { content: $ti-icon-network; } +.#{$ti-prefix}-network-off:before { content: $ti-icon-network-off; } +.#{$ti-prefix}-new-section:before { content: $ti-icon-new-section; } +.#{$ti-prefix}-news:before { content: $ti-icon-news; } +.#{$ti-prefix}-news-off:before { content: $ti-icon-news-off; } +.#{$ti-prefix}-nfc:before { content: $ti-icon-nfc; } +.#{$ti-prefix}-nfc-off:before { content: $ti-icon-nfc-off; } +.#{$ti-prefix}-no-copyright:before { content: $ti-icon-no-copyright; } +.#{$ti-prefix}-no-creative-commons:before { content: $ti-icon-no-creative-commons; } +.#{$ti-prefix}-no-derivatives:before { content: $ti-icon-no-derivatives; } +.#{$ti-prefix}-north-star:before { content: $ti-icon-north-star; } +.#{$ti-prefix}-note:before { content: $ti-icon-note; } +.#{$ti-prefix}-note-off:before { content: $ti-icon-note-off; } +.#{$ti-prefix}-notebook:before { content: $ti-icon-notebook; } +.#{$ti-prefix}-notebook-off:before { content: $ti-icon-notebook-off; } +.#{$ti-prefix}-notes:before { content: $ti-icon-notes; } +.#{$ti-prefix}-notes-off:before { content: $ti-icon-notes-off; } +.#{$ti-prefix}-notification:before { content: $ti-icon-notification; } +.#{$ti-prefix}-notification-off:before { content: $ti-icon-notification-off; } +.#{$ti-prefix}-number:before { content: $ti-icon-number; } +.#{$ti-prefix}-number-0:before { content: $ti-icon-number-0; } +.#{$ti-prefix}-number-1:before { content: $ti-icon-number-1; } +.#{$ti-prefix}-number-2:before { content: $ti-icon-number-2; } +.#{$ti-prefix}-number-3:before { content: $ti-icon-number-3; } +.#{$ti-prefix}-number-4:before { content: $ti-icon-number-4; } +.#{$ti-prefix}-number-5:before { content: $ti-icon-number-5; } +.#{$ti-prefix}-number-6:before { content: $ti-icon-number-6; } +.#{$ti-prefix}-number-7:before { content: $ti-icon-number-7; } +.#{$ti-prefix}-number-8:before { content: $ti-icon-number-8; } +.#{$ti-prefix}-number-9:before { content: $ti-icon-number-9; } +.#{$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; } +.#{$ti-prefix}-olympics-off:before { content: $ti-icon-olympics-off; } +.#{$ti-prefix}-om:before { content: $ti-icon-om; } +.#{$ti-prefix}-omega:before { content: $ti-icon-omega; } +.#{$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; } +.#{$ti-prefix}-packages:before { content: $ti-icon-packages; } +.#{$ti-prefix}-packge-export:before { content: $ti-icon-packge-export; } +.#{$ti-prefix}-packge-import:before { content: $ti-icon-packge-import; } +.#{$ti-prefix}-pacman:before { content: $ti-icon-pacman; } +.#{$ti-prefix}-page-break:before { content: $ti-icon-page-break; } +.#{$ti-prefix}-paint:before { content: $ti-icon-paint; } +.#{$ti-prefix}-paint-off:before { content: $ti-icon-paint-off; } +.#{$ti-prefix}-palette:before { content: $ti-icon-palette; } +.#{$ti-prefix}-palette-off:before { content: $ti-icon-palette-off; } +.#{$ti-prefix}-panorama-horizontal:before { content: $ti-icon-panorama-horizontal; } +.#{$ti-prefix}-panorama-horizontal-off:before { content: $ti-icon-panorama-horizontal-off; } +.#{$ti-prefix}-panorama-vertical:before { content: $ti-icon-panorama-vertical; } +.#{$ti-prefix}-panorama-vertical-off:before { content: $ti-icon-panorama-vertical-off; } +.#{$ti-prefix}-paper-bag:before { content: $ti-icon-paper-bag; } +.#{$ti-prefix}-paper-bag-off:before { content: $ti-icon-paper-bag-off; } +.#{$ti-prefix}-paperclip:before { content: $ti-icon-paperclip; } +.#{$ti-prefix}-parachute:before { content: $ti-icon-parachute; } +.#{$ti-prefix}-parachute-off:before { content: $ti-icon-parachute-off; } +.#{$ti-prefix}-parentheses:before { content: $ti-icon-parentheses; } +.#{$ti-prefix}-parentheses-off:before { content: $ti-icon-parentheses-off; } +.#{$ti-prefix}-parking:before { content: $ti-icon-parking; } +.#{$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; } +.#{$ti-prefix}-pencil-minus:before { content: $ti-icon-pencil-minus; } +.#{$ti-prefix}-pencil-off:before { content: $ti-icon-pencil-off; } +.#{$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; } +.#{$ti-prefix}-pepper-off:before { content: $ti-icon-pepper-off; } +.#{$ti-prefix}-percentage:before { content: $ti-icon-percentage; } +.#{$ti-prefix}-perfume:before { content: $ti-icon-perfume; } +.#{$ti-prefix}-perspective:before { content: $ti-icon-perspective; } +.#{$ti-prefix}-perspective-off:before { content: $ti-icon-perspective-off; } +.#{$ti-prefix}-phone:before { content: $ti-icon-phone; } +.#{$ti-prefix}-phone-call:before { content: $ti-icon-phone-call; } +.#{$ti-prefix}-phone-calling:before { content: $ti-icon-phone-calling; } +.#{$ti-prefix}-phone-check:before { content: $ti-icon-phone-check; } +.#{$ti-prefix}-phone-incoming:before { content: $ti-icon-phone-incoming; } +.#{$ti-prefix}-phone-off:before { content: $ti-icon-phone-off; } +.#{$ti-prefix}-phone-outgoing:before { content: $ti-icon-phone-outgoing; } +.#{$ti-prefix}-phone-pause:before { content: $ti-icon-phone-pause; } +.#{$ti-prefix}-phone-plus:before { content: $ti-icon-phone-plus; } +.#{$ti-prefix}-phone-x:before { content: $ti-icon-phone-x; } +.#{$ti-prefix}-photo:before { content: $ti-icon-photo; } +.#{$ti-prefix}-photo-cancel:before { content: $ti-icon-photo-cancel; } +.#{$ti-prefix}-photo-check:before { content: $ti-icon-photo-check; } +.#{$ti-prefix}-photo-down:before { content: $ti-icon-photo-down; } +.#{$ti-prefix}-photo-edit:before { content: $ti-icon-photo-edit; } +.#{$ti-prefix}-photo-heart:before { content: $ti-icon-photo-heart; } +.#{$ti-prefix}-photo-minus:before { content: $ti-icon-photo-minus; } +.#{$ti-prefix}-photo-off:before { content: $ti-icon-photo-off; } +.#{$ti-prefix}-photo-plus:before { content: $ti-icon-photo-plus; } +.#{$ti-prefix}-photo-search:before { content: $ti-icon-photo-search; } +.#{$ti-prefix}-photo-shield:before { content: $ti-icon-photo-shield; } +.#{$ti-prefix}-photo-star:before { content: $ti-icon-photo-star; } +.#{$ti-prefix}-photo-up:before { content: $ti-icon-photo-up; } +.#{$ti-prefix}-photo-x:before { content: $ti-icon-photo-x; } +.#{$ti-prefix}-physotherapist:before { content: $ti-icon-physotherapist; } +.#{$ti-prefix}-picture-in-picture:before { content: $ti-icon-picture-in-picture; } +.#{$ti-prefix}-picture-in-picture-off:before { content: $ti-icon-picture-in-picture-off; } +.#{$ti-prefix}-picture-in-picture-on:before { content: $ti-icon-picture-in-picture-on; } +.#{$ti-prefix}-picture-in-picture-top:before { content: $ti-icon-picture-in-picture-top; } +.#{$ti-prefix}-pig:before { content: $ti-icon-pig; } +.#{$ti-prefix}-pig-money:before { content: $ti-icon-pig-money; } +.#{$ti-prefix}-pig-off:before { content: $ti-icon-pig-off; } +.#{$ti-prefix}-pilcrow:before { content: $ti-icon-pilcrow; } +.#{$ti-prefix}-pill:before { content: $ti-icon-pill; } +.#{$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; } +.#{$ti-prefix}-placeholder:before { content: $ti-icon-placeholder; } +.#{$ti-prefix}-plane:before { content: $ti-icon-plane; } +.#{$ti-prefix}-plane-arrival:before { content: $ti-icon-plane-arrival; } +.#{$ti-prefix}-plane-departure:before { content: $ti-icon-plane-departure; } +.#{$ti-prefix}-plane-inflight:before { content: $ti-icon-plane-inflight; } +.#{$ti-prefix}-plane-off:before { content: $ti-icon-plane-off; } +.#{$ti-prefix}-plane-tilt:before { content: $ti-icon-plane-tilt; } +.#{$ti-prefix}-planet:before { content: $ti-icon-planet; } +.#{$ti-prefix}-planet-off:before { content: $ti-icon-planet-off; } +.#{$ti-prefix}-plant:before { content: $ti-icon-plant; } +.#{$ti-prefix}-plant-2:before { content: $ti-icon-plant-2; } +.#{$ti-prefix}-plant-2-off:before { content: $ti-icon-plant-2-off; } +.#{$ti-prefix}-plant-off:before { content: $ti-icon-plant-off; } +.#{$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; } +.#{$ti-prefix}-playlist-x:before { content: $ti-icon-playlist-x; } +.#{$ti-prefix}-playstation-circle:before { content: $ti-icon-playstation-circle; } +.#{$ti-prefix}-playstation-square:before { content: $ti-icon-playstation-square; } +.#{$ti-prefix}-playstation-triangle:before { content: $ti-icon-playstation-triangle; } +.#{$ti-prefix}-playstation-x:before { content: $ti-icon-playstation-x; } +.#{$ti-prefix}-plug:before { content: $ti-icon-plug; } +.#{$ti-prefix}-plug-connected:before { content: $ti-icon-plug-connected; } +.#{$ti-prefix}-plug-connected-x:before { content: $ti-icon-plug-connected-x; } +.#{$ti-prefix}-plug-off:before { content: $ti-icon-plug-off; } +.#{$ti-prefix}-plug-x:before { content: $ti-icon-plug-x; } +.#{$ti-prefix}-plus:before { content: $ti-icon-plus; } +.#{$ti-prefix}-png:before { content: $ti-icon-png; } +.#{$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; } +.#{$ti-prefix}-pokeball-off:before { content: $ti-icon-pokeball-off; } +.#{$ti-prefix}-poker-chip:before { content: $ti-icon-poker-chip; } +.#{$ti-prefix}-polaroid:before { content: $ti-icon-polaroid; } +.#{$ti-prefix}-polygon:before { content: $ti-icon-polygon; } +.#{$ti-prefix}-polygon-off:before { content: $ti-icon-polygon-off; } +.#{$ti-prefix}-poo:before { content: $ti-icon-poo; } +.#{$ti-prefix}-pool:before { content: $ti-icon-pool; } +.#{$ti-prefix}-pool-off:before { content: $ti-icon-pool-off; } +.#{$ti-prefix}-power:before { content: $ti-icon-power; } +.#{$ti-prefix}-pray:before { content: $ti-icon-pray; } +.#{$ti-prefix}-premium-rights:before { content: $ti-icon-premium-rights; } +.#{$ti-prefix}-prescription:before { content: $ti-icon-prescription; } +.#{$ti-prefix}-presentation:before { content: $ti-icon-presentation; } +.#{$ti-prefix}-presentation-analytics:before { content: $ti-icon-presentation-analytics; } +.#{$ti-prefix}-presentation-off:before { content: $ti-icon-presentation-off; } +.#{$ti-prefix}-printer:before { content: $ti-icon-printer; } +.#{$ti-prefix}-printer-off:before { content: $ti-icon-printer-off; } +.#{$ti-prefix}-prison:before { content: $ti-icon-prison; } +.#{$ti-prefix}-prompt:before { content: $ti-icon-prompt; } +.#{$ti-prefix}-propeller:before { content: $ti-icon-propeller; } +.#{$ti-prefix}-propeller-off:before { content: $ti-icon-propeller-off; } +.#{$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; } +.#{$ti-prefix}-qrcode:before { content: $ti-icon-qrcode; } +.#{$ti-prefix}-qrcode-off:before { content: $ti-icon-qrcode-off; } +.#{$ti-prefix}-question-circle:before { content: $ti-icon-question-circle; } +.#{$ti-prefix}-question-mark:before { content: $ti-icon-question-mark; } +.#{$ti-prefix}-quote:before { content: $ti-icon-quote; } +.#{$ti-prefix}-quote-off:before { content: $ti-icon-quote-off; } +.#{$ti-prefix}-radar:before { content: $ti-icon-radar; } +.#{$ti-prefix}-radar-2:before { content: $ti-icon-radar-2; } +.#{$ti-prefix}-radar-off:before { content: $ti-icon-radar-off; } +.#{$ti-prefix}-radio:before { content: $ti-icon-radio; } +.#{$ti-prefix}-radio-off:before { content: $ti-icon-radio-off; } +.#{$ti-prefix}-radioactive:before { content: $ti-icon-radioactive; } +.#{$ti-prefix}-radioactive-off:before { content: $ti-icon-radioactive-off; } +.#{$ti-prefix}-radius-bottom-left:before { content: $ti-icon-radius-bottom-left; } +.#{$ti-prefix}-radius-bottom-right:before { content: $ti-icon-radius-bottom-right; } +.#{$ti-prefix}-radius-top-left:before { content: $ti-icon-radius-top-left; } +.#{$ti-prefix}-radius-top-right:before { content: $ti-icon-radius-top-right; } +.#{$ti-prefix}-rainbow:before { content: $ti-icon-rainbow; } +.#{$ti-prefix}-rainbow-off:before { content: $ti-icon-rainbow-off; } +.#{$ti-prefix}-rating-12-plus:before { content: $ti-icon-rating-12-plus; } +.#{$ti-prefix}-rating-14-plus:before { content: $ti-icon-rating-14-plus; } +.#{$ti-prefix}-rating-16-plus:before { content: $ti-icon-rating-16-plus; } +.#{$ti-prefix}-rating-18-plus:before { content: $ti-icon-rating-18-plus; } +.#{$ti-prefix}-rating-21-plus:before { content: $ti-icon-rating-21-plus; } +.#{$ti-prefix}-razor:before { content: $ti-icon-razor; } +.#{$ti-prefix}-razor-electric:before { content: $ti-icon-razor-electric; } +.#{$ti-prefix}-receipt:before { content: $ti-icon-receipt; } +.#{$ti-prefix}-receipt-2:before { content: $ti-icon-receipt-2; } +.#{$ti-prefix}-receipt-off:before { content: $ti-icon-receipt-off; } +.#{$ti-prefix}-receipt-refund:before { content: $ti-icon-receipt-refund; } +.#{$ti-prefix}-receipt-tax:before { content: $ti-icon-receipt-tax; } +.#{$ti-prefix}-recharging:before { content: $ti-icon-recharging; } +.#{$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; } +.#{$ti-prefix}-refresh-alert:before { content: $ti-icon-refresh-alert; } +.#{$ti-prefix}-refresh-dot:before { content: $ti-icon-refresh-dot; } +.#{$ti-prefix}-refresh-off:before { content: $ti-icon-refresh-off; } +.#{$ti-prefix}-regex:before { content: $ti-icon-regex; } +.#{$ti-prefix}-regex-off:before { content: $ti-icon-regex-off; } +.#{$ti-prefix}-registered:before { content: $ti-icon-registered; } +.#{$ti-prefix}-relation-many-to-many:before { content: $ti-icon-relation-many-to-many; } +.#{$ti-prefix}-relation-one-to-many:before { content: $ti-icon-relation-one-to-many; } +.#{$ti-prefix}-relation-one-to-one:before { content: $ti-icon-relation-one-to-one; } +.#{$ti-prefix}-reload:before { content: $ti-icon-reload; } +.#{$ti-prefix}-repeat:before { content: $ti-icon-repeat; } +.#{$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; } +.#{$ti-prefix}-report-medical:before { content: $ti-icon-report-medical; } +.#{$ti-prefix}-report-money:before { content: $ti-icon-report-money; } +.#{$ti-prefix}-report-off:before { content: $ti-icon-report-off; } +.#{$ti-prefix}-report-search:before { content: $ti-icon-report-search; } +.#{$ti-prefix}-resize:before { content: $ti-icon-resize; } +.#{$ti-prefix}-ribbon-health:before { content: $ti-icon-ribbon-health; } +.#{$ti-prefix}-ripple:before { content: $ti-icon-ripple; } +.#{$ti-prefix}-ripple-off:before { content: $ti-icon-ripple-off; } +.#{$ti-prefix}-road:before { content: $ti-icon-road; } +.#{$ti-prefix}-road-off:before { content: $ti-icon-road-off; } +.#{$ti-prefix}-road-sign:before { content: $ti-icon-road-sign; } +.#{$ti-prefix}-robot:before { content: $ti-icon-robot; } +.#{$ti-prefix}-robot-off:before { content: $ti-icon-robot-off; } +.#{$ti-prefix}-rocket:before { content: $ti-icon-rocket; } +.#{$ti-prefix}-rocket-off:before { content: $ti-icon-rocket-off; } +.#{$ti-prefix}-roller-skating:before { content: $ti-icon-roller-skating; } +.#{$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; } +.#{$ti-prefix}-rosette-number-3:before { content: $ti-icon-rosette-number-3; } +.#{$ti-prefix}-rosette-number-4:before { content: $ti-icon-rosette-number-4; } +.#{$ti-prefix}-rosette-number-5:before { content: $ti-icon-rosette-number-5; } +.#{$ti-prefix}-rosette-number-6:before { content: $ti-icon-rosette-number-6; } +.#{$ti-prefix}-rosette-number-7:before { content: $ti-icon-rosette-number-7; } +.#{$ti-prefix}-rosette-number-8:before { content: $ti-icon-rosette-number-8; } +.#{$ti-prefix}-rosette-number-9:before { content: $ti-icon-rosette-number-9; } +.#{$ti-prefix}-rotate:before { content: $ti-icon-rotate; } +.#{$ti-prefix}-rotate-2:before { content: $ti-icon-rotate-2; } +.#{$ti-prefix}-rotate-360:before { content: $ti-icon-rotate-360; } +.#{$ti-prefix}-rotate-clockwise:before { content: $ti-icon-rotate-clockwise; } +.#{$ti-prefix}-rotate-clockwise-2:before { content: $ti-icon-rotate-clockwise-2; } +.#{$ti-prefix}-rotate-dot:before { content: $ti-icon-rotate-dot; } +.#{$ti-prefix}-rotate-rectangle:before { content: $ti-icon-rotate-rectangle; } +.#{$ti-prefix}-route:before { content: $ti-icon-route; } +.#{$ti-prefix}-route-2:before { content: $ti-icon-route-2; } +.#{$ti-prefix}-route-off:before { content: $ti-icon-route-off; } +.#{$ti-prefix}-router:before { content: $ti-icon-router; } +.#{$ti-prefix}-router-off:before { content: $ti-icon-router-off; } +.#{$ti-prefix}-row-insert-bottom:before { content: $ti-icon-row-insert-bottom; } +.#{$ti-prefix}-row-insert-top:before { content: $ti-icon-row-insert-top; } +.#{$ti-prefix}-rss:before { content: $ti-icon-rss; } +.#{$ti-prefix}-rubber-stamp:before { content: $ti-icon-rubber-stamp; } +.#{$ti-prefix}-rubber-stamp-off:before { content: $ti-icon-rubber-stamp-off; } +.#{$ti-prefix}-ruler:before { content: $ti-icon-ruler; } +.#{$ti-prefix}-ruler-2:before { content: $ti-icon-ruler-2; } +.#{$ti-prefix}-ruler-2-off:before { content: $ti-icon-ruler-2-off; } +.#{$ti-prefix}-ruler-3:before { content: $ti-icon-ruler-3; } +.#{$ti-prefix}-ruler-measure:before { content: $ti-icon-ruler-measure; } +.#{$ti-prefix}-ruler-off:before { content: $ti-icon-ruler-off; } +.#{$ti-prefix}-run:before { content: $ti-icon-run; } +.#{$ti-prefix}-s-turn-down:before { content: $ti-icon-s-turn-down; } +.#{$ti-prefix}-s-turn-left:before { content: $ti-icon-s-turn-left; } +.#{$ti-prefix}-s-turn-right:before { content: $ti-icon-s-turn-right; } +.#{$ti-prefix}-s-turn-up:before { content: $ti-icon-s-turn-up; } +.#{$ti-prefix}-sailboat:before { content: $ti-icon-sailboat; } +.#{$ti-prefix}-sailboat-2:before { content: $ti-icon-sailboat-2; } +.#{$ti-prefix}-sailboat-off:before { content: $ti-icon-sailboat-off; } +.#{$ti-prefix}-salad:before { content: $ti-icon-salad; } +.#{$ti-prefix}-salt:before { content: $ti-icon-salt; } +.#{$ti-prefix}-satellite:before { content: $ti-icon-satellite; } +.#{$ti-prefix}-satellite-off:before { content: $ti-icon-satellite-off; } +.#{$ti-prefix}-sausage:before { content: $ti-icon-sausage; } +.#{$ti-prefix}-scale:before { content: $ti-icon-scale; } +.#{$ti-prefix}-scale-off:before { content: $ti-icon-scale-off; } +.#{$ti-prefix}-scale-outline:before { content: $ti-icon-scale-outline; } +.#{$ti-prefix}-scale-outline-off:before { content: $ti-icon-scale-outline-off; } +.#{$ti-prefix}-scan:before { content: $ti-icon-scan; } +.#{$ti-prefix}-scan-eye:before { content: $ti-icon-scan-eye; } +.#{$ti-prefix}-schema:before { content: $ti-icon-schema; } +.#{$ti-prefix}-schema-off:before { content: $ti-icon-schema-off; } +.#{$ti-prefix}-school:before { content: $ti-icon-school; } +.#{$ti-prefix}-school-bell:before { content: $ti-icon-school-bell; } +.#{$ti-prefix}-school-off:before { content: $ti-icon-school-off; } +.#{$ti-prefix}-scissors:before { content: $ti-icon-scissors; } +.#{$ti-prefix}-scissors-off:before { content: $ti-icon-scissors-off; } +.#{$ti-prefix}-scooter:before { content: $ti-icon-scooter; } +.#{$ti-prefix}-scooter-electric:before { content: $ti-icon-scooter-electric; } +.#{$ti-prefix}-screen-share:before { content: $ti-icon-screen-share; } +.#{$ti-prefix}-screen-share-off:before { content: $ti-icon-screen-share-off; } +.#{$ti-prefix}-screenshot:before { content: $ti-icon-screenshot; } +.#{$ti-prefix}-scribble:before { content: $ti-icon-scribble; } +.#{$ti-prefix}-scribble-off:before { content: $ti-icon-scribble-off; } +.#{$ti-prefix}-script:before { content: $ti-icon-script; } +.#{$ti-prefix}-script-minus:before { content: $ti-icon-script-minus; } +.#{$ti-prefix}-script-plus:before { content: $ti-icon-script-plus; } +.#{$ti-prefix}-script-x:before { content: $ti-icon-script-x; } +.#{$ti-prefix}-scuba-mask:before { content: $ti-icon-scuba-mask; } +.#{$ti-prefix}-scuba-mask-off:before { content: $ti-icon-scuba-mask-off; } +.#{$ti-prefix}-sdk:before { content: $ti-icon-sdk; } +.#{$ti-prefix}-search:before { content: $ti-icon-search; } +.#{$ti-prefix}-search-off:before { content: $ti-icon-search-off; } +.#{$ti-prefix}-section:before { content: $ti-icon-section; } +.#{$ti-prefix}-section-sign:before { content: $ti-icon-section-sign; } +.#{$ti-prefix}-seeding:before { content: $ti-icon-seeding; } +.#{$ti-prefix}-seeding-off:before { content: $ti-icon-seeding-off; } +.#{$ti-prefix}-select:before { content: $ti-icon-select; } +.#{$ti-prefix}-selector:before { content: $ti-icon-selector; } +.#{$ti-prefix}-send:before { content: $ti-icon-send; } +.#{$ti-prefix}-send-off:before { content: $ti-icon-send-off; } +.#{$ti-prefix}-seo:before { content: $ti-icon-seo; } +.#{$ti-prefix}-separator:before { content: $ti-icon-separator; } +.#{$ti-prefix}-separator-horizontal:before { content: $ti-icon-separator-horizontal; } +.#{$ti-prefix}-separator-vertical:before { content: $ti-icon-separator-vertical; } +.#{$ti-prefix}-server:before { content: $ti-icon-server; } +.#{$ti-prefix}-server-2:before { content: $ti-icon-server-2; } +.#{$ti-prefix}-server-bolt:before { content: $ti-icon-server-bolt; } +.#{$ti-prefix}-server-cog:before { content: $ti-icon-server-cog; } +.#{$ti-prefix}-server-off:before { content: $ti-icon-server-off; } +.#{$ti-prefix}-servicemark:before { content: $ti-icon-servicemark; } +.#{$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; } +.#{$ti-prefix}-shape:before { content: $ti-icon-shape; } +.#{$ti-prefix}-shape-2:before { content: $ti-icon-shape-2; } +.#{$ti-prefix}-shape-3:before { content: $ti-icon-shape-3; } +.#{$ti-prefix}-shape-off:before { content: $ti-icon-shape-off; } +.#{$ti-prefix}-share:before { content: $ti-icon-share; } +.#{$ti-prefix}-share-off:before { content: $ti-icon-share-off; } +.#{$ti-prefix}-shield:before { content: $ti-icon-shield; } +.#{$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; } +.#{$ti-prefix}-shield-off:before { content: $ti-icon-shield-off; } +.#{$ti-prefix}-shield-x:before { content: $ti-icon-shield-x; } +.#{$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; } +.#{$ti-prefix}-shoe-off:before { content: $ti-icon-shoe-off; } +.#{$ti-prefix}-shopping-bag:before { content: $ti-icon-shopping-bag; } +.#{$ti-prefix}-shopping-cart:before { content: $ti-icon-shopping-cart; } +.#{$ti-prefix}-shopping-cart-discount:before { content: $ti-icon-shopping-cart-discount; } +.#{$ti-prefix}-shopping-cart-off:before { content: $ti-icon-shopping-cart-off; } +.#{$ti-prefix}-shopping-cart-plus:before { content: $ti-icon-shopping-cart-plus; } +.#{$ti-prefix}-shopping-cart-x:before { content: $ti-icon-shopping-cart-x; } +.#{$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; } +.#{$ti-prefix}-signal-5g:before { content: $ti-icon-signal-5g; } +.#{$ti-prefix}-signature:before { content: $ti-icon-signature; } +.#{$ti-prefix}-signature-off:before { content: $ti-icon-signature-off; } +.#{$ti-prefix}-sitemap:before { content: $ti-icon-sitemap; } +.#{$ti-prefix}-sitemap-off:before { content: $ti-icon-sitemap-off; } +.#{$ti-prefix}-skateboard:before { content: $ti-icon-skateboard; } +.#{$ti-prefix}-skateboard-off:before { content: $ti-icon-skateboard-off; } +.#{$ti-prefix}-skull:before { content: $ti-icon-skull; } +.#{$ti-prefix}-slash:before { content: $ti-icon-slash; } +.#{$ti-prefix}-slashes:before { content: $ti-icon-slashes; } +.#{$ti-prefix}-sleigh:before { content: $ti-icon-sleigh; } +.#{$ti-prefix}-slice:before { content: $ti-icon-slice; } +.#{$ti-prefix}-slideshow:before { content: $ti-icon-slideshow; } +.#{$ti-prefix}-smart-home:before { content: $ti-icon-smart-home; } +.#{$ti-prefix}-smart-home-off:before { content: $ti-icon-smart-home-off; } +.#{$ti-prefix}-smoking:before { content: $ti-icon-smoking; } +.#{$ti-prefix}-smoking-no:before { content: $ti-icon-smoking-no; } +.#{$ti-prefix}-snowflake:before { content: $ti-icon-snowflake; } +.#{$ti-prefix}-snowflake-off:before { content: $ti-icon-snowflake-off; } +.#{$ti-prefix}-snowman:before { content: $ti-icon-snowman; } +.#{$ti-prefix}-soccer-field:before { content: $ti-icon-soccer-field; } +.#{$ti-prefix}-social:before { content: $ti-icon-social; } +.#{$ti-prefix}-social-off:before { content: $ti-icon-social-off; } +.#{$ti-prefix}-sock:before { content: $ti-icon-sock; } +.#{$ti-prefix}-sofa:before { content: $ti-icon-sofa; } +.#{$ti-prefix}-sofa-off:before { content: $ti-icon-sofa-off; } +.#{$ti-prefix}-sort-0-9:before { content: $ti-icon-sort-0-9; } +.#{$ti-prefix}-sort-9-0:before { content: $ti-icon-sort-9-0; } +.#{$ti-prefix}-sort-a-z:before { content: $ti-icon-sort-a-z; } +.#{$ti-prefix}-sort-ascending:before { content: $ti-icon-sort-ascending; } +.#{$ti-prefix}-sort-ascending-2:before { content: $ti-icon-sort-ascending-2; } +.#{$ti-prefix}-sort-ascending-letters:before { content: $ti-icon-sort-ascending-letters; } +.#{$ti-prefix}-sort-ascending-numbers:before { content: $ti-icon-sort-ascending-numbers; } +.#{$ti-prefix}-sort-descending:before { content: $ti-icon-sort-descending; } +.#{$ti-prefix}-sort-descending-2:before { content: $ti-icon-sort-descending-2; } +.#{$ti-prefix}-sort-descending-letters:before { content: $ti-icon-sort-descending-letters; } +.#{$ti-prefix}-sort-descending-numbers:before { content: $ti-icon-sort-descending-numbers; } +.#{$ti-prefix}-sort-z-a:before { content: $ti-icon-sort-z-a; } +.#{$ti-prefix}-sos:before { content: $ti-icon-sos; } +.#{$ti-prefix}-soup:before { content: $ti-icon-soup; } +.#{$ti-prefix}-soup-off:before { content: $ti-icon-soup-off; } +.#{$ti-prefix}-source-code:before { content: $ti-icon-source-code; } +.#{$ti-prefix}-space:before { content: $ti-icon-space; } +.#{$ti-prefix}-space-off:before { content: $ti-icon-space-off; } +.#{$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; } +.#{$ti-prefix}-spiral:before { content: $ti-icon-spiral; } +.#{$ti-prefix}-spiral-off:before { content: $ti-icon-spiral-off; } +.#{$ti-prefix}-sport-billard:before { content: $ti-icon-sport-billard; } +.#{$ti-prefix}-spray:before { content: $ti-icon-spray; } +.#{$ti-prefix}-spy:before { content: $ti-icon-spy; } +.#{$ti-prefix}-spy-off:before { content: $ti-icon-spy-off; } +.#{$ti-prefix}-square:before { content: $ti-icon-square; } +.#{$ti-prefix}-square-arrow-down:before { content: $ti-icon-square-arrow-down; } +.#{$ti-prefix}-square-arrow-left:before { content: $ti-icon-square-arrow-left; } +.#{$ti-prefix}-square-arrow-right:before { content: $ti-icon-square-arrow-right; } +.#{$ti-prefix}-square-arrow-up:before { content: $ti-icon-square-arrow-up; } +.#{$ti-prefix}-square-asterisk:before { content: $ti-icon-square-asterisk; } +.#{$ti-prefix}-square-check:before { content: $ti-icon-square-check; } +.#{$ti-prefix}-square-chevron-down:before { content: $ti-icon-square-chevron-down; } +.#{$ti-prefix}-square-chevron-left:before { content: $ti-icon-square-chevron-left; } +.#{$ti-prefix}-square-chevron-right:before { content: $ti-icon-square-chevron-right; } +.#{$ti-prefix}-square-chevron-up:before { content: $ti-icon-square-chevron-up; } +.#{$ti-prefix}-square-chevrons-down:before { content: $ti-icon-square-chevrons-down; } +.#{$ti-prefix}-square-chevrons-left:before { content: $ti-icon-square-chevrons-left; } +.#{$ti-prefix}-square-chevrons-right:before { content: $ti-icon-square-chevrons-right; } +.#{$ti-prefix}-square-chevrons-up:before { content: $ti-icon-square-chevrons-up; } +.#{$ti-prefix}-square-dot:before { content: $ti-icon-square-dot; } +.#{$ti-prefix}-square-f0:before { content: $ti-icon-square-f0; } +.#{$ti-prefix}-square-f1:before { content: $ti-icon-square-f1; } +.#{$ti-prefix}-square-f2:before { content: $ti-icon-square-f2; } +.#{$ti-prefix}-square-f3:before { content: $ti-icon-square-f3; } +.#{$ti-prefix}-square-f4:before { content: $ti-icon-square-f4; } +.#{$ti-prefix}-square-f5:before { content: $ti-icon-square-f5; } +.#{$ti-prefix}-square-f6:before { content: $ti-icon-square-f6; } +.#{$ti-prefix}-square-f7:before { content: $ti-icon-square-f7; } +.#{$ti-prefix}-square-f8:before { content: $ti-icon-square-f8; } +.#{$ti-prefix}-square-f9:before { content: $ti-icon-square-f9; } +.#{$ti-prefix}-square-forbid:before { content: $ti-icon-square-forbid; } +.#{$ti-prefix}-square-forbid-2:before { content: $ti-icon-square-forbid-2; } +.#{$ti-prefix}-square-half:before { content: $ti-icon-square-half; } +.#{$ti-prefix}-square-key:before { content: $ti-icon-square-key; } +.#{$ti-prefix}-square-letter-a:before { content: $ti-icon-square-letter-a; } +.#{$ti-prefix}-square-letter-b:before { content: $ti-icon-square-letter-b; } +.#{$ti-prefix}-square-letter-c:before { content: $ti-icon-square-letter-c; } +.#{$ti-prefix}-square-letter-d:before { content: $ti-icon-square-letter-d; } +.#{$ti-prefix}-square-letter-e:before { content: $ti-icon-square-letter-e; } +.#{$ti-prefix}-square-letter-f:before { content: $ti-icon-square-letter-f; } +.#{$ti-prefix}-square-letter-g:before { content: $ti-icon-square-letter-g; } +.#{$ti-prefix}-square-letter-h:before { content: $ti-icon-square-letter-h; } +.#{$ti-prefix}-square-letter-i:before { content: $ti-icon-square-letter-i; } +.#{$ti-prefix}-square-letter-j:before { content: $ti-icon-square-letter-j; } +.#{$ti-prefix}-square-letter-k:before { content: $ti-icon-square-letter-k; } +.#{$ti-prefix}-square-letter-l:before { content: $ti-icon-square-letter-l; } +.#{$ti-prefix}-square-letter-m:before { content: $ti-icon-square-letter-m; } +.#{$ti-prefix}-square-letter-n:before { content: $ti-icon-square-letter-n; } +.#{$ti-prefix}-square-letter-o:before { content: $ti-icon-square-letter-o; } +.#{$ti-prefix}-square-letter-p:before { content: $ti-icon-square-letter-p; } +.#{$ti-prefix}-square-letter-q:before { content: $ti-icon-square-letter-q; } +.#{$ti-prefix}-square-letter-r:before { content: $ti-icon-square-letter-r; } +.#{$ti-prefix}-square-letter-s:before { content: $ti-icon-square-letter-s; } +.#{$ti-prefix}-square-letter-t:before { content: $ti-icon-square-letter-t; } +.#{$ti-prefix}-square-letter-u:before { content: $ti-icon-square-letter-u; } +.#{$ti-prefix}-square-letter-v:before { content: $ti-icon-square-letter-v; } +.#{$ti-prefix}-square-letter-w:before { content: $ti-icon-square-letter-w; } +.#{$ti-prefix}-square-letter-x:before { content: $ti-icon-square-letter-x; } +.#{$ti-prefix}-square-letter-y:before { content: $ti-icon-square-letter-y; } +.#{$ti-prefix}-square-letter-z:before { content: $ti-icon-square-letter-z; } +.#{$ti-prefix}-square-minus:before { content: $ti-icon-square-minus; } +.#{$ti-prefix}-square-number-0:before { content: $ti-icon-square-number-0; } +.#{$ti-prefix}-square-number-1:before { content: $ti-icon-square-number-1; } +.#{$ti-prefix}-square-number-2:before { content: $ti-icon-square-number-2; } +.#{$ti-prefix}-square-number-3:before { content: $ti-icon-square-number-3; } +.#{$ti-prefix}-square-number-4:before { content: $ti-icon-square-number-4; } +.#{$ti-prefix}-square-number-5:before { content: $ti-icon-square-number-5; } +.#{$ti-prefix}-square-number-6:before { content: $ti-icon-square-number-6; } +.#{$ti-prefix}-square-number-7:before { content: $ti-icon-square-number-7; } +.#{$ti-prefix}-square-number-8:before { content: $ti-icon-square-number-8; } +.#{$ti-prefix}-square-number-9:before { content: $ti-icon-square-number-9; } +.#{$ti-prefix}-square-off:before { content: $ti-icon-square-off; } +.#{$ti-prefix}-square-plus:before { content: $ti-icon-square-plus; } +.#{$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; } +.#{$ti-prefix}-square-rounded:before { content: $ti-icon-square-rounded; } +.#{$ti-prefix}-square-rounded-arrow-down:before { content: $ti-icon-square-rounded-arrow-down; } +.#{$ti-prefix}-square-rounded-arrow-left:before { content: $ti-icon-square-rounded-arrow-left; } +.#{$ti-prefix}-square-rounded-arrow-right:before { content: $ti-icon-square-rounded-arrow-right; } +.#{$ti-prefix}-square-rounded-arrow-up:before { content: $ti-icon-square-rounded-arrow-up; } +.#{$ti-prefix}-square-rounded-check:before { content: $ti-icon-square-rounded-check; } +.#{$ti-prefix}-square-rounded-chevron-down:before { content: $ti-icon-square-rounded-chevron-down; } +.#{$ti-prefix}-square-rounded-chevron-left:before { content: $ti-icon-square-rounded-chevron-left; } +.#{$ti-prefix}-square-rounded-chevron-right:before { content: $ti-icon-square-rounded-chevron-right; } +.#{$ti-prefix}-square-rounded-chevron-up:before { content: $ti-icon-square-rounded-chevron-up; } +.#{$ti-prefix}-square-rounded-chevrons-down:before { content: $ti-icon-square-rounded-chevrons-down; } +.#{$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; } +.#{$ti-prefix}-square-rounded-letter-d:before { content: $ti-icon-square-rounded-letter-d; } +.#{$ti-prefix}-square-rounded-letter-e:before { content: $ti-icon-square-rounded-letter-e; } +.#{$ti-prefix}-square-rounded-letter-f:before { content: $ti-icon-square-rounded-letter-f; } +.#{$ti-prefix}-square-rounded-letter-g:before { content: $ti-icon-square-rounded-letter-g; } +.#{$ti-prefix}-square-rounded-letter-h:before { content: $ti-icon-square-rounded-letter-h; } +.#{$ti-prefix}-square-rounded-letter-i:before { content: $ti-icon-square-rounded-letter-i; } +.#{$ti-prefix}-square-rounded-letter-j:before { content: $ti-icon-square-rounded-letter-j; } +.#{$ti-prefix}-square-rounded-letter-k:before { content: $ti-icon-square-rounded-letter-k; } +.#{$ti-prefix}-square-rounded-letter-l:before { content: $ti-icon-square-rounded-letter-l; } +.#{$ti-prefix}-square-rounded-letter-m:before { content: $ti-icon-square-rounded-letter-m; } +.#{$ti-prefix}-square-rounded-letter-n:before { content: $ti-icon-square-rounded-letter-n; } +.#{$ti-prefix}-square-rounded-letter-o:before { content: $ti-icon-square-rounded-letter-o; } +.#{$ti-prefix}-square-rounded-letter-p:before { content: $ti-icon-square-rounded-letter-p; } +.#{$ti-prefix}-square-rounded-letter-q:before { content: $ti-icon-square-rounded-letter-q; } +.#{$ti-prefix}-square-rounded-letter-r:before { content: $ti-icon-square-rounded-letter-r; } +.#{$ti-prefix}-square-rounded-letter-s:before { content: $ti-icon-square-rounded-letter-s; } +.#{$ti-prefix}-square-rounded-letter-t:before { content: $ti-icon-square-rounded-letter-t; } +.#{$ti-prefix}-square-rounded-letter-u:before { content: $ti-icon-square-rounded-letter-u; } +.#{$ti-prefix}-square-rounded-letter-v:before { content: $ti-icon-square-rounded-letter-v; } +.#{$ti-prefix}-square-rounded-letter-w:before { content: $ti-icon-square-rounded-letter-w; } +.#{$ti-prefix}-square-rounded-letter-x:before { content: $ti-icon-square-rounded-letter-x; } +.#{$ti-prefix}-square-rounded-letter-y:before { content: $ti-icon-square-rounded-letter-y; } +.#{$ti-prefix}-square-rounded-letter-z:before { content: $ti-icon-square-rounded-letter-z; } +.#{$ti-prefix}-square-rounded-minus:before { content: $ti-icon-square-rounded-minus; } +.#{$ti-prefix}-square-rounded-number-0:before { content: $ti-icon-square-rounded-number-0; } +.#{$ti-prefix}-square-rounded-number-1:before { content: $ti-icon-square-rounded-number-1; } +.#{$ti-prefix}-square-rounded-number-2:before { content: $ti-icon-square-rounded-number-2; } +.#{$ti-prefix}-square-rounded-number-3:before { content: $ti-icon-square-rounded-number-3; } +.#{$ti-prefix}-square-rounded-number-4:before { content: $ti-icon-square-rounded-number-4; } +.#{$ti-prefix}-square-rounded-number-5:before { content: $ti-icon-square-rounded-number-5; } +.#{$ti-prefix}-square-rounded-number-6:before { content: $ti-icon-square-rounded-number-6; } +.#{$ti-prefix}-square-rounded-number-7:before { content: $ti-icon-square-rounded-number-7; } +.#{$ti-prefix}-square-rounded-number-8:before { content: $ti-icon-square-rounded-number-8; } +.#{$ti-prefix}-square-rounded-number-9:before { content: $ti-icon-square-rounded-number-9; } +.#{$ti-prefix}-square-rounded-plus:before { content: $ti-icon-square-rounded-plus; } +.#{$ti-prefix}-square-rounded-x:before { content: $ti-icon-square-rounded-x; } +.#{$ti-prefix}-square-toggle:before { content: $ti-icon-square-toggle; } +.#{$ti-prefix}-square-toggle-horizontal:before { content: $ti-icon-square-toggle-horizontal; } +.#{$ti-prefix}-square-x:before { content: $ti-icon-square-x; } +.#{$ti-prefix}-squares-diagonal:before { content: $ti-icon-squares-diagonal; } +.#{$ti-prefix}-squares-filled:before { content: $ti-icon-squares-filled; } +.#{$ti-prefix}-stack:before { content: $ti-icon-stack; } +.#{$ti-prefix}-stack-2:before { content: $ti-icon-stack-2; } +.#{$ti-prefix}-stack-3:before { content: $ti-icon-stack-3; } +.#{$ti-prefix}-stack-pop:before { content: $ti-icon-stack-pop; } +.#{$ti-prefix}-stack-push:before { content: $ti-icon-stack-push; } +.#{$ti-prefix}-stairs:before { content: $ti-icon-stairs; } +.#{$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; } +.#{$ti-prefix}-steering-wheel:before { content: $ti-icon-steering-wheel; } +.#{$ti-prefix}-steering-wheel-off:before { content: $ti-icon-steering-wheel-off; } +.#{$ti-prefix}-step-into:before { content: $ti-icon-step-into; } +.#{$ti-prefix}-step-out:before { content: $ti-icon-step-out; } +.#{$ti-prefix}-stereo-glasses:before { content: $ti-icon-stereo-glasses; } +.#{$ti-prefix}-stethoscope:before { content: $ti-icon-stethoscope; } +.#{$ti-prefix}-stethoscope-off:before { content: $ti-icon-stethoscope-off; } +.#{$ti-prefix}-sticker:before { content: $ti-icon-sticker; } +.#{$ti-prefix}-storm:before { content: $ti-icon-storm; } +.#{$ti-prefix}-storm-off:before { content: $ti-icon-storm-off; } +.#{$ti-prefix}-stretching:before { content: $ti-icon-stretching; } +.#{$ti-prefix}-strikethrough:before { content: $ti-icon-strikethrough; } +.#{$ti-prefix}-submarine:before { content: $ti-icon-submarine; } +.#{$ti-prefix}-subscript:before { content: $ti-icon-subscript; } +.#{$ti-prefix}-subtask:before { content: $ti-icon-subtask; } +.#{$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; } +.#{$ti-prefix}-sun-off:before { content: $ti-icon-sun-off; } +.#{$ti-prefix}-sun-wind:before { content: $ti-icon-sun-wind; } +.#{$ti-prefix}-sunglasses:before { content: $ti-icon-sunglasses; } +.#{$ti-prefix}-sunrise:before { content: $ti-icon-sunrise; } +.#{$ti-prefix}-sunset:before { content: $ti-icon-sunset; } +.#{$ti-prefix}-sunset-2:before { content: $ti-icon-sunset-2; } +.#{$ti-prefix}-superscript:before { content: $ti-icon-superscript; } +.#{$ti-prefix}-svg:before { content: $ti-icon-svg; } +.#{$ti-prefix}-swimming:before { content: $ti-icon-swimming; } +.#{$ti-prefix}-swipe:before { content: $ti-icon-swipe; } +.#{$ti-prefix}-switch:before { content: $ti-icon-switch; } +.#{$ti-prefix}-switch-2:before { content: $ti-icon-switch-2; } +.#{$ti-prefix}-switch-3:before { content: $ti-icon-switch-3; } +.#{$ti-prefix}-switch-horizontal:before { content: $ti-icon-switch-horizontal; } +.#{$ti-prefix}-switch-vertical:before { content: $ti-icon-switch-vertical; } +.#{$ti-prefix}-sword:before { content: $ti-icon-sword; } +.#{$ti-prefix}-sword-off:before { content: $ti-icon-sword-off; } +.#{$ti-prefix}-swords:before { content: $ti-icon-swords; } +.#{$ti-prefix}-table:before { content: $ti-icon-table; } +.#{$ti-prefix}-table-alias:before { content: $ti-icon-table-alias; } +.#{$ti-prefix}-table-export:before { content: $ti-icon-table-export; } +.#{$ti-prefix}-table-import:before { content: $ti-icon-table-import; } +.#{$ti-prefix}-table-off:before { content: $ti-icon-table-off; } +.#{$ti-prefix}-table-options:before { content: $ti-icon-table-options; } +.#{$ti-prefix}-table-shortcut:before { content: $ti-icon-table-shortcut; } +.#{$ti-prefix}-tag:before { content: $ti-icon-tag; } +.#{$ti-prefix}-tag-off:before { content: $ti-icon-tag-off; } +.#{$ti-prefix}-tags:before { content: $ti-icon-tags; } +.#{$ti-prefix}-tags-off:before { content: $ti-icon-tags-off; } +.#{$ti-prefix}-tallymark-1:before { content: $ti-icon-tallymark-1; } +.#{$ti-prefix}-tallymark-2:before { content: $ti-icon-tallymark-2; } +.#{$ti-prefix}-tallymark-3:before { content: $ti-icon-tallymark-3; } +.#{$ti-prefix}-tallymark-4:before { content: $ti-icon-tallymark-4; } +.#{$ti-prefix}-tallymarks:before { content: $ti-icon-tallymarks; } +.#{$ti-prefix}-tank:before { content: $ti-icon-tank; } +.#{$ti-prefix}-target:before { content: $ti-icon-target; } +.#{$ti-prefix}-target-arrow:before { content: $ti-icon-target-arrow; } +.#{$ti-prefix}-target-off:before { content: $ti-icon-target-off; } +.#{$ti-prefix}-teapot:before { content: $ti-icon-teapot; } +.#{$ti-prefix}-telescope:before { content: $ti-icon-telescope; } +.#{$ti-prefix}-telescope-off:before { content: $ti-icon-telescope-off; } +.#{$ti-prefix}-temperature:before { content: $ti-icon-temperature; } +.#{$ti-prefix}-temperature-celsius:before { content: $ti-icon-temperature-celsius; } +.#{$ti-prefix}-temperature-fahrenheit:before { content: $ti-icon-temperature-fahrenheit; } +.#{$ti-prefix}-temperature-minus:before { content: $ti-icon-temperature-minus; } +.#{$ti-prefix}-temperature-off:before { content: $ti-icon-temperature-off; } +.#{$ti-prefix}-temperature-plus:before { content: $ti-icon-temperature-plus; } +.#{$ti-prefix}-template:before { content: $ti-icon-template; } +.#{$ti-prefix}-template-off:before { content: $ti-icon-template-off; } +.#{$ti-prefix}-tent:before { content: $ti-icon-tent; } +.#{$ti-prefix}-tent-off:before { content: $ti-icon-tent-off; } +.#{$ti-prefix}-terminal:before { content: $ti-icon-terminal; } +.#{$ti-prefix}-terminal-2:before { content: $ti-icon-terminal-2; } +.#{$ti-prefix}-test-pipe:before { content: $ti-icon-test-pipe; } +.#{$ti-prefix}-test-pipe-2:before { content: $ti-icon-test-pipe-2; } +.#{$ti-prefix}-test-pipe-off:before { content: $ti-icon-test-pipe-off; } +.#{$ti-prefix}-tex:before { content: $ti-icon-tex; } +.#{$ti-prefix}-text-caption:before { content: $ti-icon-text-caption; } +.#{$ti-prefix}-text-color:before { content: $ti-icon-text-color; } +.#{$ti-prefix}-text-decrease:before { content: $ti-icon-text-decrease; } +.#{$ti-prefix}-text-direction-ltr:before { content: $ti-icon-text-direction-ltr; } +.#{$ti-prefix}-text-direction-rtl:before { content: $ti-icon-text-direction-rtl; } +.#{$ti-prefix}-text-increase:before { content: $ti-icon-text-increase; } +.#{$ti-prefix}-text-orientation:before { content: $ti-icon-text-orientation; } +.#{$ti-prefix}-text-plus:before { content: $ti-icon-text-plus; } +.#{$ti-prefix}-text-recognition:before { content: $ti-icon-text-recognition; } +.#{$ti-prefix}-text-resize:before { content: $ti-icon-text-resize; } +.#{$ti-prefix}-text-size:before { content: $ti-icon-text-size; } +.#{$ti-prefix}-text-spellcheck:before { content: $ti-icon-text-spellcheck; } +.#{$ti-prefix}-text-wrap:before { content: $ti-icon-text-wrap; } +.#{$ti-prefix}-text-wrap-disabled:before { content: $ti-icon-text-wrap-disabled; } +.#{$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; } +.#{$ti-prefix}-ticket-off:before { content: $ti-icon-ticket-off; } +.#{$ti-prefix}-tie:before { content: $ti-icon-tie; } +.#{$ti-prefix}-tilde:before { content: $ti-icon-tilde; } +.#{$ti-prefix}-tilt-shift:before { content: $ti-icon-tilt-shift; } +.#{$ti-prefix}-tilt-shift-off:before { content: $ti-icon-tilt-shift-off; } +.#{$ti-prefix}-timeline:before { content: $ti-icon-timeline; } +.#{$ti-prefix}-timeline-event:before { content: $ti-icon-timeline-event; } +.#{$ti-prefix}-timeline-event-exclamation:before { content: $ti-icon-timeline-event-exclamation; } +.#{$ti-prefix}-timeline-event-minus:before { content: $ti-icon-timeline-event-minus; } +.#{$ti-prefix}-timeline-event-plus:before { content: $ti-icon-timeline-event-plus; } +.#{$ti-prefix}-timeline-event-text:before { content: $ti-icon-timeline-event-text; } +.#{$ti-prefix}-timeline-event-x:before { content: $ti-icon-timeline-event-x; } +.#{$ti-prefix}-tir:before { content: $ti-icon-tir; } +.#{$ti-prefix}-toggle-left:before { content: $ti-icon-toggle-left; } +.#{$ti-prefix}-toggle-right:before { content: $ti-icon-toggle-right; } +.#{$ti-prefix}-toilet-paper:before { content: $ti-icon-toilet-paper; } +.#{$ti-prefix}-toilet-paper-off:before { content: $ti-icon-toilet-paper-off; } +.#{$ti-prefix}-tool:before { content: $ti-icon-tool; } +.#{$ti-prefix}-tools:before { content: $ti-icon-tools; } +.#{$ti-prefix}-tools-kitchen:before { content: $ti-icon-tools-kitchen; } +.#{$ti-prefix}-tools-kitchen-2:before { content: $ti-icon-tools-kitchen-2; } +.#{$ti-prefix}-tools-kitchen-2-off:before { content: $ti-icon-tools-kitchen-2-off; } +.#{$ti-prefix}-tools-kitchen-off:before { content: $ti-icon-tools-kitchen-off; } +.#{$ti-prefix}-tools-off:before { content: $ti-icon-tools-off; } +.#{$ti-prefix}-tooltip:before { content: $ti-icon-tooltip; } +.#{$ti-prefix}-topology-bus:before { content: $ti-icon-topology-bus; } +.#{$ti-prefix}-topology-complex:before { content: $ti-icon-topology-complex; } +.#{$ti-prefix}-topology-full:before { content: $ti-icon-topology-full; } +.#{$ti-prefix}-topology-full-hierarchy:before { content: $ti-icon-topology-full-hierarchy; } +.#{$ti-prefix}-topology-ring:before { content: $ti-icon-topology-ring; } +.#{$ti-prefix}-topology-ring-2:before { content: $ti-icon-topology-ring-2; } +.#{$ti-prefix}-topology-ring-3:before { content: $ti-icon-topology-ring-3; } +.#{$ti-prefix}-topology-star:before { content: $ti-icon-topology-star; } +.#{$ti-prefix}-topology-star-2:before { content: $ti-icon-topology-star-2; } +.#{$ti-prefix}-topology-star-3:before { content: $ti-icon-topology-star-3; } +.#{$ti-prefix}-topology-star-ring:before { content: $ti-icon-topology-star-ring; } +.#{$ti-prefix}-topology-star-ring-2:before { content: $ti-icon-topology-star-ring-2; } +.#{$ti-prefix}-topology-star-ring-3:before { content: $ti-icon-topology-star-ring-3; } +.#{$ti-prefix}-torii:before { content: $ti-icon-torii; } +.#{$ti-prefix}-tornado:before { content: $ti-icon-tornado; } +.#{$ti-prefix}-tournament:before { content: $ti-icon-tournament; } +.#{$ti-prefix}-tower:before { content: $ti-icon-tower; } +.#{$ti-prefix}-tower-off:before { content: $ti-icon-tower-off; } +.#{$ti-prefix}-track:before { content: $ti-icon-track; } +.#{$ti-prefix}-tractor:before { content: $ti-icon-tractor; } +.#{$ti-prefix}-trademark:before { content: $ti-icon-trademark; } +.#{$ti-prefix}-traffic-cone:before { content: $ti-icon-traffic-cone; } +.#{$ti-prefix}-traffic-cone-off:before { content: $ti-icon-traffic-cone-off; } +.#{$ti-prefix}-traffic-lights:before { content: $ti-icon-traffic-lights; } +.#{$ti-prefix}-traffic-lights-off:before { content: $ti-icon-traffic-lights-off; } +.#{$ti-prefix}-train:before { content: $ti-icon-train; } +.#{$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; } +.#{$ti-prefix}-transition-top:before { content: $ti-icon-transition-top; } +.#{$ti-prefix}-trash:before { content: $ti-icon-trash; } +.#{$ti-prefix}-trash-off:before { content: $ti-icon-trash-off; } +.#{$ti-prefix}-trash-x:before { content: $ti-icon-trash-x; } +.#{$ti-prefix}-tree:before { content: $ti-icon-tree; } +.#{$ti-prefix}-trees:before { content: $ti-icon-trees; } +.#{$ti-prefix}-trekking:before { content: $ti-icon-trekking; } +.#{$ti-prefix}-trending-down:before { content: $ti-icon-trending-down; } +.#{$ti-prefix}-trending-down-2:before { content: $ti-icon-trending-down-2; } +.#{$ti-prefix}-trending-down-3:before { content: $ti-icon-trending-down-3; } +.#{$ti-prefix}-trending-up:before { content: $ti-icon-trending-up; } +.#{$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; } +.#{$ti-prefix}-truck-delivery:before { content: $ti-icon-truck-delivery; } +.#{$ti-prefix}-truck-loading:before { content: $ti-icon-truck-loading; } +.#{$ti-prefix}-truck-off:before { content: $ti-icon-truck-off; } +.#{$ti-prefix}-truck-return:before { content: $ti-icon-truck-return; } +.#{$ti-prefix}-txt:before { content: $ti-icon-txt; } +.#{$ti-prefix}-typography:before { content: $ti-icon-typography; } +.#{$ti-prefix}-typography-off:before { content: $ti-icon-typography-off; } +.#{$ti-prefix}-ufo:before { content: $ti-icon-ufo; } +.#{$ti-prefix}-ufo-off:before { content: $ti-icon-ufo-off; } +.#{$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; } +.#{$ti-prefix}-upload:before { content: $ti-icon-upload; } +.#{$ti-prefix}-urgent:before { content: $ti-icon-urgent; } +.#{$ti-prefix}-usb:before { content: $ti-icon-usb; } +.#{$ti-prefix}-user:before { content: $ti-icon-user; } +.#{$ti-prefix}-user-check:before { content: $ti-icon-user-check; } +.#{$ti-prefix}-user-circle:before { content: $ti-icon-user-circle; } +.#{$ti-prefix}-user-exclamation:before { content: $ti-icon-user-exclamation; } +.#{$ti-prefix}-user-minus:before { content: $ti-icon-user-minus; } +.#{$ti-prefix}-user-off:before { content: $ti-icon-user-off; } +.#{$ti-prefix}-user-plus:before { content: $ti-icon-user-plus; } +.#{$ti-prefix}-user-search:before { content: $ti-icon-user-search; } +.#{$ti-prefix}-user-x:before { content: $ti-icon-user-x; } +.#{$ti-prefix}-users:before { content: $ti-icon-users; } +.#{$ti-prefix}-uv-index:before { content: $ti-icon-uv-index; } +.#{$ti-prefix}-ux-circle:before { content: $ti-icon-ux-circle; } +.#{$ti-prefix}-vaccine:before { content: $ti-icon-vaccine; } +.#{$ti-prefix}-vaccine-bottle:before { content: $ti-icon-vaccine-bottle; } +.#{$ti-prefix}-vaccine-bottle-off:before { content: $ti-icon-vaccine-bottle-off; } +.#{$ti-prefix}-vaccine-off:before { content: $ti-icon-vaccine-off; } +.#{$ti-prefix}-vacuum-cleaner:before { content: $ti-icon-vacuum-cleaner; } +.#{$ti-prefix}-variable:before { content: $ti-icon-variable; } +.#{$ti-prefix}-variable-minus:before { content: $ti-icon-variable-minus; } +.#{$ti-prefix}-variable-off:before { content: $ti-icon-variable-off; } +.#{$ti-prefix}-variable-plus:before { content: $ti-icon-variable-plus; } +.#{$ti-prefix}-vector:before { content: $ti-icon-vector; } +.#{$ti-prefix}-vector-bezier:before { content: $ti-icon-vector-bezier; } +.#{$ti-prefix}-vector-bezier-2:before { content: $ti-icon-vector-bezier-2; } +.#{$ti-prefix}-vector-bezier-arc:before { content: $ti-icon-vector-bezier-arc; } +.#{$ti-prefix}-vector-bezier-circle:before { content: $ti-icon-vector-bezier-circle; } +.#{$ti-prefix}-vector-off:before { content: $ti-icon-vector-off; } +.#{$ti-prefix}-vector-spline:before { content: $ti-icon-vector-spline; } +.#{$ti-prefix}-vector-triangle:before { content: $ti-icon-vector-triangle; } +.#{$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; } +.#{$ti-prefix}-video-off:before { content: $ti-icon-video-off; } +.#{$ti-prefix}-video-plus:before { content: $ti-icon-video-plus; } +.#{$ti-prefix}-view-360:before { content: $ti-icon-view-360; } +.#{$ti-prefix}-view-360-off:before { content: $ti-icon-view-360-off; } +.#{$ti-prefix}-viewfinder:before { content: $ti-icon-viewfinder; } +.#{$ti-prefix}-viewfinder-off:before { content: $ti-icon-viewfinder-off; } +.#{$ti-prefix}-viewport-narrow:before { content: $ti-icon-viewport-narrow; } +.#{$ti-prefix}-viewport-wide:before { content: $ti-icon-viewport-wide; } +.#{$ti-prefix}-vinyl:before { content: $ti-icon-vinyl; } +.#{$ti-prefix}-vip:before { content: $ti-icon-vip; } +.#{$ti-prefix}-vip-off:before { content: $ti-icon-vip-off; } +.#{$ti-prefix}-virus:before { content: $ti-icon-virus; } +.#{$ti-prefix}-virus-off:before { content: $ti-icon-virus-off; } +.#{$ti-prefix}-virus-search:before { content: $ti-icon-virus-search; } +.#{$ti-prefix}-vocabulary:before { content: $ti-icon-vocabulary; } +.#{$ti-prefix}-vocabulary-off:before { content: $ti-icon-vocabulary-off; } +.#{$ti-prefix}-volume:before { content: $ti-icon-volume; } +.#{$ti-prefix}-volume-2:before { content: $ti-icon-volume-2; } +.#{$ti-prefix}-volume-3:before { content: $ti-icon-volume-3; } +.#{$ti-prefix}-volume-off:before { content: $ti-icon-volume-off; } +.#{$ti-prefix}-walk:before { content: $ti-icon-walk; } +.#{$ti-prefix}-wall:before { content: $ti-icon-wall; } +.#{$ti-prefix}-wall-off:before { content: $ti-icon-wall-off; } +.#{$ti-prefix}-wallet:before { content: $ti-icon-wallet; } +.#{$ti-prefix}-wallet-off:before { content: $ti-icon-wallet-off; } +.#{$ti-prefix}-wallpaper:before { content: $ti-icon-wallpaper; } +.#{$ti-prefix}-wallpaper-off:before { content: $ti-icon-wallpaper-off; } +.#{$ti-prefix}-wand:before { content: $ti-icon-wand; } +.#{$ti-prefix}-wand-off:before { content: $ti-icon-wand-off; } +.#{$ti-prefix}-wash:before { content: $ti-icon-wash; } +.#{$ti-prefix}-wash-dry:before { content: $ti-icon-wash-dry; } +.#{$ti-prefix}-wash-dry-1:before { content: $ti-icon-wash-dry-1; } +.#{$ti-prefix}-wash-dry-2:before { content: $ti-icon-wash-dry-2; } +.#{$ti-prefix}-wash-dry-3:before { content: $ti-icon-wash-dry-3; } +.#{$ti-prefix}-wash-dry-a:before { content: $ti-icon-wash-dry-a; } +.#{$ti-prefix}-wash-dry-dip:before { content: $ti-icon-wash-dry-dip; } +.#{$ti-prefix}-wash-dry-f:before { content: $ti-icon-wash-dry-f; } +.#{$ti-prefix}-wash-dry-hang:before { content: $ti-icon-wash-dry-hang; } +.#{$ti-prefix}-wash-dry-off:before { content: $ti-icon-wash-dry-off; } +.#{$ti-prefix}-wash-dry-p:before { content: $ti-icon-wash-dry-p; } +.#{$ti-prefix}-wash-dry-shade:before { content: $ti-icon-wash-dry-shade; } +.#{$ti-prefix}-wash-dry-w:before { content: $ti-icon-wash-dry-w; } +.#{$ti-prefix}-wash-dryclean:before { content: $ti-icon-wash-dryclean; } +.#{$ti-prefix}-wash-dryclean-off:before { content: $ti-icon-wash-dryclean-off; } +.#{$ti-prefix}-wash-gentle:before { content: $ti-icon-wash-gentle; } +.#{$ti-prefix}-wash-machine:before { content: $ti-icon-wash-machine; } +.#{$ti-prefix}-wash-off:before { content: $ti-icon-wash-off; } +.#{$ti-prefix}-wash-press:before { content: $ti-icon-wash-press; } +.#{$ti-prefix}-wash-temperature-1:before { content: $ti-icon-wash-temperature-1; } +.#{$ti-prefix}-wash-temperature-2:before { content: $ti-icon-wash-temperature-2; } +.#{$ti-prefix}-wash-temperature-3:before { content: $ti-icon-wash-temperature-3; } +.#{$ti-prefix}-wash-temperature-4:before { content: $ti-icon-wash-temperature-4; } +.#{$ti-prefix}-wash-temperature-5:before { content: $ti-icon-wash-temperature-5; } +.#{$ti-prefix}-wash-temperature-6:before { content: $ti-icon-wash-temperature-6; } +.#{$ti-prefix}-wash-tumble-dry:before { content: $ti-icon-wash-tumble-dry; } +.#{$ti-prefix}-wash-tumble-off:before { content: $ti-icon-wash-tumble-off; } +.#{$ti-prefix}-wave-saw-tool:before { content: $ti-icon-wave-saw-tool; } +.#{$ti-prefix}-wave-sine:before { content: $ti-icon-wave-sine; } +.#{$ti-prefix}-wave-square:before { content: $ti-icon-wave-square; } +.#{$ti-prefix}-webhook:before { content: $ti-icon-webhook; } +.#{$ti-prefix}-webhook-off:before { content: $ti-icon-webhook-off; } +.#{$ti-prefix}-weight:before { content: $ti-icon-weight; } +.#{$ti-prefix}-wheelchair:before { content: $ti-icon-wheelchair; } +.#{$ti-prefix}-wheelchair-off:before { content: $ti-icon-wheelchair-off; } +.#{$ti-prefix}-whirl:before { content: $ti-icon-whirl; } +.#{$ti-prefix}-wifi:before { content: $ti-icon-wifi; } +.#{$ti-prefix}-wifi-0:before { content: $ti-icon-wifi-0; } +.#{$ti-prefix}-wifi-1:before { content: $ti-icon-wifi-1; } +.#{$ti-prefix}-wifi-2:before { content: $ti-icon-wifi-2; } +.#{$ti-prefix}-wifi-off:before { content: $ti-icon-wifi-off; } +.#{$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; } +.#{$ti-prefix}-window-minimize:before { content: $ti-icon-window-minimize; } +.#{$ti-prefix}-window-off:before { content: $ti-icon-window-off; } +.#{$ti-prefix}-windsock:before { content: $ti-icon-windsock; } +.#{$ti-prefix}-wiper:before { content: $ti-icon-wiper; } +.#{$ti-prefix}-wiper-wash:before { content: $ti-icon-wiper-wash; } +.#{$ti-prefix}-woman:before { content: $ti-icon-woman; } +.#{$ti-prefix}-wood:before { content: $ti-icon-wood; } +.#{$ti-prefix}-world:before { content: $ti-icon-world; } +.#{$ti-prefix}-world-download:before { content: $ti-icon-world-download; } +.#{$ti-prefix}-world-latitude:before { content: $ti-icon-world-latitude; } +.#{$ti-prefix}-world-longitude:before { content: $ti-icon-world-longitude; } +.#{$ti-prefix}-world-off:before { content: $ti-icon-world-off; } +.#{$ti-prefix}-world-upload:before { content: $ti-icon-world-upload; } +.#{$ti-prefix}-world-www:before { content: $ti-icon-world-www; } +.#{$ti-prefix}-wrecking-ball:before { content: $ti-icon-wrecking-ball; } +.#{$ti-prefix}-writing:before { content: $ti-icon-writing; } +.#{$ti-prefix}-writing-off:before { content: $ti-icon-writing-off; } +.#{$ti-prefix}-writing-sign:before { content: $ti-icon-writing-sign; } +.#{$ti-prefix}-writing-sign-off:before { content: $ti-icon-writing-sign-off; } +.#{$ti-prefix}-x:before { content: $ti-icon-x; } +.#{$ti-prefix}-xbox-a:before { content: $ti-icon-xbox-a; } +.#{$ti-prefix}-xbox-b:before { content: $ti-icon-xbox-b; } +.#{$ti-prefix}-xbox-x:before { content: $ti-icon-xbox-x; } +.#{$ti-prefix}-xbox-y:before { content: $ti-icon-xbox-y; } +.#{$ti-prefix}-yin-yang:before { content: $ti-icon-yin-yang; } +.#{$ti-prefix}-yoga:before { content: $ti-icon-yoga; } +.#{$ti-prefix}-zeppelin:before { content: $ti-icon-zeppelin; } +.#{$ti-prefix}-zeppelin-off:before { content: $ti-icon-zeppelin-off; } +.#{$ti-prefix}-zip:before { content: $ti-icon-zip; } +.#{$ti-prefix}-zodiac-aquarius:before { content: $ti-icon-zodiac-aquarius; } +.#{$ti-prefix}-zodiac-aries:before { content: $ti-icon-zodiac-aries; } +.#{$ti-prefix}-zodiac-cancer:before { content: $ti-icon-zodiac-cancer; } +.#{$ti-prefix}-zodiac-capricorn:before { content: $ti-icon-zodiac-capricorn; } +.#{$ti-prefix}-zodiac-gemini:before { content: $ti-icon-zodiac-gemini; } +.#{$ti-prefix}-zodiac-leo:before { content: $ti-icon-zodiac-leo; } +.#{$ti-prefix}-zodiac-libra:before { content: $ti-icon-zodiac-libra; } +.#{$ti-prefix}-zodiac-pisces:before { content: $ti-icon-zodiac-pisces; } +.#{$ti-prefix}-zodiac-sagittarius:before { content: $ti-icon-zodiac-sagittarius; } +.#{$ti-prefix}-zodiac-scorpio:before { content: $ti-icon-zodiac-scorpio; } +.#{$ti-prefix}-zodiac-taurus:before { content: $ti-icon-zodiac-taurus; } +.#{$ti-prefix}-zodiac-virgo:before { content: $ti-icon-zodiac-virgo; } +.#{$ti-prefix}-zoom-cancel:before { content: $ti-icon-zoom-cancel; } +.#{$ti-prefix}-zoom-check:before { content: $ti-icon-zoom-check; } +.#{$ti-prefix}-zoom-code:before { content: $ti-icon-zoom-code; } +.#{$ti-prefix}-zoom-exclamation:before { content: $ti-icon-zoom-exclamation; } +.#{$ti-prefix}-zoom-in:before { content: $ti-icon-zoom-in; } +.#{$ti-prefix}-zoom-in-area:before { content: $ti-icon-zoom-in-area; } +.#{$ti-prefix}-zoom-money:before { content: $ti-icon-zoom-money; } +.#{$ti-prefix}-zoom-out:before { content: $ti-icon-zoom-out; } +.#{$ti-prefix}-zoom-out-area:before { content: $ti-icon-zoom-out-area; } +.#{$ti-prefix}-zoom-pan:before { content: $ti-icon-zoom-pan; } +.#{$ti-prefix}-zoom-question:before { content: $ti-icon-zoom-question; } +.#{$ti-prefix}-zoom-replace:before { content: $ti-icon-zoom-replace; } +.#{$ti-prefix}-zoom-reset:before { content: $ti-icon-zoom-reset; } +.#{$ti-prefix}-zzz:before { content: $ti-icon-zzz; } +.#{$ti-prefix}-zzz-off:before { content: $ti-icon-zzz-off; } diff --git a/packages/icons/README.md b/packages/icons/README.md new file mode 100644 index 000000000..cbdb1c752 --- /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) :)** + + + + + +## 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). + +## Sponsor Tabler + +Sponsor Tabler 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/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/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..1799f8b80 --- /dev/null +++ b/packages/icons/package.json @@ -0,0 +1,54 @@ +{ + "name": "@tabler/icons", + "version": "2.0.0", + "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..a83f7245a --- /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-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" + } + ] + ], + "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" + } + ] + ], + "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" + } + ] + ], + "ufo-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..76ba16108 --- /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..a00d634e8 --- /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..bb623f65e --- /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-c-sharp": { + "name": "brand-c-sharp", + "category": "", + "tags": ["brand", "c", "sharp", "coding", "programming", "files", "language", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f003" + }, + "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" + }, + "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" + }, + "ufo-off": { + "name": "ufo-off", + "category": "", + "tags": ["ufo", "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..502f2058d --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,14661 @@ +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 + csv-parser: ^3.0.0 + fs-extra: ^10.1.0 + glob: 7.1.6 + html-minifier: ^4.0.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-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 + csv-parser: 3.0.0 + fs-extra: 10.1.0 + glob: 7.1.6 + html-minifier: 4.0.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-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 + dependencies: + '@tabler/icons': link:../icons + + packages/icons-pdf: + specifiers: + '@tabler/icons': 2.0.0 + dependencies: + '@tabler/icons': link:../icons + + packages/icons-png: + specifiers: + '@tabler/icons': 2.0.0 + dependencies: + '@tabler/icons': link:../icons + + packages/icons-preact: + specifiers: + '@preact/preset-vite': ^2.5.0 + '@tabler/icons': 2.0.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 + 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 + '@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 + 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 + '@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 + '@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 + 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 + 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 + '@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 + '@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 + '@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 + + /@iarna/toml/2.2.5: + resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} + 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 + + /@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/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/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/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/node-gyp/1.0.3: + resolution: {integrity: sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==} + 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/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 + + /@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-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 + + /@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/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 + + /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 + + /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-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-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 + + /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 + + /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 + + /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-flatten/1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + dev: true + + /arr-union/3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + 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-union/2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array-unique/0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + 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 + + /arrify/1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + 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-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 + + /asynckit/0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + 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 + + /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 + + /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 + + /before-after-hook/2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: true + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + 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-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 + + /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 + + /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/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.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/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/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.7.0: + resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} + engines: {node: '>=6'} + dev: true + + /cli-width/4.0.0: + resolution: {integrity: sha512-ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw==} + engines: {node: '>= 12'} + 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/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/1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true + + /co/4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + 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-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 + + /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 + + /commondir/1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + 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 + + /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 + + /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 + + /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/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.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/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 + + /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 + + /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 + + /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 + + /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-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 + + /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/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/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/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/6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} + dependencies: + is-obj: 2.0.0 + 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 + + /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 + + /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 + + /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 + + /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 + + /es6-promise/3.3.1: + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + 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 + + /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 + + /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 + + /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 + + /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 + + /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-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + 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/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/2.0.0: + resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==} + engines: {node: '>= 6'} + 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/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 + + /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 + + /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-minipass/2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + 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/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/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-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-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 + + /github-from-package/0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + 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/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/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 + + /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 + + /gzip-size/6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + dependencies: + duplexer: 0.1.2 + 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-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 + + /hosted-git-info/2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + 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 + + /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/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 + + /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 + + /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-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/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/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/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-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/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-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-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-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-unicode-supported/1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} + 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 + + /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-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 + + /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 + + /latest-version/7.0.0: + resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} + engines: {node: '>=14.16'} + dependencies: + package-json: 8.1.0 + 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 + + /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 + + /local-pkg/0.4.2: + resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} + engines: {node: '>=14'} + dev: true + + /locate-path/5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /lodash._reinterpolate/3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + dev: true + + /lodash.debounce/4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + 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/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/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 + + /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 + + /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 + + /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.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/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 + + /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 + + /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 + + /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 + + /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/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-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 + + /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-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 + + /npm-bundled/1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + dependencies: + npm-normalize-package-bin: 1.0.1 + 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-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-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-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-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-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-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/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 + + /oauth-sign/0.9.0: + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + 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.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 + + /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/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 + + /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/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/4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + 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-try/2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + 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 + + /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-headers/2.0.5: + resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} + 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-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-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/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/4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + 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 + + /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 + + /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-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 + + /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/3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + 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 + + /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-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-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/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 + + /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 + + /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-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 + + /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/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-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-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/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_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/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.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 + + /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 + + /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 + + /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 + + /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-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 + + /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.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/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 + + /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 + + /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/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/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 + + /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 + + /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 + + /throat/5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + dev: true + + /through/2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + 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 + + /tmpl/1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + 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 + + /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 + + /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/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 + + /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.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 + + /typedarray-to-buffer/3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + dependencies: + is-typedarray: 1.0.0 + 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 + + /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-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 + + /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 + + /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 + + /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 + optional: 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 + + /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-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 + + /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 + + /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 + + /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/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 + + /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/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 + + /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 + + /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/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.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/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/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 + + /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 2b1b9845e..000000000 --- a/rollup.config.js +++ /dev/null @@ -1,119 +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 { uglify } from "rollup-plugin-uglify"; -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(), - filesize(), -]; - -const minCjsPlugins = [ - babel({ - exclude: "node_modules/**", - }), - external(), - resolve(), - commonjs(), - uglify(), - filesize(), -]; - -const minUmdEsmPlugins = [ - 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: minCjsPlugins, - }, - // 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: minUmdEsmPlugins, - }, - // 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: minUmdEsmPlugins, - }, -]; diff --git a/src/_icons/123.svg b/src/_icons/123.svg new file mode 100644 index 000000000..cb9051d7e --- /dev/null +++ b/src/_icons/123.svg @@ -0,0 +1,10 @@ +--- +tags: [numbers, digit, one, two, three] +unicode: "f554" +version: "1.106" +--- + + + + + diff --git a/src/_icons/24-hours.svg b/src/_icons/24-hours.svg new file mode 100644 index 000000000..d0d9e7d43 --- /dev/null +++ b/src/_icons/24-hours.svg @@ -0,0 +1,11 @@ +--- +unicode: "f5e7" +version: "1.113" +--- + + + + + + + diff --git a/src/_icons/2fa.svg b/src/_icons/2fa.svg index 0173c536e..661c83bd3 100644 --- a/src/_icons/2fa.svg +++ b/src/_icons/2fa.svg @@ -6,7 +6,7 @@ unicode: "eca0" - + - + diff --git a/src/_icons/360-view.svg b/src/_icons/360-view.svg new file mode 100644 index 000000000..47f499792 --- /dev/null +++ b/src/_icons/360-view.svg @@ -0,0 +1,11 @@ +--- +tags: [degree, rotation, reality, camera] +unicode: "f566" +version: "1.107" +--- + + + + + + diff --git a/src/_icons/360.svg b/src/_icons/360.svg new file mode 100644 index 000000000..c766a0f52 --- /dev/null +++ b/src/_icons/360.svg @@ -0,0 +1,8 @@ +--- +unicode: "f62f" +version: "1.117" +--- + + + + diff --git a/src/_icons/3d-cube-sphere-off.svg b/src/_icons/3d-cube-sphere-off.svg new file mode 100644 index 000000000..ae01de5f8 --- /dev/null +++ b/src/_icons/3d-cube-sphere-off.svg @@ -0,0 +1,19 @@ +--- +tags: [printing, vector, shape] +unicode: "f3b5" +version: "1.94" +--- + + + + + + + + + + + + + + diff --git a/src/_icons/3d-cube-sphere.svg b/src/_icons/3d-cube-sphere.svg index 83825e686..18a110287 100644 --- a/src/_icons/3d-cube-sphere.svg +++ b/src/_icons/3d-cube-sphere.svg @@ -10,10 +10,10 @@ unicode: "ecd7" - - - - + + + + - + diff --git a/src/_icons/3d-rotate.svg b/src/_icons/3d-rotate.svg index e7c9649c3..fd13a428e 100644 --- a/src/_icons/3d-rotate.svg +++ b/src/_icons/3d-rotate.svg @@ -4,9 +4,9 @@ version: "1.55" unicode: "f020" --- - - - - - + + + + + diff --git a/src/_icons/a-b.svg b/src/_icons/a-b.svg index a3578e3ee..5437b9d84 100644 --- a/src/_icons/a-b.svg +++ b/src/_icons/a-b.svg @@ -5,6 +5,6 @@ unicode: "ec36" --- - + diff --git a/src/_icons/abacus-off.svg b/src/_icons/abacus-off.svg new file mode 100644 index 000000000..6e650d31d --- /dev/null +++ b/src/_icons/abacus-off.svg @@ -0,0 +1,20 @@ +--- +tags: [abacus, math, counting, adding up] +category: Math +unicode: "f3b6" +version: "1.94" +--- + + + + + + + + + + + + + + diff --git a/src/_icons/abc.svg b/src/_icons/abc.svg new file mode 100644 index 000000000..efbaf7223 --- /dev/null +++ b/src/_icons/abc.svg @@ -0,0 +1,11 @@ +--- +tags: [letters, alphabet, latin] +unicode: "f567" +version: "1.107" +--- + + + + + + diff --git a/src/_icons/access-point-off.svg b/src/_icons/access-point-off.svg index 6d6a1133d..1ee370aa5 100644 --- a/src/_icons/access-point-off.svg +++ b/src/_icons/access-point-off.svg @@ -1,11 +1,11 @@ --- -category: Devices tags: [device, hosts, airwaves, wireless, network] +category: Devices version: "1.25" unicode: "ed1a" --- - + diff --git a/src/_icons/access-point.svg b/src/_icons/access-point.svg index 579e512ad..cd2e13c0b 100644 --- a/src/_icons/access-point.svg +++ b/src/_icons/access-point.svg @@ -5,7 +5,7 @@ version: "1.25" unicode: "ed1b" --- - + diff --git a/src/_icons/accessible.svg b/src/_icons/accessible.svg index ca0e1ce86..344598121 100644 --- a/src/_icons/accessible.svg +++ b/src/_icons/accessible.svg @@ -4,7 +4,7 @@ version: "1.4" unicode: "eba9" --- - + diff --git a/src/_icons/ad-off.svg b/src/_icons/ad-off.svg new file mode 100644 index 000000000..133ee16de --- /dev/null +++ b/src/_icons/ad-off.svg @@ -0,0 +1,14 @@ +--- +tags: [advert, advertisement, marketing, commercial, traffic] +category: Design +unicode: "f3b7" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/ad.svg b/src/_icons/ad.svg index 251302108..7d3a0b629 100644 --- a/src/_icons/ad.svg +++ b/src/_icons/ad.svg @@ -5,8 +5,8 @@ version: "1.1" unicode: "ea02" --- - + - + diff --git a/src/_icons/address-book-off.svg b/src/_icons/address-book-off.svg new file mode 100644 index 000000000..338055adb --- /dev/null +++ b/src/_icons/address-book-off.svg @@ -0,0 +1,14 @@ +--- +tags: [contact, contacts, phonebook, profile, resources] +unicode: "f3b8" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/address-book.svg b/src/_icons/address-book.svg index 3a280597c..db7af1ca4 100644 --- a/src/_icons/address-book.svg +++ b/src/_icons/address-book.svg @@ -6,7 +6,7 @@ unicode: "f021" - + diff --git a/src/_icons/adjustments-alt.svg b/src/_icons/adjustments-alt.svg index 534338965..5ccb4cc49 100644 --- a/src/_icons/adjustments-alt.svg +++ b/src/_icons/adjustments-alt.svg @@ -5,13 +5,13 @@ version: "1.11" unicode: "ec37" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/adjustments-horizontal.svg b/src/_icons/adjustments-horizontal.svg index 456f2b218..c7adf4a5e 100644 --- a/src/_icons/adjustments-horizontal.svg +++ b/src/_icons/adjustments-horizontal.svg @@ -5,13 +5,13 @@ version: "1.11" unicode: "ec38" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/adjustments-off.svg b/src/_icons/adjustments-off.svg index eb03aaa20..9310e41a7 100644 --- a/src/_icons/adjustments-off.svg +++ b/src/_icons/adjustments-off.svg @@ -5,14 +5,14 @@ version: "1.62" unicode: "f0a8" --- - + - + - + diff --git a/src/_icons/adjustments.svg b/src/_icons/adjustments.svg index d6379d365..a4dc4d35a 100644 --- a/src/_icons/adjustments.svg +++ b/src/_icons/adjustments.svg @@ -5,13 +5,13 @@ version: "1.0" unicode: "ea03" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/affiliate.svg b/src/_icons/affiliate.svg index aa42449b4..ac3cf149f 100644 --- a/src/_icons/affiliate.svg +++ b/src/_icons/affiliate.svg @@ -6,8 +6,8 @@ unicode: "edff" - - - - + + + + diff --git a/src/_icons/air-balloon.svg b/src/_icons/air-balloon.svg new file mode 100644 index 000000000..aec8341e6 --- /dev/null +++ b/src/_icons/air-balloon.svg @@ -0,0 +1,11 @@ +--- +tags: [travel, adventure, attraction, fly, transport] +category: Vehicles +unicode: "f4a6" +version: "1.97" +--- + + + + + diff --git a/src/_icons/air-conditioning-disabled.svg b/src/_icons/air-conditioning-disabled.svg new file mode 100644 index 000000000..ebb453e3e --- /dev/null +++ b/src/_icons/air-conditioning-disabled.svg @@ -0,0 +1,9 @@ +--- +tags: [cold, home, cooling, hot, off] +version: "1.105" +unicode: "f542" +--- + + + + diff --git a/src/_icons/air-conditioning.svg b/src/_icons/air-conditioning.svg new file mode 100644 index 000000000..f6f16b5ea --- /dev/null +++ b/src/_icons/air-conditioning.svg @@ -0,0 +1,12 @@ +--- +tags: [cold, ice, home, cooling, heating, hot] +version: "1.93" +unicode: "f3a2" +--- + + + + + + + diff --git a/src/_icons/alarm-minus.svg b/src/_icons/alarm-minus.svg new file mode 100644 index 000000000..175c1c703 --- /dev/null +++ b/src/_icons/alarm-minus.svg @@ -0,0 +1,10 @@ +--- +unicode: "f630" +version: "1.117" +--- + + + + + + diff --git a/src/_icons/alarm-plus.svg b/src/_icons/alarm-plus.svg new file mode 100644 index 000000000..f0d851fa9 --- /dev/null +++ b/src/_icons/alarm-plus.svg @@ -0,0 +1,11 @@ +--- +unicode: "f631" +version: "1.117" +--- + + + + + + + diff --git a/src/_icons/alarm-snooze.svg b/src/_icons/alarm-snooze.svg new file mode 100644 index 000000000..aa348e155 --- /dev/null +++ b/src/_icons/alarm-snooze.svg @@ -0,0 +1,10 @@ +--- +unicode: "f632" +version: "1.117" +--- + + + + + + diff --git a/src/_icons/alarm.svg b/src/_icons/alarm.svg index 375a105d1..7e0922ba2 100644 --- a/src/_icons/alarm.svg +++ b/src/_icons/alarm.svg @@ -4,8 +4,8 @@ version: "1.1" unicode: "ea04" --- - - - - + + + + diff --git a/src/_icons/album-off.svg b/src/_icons/album-off.svg new file mode 100644 index 000000000..fbf715021 --- /dev/null +++ b/src/_icons/album-off.svg @@ -0,0 +1,10 @@ +--- +tags: [photos, photography, gallery, music, image] +unicode: "f3b9" +version: "1.94" +--- + + + + + diff --git a/src/_icons/album.svg b/src/_icons/album.svg index 0b86a0eff..afaa27fd2 100644 --- a/src/_icons/album.svg +++ b/src/_icons/album.svg @@ -4,6 +4,6 @@ version: "1.55" unicode: "f022" --- - + diff --git a/src/_icons/alert-circle.svg b/src/_icons/alert-circle.svg index 5a9dbd43f..70e13d2fb 100644 --- a/src/_icons/alert-circle.svg +++ b/src/_icons/alert-circle.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "ea05" --- - - - + + + diff --git a/src/_icons/alert-octagon.svg b/src/_icons/alert-octagon.svg index f65dc0f1f..e6284a655 100644 --- a/src/_icons/alert-octagon.svg +++ b/src/_icons/alert-octagon.svg @@ -5,6 +5,6 @@ unicode: "ecc6" --- - - + + diff --git a/src/_icons/alien.svg b/src/_icons/alien.svg index 39c4b2d73..8833f1811 100644 --- a/src/_icons/alien.svg +++ b/src/_icons/alien.svg @@ -6,6 +6,6 @@ unicode: "ebde" - - + + diff --git a/src/_icons/align-box-bottom-center.svg b/src/_icons/align-box-bottom-center.svg new file mode 100644 index 000000000..88c5d1401 --- /dev/null +++ b/src/_icons/align-box-bottom-center.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, down, south] +category: Text +unicode: "f530" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-bottom-left.svg b/src/_icons/align-box-bottom-left.svg new file mode 100644 index 000000000..ce207f7b5 --- /dev/null +++ b/src/_icons/align-box-bottom-left.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, west, corner] +category: Text +unicode: "f531" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-bottom-right.svg b/src/_icons/align-box-bottom-right.svg new file mode 100644 index 000000000..145b50ad7 --- /dev/null +++ b/src/_icons/align-box-bottom-right.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, east, corner] +category: Text +unicode: "f532" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-left-bottom.svg b/src/_icons/align-box-left-bottom.svg new file mode 100644 index 000000000..72113daa2 --- /dev/null +++ b/src/_icons/align-box-left-bottom.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, west, down, south, corner] +category: Text +unicode: "f533" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-left-middle.svg b/src/_icons/align-box-left-middle.svg new file mode 100644 index 000000000..daa5ff534 --- /dev/null +++ b/src/_icons/align-box-left-middle.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, west ] +category: Text +unicode: "f534" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-left-top.svg b/src/_icons/align-box-left-top.svg new file mode 100644 index 000000000..743c5da65 --- /dev/null +++ b/src/_icons/align-box-left-top.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, west, up, north, corner] +category: Text +unicode: "f535" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-right-bottom.svg b/src/_icons/align-box-right-bottom.svg new file mode 100644 index 000000000..0d8d718d4 --- /dev/null +++ b/src/_icons/align-box-right-bottom.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, east, down, south, corner] +category: Text +unicode: "f536" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-right-middle.svg b/src/_icons/align-box-right-middle.svg new file mode 100644 index 000000000..e0ef3e206 --- /dev/null +++ b/src/_icons/align-box-right-middle.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, east ] +category: Text +unicode: "f537" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-right-top.svg b/src/_icons/align-box-right-top.svg new file mode 100644 index 000000000..98552134b --- /dev/null +++ b/src/_icons/align-box-right-top.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, east, up, north, corner ] +category: Text +unicode: "f538" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-top-center.svg b/src/_icons/align-box-top-center.svg new file mode 100644 index 000000000..79fa624ca --- /dev/null +++ b/src/_icons/align-box-top-center.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, up, north] +category: Text +unicode: "f539" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-top-left.svg b/src/_icons/align-box-top-left.svg new file mode 100644 index 000000000..fe633096d --- /dev/null +++ b/src/_icons/align-box-top-left.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, up, north, east, corner ] +category: Text +unicode: "f53a" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-box-top-right.svg b/src/_icons/align-box-top-right.svg new file mode 100644 index 000000000..24e83f0fe --- /dev/null +++ b/src/_icons/align-box-top-right.svg @@ -0,0 +1,12 @@ +--- +tags: [text, type, up, north, west, corner] +category: Text +unicode: "f53b" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/align-center.svg b/src/_icons/align-center.svg index 047531f9b..64d314653 100644 --- a/src/_icons/align-center.svg +++ b/src/_icons/align-center.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea07" --- - - - + + + diff --git a/src/_icons/align-justified.svg b/src/_icons/align-justified.svg index 4aa42974a..a856350a7 100644 --- a/src/_icons/align-justified.svg +++ b/src/_icons/align-justified.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea08" --- - - - + + + diff --git a/src/_icons/align-left.svg b/src/_icons/align-left.svg index 2ef3170da..7804da55d 100644 --- a/src/_icons/align-left.svg +++ b/src/_icons/align-left.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea09" --- - - - + + + diff --git a/src/_icons/align-right.svg b/src/_icons/align-right.svg index b58702754..58378af6d 100644 --- a/src/_icons/align-right.svg +++ b/src/_icons/align-right.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea0a" --- - - - + + + diff --git a/src/_icons/alpha.svg b/src/_icons/alpha.svg new file mode 100644 index 000000000..e4ccf8c32 --- /dev/null +++ b/src/_icons/alpha.svg @@ -0,0 +1,8 @@ +--- +tags: [letter, alphabet, greek, math ] +version: "1.105" +unicode: "f543" +--- + + + diff --git a/src/_icons/alphabet-greek.svg b/src/_icons/alphabet-greek.svg index 53f8ea11d..066dc108f 100644 --- a/src/_icons/alphabet-greek.svg +++ b/src/_icons/alphabet-greek.svg @@ -6,6 +6,6 @@ unicode: "f1e0" --- - + diff --git a/src/_icons/alphabet-latin.svg b/src/_icons/alphabet-latin.svg index bffef76a4..a22471407 100644 --- a/src/_icons/alphabet-latin.svg +++ b/src/_icons/alphabet-latin.svg @@ -7,5 +7,5 @@ unicode: "f1e1" - + diff --git a/src/_icons/ambulance.svg b/src/_icons/ambulance.svg index 38db349e1..70daf82d2 100644 --- a/src/_icons/ambulance.svg +++ b/src/_icons/ambulance.svg @@ -5,8 +5,8 @@ version: "1.8" unicode: "ebf5" --- - - + + diff --git a/src/_icons/analyze-off.svg b/src/_icons/analyze-off.svg new file mode 100644 index 000000000..b58dfbf6a --- /dev/null +++ b/src/_icons/analyze-off.svg @@ -0,0 +1,13 @@ +--- +tags: [analytics, data, statistics, graph] +unicode: "f3ba" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/analyze.svg b/src/_icons/analyze.svg new file mode 100644 index 000000000..3330446ad --- /dev/null +++ b/src/_icons/analyze.svg @@ -0,0 +1,12 @@ +--- +tags: [analytics, data, statistics, graph] +version: "1.93" +unicode: "f3a3" +--- + + + + + + + diff --git a/src/_icons/anchor-off.svg b/src/_icons/anchor-off.svg index a39b5960c..35e10cfde 100644 --- a/src/_icons/anchor-off.svg +++ b/src/_icons/anchor-off.svg @@ -9,6 +9,6 @@ unicode: "f0f7" - + diff --git a/src/_icons/anchor.svg b/src/_icons/anchor.svg index 2dee385cf..b48ef8b10 100644 --- a/src/_icons/anchor.svg +++ b/src/_icons/anchor.svg @@ -6,5 +6,5 @@ unicode: "eb76" --- - + diff --git a/src/_icons/antenna-bars-1.svg b/src/_icons/antenna-bars-1.svg index a71c42fd1..3857ea8b6 100644 --- a/src/_icons/antenna-bars-1.svg +++ b/src/_icons/antenna-bars-1.svg @@ -5,8 +5,8 @@ version: "1.19" unicode: "ecc7" --- - - - - + + + + diff --git a/src/_icons/antenna-bars-2.svg b/src/_icons/antenna-bars-2.svg index a74e31c99..79d2b346a 100644 --- a/src/_icons/antenna-bars-2.svg +++ b/src/_icons/antenna-bars-2.svg @@ -5,8 +5,8 @@ version: "1.19" unicode: "ecc8" --- - - - - + + + + diff --git a/src/_icons/antenna-bars-3.svg b/src/_icons/antenna-bars-3.svg index afe0f3e66..7c754c44b 100644 --- a/src/_icons/antenna-bars-3.svg +++ b/src/_icons/antenna-bars-3.svg @@ -5,8 +5,8 @@ version: "1.19" unicode: "ecc9" --- - - - - + + + + diff --git a/src/_icons/antenna-bars-4.svg b/src/_icons/antenna-bars-4.svg index 613ff237d..81adc4287 100644 --- a/src/_icons/antenna-bars-4.svg +++ b/src/_icons/antenna-bars-4.svg @@ -5,8 +5,8 @@ version: "1.19" unicode: "ecca" --- - - - - + + + + diff --git a/src/_icons/antenna-bars-5.svg b/src/_icons/antenna-bars-5.svg index fcaf5dd20..43fbac39f 100644 --- a/src/_icons/antenna-bars-5.svg +++ b/src/_icons/antenna-bars-5.svg @@ -5,8 +5,8 @@ version: "1.19" unicode: "eccb" --- - - - - + + + + diff --git a/src/_icons/antenna-off.svg b/src/_icons/antenna-off.svg new file mode 100644 index 000000000..754276719 --- /dev/null +++ b/src/_icons/antenna-off.svg @@ -0,0 +1,14 @@ +--- +tags: [reach, tv, network, connetion, signal, communication] +unicode: "f3bb" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/aperture-off.svg b/src/_icons/aperture-off.svg new file mode 100644 index 000000000..d6da7f084 --- /dev/null +++ b/src/_icons/aperture-off.svg @@ -0,0 +1,15 @@ +--- +tags: [hole, opening, vent] +category: Photography +unicode: "f3bc" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/aperture.svg b/src/_icons/aperture.svg index 88cd95c8a..f7b68bd98 100644 --- a/src/_icons/aperture.svg +++ b/src/_icons/aperture.svg @@ -5,10 +5,10 @@ version: "1.2" unicode: "eb58" --- - - - - - - + + + + + + diff --git a/src/_icons/app-window.svg b/src/_icons/app-window.svg index 166bf6fcb..a8a4c9e90 100644 --- a/src/_icons/app-window.svg +++ b/src/_icons/app-window.svg @@ -4,7 +4,7 @@ version: "1.52" unicode: "efe6" --- - + diff --git a/src/_icons/apple.svg b/src/_icons/apple.svg index 2600f3fc0..e591732f3 100644 --- a/src/_icons/apple.svg +++ b/src/_icons/apple.svg @@ -5,7 +5,7 @@ version: "1.41" unicode: "ef21" --- - + diff --git a/src/_icons/apps-off.svg b/src/_icons/apps-off.svg index cbcd8bb0b..d659657d9 100644 --- a/src/_icons/apps-off.svg +++ b/src/_icons/apps-off.svg @@ -4,9 +4,9 @@ version: "1.62" unicode: "f0ac" --- - - - + + + diff --git a/src/_icons/apps.svg b/src/_icons/apps.svg index 3e046d789..b4f583518 100644 --- a/src/_icons/apps.svg +++ b/src/_icons/apps.svg @@ -4,9 +4,9 @@ version: "1.5" unicode: "ebb6" --- - - - - - + + + + + diff --git a/src/_icons/archive.svg b/src/_icons/archive.svg index 9f1f01826..9de0797c1 100644 --- a/src/_icons/archive.svg +++ b/src/_icons/archive.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea0b" --- - + - + diff --git a/src/_icons/armchair-2-off.svg b/src/_icons/armchair-2-off.svg new file mode 100644 index 000000000..a62dd08dd --- /dev/null +++ b/src/_icons/armchair-2-off.svg @@ -0,0 +1,13 @@ +--- +tags: [seat, chair, sofa, home, furniture] +unicode: "f3bd" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/armchair-off.svg b/src/_icons/armchair-off.svg new file mode 100644 index 000000000..481df460f --- /dev/null +++ b/src/_icons/armchair-off.svg @@ -0,0 +1,12 @@ +--- +tags: [seat, chair, sofa, home, furniture] +unicode: "f3be" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/arrow-autofit-content.svg b/src/_icons/arrow-autofit-content.svg index cbd77e7ef..eadb2eef0 100644 --- a/src/_icons/arrow-autofit-content.svg +++ b/src/_icons/arrow-autofit-content.svg @@ -7,7 +7,7 @@ unicode: "ef31" - + diff --git a/src/_icons/arrow-back-up.svg b/src/_icons/arrow-back-up.svg index 50f46cbd6..07534ce92 100644 --- a/src/_icons/arrow-back-up.svg +++ b/src/_icons/arrow-back-up.svg @@ -1,5 +1,5 @@ --- -tags: [pointer, return, revert, reverse] +tags: [pointer, return, revert, reverse, undo, left] category: Arrows version: "1.3" unicode: "eb77" diff --git a/src/_icons/arrow-back.svg b/src/_icons/arrow-back.svg index babe26f95..e86a864bf 100644 --- a/src/_icons/arrow-back.svg +++ b/src/_icons/arrow-back.svg @@ -1,5 +1,5 @@ --- -tags: [pointer, return, revert, reverse] +tags: [pointer, return, revert, reverse, undo, left] category: Arrows version: "1.1" unicode: "ea0c" diff --git a/src/_icons/arrow-badge-down.svg b/src/_icons/arrow-badge-down.svg new file mode 100644 index 000000000..905171cc4 --- /dev/null +++ b/src/_icons/arrow-badge-down.svg @@ -0,0 +1,8 @@ +--- +category: Arrows +unicode: "f60b" +version: "1.115" +--- + + + diff --git a/src/_icons/arrow-badge-left.svg b/src/_icons/arrow-badge-left.svg new file mode 100644 index 000000000..32badeca2 --- /dev/null +++ b/src/_icons/arrow-badge-left.svg @@ -0,0 +1,8 @@ +--- +category: Arrows +unicode: "f60c" +version: "1.115" +--- + + + diff --git a/src/_icons/arrow-badge-right.svg b/src/_icons/arrow-badge-right.svg new file mode 100644 index 000000000..f33d52bfc --- /dev/null +++ b/src/_icons/arrow-badge-right.svg @@ -0,0 +1,8 @@ +--- +category: Arrows +unicode: "f60d" +version: "1.115" +--- + + + diff --git a/src/_icons/arrow-badge-up.svg b/src/_icons/arrow-badge-up.svg new file mode 100644 index 000000000..d2b3a1039 --- /dev/null +++ b/src/_icons/arrow-badge-up.svg @@ -0,0 +1,8 @@ +--- +category: Arrows +unicode: "f60e" +version: "1.115" +--- + + + diff --git a/src/_icons/arrow-bar-down.svg b/src/_icons/arrow-bar-down.svg index fa4ed524e..33f952211 100644 --- a/src/_icons/arrow-bar-down.svg +++ b/src/_icons/arrow-bar-down.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea0d" --- - - - - + + + + diff --git a/src/_icons/arrow-bar-left.svg b/src/_icons/arrow-bar-left.svg index 71eca8795..98a33e48f 100644 --- a/src/_icons/arrow-bar-left.svg +++ b/src/_icons/arrow-bar-left.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea0e" --- - - - - + + + + diff --git a/src/_icons/arrow-bar-right.svg b/src/_icons/arrow-bar-right.svg index 2ebf9e434..c49f3ce01 100644 --- a/src/_icons/arrow-bar-right.svg +++ b/src/_icons/arrow-bar-right.svg @@ -5,8 +5,8 @@ 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..0a7c35758 100644 --- a/src/_icons/arrow-bar-to-down.svg +++ b/src/_icons/arrow-bar-to-down.svg @@ -5,8 +5,8 @@ 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..a110b8e45 100644 --- a/src/_icons/arrow-bar-to-left.svg +++ b/src/_icons/arrow-bar-to-left.svg @@ -5,8 +5,8 @@ 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..8e897720a 100644 --- a/src/_icons/arrow-bar-to-right.svg +++ b/src/_icons/arrow-bar-to-right.svg @@ -5,8 +5,8 @@ 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..362358330 100644 --- a/src/_icons/arrow-bar-to-up.svg +++ b/src/_icons/arrow-bar-to-up.svg @@ -5,8 +5,8 @@ version: "1.15" unicode: "ec8b" --- - - - - + + + + diff --git a/src/_icons/arrow-bar-up.svg b/src/_icons/arrow-bar-up.svg index 4b1d55cfe..846f34582 100644 --- a/src/_icons/arrow-bar-up.svg +++ b/src/_icons/arrow-bar-up.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea10" --- - - - - + + + + diff --git a/src/_icons/arrow-big-down-filled.svg b/src/_icons/arrow-big-down-filled.svg new file mode 100644 index 000000000..1d058b80f --- /dev/null +++ b/src/_icons/arrow-big-down-filled.svg @@ -0,0 +1,7 @@ +--- +tags: [direction, south] +category: Filled +--- + + + diff --git a/src/_icons/arrow-big-down-line-filled.svg b/src/_icons/arrow-big-down-line-filled.svg new file mode 100644 index 000000000..22ded7c01 --- /dev/null +++ b/src/_icons/arrow-big-down-line-filled.svg @@ -0,0 +1,8 @@ +--- +tags: [direction, south] +category: Filled +--- + + + + diff --git a/src/_icons/arrow-big-down-lines-filled.svg b/src/_icons/arrow-big-down-lines-filled.svg new file mode 100644 index 000000000..ad75469d4 --- /dev/null +++ b/src/_icons/arrow-big-down-lines-filled.svg @@ -0,0 +1,9 @@ +--- +tags: [direction, south] +category: Filled +--- + + + + + diff --git a/src/_icons/arrow-big-left-filled.svg b/src/_icons/arrow-big-left-filled.svg new file mode 100644 index 000000000..75448f8a8 --- /dev/null +++ b/src/_icons/arrow-big-left-filled.svg @@ -0,0 +1,7 @@ +--- +tags: [direction, west] +category: Filled +--- + + + diff --git a/src/_icons/arrow-big-left-line-filled.svg b/src/_icons/arrow-big-left-line-filled.svg new file mode 100644 index 000000000..b377daf93 --- /dev/null +++ b/src/_icons/arrow-big-left-line-filled.svg @@ -0,0 +1,8 @@ +--- +tags: [direction, west] +category: Filled +--- + + + + diff --git a/src/_icons/arrow-big-left-lines-filled.svg b/src/_icons/arrow-big-left-lines-filled.svg new file mode 100644 index 000000000..0e39fe03e --- /dev/null +++ b/src/_icons/arrow-big-left-lines-filled.svg @@ -0,0 +1,9 @@ +--- +tags: [direction, west] +category: Filled +--- + + + + + diff --git a/src/_icons/arrow-big-right-filled.svg b/src/_icons/arrow-big-right-filled.svg new file mode 100644 index 000000000..cf7379bcd --- /dev/null +++ b/src/_icons/arrow-big-right-filled.svg @@ -0,0 +1,7 @@ +--- +tags: [direction, east, west] +category: Filled +--- + + + diff --git a/src/_icons/arrow-big-right-line-filled.svg b/src/_icons/arrow-big-right-line-filled.svg new file mode 100644 index 000000000..aef22cd57 --- /dev/null +++ b/src/_icons/arrow-big-right-line-filled.svg @@ -0,0 +1,8 @@ +--- +tags: [direction, east, west] +category: Filled +--- + + + + diff --git a/src/_icons/arrow-big-right-lines-filled.svg b/src/_icons/arrow-big-right-lines-filled.svg new file mode 100644 index 000000000..507283a8f --- /dev/null +++ b/src/_icons/arrow-big-right-lines-filled.svg @@ -0,0 +1,9 @@ +--- +tags: [direction, east, west] +category: Filled +--- + + + + + diff --git a/src/_icons/arrow-big-up-filled.svg b/src/_icons/arrow-big-up-filled.svg new file mode 100644 index 000000000..e3137c2ab --- /dev/null +++ b/src/_icons/arrow-big-up-filled.svg @@ -0,0 +1,7 @@ +--- +tags: [direction, north] +category: Filled +--- + + + diff --git a/src/_icons/arrow-big-up-line-filled.svg b/src/_icons/arrow-big-up-line-filled.svg new file mode 100644 index 000000000..d27d8562e --- /dev/null +++ b/src/_icons/arrow-big-up-line-filled.svg @@ -0,0 +1,8 @@ +--- +tags: [direction, north] +category: Filled +--- + + + + diff --git a/src/_icons/arrow-big-up-lines-filled.svg b/src/_icons/arrow-big-up-lines-filled.svg new file mode 100644 index 000000000..e08c33c80 --- /dev/null +++ b/src/_icons/arrow-big-up-lines-filled.svg @@ -0,0 +1,9 @@ +--- +tags: [direction, north] +category: Filled +--- + + + + + diff --git a/src/_icons/arrow-big-top.svg b/src/_icons/arrow-big-up.svg similarity index 100% rename from src/_icons/arrow-big-top.svg rename to src/_icons/arrow-big-up.svg diff --git a/src/_icons/arrow-bottom-circle.svg b/src/_icons/arrow-bottom-circle.svg deleted file mode 100644 index 30180090b..000000000 --- a/src/_icons/arrow-bottom-circle.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [drag, move] -category: Arrows -version: "1.35" -unicode: "ed99" ---- - - - - - diff --git a/src/_icons/arrow-bounce.svg b/src/_icons/arrow-bounce.svg new file mode 100644 index 000000000..91bdf7084 --- /dev/null +++ b/src/_icons/arrow-bounce.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, cursor, up, pointer, move ] +category: Arrows +version: "1.93" +unicode: "f3a4" +--- + + + + + diff --git a/src/_icons/arrow-bottom-bar.svg b/src/_icons/arrow-down-bar.svg similarity index 100% rename from src/_icons/arrow-bottom-bar.svg rename to src/_icons/arrow-down-bar.svg diff --git a/src/_icons/arrow-down-circle.svg b/src/_icons/arrow-down-circle.svg index ede9c7286..fcd9505ac 100644 --- a/src/_icons/arrow-down-circle.svg +++ b/src/_icons/arrow-down-circle.svg @@ -5,8 +5,8 @@ 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..5d963dc75 100644 --- a/src/_icons/arrow-down-left-circle.svg +++ b/src/_icons/arrow-down-left-circle.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea12" --- - - - + + + diff --git a/src/_icons/arrow-down-left.svg b/src/_icons/arrow-down-left.svg index b357f0e3b..069dd564d 100644 --- a/src/_icons/arrow-down-left.svg +++ b/src/_icons/arrow-down-left.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea13" --- - - + + diff --git a/src/_icons/arrow-down-rhombus.svg b/src/_icons/arrow-down-rhombus.svg new file mode 100644 index 000000000..0d886766b --- /dev/null +++ b/src/_icons/arrow-down-rhombus.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +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..1ecddc57f 100644 --- a/src/_icons/arrow-down-right-circle.svg +++ b/src/_icons/arrow-down-right-circle.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea14" --- - - - + + + diff --git a/src/_icons/arrow-down-right.svg b/src/_icons/arrow-down-right.svg index b94b689ed..03f62a0ba 100644 --- a/src/_icons/arrow-down-right.svg +++ b/src/_icons/arrow-down-right.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea15" --- - - + + diff --git a/src/_icons/arrow-bottom-square.svg b/src/_icons/arrow-down-square.svg similarity index 100% rename from src/_icons/arrow-bottom-square.svg rename to src/_icons/arrow-down-square.svg diff --git a/src/_icons/arrow-bottom-tail.svg b/src/_icons/arrow-down-tail.svg similarity index 100% rename from src/_icons/arrow-bottom-tail.svg rename to src/_icons/arrow-down-tail.svg diff --git a/src/_icons/arrow-down.svg b/src/_icons/arrow-down.svg index 2e0f17487..5ab064c00 100644 --- a/src/_icons/arrow-down.svg +++ b/src/_icons/arrow-down.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea16" --- - - - + + + diff --git a/src/_icons/arrow-forward-up.svg b/src/_icons/arrow-forward-up.svg index 429e05f6c..f60ff77be 100644 --- a/src/_icons/arrow-forward-up.svg +++ b/src/_icons/arrow-forward-up.svg @@ -1,5 +1,5 @@ --- -tags: [point, turn, next] +tags: [point, turn, next, redo, right] category: Arrows version: "1.3" unicode: "eb78" diff --git a/src/_icons/arrow-forward.svg b/src/_icons/arrow-forward.svg index 4905f9bea..6ac625775 100644 --- a/src/_icons/arrow-forward.svg +++ b/src/_icons/arrow-forward.svg @@ -1,5 +1,5 @@ --- -tags: [point, turn, next] +tags: [point, turn, next, redo, right] category: Arrows version: "1.1" unicode: "ea17" diff --git a/src/_icons/arrow-guide.svg b/src/_icons/arrow-guide.svg index 10f319e95..efe6f9355 100644 --- a/src/_icons/arrow-guide.svg +++ b/src/_icons/arrow-guide.svg @@ -5,7 +5,7 @@ version: "1.73" unicode: "f22a" --- - + diff --git a/src/_icons/arrow-iteration.svg b/src/_icons/arrow-iteration.svg new file mode 100644 index 000000000..461da726e --- /dev/null +++ b/src/_icons/arrow-iteration.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, loop, right, east ] +category: Arrows +unicode: "f578" +version: "1.108" +--- + + + + + diff --git a/src/_icons/arrow-left-circle.svg b/src/_icons/arrow-left-circle.svg index 56417cffb..5a8d1e73a 100644 --- a/src/_icons/arrow-left-circle.svg +++ b/src/_icons/arrow-left-circle.svg @@ -7,5 +7,5 @@ unicode: "ea18" - + diff --git a/src/_icons/arrow-left-rhombus.svg b/src/_icons/arrow-left-rhombus.svg new file mode 100644 index 000000000..09be5ac52 --- /dev/null +++ b/src/_icons/arrow-left-rhombus.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f61e" +version: "1.116" +--- + + + + + diff --git a/src/_icons/arrow-left.svg b/src/_icons/arrow-left.svg index 9f4f92a19..b606ed25b 100644 --- a/src/_icons/arrow-left.svg +++ b/src/_icons/arrow-left.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea19" --- - - - + + + diff --git a/src/_icons/arrow-move-down.svg b/src/_icons/arrow-move-down.svg index 5bdd987c4..d9f0a1daa 100644 --- a/src/_icons/arrow-move-down.svg +++ b/src/_icons/arrow-move-down.svg @@ -1,4 +1,5 @@ --- +tags: [direction, south, bottom] category: Arrows version: "1.81" unicode: "f2ba" @@ -6,5 +7,5 @@ unicode: "f2ba" - + diff --git a/src/_icons/arrow-move-left.svg b/src/_icons/arrow-move-left.svg index 022edf804..732e4422a 100644 --- a/src/_icons/arrow-move-left.svg +++ b/src/_icons/arrow-move-left.svg @@ -1,4 +1,5 @@ --- +tags: [direction, west] category: Arrows version: "1.81" unicode: "f2bb" diff --git a/src/_icons/arrow-move-right.svg b/src/_icons/arrow-move-right.svg index 36e671018..0e42ba529 100644 --- a/src/_icons/arrow-move-right.svg +++ b/src/_icons/arrow-move-right.svg @@ -1,4 +1,5 @@ --- +tags: [direction, east] category: Arrows version: "1.81" unicode: "f2bc" diff --git a/src/_icons/arrow-move-up.svg b/src/_icons/arrow-move-up.svg index ca3776f91..f0aa7a139 100644 --- a/src/_icons/arrow-move-up.svg +++ b/src/_icons/arrow-move-up.svg @@ -1,4 +1,5 @@ --- +tags: [direction, north, top] category: Arrows version: "1.81" unicode: "f2bd" diff --git a/src/_icons/arrow-narrow-down.svg b/src/_icons/arrow-narrow-down.svg index 536c30f2a..dc3113dad 100644 --- a/src/_icons/arrow-narrow-down.svg +++ b/src/_icons/arrow-narrow-down.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea1a" --- - - - + + + diff --git a/src/_icons/arrow-narrow-left.svg b/src/_icons/arrow-narrow-left.svg index ca4435902..5b9327d57 100644 --- a/src/_icons/arrow-narrow-left.svg +++ b/src/_icons/arrow-narrow-left.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea1b" --- - - - + + + diff --git a/src/_icons/arrow-narrow-right.svg b/src/_icons/arrow-narrow-right.svg index 456204fce..a8bfb6979 100644 --- a/src/_icons/arrow-narrow-right.svg +++ b/src/_icons/arrow-narrow-right.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea1c" --- - - - + + + diff --git a/src/_icons/arrow-narrow-up.svg b/src/_icons/arrow-narrow-up.svg index 62434d24c..b999b5a8a 100644 --- a/src/_icons/arrow-narrow-up.svg +++ b/src/_icons/arrow-narrow-up.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea1d" --- - - - + + + diff --git a/src/_icons/arrow-ramp-left.svg b/src/_icons/arrow-ramp-left.svg index 8cb76bcfb..7d0426011 100644 --- a/src/_icons/arrow-ramp-left.svg +++ b/src/_icons/arrow-ramp-left.svg @@ -5,7 +5,7 @@ version: "1.28" unicode: "ed3c" --- - + diff --git a/src/_icons/arrow-ramp-right.svg b/src/_icons/arrow-ramp-right.svg index d01a0ea48..3f5f5a415 100644 --- a/src/_icons/arrow-ramp-right.svg +++ b/src/_icons/arrow-ramp-right.svg @@ -5,7 +5,7 @@ version: "1.28" unicode: "ed3d" --- - + diff --git a/src/_icons/arrow-right-circle.svg b/src/_icons/arrow-right-circle.svg index cf1d6ceed..90b6b4068 100644 --- a/src/_icons/arrow-right-circle.svg +++ b/src/_icons/arrow-right-circle.svg @@ -6,6 +6,6 @@ unicode: "ea1e" --- - + diff --git a/src/_icons/arrow-right-rhombus.svg b/src/_icons/arrow-right-rhombus.svg new file mode 100644 index 000000000..ef5854b7a --- /dev/null +++ b/src/_icons/arrow-right-rhombus.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f61f" +version: "1.116" +--- + + + + + diff --git a/src/_icons/arrow-right-square.svg b/src/_icons/arrow-right-square.svg index 37e6f80ee..4776012dc 100644 --- a/src/_icons/arrow-right-square.svg +++ b/src/_icons/arrow-right-square.svg @@ -5,7 +5,7 @@ version: "1.35" unicode: "eda2" --- - + diff --git a/src/_icons/arrow-right-tail.svg b/src/_icons/arrow-right-tail.svg index b70234a83..6a86ff19c 100644 --- a/src/_icons/arrow-right-tail.svg +++ b/src/_icons/arrow-right-tail.svg @@ -7,5 +7,5 @@ unicode: "eda3" - + diff --git a/src/_icons/arrow-right.svg b/src/_icons/arrow-right.svg index cd6051b9f..064364294 100644 --- a/src/_icons/arrow-right.svg +++ b/src/_icons/arrow-right.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea1f" --- - - - + + + diff --git a/src/_icons/arrow-rotary-first-left.svg b/src/_icons/arrow-rotary-first-left.svg index 9ebb92759..1395b2c4e 100644 --- a/src/_icons/arrow-rotary-first-left.svg +++ b/src/_icons/arrow-rotary-first-left.svg @@ -5,7 +5,7 @@ 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..2e7c8b01d 100644 --- a/src/_icons/arrow-rotary-first-right.svg +++ b/src/_icons/arrow-rotary-first-right.svg @@ -5,7 +5,7 @@ version: "1.57" unicode: "f054" --- - + diff --git a/src/_icons/arrow-rotary-last-left.svg b/src/_icons/arrow-rotary-last-left.svg index b318f2b36..2ee6e7add 100644 --- a/src/_icons/arrow-rotary-last-left.svg +++ b/src/_icons/arrow-rotary-last-left.svg @@ -5,7 +5,7 @@ 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..ad0e67a68 100644 --- a/src/_icons/arrow-rotary-last-right.svg +++ b/src/_icons/arrow-rotary-last-right.svg @@ -5,7 +5,7 @@ version: "1.57" unicode: "f056" --- - + diff --git a/src/_icons/arrow-rotary-left.svg b/src/_icons/arrow-rotary-left.svg index f80f6a5e2..981adcfa0 100644 --- a/src/_icons/arrow-rotary-left.svg +++ b/src/_icons/arrow-rotary-left.svg @@ -5,7 +5,7 @@ version: "1.57" unicode: "f057" --- - + diff --git a/src/_icons/arrow-rotary-right.svg b/src/_icons/arrow-rotary-right.svg index 856b90aa2..68882046c 100644 --- a/src/_icons/arrow-rotary-right.svg +++ b/src/_icons/arrow-rotary-right.svg @@ -5,7 +5,7 @@ version: "1.57" unicode: "f058" --- - + diff --git a/src/_icons/arrow-rotary-straight.svg b/src/_icons/arrow-rotary-straight.svg index 52531799c..c8a03cdd2 100644 --- a/src/_icons/arrow-rotary-straight.svg +++ b/src/_icons/arrow-rotary-straight.svg @@ -5,7 +5,7 @@ version: "1.57" unicode: "f059" --- - + diff --git a/src/_icons/arrow-top-bar.svg b/src/_icons/arrow-top-bar.svg deleted file mode 100644 index 426a9b3cb..000000000 --- a/src/_icons/arrow-top-bar.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [direction, north] -category: Arrows -version: "1.35" -unicode: "eda4" ---- - - - - - diff --git a/src/_icons/arrow-top-circle.svg b/src/_icons/arrow-top-circle.svg deleted file mode 100644 index ce1459a13..000000000 --- a/src/_icons/arrow-top-circle.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [direction, north] -category: Arrows -version: "1.35" -unicode: "eda5" ---- - - - - - diff --git a/src/_icons/arrow-top-square.svg b/src/_icons/arrow-top-square.svg deleted file mode 100644 index 2ffc6a11d..000000000 --- a/src/_icons/arrow-top-square.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [direction, north] -category: Arrows -version: "1.35" -unicode: "eda6" ---- - - - - - diff --git a/src/_icons/arrow-top-tail.svg b/src/_icons/arrow-top-tail.svg deleted file mode 100644 index 99f0bffb9..000000000 --- a/src/_icons/arrow-top-tail.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [direction, north] -category: Arrows -version: "1.35" -unicode: "eda7" ---- - - - - - diff --git a/src/_icons/arrow-up-bar.svg b/src/_icons/arrow-up-bar.svg new file mode 100644 index 000000000..2e95f3ee1 --- /dev/null +++ b/src/_icons/arrow-up-bar.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, north] +category: Arrows +version: "1.35" +unicode: "eda4" +--- + + + + + diff --git a/src/_icons/arrow-up-circle.svg b/src/_icons/arrow-up-circle.svg index f722b0416..26b84a745 100644 --- a/src/_icons/arrow-up-circle.svg +++ b/src/_icons/arrow-up-circle.svg @@ -5,8 +5,8 @@ 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..d98c24cfb 100644 --- a/src/_icons/arrow-up-left-circle.svg +++ b/src/_icons/arrow-up-left-circle.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea21" --- - - - + + + diff --git a/src/_icons/arrow-up-left.svg b/src/_icons/arrow-up-left.svg index 2a1f9644e..5729ccd07 100644 --- a/src/_icons/arrow-up-left.svg +++ b/src/_icons/arrow-up-left.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea22" --- - - + + diff --git a/src/_icons/arrow-up-rhombus.svg b/src/_icons/arrow-up-rhombus.svg new file mode 100644 index 000000000..f5d1a54bc --- /dev/null +++ b/src/_icons/arrow-up-rhombus.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +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..10fd2caed 100644 --- a/src/_icons/arrow-up-right-circle.svg +++ b/src/_icons/arrow-up-right-circle.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea23" --- - - - + + + diff --git a/src/_icons/arrow-up-right.svg b/src/_icons/arrow-up-right.svg index f26cd0f60..2a219e019 100644 --- a/src/_icons/arrow-up-right.svg +++ b/src/_icons/arrow-up-right.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea24" --- - - + + diff --git a/src/_icons/arrow-up-square.svg b/src/_icons/arrow-up-square.svg new file mode 100644 index 000000000..5081fa0c4 --- /dev/null +++ b/src/_icons/arrow-up-square.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, north] +category: Arrows +version: "1.35" +unicode: "eda6" +--- + + + + + diff --git a/src/_icons/arrow-up-tail.svg b/src/_icons/arrow-up-tail.svg new file mode 100644 index 000000000..fadfbb03d --- /dev/null +++ b/src/_icons/arrow-up-tail.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, north] +category: Arrows +version: "1.35" +unicode: "eda7" +--- + + + + + diff --git a/src/_icons/arrow-up.svg b/src/_icons/arrow-up.svg index 35193d7c6..4f75d9d3d 100644 --- a/src/_icons/arrow-up.svg +++ b/src/_icons/arrow-up.svg @@ -5,7 +5,7 @@ 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..230f3e7f3 100644 --- a/src/_icons/arrow-wave-left-down.svg +++ b/src/_icons/arrow-wave-left-down.svg @@ -5,6 +5,6 @@ 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..d96cb6125 100644 --- a/src/_icons/arrow-wave-left-up.svg +++ b/src/_icons/arrow-wave-left-up.svg @@ -5,6 +5,6 @@ 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..62b2ec2e4 100644 --- a/src/_icons/arrow-wave-right-down.svg +++ b/src/_icons/arrow-wave-right-down.svg @@ -5,6 +5,6 @@ version: "1.35" unicode: "edaa" --- - - + + diff --git a/src/_icons/arrow-zig-zag.svg b/src/_icons/arrow-zig-zag.svg new file mode 100644 index 000000000..dbf869f8c --- /dev/null +++ b/src/_icons/arrow-zig-zag.svg @@ -0,0 +1,10 @@ +--- +tags: [direction, cursor, pointer, turn, move ] +category: Arrows +unicode: "f4a7" +version: "1.97" +--- + + + + diff --git a/src/_icons/arrows-diagonal-2.svg b/src/_icons/arrows-diagonal-2.svg index 77408ae23..703c31c0a 100644 --- a/src/_icons/arrows-diagonal-2.svg +++ b/src/_icons/arrows-diagonal-2.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea26" --- - - - - + + + + diff --git a/src/_icons/arrows-diagonal.svg b/src/_icons/arrows-diagonal.svg index ba7474890..c12a2d562 100644 --- a/src/_icons/arrows-diagonal.svg +++ b/src/_icons/arrows-diagonal.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea27" --- - - - - + + + + diff --git a/src/_icons/arrows-diff.svg b/src/_icons/arrows-diff.svg index f397d0800..0ded8945c 100644 --- a/src/_icons/arrows-diff.svg +++ b/src/_icons/arrows-diff.svg @@ -1,4 +1,5 @@ --- +tags: [direction, right, left, west, east] category: Arrows version: "1.79" unicode: "f296" diff --git a/src/_icons/arrows-double-nw-se.svg b/src/_icons/arrows-double-nw-se.svg index 004568feb..60a6ac689 100644 --- a/src/_icons/arrows-double-nw-se.svg +++ b/src/_icons/arrows-double-nw-se.svg @@ -8,5 +8,5 @@ unicode: "eddf" - + diff --git a/src/_icons/arrows-double-se-nw.svg b/src/_icons/arrows-double-se-nw.svg index bb5f657dc..2f49fba0f 100644 --- a/src/_icons/arrows-double-se-nw.svg +++ b/src/_icons/arrows-double-se-nw.svg @@ -5,7 +5,7 @@ version: "1.37" unicode: "ede0" --- - + diff --git a/src/_icons/arrows-down-up.svg b/src/_icons/arrows-down-up.svg index decb9b233..72b736c0b 100644 --- a/src/_icons/arrows-down-up.svg +++ b/src/_icons/arrows-down-up.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edac" --- - + - + diff --git a/src/_icons/arrows-down.svg b/src/_icons/arrows-down.svg index 05c68e8fa..4c0883d5f 100644 --- a/src/_icons/arrows-down.svg +++ b/src/_icons/arrows-down.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edad" --- - + - + diff --git a/src/_icons/arrows-horizontal.svg b/src/_icons/arrows-horizontal.svg index 15dafb5e0..b0e0faf89 100644 --- a/src/_icons/arrows-horizontal.svg +++ b/src/_icons/arrows-horizontal.svg @@ -5,7 +5,7 @@ version: "1.2" unicode: "eb59" --- - - - + + + diff --git a/src/_icons/arrows-left-right.svg b/src/_icons/arrows-left-right.svg index f25335425..c1c4fa2f7 100644 --- a/src/_icons/arrows-left-right.svg +++ b/src/_icons/arrows-left-right.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edb0" --- - + - + diff --git a/src/_icons/arrows-left.svg b/src/_icons/arrows-left.svg index 8f826e07a..1dc808928 100644 --- a/src/_icons/arrows-left.svg +++ b/src/_icons/arrows-left.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edb1" --- - + - + diff --git a/src/_icons/arrows-maximize.svg b/src/_icons/arrows-maximize.svg index fa0ed9316..fbeb7d644 100644 --- a/src/_icons/arrows-maximize.svg +++ b/src/_icons/arrows-maximize.svg @@ -5,12 +5,12 @@ version: "1.0" unicode: "ea28" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/arrows-minimize.svg b/src/_icons/arrows-minimize.svg index 03d4eda4c..aa3475333 100644 --- a/src/_icons/arrows-minimize.svg +++ b/src/_icons/arrows-minimize.svg @@ -5,12 +5,12 @@ version: "1.0" unicode: "ea29" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/arrows-random.svg b/src/_icons/arrows-random.svg index e5e351590..71449704b 100644 --- a/src/_icons/arrows-random.svg +++ b/src/_icons/arrows-random.svg @@ -5,12 +5,12 @@ category: Arrows unicode: "f095" --- - - + + - - - - + + + + diff --git a/src/_icons/arrows-right-left.svg b/src/_icons/arrows-right-left.svg index 66a053f7d..53b33e898 100644 --- a/src/_icons/arrows-right-left.svg +++ b/src/_icons/arrows-right-left.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edb2" --- - + - + diff --git a/src/_icons/arrows-right.svg b/src/_icons/arrows-right.svg index 44ca0380e..5e996485b 100644 --- a/src/_icons/arrows-right.svg +++ b/src/_icons/arrows-right.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edb3" --- - + - + diff --git a/src/_icons/arrows-shuffle.svg b/src/_icons/arrows-shuffle.svg index 310a1c216..6a0f92f2f 100644 --- a/src/_icons/arrows-shuffle.svg +++ b/src/_icons/arrows-shuffle.svg @@ -8,5 +8,5 @@ unicode: "f000" - + diff --git a/src/_icons/arrows-transfer-down.svg b/src/_icons/arrows-transfer-down.svg index 58b9ee613..8d1fe5392 100644 --- a/src/_icons/arrows-transfer-down.svg +++ b/src/_icons/arrows-transfer-down.svg @@ -1,4 +1,5 @@ --- +tags: [direction, south, bottom] category: Arrows version: "1.82" unicode: "f2cc" diff --git a/src/_icons/arrows-transfer-up.svg b/src/_icons/arrows-transfer-up.svg index 361547f9c..281677d15 100644 --- a/src/_icons/arrows-transfer-up.svg +++ b/src/_icons/arrows-transfer-up.svg @@ -1,4 +1,5 @@ --- +tags: [direction, north, top] category: Arrows version: "1.82" unicode: "f2cd" diff --git a/src/_icons/arrows-up-down.svg b/src/_icons/arrows-up-down.svg index 6037d730e..1df8e9df5 100644 --- a/src/_icons/arrows-up-down.svg +++ b/src/_icons/arrows-up-down.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edb6" --- - + - + diff --git a/src/_icons/arrows-up.svg b/src/_icons/arrows-up.svg index e68d1b9fa..faec7637a 100644 --- a/src/_icons/arrows-up.svg +++ b/src/_icons/arrows-up.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "edb7" --- - + - + diff --git a/src/_icons/arrows-vertical.svg b/src/_icons/arrows-vertical.svg index 758a841b6..df31f453d 100644 --- a/src/_icons/arrows-vertical.svg +++ b/src/_icons/arrows-vertical.svg @@ -5,7 +5,7 @@ version: "1.2" unicode: "eb5b" --- - - - + + + diff --git a/src/_icons/artboard-off.svg b/src/_icons/artboard-off.svg index 26029927a..92aa76050 100644 --- a/src/_icons/artboard-off.svg +++ b/src/_icons/artboard-off.svg @@ -6,7 +6,7 @@ unicode: "f0ae" --- - + diff --git a/src/_icons/artboard.svg b/src/_icons/artboard.svg index ff7e30dfa..67cb8db8a 100644 --- a/src/_icons/artboard.svg +++ b/src/_icons/artboard.svg @@ -5,13 +5,13 @@ version: "1.1" unicode: "ea2a" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/article-off.svg b/src/_icons/article-off.svg new file mode 100644 index 000000000..e4eb9ae3d --- /dev/null +++ b/src/_icons/article-off.svg @@ -0,0 +1,12 @@ +--- +tags: [news, newspaper, media, blog] +unicode: "f3bf" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/article.svg b/src/_icons/article.svg index bc1d26de0..b46500773 100644 --- a/src/_icons/article.svg +++ b/src/_icons/article.svg @@ -4,7 +4,7 @@ version: "1.69" unicode: "f1e2" --- - + diff --git a/src/_icons/aspect-ratio.svg b/src/_icons/aspect-ratio.svg index 3367ddd31..c4c1c984a 100644 --- a/src/_icons/aspect-ratio.svg +++ b/src/_icons/aspect-ratio.svg @@ -5,7 +5,7 @@ version: "1.27" unicode: "ed30" --- - + diff --git a/src/_icons/assembly-off.svg b/src/_icons/assembly-off.svg new file mode 100644 index 000000000..9f863e13b --- /dev/null +++ b/src/_icons/assembly-off.svg @@ -0,0 +1,10 @@ +--- +tags: [assembly, engineering, manufacturing, production, robotics] +unicode: "f3c0" +version: "1.94" +--- + + + + + diff --git a/src/_icons/assembly.svg b/src/_icons/assembly.svg index f1f4b9785..ecf21e78d 100644 --- a/src/_icons/assembly.svg +++ b/src/_icons/assembly.svg @@ -5,5 +5,5 @@ unicode: "f24d" --- - + diff --git a/src/_icons/asset.svg b/src/_icons/asset.svg index 65bea92df..8afe19bbe 100644 --- a/src/_icons/asset.svg +++ b/src/_icons/asset.svg @@ -4,10 +4,10 @@ version: "1.68" unicode: "f1ce" --- - - - + + + - + diff --git a/src/_icons/at.svg b/src/_icons/at.svg index 11663245f..f8010ed4d 100644 --- a/src/_icons/at.svg +++ b/src/_icons/at.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "ea2b" --- - + diff --git a/src/_icons/atom-2.svg b/src/_icons/atom-2.svg index 43f153c53..c6fa80429 100644 --- a/src/_icons/atom-2.svg +++ b/src/_icons/atom-2.svg @@ -4,10 +4,10 @@ version: "1.7" unicode: "ebdf" --- - - - - + + + + diff --git a/src/_icons/atom-off.svg b/src/_icons/atom-off.svg index 75a487444..4da4a29ef 100644 --- a/src/_icons/atom-off.svg +++ b/src/_icons/atom-off.svg @@ -5,7 +5,7 @@ unicode: "f0f9" --- - - + + diff --git a/src/_icons/atom.svg b/src/_icons/atom.svg index d27edecaf..e546aa500 100644 --- a/src/_icons/atom.svg +++ b/src/_icons/atom.svg @@ -4,7 +4,7 @@ version: "1.3" unicode: "eb79" --- - - - + + + diff --git a/src/_icons/augmented-reality-2.svg b/src/_icons/augmented-reality-2.svg new file mode 100644 index 000000000..0ee2384e1 --- /dev/null +++ b/src/_icons/augmented-reality-2.svg @@ -0,0 +1,12 @@ +--- +tags: [technology, dimensional, geometry] +unicode: "f37e" +version: "1.91" +--- + + + + + + + diff --git a/src/_icons/augmented-reality-off.svg b/src/_icons/augmented-reality-off.svg new file mode 100644 index 000000000..a5284d53c --- /dev/null +++ b/src/_icons/augmented-reality-off.svg @@ -0,0 +1,15 @@ +--- +tags: [technology, dimensional, geometry] +unicode: "f3c1" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/award-off.svg b/src/_icons/award-off.svg index b669de622..2f1617c58 100644 --- a/src/_icons/award-off.svg +++ b/src/_icons/award-off.svg @@ -5,7 +5,7 @@ unicode: "f0fa" --- - - + + diff --git a/src/_icons/award.svg b/src/_icons/award.svg index 7977a099a..5e29d8a71 100644 --- a/src/_icons/award.svg +++ b/src/_icons/award.svg @@ -4,7 +4,7 @@ version: "1.1" unicode: "ea2c" --- - - - + + + diff --git a/src/_icons/baby-bottle.svg b/src/_icons/baby-bottle.svg new file mode 100644 index 000000000..207bab818 --- /dev/null +++ b/src/_icons/baby-bottle.svg @@ -0,0 +1,9 @@ +--- +unicode: "f5d2" +version: "1.112" +--- + + + + + diff --git a/src/_icons/baby-carriage.svg b/src/_icons/baby-carriage.svg index 147c276b7..98145eeac 100644 --- a/src/_icons/baby-carriage.svg +++ b/src/_icons/baby-carriage.svg @@ -4,8 +4,8 @@ version: "1.58" unicode: "f05d" --- - - + + diff --git a/src/_icons/backhoe.svg b/src/_icons/backhoe.svg index bb83824da..57c66d0c0 100644 --- a/src/_icons/backhoe.svg +++ b/src/_icons/backhoe.svg @@ -5,10 +5,10 @@ version: "1.34" unicode: "ed86" --- - - - - + + + + diff --git a/src/_icons/backpack-off.svg b/src/_icons/backpack-off.svg new file mode 100644 index 000000000..092ad0ea9 --- /dev/null +++ b/src/_icons/backpack-off.svg @@ -0,0 +1,11 @@ +--- +tags: [education, school, learning, adventure, travel] +unicode: "f3c2" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/backpack.svg b/src/_icons/backpack.svg index c567a7876..3403270bc 100644 --- a/src/_icons/backpack.svg +++ b/src/_icons/backpack.svg @@ -4,7 +4,8 @@ version: "1.43" unicode: "ef47" --- - - - + + + + diff --git a/src/_icons/badge-3d.svg b/src/_icons/badge-3d.svg new file mode 100644 index 000000000..ea513166b --- /dev/null +++ b/src/_icons/badge-3d.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, movie, glasses, film] +unicode: "f555" +version: "1.106" +--- + + + + + diff --git a/src/_icons/badge-4k.svg b/src/_icons/badge-4k.svg new file mode 100644 index 000000000..4957b1359 --- /dev/null +++ b/src/_icons/badge-4k.svg @@ -0,0 +1,13 @@ +--- +tags: [shape, high, resolution, video, display] +unicode: "f556" +version: "1.106" +--- + + + + + + + + diff --git a/src/_icons/badge-8k.svg b/src/_icons/badge-8k.svg new file mode 100644 index 000000000..cff86b908 --- /dev/null +++ b/src/_icons/badge-8k.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, high, resolution, video, display] +unicode: "f557" +version: "1.106" +--- + + + + + + + diff --git a/src/_icons/badge-ad.svg b/src/_icons/badge-ad.svg new file mode 100644 index 000000000..24397bc94 --- /dev/null +++ b/src/_icons/badge-ad.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, marketing, media, promotion, advertising, advertisement] +unicode: "f558" +version: "1.106" +--- + + + + + + diff --git a/src/_icons/badge-ar.svg b/src/_icons/badge-ar.svg new file mode 100644 index 000000000..674f1fd9f --- /dev/null +++ b/src/_icons/badge-ar.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, agumented, reality, techonoly ] +unicode: "f559" +version: "1.106" +--- + + + + + + diff --git a/src/_icons/badge-cc.svg b/src/_icons/badge-cc.svg new file mode 100644 index 000000000..8fe27ccb2 --- /dev/null +++ b/src/_icons/badge-cc.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, accessiblity, subtitles, youtube, netflix] +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..e2685b2dd --- /dev/null +++ b/src/_icons/badge-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f667" +--- + + + diff --git a/src/_icons/badge-hd.svg b/src/_icons/badge-hd.svg new file mode 100644 index 000000000..75b20e4cd --- /dev/null +++ b/src/_icons/badge-hd.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, video, display, resolution, movie ] +unicode: "f55b" +version: "1.106" +--- + + + + + + + diff --git a/src/_icons/badge-sd.svg b/src/_icons/badge-sd.svg new file mode 100644 index 000000000..6105d60e1 --- /dev/null +++ b/src/_icons/badge-sd.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, card, memory, sim, phone] +unicode: "f55c" +version: "1.106" +--- + + + + + diff --git a/src/_icons/badge-tm.svg b/src/_icons/badge-tm.svg new file mode 100644 index 000000000..f30998f93 --- /dev/null +++ b/src/_icons/badge-tm.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, brand, copyright, logo, product ] +unicode: "f55d" +version: "1.106" +--- + + + + + + diff --git a/src/_icons/badge-vo.svg b/src/_icons/badge-vo.svg new file mode 100644 index 000000000..cc3b077a5 --- /dev/null +++ b/src/_icons/badge-vo.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, mic, film, netflix, voice, video ] +unicode: "f55e" +version: "1.106" +--- + + + + + diff --git a/src/_icons/badge-vr.svg b/src/_icons/badge-vr.svg new file mode 100644 index 000000000..6d5dbffc3 --- /dev/null +++ b/src/_icons/badge-vr.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, technology, virtual, reality, device] +unicode: "f55f" +version: "1.106" +--- + + + + + diff --git a/src/_icons/badge-wc.svg b/src/_icons/badge-wc.svg new file mode 100644 index 000000000..d4a5ce107 --- /dev/null +++ b/src/_icons/badge-wc.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, toilet, restroom, male, female] +unicode: "f560" +version: "1.106" +--- + + + + + diff --git a/src/_icons/baguette.svg b/src/_icons/baguette.svg new file mode 100644 index 000000000..2e5baa652 --- /dev/null +++ b/src/_icons/baguette.svg @@ -0,0 +1,12 @@ +--- +tags: [bread, french, breakfast, bakery, loaf] +category: Food +version: "1.93" +unicode: "f3a5" +--- + + + + + + diff --git a/src/_icons/ball-american-football-off.svg b/src/_icons/ball-american-football-off.svg new file mode 100644 index 000000000..ed8c3329a --- /dev/null +++ b/src/_icons/ball-american-football-off.svg @@ -0,0 +1,14 @@ +--- +tags: [sport, game, sportsman, play, match, pitch] +category: Sport +unicode: "f3c3" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/ball-american-football.svg b/src/_icons/ball-american-football.svg index bed3ba2a7..b274b5e31 100644 --- a/src/_icons/ball-american-football.svg +++ b/src/_icons/ball-american-football.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "ee04" --- - - - + + + diff --git a/src/_icons/ball-basketball.svg b/src/_icons/ball-basketball.svg index bf34a4dc6..c9ab0995f 100644 --- a/src/_icons/ball-basketball.svg +++ b/src/_icons/ball-basketball.svg @@ -1,13 +1,13 @@ --- -tags: [game, round, quarter, basket, NBA] +tags: [game, round, quarter, basket, nba] category: Sport version: "1.1" unicode: "ec28" --- - - - + + + diff --git a/src/_icons/ball-bowling.svg b/src/_icons/ball-bowling.svg index c11a518aa..5854d0462 100644 --- a/src/_icons/ball-bowling.svg +++ b/src/_icons/ball-bowling.svg @@ -5,8 +5,8 @@ version: "1.10" unicode: "ec29" --- - - - - + + + + diff --git a/src/_icons/ball-football-off.svg b/src/_icons/ball-football-off.svg index 780a50ebe..093d36696 100644 --- a/src/_icons/ball-football-off.svg +++ b/src/_icons/ball-football-off.svg @@ -1,6 +1,6 @@ --- -category: Sport tags: [sport, game, sportsman, play, match, pitch] +category: Sport version: "1.39" unicode: "ee05" --- @@ -8,9 +8,9 @@ unicode: "ee05" - + - + diff --git a/src/_icons/ball-football.svg b/src/_icons/ball-football.svg index c2fb3f211..7f0a1941e 100644 --- a/src/_icons/ball-football.svg +++ b/src/_icons/ball-football.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee06" --- - + diff --git a/src/_icons/ball-tennis.svg b/src/_icons/ball-tennis.svg index 9d119d413..b0dc3a5e8 100644 --- a/src/_icons/ball-tennis.svg +++ b/src/_icons/ball-tennis.svg @@ -5,7 +5,7 @@ version: "1.10" unicode: "ec2a" --- - + diff --git a/src/_icons/ball-volleyball.svg b/src/_icons/ball-volleyball.svg index 4de36f752..008add20d 100644 --- a/src/_icons/ball-volleyball.svg +++ b/src/_icons/ball-volleyball.svg @@ -5,8 +5,11 @@ version: "1.10" unicode: "ec2b" --- - - - - + + + + + + + diff --git a/src/_icons/ballon-off.svg b/src/_icons/ballon-off.svg index 16f77d989..0b7909bcb 100644 --- a/src/_icons/ballon-off.svg +++ b/src/_icons/ballon-off.svg @@ -5,7 +5,7 @@ unicode: "f0fd" --- - + diff --git a/src/_icons/ban.svg b/src/_icons/ban.svg index 8af07d96c..5dfc147b0 100644 --- a/src/_icons/ban.svg +++ b/src/_icons/ban.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "ea2e" --- - - + + diff --git a/src/_icons/bandage-off.svg b/src/_icons/bandage-off.svg new file mode 100644 index 000000000..5582dbcc9 --- /dev/null +++ b/src/_icons/bandage-off.svg @@ -0,0 +1,12 @@ +--- +tags: [patch, wound, cut, pain] +category: Health +unicode: "f3c4" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/bandage.svg b/src/_icons/bandage.svg index 8d0890636..8c3037944 100644 --- a/src/_icons/bandage.svg +++ b/src/_icons/bandage.svg @@ -5,9 +5,9 @@ category: Health unicode: "eb7a" --- - - - - + + + + diff --git a/src/_icons/barbell-off.svg b/src/_icons/barbell-off.svg index b6e39448e..0f6a5a136 100644 --- a/src/_icons/barbell-off.svg +++ b/src/_icons/barbell-off.svg @@ -7,7 +7,7 @@ unicode: "f0b2" - + diff --git a/src/_icons/barcode.svg b/src/_icons/barcode.svg index 67455f089..a90efc83b 100644 --- a/src/_icons/barcode.svg +++ b/src/_icons/barcode.svg @@ -8,8 +8,8 @@ unicode: "ebc6" - - - - + + + + diff --git a/src/_icons/barrier-block.svg b/src/_icons/barrier-block.svg index 84ffd0c6d..1cd893c69 100644 --- a/src/_icons/barrier-block.svg +++ b/src/_icons/barrier-block.svg @@ -4,7 +4,7 @@ version: "1.54" unicode: "f00e" --- - + diff --git a/src/_icons/basket-off.svg b/src/_icons/basket-off.svg index 3ce558d55..b19faffbb 100644 --- a/src/_icons/basket-off.svg +++ b/src/_icons/basket-off.svg @@ -9,6 +9,6 @@ unicode: "f0b6" - + diff --git a/src/_icons/basket.svg b/src/_icons/basket.svg index be59f4229..54941136b 100644 --- a/src/_icons/basket.svg +++ b/src/_icons/basket.svg @@ -5,7 +5,7 @@ version: "1.7" unicode: "ebe1" --- - + - + diff --git a/src/_icons/battery-1.svg b/src/_icons/battery-1.svg index a7020191f..bd3ccb462 100644 --- a/src/_icons/battery-1.svg +++ b/src/_icons/battery-1.svg @@ -6,5 +6,5 @@ unicode: "ea2f" --- - + diff --git a/src/_icons/battery-2.svg b/src/_icons/battery-2.svg index 39f7a81b1..4d3234aa7 100644 --- a/src/_icons/battery-2.svg +++ b/src/_icons/battery-2.svg @@ -6,6 +6,6 @@ unicode: "ea30" --- - - + + diff --git a/src/_icons/battery-3.svg b/src/_icons/battery-3.svg index 888d0edee..40feb2691 100644 --- a/src/_icons/battery-3.svg +++ b/src/_icons/battery-3.svg @@ -6,7 +6,7 @@ unicode: "ea31" --- - - - + + + diff --git a/src/_icons/battery-4.svg b/src/_icons/battery-4.svg index 26adc4988..551a4b05a 100644 --- a/src/_icons/battery-4.svg +++ b/src/_icons/battery-4.svg @@ -6,8 +6,8 @@ unicode: "ea32" --- - - - - + + + + diff --git a/src/_icons/battery-automotive.svg b/src/_icons/battery-automotive.svg index eafe1b7d8..d3c878810 100644 --- a/src/_icons/battery-automotive.svg +++ b/src/_icons/battery-automotive.svg @@ -5,10 +5,10 @@ version: "1.39" unicode: "ee07" --- - + - - - - + + + + diff --git a/src/_icons/battery-filled.svg b/src/_icons/battery-filled.svg new file mode 100644 index 000000000..38e65010c --- /dev/null +++ b/src/_icons/battery-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f668" +--- + + + diff --git a/src/_icons/battery-off.svg b/src/_icons/battery-off.svg index 91dac025a..8cc870ad4 100644 --- a/src/_icons/battery-off.svg +++ b/src/_icons/battery-off.svg @@ -1,10 +1,10 @@ --- -category: Devices tags: [energy, power, electricity] +category: Devices version: "1.25" unicode: "ed1c" --- - + diff --git a/src/_icons/bed-off.svg b/src/_icons/bed-off.svg index 6d2dc516c..309ad63db 100644 --- a/src/_icons/bed-off.svg +++ b/src/_icons/bed-off.svg @@ -10,6 +10,6 @@ unicode: "f100" - + diff --git a/src/_icons/bed.svg b/src/_icons/bed.svg index 6c4c96d94..139b61cda 100644 --- a/src/_icons/bed.svg +++ b/src/_icons/bed.svg @@ -6,5 +6,5 @@ unicode: "eb5c" --- - + diff --git a/src/_icons/beer-off.svg b/src/_icons/beer-off.svg index 182717fe7..e13260210 100644 --- a/src/_icons/beer-off.svg +++ b/src/_icons/beer-off.svg @@ -5,7 +5,7 @@ version: "1.65" unicode: "f101" --- - + diff --git a/src/_icons/bell-filled.svg b/src/_icons/bell-filled.svg new file mode 100644 index 000000000..037a2b21a --- /dev/null +++ b/src/_icons/bell-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f669" +--- + + + + diff --git a/src/_icons/bell-minus.svg b/src/_icons/bell-minus.svg index 6aee14dc2..fd8dc50f2 100644 --- a/src/_icons/bell-minus.svg +++ b/src/_icons/bell-minus.svg @@ -7,5 +7,5 @@ unicode: "ede2" - + diff --git a/src/_icons/bell-off.svg b/src/_icons/bell-off.svg index 7cdc581d7..5d4ed67f5 100644 --- a/src/_icons/bell-off.svg +++ b/src/_icons/bell-off.svg @@ -5,7 +5,7 @@ version: "1.22" unicode: "ece9" --- - + diff --git a/src/_icons/bell-plus.svg b/src/_icons/bell-plus.svg index 76f7e6a49..cd3e3716b 100644 --- a/src/_icons/bell-plus.svg +++ b/src/_icons/bell-plus.svg @@ -7,6 +7,6 @@ unicode: "ede3" - - + + diff --git a/src/_icons/bell-school.svg b/src/_icons/bell-school.svg index 448e560c0..4ab696a51 100644 --- a/src/_icons/bell-school.svg +++ b/src/_icons/bell-school.svg @@ -4,9 +4,9 @@ version: "1.58" unicode: "f05e" --- - + - + diff --git a/src/_icons/beta.svg b/src/_icons/beta.svg new file mode 100644 index 000000000..1ee8b3576 --- /dev/null +++ b/src/_icons/beta.svg @@ -0,0 +1,8 @@ +--- +tags: [letter, alphabet, greek, math ] +version: "1.105" +unicode: "f544" +--- + + + diff --git a/src/_icons/bike-off.svg b/src/_icons/bike-off.svg index ca07d02ce..15089a113 100644 --- a/src/_icons/bike-off.svg +++ b/src/_icons/bike-off.svg @@ -5,9 +5,9 @@ version: "1.62" unicode: "f0b8" --- - + - + diff --git a/src/_icons/bike.svg b/src/_icons/bike.svg index 6a65c7a0d..ca5c0ae0a 100644 --- a/src/_icons/bike.svg +++ b/src/_icons/bike.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea36" --- - - - - + + + + diff --git a/src/_icons/binary-off.svg b/src/_icons/binary-off.svg new file mode 100644 index 000000000..7a74df3c3 --- /dev/null +++ b/src/_icons/binary-off.svg @@ -0,0 +1,14 @@ +--- +tags: [binary] +unicode: "f3c5" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/binary-tree-2.svg b/src/_icons/binary-tree-2.svg new file mode 100644 index 000000000..1f95d0238 --- /dev/null +++ b/src/_icons/binary-tree-2.svg @@ -0,0 +1,13 @@ +--- +unicode: "f5d3" +version: "1.112" +--- + + + + + + + + + diff --git a/src/_icons/binary-tree.svg b/src/_icons/binary-tree.svg new file mode 100644 index 000000000..be5e5b996 --- /dev/null +++ b/src/_icons/binary-tree.svg @@ -0,0 +1,15 @@ +--- +unicode: "f5d4" +version: "1.112" +--- + + + + + + + + + + + diff --git a/src/_icons/binary.svg b/src/_icons/binary.svg index 72ff9590f..040e6c1c2 100644 --- a/src/_icons/binary.svg +++ b/src/_icons/binary.svg @@ -5,7 +5,7 @@ unicode: "ee08" --- - - + + diff --git a/src/_icons/biohazard.svg b/src/_icons/biohazard.svg index fd8667649..7984757af 100644 --- a/src/_icons/biohazard.svg +++ b/src/_icons/biohazard.svg @@ -5,6 +5,6 @@ version: "1.18" unicode: "ecb8" --- - + diff --git a/src/_icons/blade.svg b/src/_icons/blade.svg new file mode 100644 index 000000000..78ab6b0b9 --- /dev/null +++ b/src/_icons/blade.svg @@ -0,0 +1,13 @@ +--- +tags: [razor, beard, barber, cut] +unicode: "f4bd" +version: "1.98" +--- + + + + + + + + diff --git a/src/_icons/bleach-chlorine.svg b/src/_icons/bleach-chlorine.svg new file mode 100644 index 000000000..ab5e78763 --- /dev/null +++ b/src/_icons/bleach-chlorine.svg @@ -0,0 +1,11 @@ +--- +tags: [clothing, washing, chemical, laundry, detergent, clean] +category: Laundry +unicode: "f2f0" +version: "1.84" +--- + + + + + diff --git a/src/_icons/bleach-no-chlorine.svg b/src/_icons/bleach-no-chlorine.svg new file mode 100644 index 000000000..e105a486b --- /dev/null +++ b/src/_icons/bleach-no-chlorine.svg @@ -0,0 +1,11 @@ +--- +tags: [clothing, washing, chemical, laundry] +category: Laundry +unicode: "f2f1" +version: "1.84" +--- + + + + + diff --git a/src/_icons/bleach-off.svg b/src/_icons/bleach-off.svg new file mode 100644 index 000000000..ede583aac --- /dev/null +++ b/src/_icons/bleach-off.svg @@ -0,0 +1,10 @@ +--- +tags: [clothing, washing, chemical, laundry] +category: Laundry +unicode: "f2f2" +version: "1.84" +--- + + + + diff --git a/src/_icons/bleach.svg b/src/_icons/bleach.svg new file mode 100644 index 000000000..36aa1a4a2 --- /dev/null +++ b/src/_icons/bleach.svg @@ -0,0 +1,9 @@ +--- +tags: [clothing, washing, chemical, laundry] +category: Laundry +unicode: "f2f3" +version: "1.84" +--- + + + diff --git a/src/_icons/bluetooth-connected.svg b/src/_icons/bluetooth-connected.svg index 9b137bb10..b52de05b7 100644 --- a/src/_icons/bluetooth-connected.svg +++ b/src/_icons/bluetooth-connected.svg @@ -5,7 +5,7 @@ version: "1.22" unicode: "ecea" --- - - - + + + diff --git a/src/_icons/bluetooth-off.svg b/src/_icons/bluetooth-off.svg index 7f6fa4182..d70e6d465 100644 --- a/src/_icons/bluetooth-off.svg +++ b/src/_icons/bluetooth-off.svg @@ -1,10 +1,10 @@ --- +tags: [wireless, connection, connect] category: Devices -tags: [wireless, conection, connect] version: "1.22" unicode: "eceb" --- - + diff --git a/src/_icons/bluetooth-x.svg b/src/_icons/bluetooth-x.svg index 169b76d6c..072b3a9eb 100644 --- a/src/_icons/bluetooth-x.svg +++ b/src/_icons/bluetooth-x.svg @@ -4,7 +4,7 @@ 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 new file mode 100644 index 000000000..d1c7b5021 --- /dev/null +++ b/src/_icons/blur-off.svg @@ -0,0 +1,16 @@ +--- +tags: [edit, photo, photography, tool] +category: Design +unicode: "f3c6" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/blur.svg b/src/_icons/blur.svg index e2293b047..83c4ab4e4 100644 --- a/src/_icons/blur.svg +++ b/src/_icons/blur.svg @@ -5,7 +5,7 @@ version: "1.47" unicode: "ef8c" --- - + diff --git a/src/_icons/bmp.svg b/src/_icons/bmp.svg new file mode 100644 index 000000000..ce835e08b --- /dev/null +++ b/src/_icons/bmp.svg @@ -0,0 +1,10 @@ +--- +tags: [format, filetype, file, document] +version: "1.93" +unicode: "f3a6" +--- + + + + + diff --git a/src/_icons/bolt-off.svg b/src/_icons/bolt-off.svg index 1d6858e5c..05ffc7e7c 100644 --- a/src/_icons/bolt-off.svg +++ b/src/_icons/bolt-off.svg @@ -4,6 +4,6 @@ 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 new file mode 100644 index 000000000..07b74ea6d --- /dev/null +++ b/src/_icons/bomb.svg @@ -0,0 +1,10 @@ +--- +tags: [explosion, weapon, military, war ] +unicode: "f59c" +version: "1.110" +--- + + + + + diff --git a/src/_icons/bone-off.svg b/src/_icons/bone-off.svg index 9430bf3f0..e20a23925 100644 --- a/src/_icons/bone-off.svg +++ b/src/_icons/bone-off.svg @@ -5,6 +5,6 @@ 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 new file mode 100644 index 000000000..a314256b1 --- /dev/null +++ b/src/_icons/bong-off.svg @@ -0,0 +1,11 @@ +--- +tags: [smoke, smoking, cannabis, marijuana, drugs] +unicode: "f3c7" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/bong.svg b/src/_icons/bong.svg new file mode 100644 index 000000000..c880edf30 --- /dev/null +++ b/src/_icons/bong.svg @@ -0,0 +1,10 @@ +--- +tags: [smoke, smoking, cannabis, marijuana, drugs] +version: "1.93" +unicode: "f3a7" +--- + + + + + diff --git a/src/_icons/book-off.svg b/src/_icons/book-off.svg index 4242d7765..9198c8c0a 100644 --- a/src/_icons/book-off.svg +++ b/src/_icons/book-off.svg @@ -5,8 +5,8 @@ version: "1.63" unicode: "f0bc" --- - - + + diff --git a/src/_icons/book.svg b/src/_icons/book.svg index d6ecf9da2..9a90bd8eb 100644 --- a/src/_icons/book.svg +++ b/src/_icons/book.svg @@ -7,7 +7,7 @@ unicode: "ea39" - - - + + + diff --git a/src/_icons/bookmark-off.svg b/src/_icons/bookmark-off.svg index 8a9f51216..620f1f369 100644 --- a/src/_icons/bookmark-off.svg +++ b/src/_icons/bookmark-off.svg @@ -1,10 +1,10 @@ --- -category: Document tags: [read, clip, marker, tag] +category: Document version: "1.22" unicode: "eced" --- - + diff --git a/src/_icons/books.svg b/src/_icons/books.svg index b25676f7e..3834902c0 100644 --- a/src/_icons/books.svg +++ b/src/_icons/books.svg @@ -5,8 +5,8 @@ version: "1.52" unicode: "eff2" --- - - + + diff --git a/src/_icons/border-all.svg b/src/_icons/border-all.svg index c792051dd..cd41a6da9 100644 --- a/src/_icons/border-all.svg +++ b/src/_icons/border-all.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea3b" --- - - - + + + diff --git a/src/_icons/border-bottom.svg b/src/_icons/border-bottom.svg index 8dd303db0..55d5f304e 100644 --- a/src/_icons/border-bottom.svg +++ b/src/_icons/border-bottom.svg @@ -5,21 +5,21 @@ version: "1.0" unicode: "ea3c" --- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/border-horizontal.svg b/src/_icons/border-horizontal.svg index ede5f12c7..d8c093103 100644 --- a/src/_icons/border-horizontal.svg +++ b/src/_icons/border-horizontal.svg @@ -5,21 +5,21 @@ version: "1.0" unicode: "ea3d" --- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/border-inner.svg b/src/_icons/border-inner.svg index d2d9bc0e4..5d1be2de5 100644 --- a/src/_icons/border-inner.svg +++ b/src/_icons/border-inner.svg @@ -5,18 +5,18 @@ version: "1.0" unicode: "ea3e" --- - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/src/_icons/border-left.svg b/src/_icons/border-left.svg index b0c4d8f84..be9507309 100644 --- a/src/_icons/border-left.svg +++ b/src/_icons/border-left.svg @@ -5,21 +5,21 @@ version: "1.0" unicode: "ea3f" --- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/border-none.svg b/src/_icons/border-none.svg index 4f16db579..1067d9920 100644 --- a/src/_icons/border-none.svg +++ b/src/_icons/border-none.svg @@ -5,25 +5,25 @@ version: "1.0" unicode: "ea40" --- - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/_icons/border-outer.svg b/src/_icons/border-outer.svg index d0d7a557f..98c48cfb1 100644 --- a/src/_icons/border-outer.svg +++ b/src/_icons/border-outer.svg @@ -5,10 +5,10 @@ version: "1.0" unicode: "ea41" --- - - - - - - + + + + + + diff --git a/src/_icons/border-radius.svg b/src/_icons/border-radius.svg index 40bbed0bc..7b84539e5 100644 --- a/src/_icons/border-radius.svg +++ b/src/_icons/border-radius.svg @@ -6,15 +6,15 @@ unicode: "eb7c" --- - - - - - - - - - - - + + + + + + + + + + + diff --git a/src/_icons/border-right.svg b/src/_icons/border-right.svg index 86e9ce087..9eaad8e62 100644 --- a/src/_icons/border-right.svg +++ b/src/_icons/border-right.svg @@ -5,21 +5,21 @@ version: "1.0" unicode: "ea42" --- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/border-top.svg b/src/_icons/border-top.svg index b48875941..1507e9206 100644 --- a/src/_icons/border-top.svg +++ b/src/_icons/border-top.svg @@ -5,21 +5,21 @@ version: "1.0" unicode: "ea43" --- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/border-vertical.svg b/src/_icons/border-vertical.svg index b4eafe184..875c49045 100644 --- a/src/_icons/border-vertical.svg +++ b/src/_icons/border-vertical.svg @@ -5,21 +5,21 @@ version: "1.0" unicode: "ea44" --- - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/bottle-off.svg b/src/_icons/bottle-off.svg new file mode 100644 index 000000000..3d9b1ff56 --- /dev/null +++ b/src/_icons/bottle-off.svg @@ -0,0 +1,12 @@ +--- +tags: [water, drink, beer, energy, wine ] +category: Food +unicode: "f3c8" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/bottle.svg b/src/_icons/bottle.svg index b509dbcaf..e88b45eeb 100644 --- a/src/_icons/bottle.svg +++ b/src/_icons/bottle.svg @@ -7,5 +7,5 @@ unicode: "ef0b" - + diff --git a/src/_icons/bounce-left.svg b/src/_icons/bounce-left.svg new file mode 100644 index 000000000..7af6ff7b8 --- /dev/null +++ b/src/_icons/bounce-left.svg @@ -0,0 +1,10 @@ +--- +tags: [ball, west, motion, jump] +category: Design +unicode: "f59d" +version: "1.110" +--- + + + + diff --git a/src/_icons/bounce-right.svg b/src/_icons/bounce-right.svg new file mode 100644 index 000000000..a9e241821 --- /dev/null +++ b/src/_icons/bounce-right.svg @@ -0,0 +1,10 @@ +--- +tags: [ball, east, motion, jump] +category: Design +unicode: "f59e" +version: "1.110" +--- + + + + diff --git a/src/_icons/bowl.svg b/src/_icons/bowl.svg new file mode 100644 index 000000000..9dc06fc2a --- /dev/null +++ b/src/_icons/bowl.svg @@ -0,0 +1,9 @@ +--- +tags: [food, soup, kitchen, vessel] +category: Food +unicode: "f4fa" +version: "1.101" +--- + + + diff --git a/src/_icons/box-align-bottom-left.svg b/src/_icons/box-align-bottom-left.svg index 5f96344d7..187bdac8d 100644 --- a/src/_icons/box-align-bottom-left.svg +++ b/src/_icons/box-align-bottom-left.svg @@ -1,4 +1,5 @@ --- +tags: [cube, side, down, south-west] category: Design version: "1.82" unicode: "f2ce" diff --git a/src/_icons/box-align-bottom-right.svg b/src/_icons/box-align-bottom-right.svg index 83bf4f30d..d28a5be76 100644 --- a/src/_icons/box-align-bottom-right.svg +++ b/src/_icons/box-align-bottom-right.svg @@ -1,4 +1,5 @@ --- +tags: [cube, side, down, south-east] category: Design version: "1.82" unicode: "f2cf" diff --git a/src/_icons/box-align-bottom.svg b/src/_icons/box-align-bottom.svg index 7723cfee1..9531749a2 100644 --- a/src/_icons/box-align-bottom.svg +++ b/src/_icons/box-align-bottom.svg @@ -1,4 +1,5 @@ --- +tags: [rectangle, side, down, south] category: Design version: "1.80" unicode: "f2a8" diff --git a/src/_icons/box-align-left.svg b/src/_icons/box-align-left.svg index 714cfc15a..7e6835694 100644 --- a/src/_icons/box-align-left.svg +++ b/src/_icons/box-align-left.svg @@ -1,4 +1,5 @@ --- +tags: [rectangle side, west] category: Design version: "1.80" unicode: "f2a9" diff --git a/src/_icons/box-align-right.svg b/src/_icons/box-align-right.svg index 3ba531efd..a5d18fdf8 100644 --- a/src/_icons/box-align-right.svg +++ b/src/_icons/box-align-right.svg @@ -1,4 +1,5 @@ --- +tags: [rectangle, side, east] category: Design version: "1.80" unicode: "f2aa" diff --git a/src/_icons/box-align-top-left.svg b/src/_icons/box-align-top-left.svg index a7e8f9029..faf82f808 100644 --- a/src/_icons/box-align-top-left.svg +++ b/src/_icons/box-align-top-left.svg @@ -1,17 +1,18 @@ --- +tags: [cube, side, up, north-west] category: Design version: "1.82" unicode: "f2d0" --- - - - - - - - - - - + + + + + + + + + + diff --git a/src/_icons/box-align-top-right.svg b/src/_icons/box-align-top-right.svg index f6c80c3c1..373cff8c5 100644 --- a/src/_icons/box-align-top-right.svg +++ b/src/_icons/box-align-top-right.svg @@ -1,4 +1,5 @@ --- +tags: [cube, side, up, north-east] category: Design version: "1.82" unicode: "f2d1" diff --git a/src/_icons/box-align-top.svg b/src/_icons/box-align-top.svg index b6ad55515..d6f1e9c5c 100644 --- a/src/_icons/box-align-top.svg +++ b/src/_icons/box-align-top.svg @@ -1,4 +1,5 @@ --- +tags: [rectangle, side, up, north] category: Design version: "1.80" unicode: "f2ab" diff --git a/src/_icons/box-model-2-off.svg b/src/_icons/box-model-2-off.svg new file mode 100644 index 000000000..e1c02b435 --- /dev/null +++ b/src/_icons/box-model-2-off.svg @@ -0,0 +1,11 @@ +--- +tags: [css, cascading, style, section, element, square, website, container] +category: Design +unicode: "f3c9" +version: "1.94" +--- + + + + + diff --git a/src/_icons/box-model-2.svg b/src/_icons/box-model-2.svg index 6807d6f2d..a7a6a3d96 100644 --- a/src/_icons/box-model-2.svg +++ b/src/_icons/box-model-2.svg @@ -6,5 +6,5 @@ unicode: "ef23" --- - + diff --git a/src/_icons/box-model-off.svg b/src/_icons/box-model-off.svg new file mode 100644 index 000000000..17c5e41ec --- /dev/null +++ b/src/_icons/box-model-off.svg @@ -0,0 +1,15 @@ +--- +tags: [css, cascading, style, section, element, square, website, container] +category: Design +unicode: "f3ca" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/box-model.svg b/src/_icons/box-model.svg index 2e77e2d83..592b7e1cb 100644 --- a/src/_icons/box-model.svg +++ b/src/_icons/box-model.svg @@ -6,7 +6,7 @@ unicode: "ee0c" --- - + diff --git a/src/_icons/box-multiple-0.svg b/src/_icons/box-multiple-0.svg index f9acfcd53..200476eeb 100644 --- a/src/_icons/box-multiple-0.svg +++ b/src/_icons/box-multiple-0.svg @@ -6,6 +6,6 @@ unicode: "ee0d" --- - + diff --git a/src/_icons/box-multiple-1.svg b/src/_icons/box-multiple-1.svg index 3354e1138..ee450c124 100644 --- a/src/_icons/box-multiple-1.svg +++ b/src/_icons/box-multiple-1.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee0e" --- - + diff --git a/src/_icons/box-multiple-2.svg b/src/_icons/box-multiple-2.svg index 93bb4dd7b..280e1616d 100644 --- a/src/_icons/box-multiple-2.svg +++ b/src/_icons/box-multiple-2.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee0f" --- - + diff --git a/src/_icons/box-multiple-3.svg b/src/_icons/box-multiple-3.svg index bb877bbfd..0662fa51c 100644 --- a/src/_icons/box-multiple-3.svg +++ b/src/_icons/box-multiple-3.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee10" --- - + diff --git a/src/_icons/box-multiple-4.svg b/src/_icons/box-multiple-4.svg index da6e0d38d..c7433be06 100644 --- a/src/_icons/box-multiple-4.svg +++ b/src/_icons/box-multiple-4.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee11" --- - + diff --git a/src/_icons/box-multiple-5.svg b/src/_icons/box-multiple-5.svg index d39634058..b6d4e76e6 100644 --- a/src/_icons/box-multiple-5.svg +++ b/src/_icons/box-multiple-5.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee12" --- - + diff --git a/src/_icons/box-multiple-6.svg b/src/_icons/box-multiple-6.svg index 465a4c1af..fc987aef3 100644 --- a/src/_icons/box-multiple-6.svg +++ b/src/_icons/box-multiple-6.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "ee13" --- - - + + diff --git a/src/_icons/box-multiple-7.svg b/src/_icons/box-multiple-7.svg index a22e461e3..b58db9733 100644 --- a/src/_icons/box-multiple-7.svg +++ b/src/_icons/box-multiple-7.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee14" --- - + diff --git a/src/_icons/box-multiple-8.svg b/src/_icons/box-multiple-8.svg index 238cf131c..9509fe178 100644 --- a/src/_icons/box-multiple-8.svg +++ b/src/_icons/box-multiple-8.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "ee15" --- - - - + + + diff --git a/src/_icons/box-multiple-9.svg b/src/_icons/box-multiple-9.svg index b06723580..d76d46cbd 100644 --- a/src/_icons/box-multiple-9.svg +++ b/src/_icons/box-multiple-9.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "ee16" --- - - + + diff --git a/src/_icons/box-multiple.svg b/src/_icons/box-multiple.svg index 6b5586242..5b6fc43b9 100644 --- a/src/_icons/box-multiple.svg +++ b/src/_icons/box-multiple.svg @@ -4,6 +4,6 @@ version: "1.39" unicode: "ee17" --- - + diff --git a/src/_icons/box-padding.svg b/src/_icons/box-padding.svg index 270860ee6..0ecd1949d 100644 --- a/src/_icons/box-padding.svg +++ b/src/_icons/box-padding.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee18" --- - + diff --git a/src/_icons/box-seam.svg b/src/_icons/box-seam.svg new file mode 100644 index 000000000..75a42d443 --- /dev/null +++ b/src/_icons/box-seam.svg @@ -0,0 +1,12 @@ +--- +tags: [cardboard, package, delivery, present] +unicode: "f561" +version: "1.106" +--- + + + + + + + diff --git a/src/_icons/box.svg b/src/_icons/box.svg index 0241c553e..990bd53a7 100644 --- a/src/_icons/box.svg +++ b/src/_icons/box.svg @@ -4,8 +4,8 @@ version: "1.0" unicode: "ea45" --- - - - - + + + + diff --git a/src/_icons/braile.svg b/src/_icons/braile.svg new file mode 100644 index 000000000..53a96edf8 --- /dev/null +++ b/src/_icons/braile.svg @@ -0,0 +1,13 @@ +--- +tags: [blind, alphabet, disability, letters, read] +version: "1.105" +unicode: "f545" +--- + + + + + + + + diff --git a/src/_icons/brain.svg b/src/_icons/brain.svg new file mode 100644 index 000000000..d375758ae --- /dev/null +++ b/src/_icons/brain.svg @@ -0,0 +1,13 @@ +--- +tags: [mind, human, iq, inteligence, organ ] +unicode: "f59f" +version: "1.110" +--- + + + + + + + + diff --git a/src/_icons/brand-4chan.svg b/src/_icons/brand-4chan.svg new file mode 100644 index 000000000..88e144e8f --- /dev/null +++ b/src/_icons/brand-4chan.svg @@ -0,0 +1,13 @@ +--- +tags: [bulletin, board, music, photography, image, share] +category: Brand +unicode: "f494" +version: "1.96" +--- + + + + + + + diff --git a/src/_icons/brand-abstract.svg b/src/_icons/brand-abstract.svg new file mode 100644 index 000000000..17525bc42 --- /dev/null +++ b/src/_icons/brand-abstract.svg @@ -0,0 +1,11 @@ +--- +tags: [design, software, web, ux] +category: Brand +unicode: "f495" +version: "1.96" +--- + + + + + diff --git a/src/_icons/brand-adobe.svg b/src/_icons/brand-adobe.svg index fa3b2186a..a7d22c077 100644 --- a/src/_icons/brand-adobe.svg +++ b/src/_icons/brand-adobe.svg @@ -1,9 +1,9 @@ --- -tags: [photoshop, illustrator, inDesign] +tags: [photoshop, illustrator, indesign] category: Brand version: "1.64" unicode: "f0dc" --- - + diff --git a/src/_icons/brand-adonis-js.svg b/src/_icons/brand-adonis-js.svg new file mode 100644 index 000000000..91feaeaa3 --- /dev/null +++ b/src/_icons/brand-adonis-js.svg @@ -0,0 +1,10 @@ +--- +tags: [framework, web, app, typescript] +category: Brand +unicode: "f496" +version: "1.96" +--- + + + + diff --git a/src/_icons/brand-algolia.svg b/src/_icons/brand-algolia.svg new file mode 100644 index 000000000..55a8dcda9 --- /dev/null +++ b/src/_icons/brand-algolia.svg @@ -0,0 +1,13 @@ +--- +tags: [web, browser, software, efficient, ai] +category: Brand +unicode: "f390" +version: "1.92" +--- + + + + + + + diff --git a/src/_icons/brand-alpine-js.svg b/src/_icons/brand-alpine-js.svg new file mode 100644 index 000000000..d23adc5cd --- /dev/null +++ b/src/_icons/brand-alpine-js.svg @@ -0,0 +1,10 @@ +--- +tags: [javascript, programming, coding] +category: Brand +unicode: "f324" +version: "1.86" +--- + + + + diff --git a/src/_icons/brand-amazon.svg b/src/_icons/brand-amazon.svg index 40ffa50bf..b785c0ed9 100644 --- a/src/_icons/brand-amazon.svg +++ b/src/_icons/brand-amazon.svg @@ -5,8 +5,6 @@ version: "1.73" unicode: "f230" --- - - - - + + diff --git a/src/_icons/brand-amd.svg b/src/_icons/brand-amd.svg new file mode 100644 index 000000000..12b47407b --- /dev/null +++ b/src/_icons/brand-amd.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f653" +version: "1.119" +--- + + + + diff --git a/src/_icons/brand-amigo.svg b/src/_icons/brand-amigo.svg new file mode 100644 index 000000000..5f86c1493 --- /dev/null +++ b/src/_icons/brand-amigo.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f5f9" +version: "1.114" +--- + + + + diff --git a/src/_icons/brand-android.svg b/src/_icons/brand-android.svg index ab966f1a7..f0eefd0f7 100644 --- a/src/_icons/brand-android.svg +++ b/src/_icons/brand-android.svg @@ -1,15 +1,15 @@ --- -tags: [OS, company, system, interface, software, logo] +tags: [os, company, system, interface, software, logo] category: Brand version: "1.9" unicode: "ec16" --- - - + + - - - - + + + + diff --git a/src/_icons/brand-angular.svg b/src/_icons/brand-angular.svg index bb2efb618..868553eaa 100644 --- a/src/_icons/brand-angular.svg +++ b/src/_icons/brand-angular.svg @@ -1,5 +1,5 @@ --- -tags: [programming, coding, TypeScript] +tags: [programming, coding, typescript] category: Brand version: "1.45" unicode: "ef6b" diff --git a/src/_icons/brand-ao3.svg b/src/_icons/brand-ao3.svg new file mode 100644 index 000000000..07f983f1f --- /dev/null +++ b/src/_icons/brand-ao3.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f5e8" +version: "1.113" +--- + + + + + diff --git a/src/_icons/brand-appgallery.svg b/src/_icons/brand-appgallery.svg index d581f095a..88bf5d2f4 100644 --- a/src/_icons/brand-appgallery.svg +++ b/src/_icons/brand-appgallery.svg @@ -5,6 +5,6 @@ version: "1.73" unicode: "f231" --- - + diff --git a/src/_icons/brand-apple-arcade.svg b/src/_icons/brand-apple-arcade.svg index 56b34ea6e..fa412fbae 100644 --- a/src/_icons/brand-apple-arcade.svg +++ b/src/_icons/brand-apple-arcade.svg @@ -1,12 +1,12 @@ --- -tags: [technology, video, game, service, macOS, device, play, online] +tags: [technology, video, game, service, macos, device, play, online] category: Brand version: "1.32" unicode: "ed69" --- - - + + - + diff --git a/src/_icons/brand-apple-podcast.svg b/src/_icons/brand-apple-podcast.svg index 4774fefb0..2460911f2 100644 --- a/src/_icons/brand-apple-podcast.svg +++ b/src/_icons/brand-apple-podcast.svg @@ -1,5 +1,5 @@ --- -tags: [audio, software, music, iOS, tvOS] +tags: [audio, software, music, ios, tvos] category: Brand version: "1.69" unicode: "f1e6" @@ -7,5 +7,5 @@ unicode: "f1e6" - + diff --git a/src/_icons/brand-apple.svg b/src/_icons/brand-apple.svg index ad631b2ef..075ac7d08 100644 --- a/src/_icons/brand-apple.svg +++ b/src/_icons/brand-apple.svg @@ -1,5 +1,5 @@ --- -tags: [OS, company, system, interface, software, devices, logo] +tags: [os, company, system, interface, software, devices, logo] category: Brand version: "1.9" unicode: "ec17" diff --git a/src/_icons/brand-appstore.svg b/src/_icons/brand-appstore.svg index fa88d2066..770ebd86a 100644 --- a/src/_icons/brand-appstore.svg +++ b/src/_icons/brand-appstore.svg @@ -5,8 +5,8 @@ version: "1.26" unicode: "ed24" --- - + - + diff --git a/src/_icons/brand-asana.svg b/src/_icons/brand-asana.svg index 106ded23f..0d1b625ab 100644 --- a/src/_icons/brand-asana.svg +++ b/src/_icons/brand-asana.svg @@ -5,7 +5,7 @@ version: "1.36" unicode: "edc5" --- - - - + + + diff --git a/src/_icons/brand-backbone.svg b/src/_icons/brand-backbone.svg new file mode 100644 index 000000000..d18a455b1 --- /dev/null +++ b/src/_icons/brand-backbone.svg @@ -0,0 +1,10 @@ +--- +tags: [javascript, programmers, creation, websites] +category: Brand +unicode: "f325" +version: "1.86" +--- + + + + diff --git a/src/_icons/brand-badoo.svg b/src/_icons/brand-badoo.svg index 0a1587947..b7acea53e 100644 --- a/src/_icons/brand-badoo.svg +++ b/src/_icons/brand-badoo.svg @@ -5,6 +5,6 @@ version: "1.71" unicode: "f206" --- - + diff --git a/src/_icons/brand-baidu.svg b/src/_icons/brand-baidu.svg new file mode 100644 index 000000000..a45d09c7d --- /dev/null +++ b/src/_icons/brand-baidu.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f5e9" +version: "1.113" +--- + + + + + + + diff --git a/src/_icons/brand-bandlab.svg b/src/_icons/brand-bandlab.svg new file mode 100644 index 000000000..f23147bf3 --- /dev/null +++ b/src/_icons/brand-bandlab.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f5fa" +version: "1.114" +--- + + + + diff --git a/src/_icons/brand-beats.svg b/src/_icons/brand-beats.svg index 228ce6205..7b7a0e3f7 100644 --- a/src/_icons/brand-beats.svg +++ b/src/_icons/brand-beats.svg @@ -5,7 +5,7 @@ version: "1.71" unicode: "f208" --- - - + + diff --git a/src/_icons/brand-behance.svg b/src/_icons/brand-behance.svg index 436c8d813..4eab0f7c8 100644 --- a/src/_icons/brand-behance.svg +++ b/src/_icons/brand-behance.svg @@ -1,12 +1,12 @@ --- -tags: [logo, website, Adobe, project, views, marks, platform, designer] +tags: [logo, website, adobe, project, views, marks, platform, designer] category: Brand version: "1.13" unicode: "ec6e" --- - + - + diff --git a/src/_icons/brand-bilibili.svg b/src/_icons/brand-bilibili.svg new file mode 100644 index 000000000..5798ccb93 --- /dev/null +++ b/src/_icons/brand-bilibili.svg @@ -0,0 +1,6 @@ +--- +category: Brand +--- + + + diff --git a/src/_icons/brand-binance.svg b/src/_icons/brand-binance.svg new file mode 100644 index 000000000..30e6ffec1 --- /dev/null +++ b/src/_icons/brand-binance.svg @@ -0,0 +1,13 @@ +--- +tags: [website, crypto, cryptocurrency, exchange] +category: Brand +unicode: "f5a0" +version: "1.110" +--- + + + + + + + diff --git a/src/_icons/brand-blackbery.svg b/src/_icons/brand-blackbery.svg new file mode 100644 index 000000000..546955b93 --- /dev/null +++ b/src/_icons/brand-blackbery.svg @@ -0,0 +1,15 @@ +--- +tags: [phone, mobile, system, operating, os, electronics] +category: Brand +unicode: "f568" +version: "1.107" +--- + + + + + + + + + diff --git a/src/_icons/brand-blender.svg b/src/_icons/brand-blender.svg new file mode 100644 index 000000000..ab19902bd --- /dev/null +++ b/src/_icons/brand-blender.svg @@ -0,0 +1,13 @@ +--- +tags: [software, graphic, 3d, animation] +category: Brand +unicode: "f326" +version: "1.86" +--- + + + + + + + diff --git a/src/_icons/brand-blogger.svg b/src/_icons/brand-blogger.svg new file mode 100644 index 000000000..479a2677c --- /dev/null +++ b/src/_icons/brand-blogger.svg @@ -0,0 +1,11 @@ +--- +tags: [media, blogging, internet, social, site] +category: Brand +unicode: "f35a" +version: "1.89" +--- + + + + + diff --git a/src/_icons/brand-booking.svg b/src/_icons/brand-booking.svg index eb50523f4..4c6e2fd96 100644 --- a/src/_icons/brand-booking.svg +++ b/src/_icons/brand-booking.svg @@ -7,5 +7,5 @@ unicode: "edc8" - + diff --git a/src/_icons/brand-bootstrap.svg b/src/_icons/brand-bootstrap.svg index c86a329dd..b8f007071 100644 --- a/src/_icons/brand-bootstrap.svg +++ b/src/_icons/brand-bootstrap.svg @@ -1,5 +1,5 @@ --- -tags: [programming, coding, HTML, hardware, JavaScript] +tags: [programming, coding, HTML, hardware, javascript, js] category: Brand version: "1.42" unicode: "ef3e" diff --git a/src/_icons/brand-bulma.svg b/src/_icons/brand-bulma.svg new file mode 100644 index 000000000..49d69fd25 --- /dev/null +++ b/src/_icons/brand-bulma.svg @@ -0,0 +1,9 @@ +--- +tags: [programming, coding, html, css ] +category: Brand +unicode: "f327" +version: "1.86" +--- + + + diff --git a/src/_icons/brand-bumble.svg b/src/_icons/brand-bumble.svg new file mode 100644 index 000000000..99d055728 --- /dev/null +++ b/src/_icons/brand-bumble.svg @@ -0,0 +1,11 @@ +--- +category: Brand +unicode: "f5fb" +version: "1.114" +--- + + + + + + diff --git a/src/_icons/brand-bunpo.svg b/src/_icons/brand-bunpo.svg new file mode 100644 index 000000000..8cf135e73 --- /dev/null +++ b/src/_icons/brand-bunpo.svg @@ -0,0 +1,9 @@ +--- +tags: [learn, japanese, app, grammatic] +category: Brand +unicode: "f4cf" +version: "1.99" +--- + + + diff --git a/src/_icons/c-sharp.svg b/src/_icons/brand-c-sharp.svg similarity index 100% rename from src/_icons/c-sharp.svg rename to src/_icons/brand-c-sharp.svg diff --git a/src/_icons/brand-campaignmonitor.svg b/src/_icons/brand-campaignmonitor.svg new file mode 100644 index 000000000..bcef514bd --- /dev/null +++ b/src/_icons/brand-campaignmonitor.svg @@ -0,0 +1,9 @@ +--- +tags: [technology, e-mail, site, cm, group] +category: Brand +unicode: "f328" +version: "1.86" +--- + + + diff --git a/src/_icons/brand-carbon.svg b/src/_icons/brand-carbon.svg new file mode 100644 index 000000000..0c5fb585e --- /dev/null +++ b/src/_icons/brand-carbon.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f348" +version: "1.88" +--- + + + + diff --git a/src/_icons/brand-cashapp.svg b/src/_icons/brand-cashapp.svg new file mode 100644 index 000000000..bec66ea09 --- /dev/null +++ b/src/_icons/brand-cashapp.svg @@ -0,0 +1,9 @@ +--- +tags: [payment, finance, mobile, app, money, transfer] +category: Brand +unicode: "f391" +version: "1.92" +--- + + + diff --git a/src/_icons/brand-chrome.svg b/src/_icons/brand-chrome.svg index e99ae6e84..dc8d5c984 100644 --- a/src/_icons/brand-chrome.svg +++ b/src/_icons/brand-chrome.svg @@ -5,9 +5,9 @@ version: "1.9" unicode: "ec18" --- - - - - - + + + + + diff --git a/src/_icons/brand-citymapper.svg b/src/_icons/brand-citymapper.svg new file mode 100644 index 000000000..737ed75ef --- /dev/null +++ b/src/_icons/brand-citymapper.svg @@ -0,0 +1,11 @@ +--- +category: Brand +unicode: "f5fc" +version: "1.114" +--- + + + + + + diff --git a/src/_icons/brand-codecov.svg b/src/_icons/brand-codecov.svg new file mode 100644 index 000000000..f6d2135b5 --- /dev/null +++ b/src/_icons/brand-codecov.svg @@ -0,0 +1,9 @@ +--- +tags: [coding, analysis, archive, merge] +category: Brand +unicode: "f329" +version: "1.86" +--- + + + diff --git a/src/_icons/brand-codepen.svg b/src/_icons/brand-codepen.svg index 54b53dfd8..96f52e15c 100644 --- a/src/_icons/brand-codepen.svg +++ b/src/_icons/brand-codepen.svg @@ -7,8 +7,8 @@ unicode: "ec6f" - - - - + + + + diff --git a/src/_icons/brand-codesandbox.svg b/src/_icons/brand-codesandbox.svg index 3623661dc..cd36f87c9 100644 --- a/src/_icons/brand-codesandbox.svg +++ b/src/_icons/brand-codesandbox.svg @@ -7,7 +7,7 @@ unicode: "ed6a" - + diff --git a/src/_icons/brand-cohost.svg b/src/_icons/brand-cohost.svg new file mode 100644 index 000000000..6e6c315ae --- /dev/null +++ b/src/_icons/brand-cohost.svg @@ -0,0 +1,11 @@ +--- +tags: [web, website, app, social, nodes, network, community, communication, user, post, images, photos, comment, feedback] +category: Brand +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-coreos.svg b/src/_icons/brand-coreos.svg new file mode 100644 index 000000000..7eb6031c6 --- /dev/null +++ b/src/_icons/brand-coreos.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f5fd" +version: "1.114" +--- + + + + + diff --git a/src/_icons/brand-couchdb.svg b/src/_icons/brand-couchdb.svg new file mode 100644 index 000000000..c61fed1c1 --- /dev/null +++ b/src/_icons/brand-couchdb.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f60f" +version: "1.115" +--- + + + + + + + diff --git a/src/_icons/brand-couchsurfing.svg b/src/_icons/brand-couchsurfing.svg new file mode 100644 index 000000000..4b97fde15 --- /dev/null +++ b/src/_icons/brand-couchsurfing.svg @@ -0,0 +1,10 @@ +--- +tags: [app, website, accommodation, lodging] +category: Brand +unicode: "f392" +version: "1.92" +--- + + + + diff --git a/src/_icons/brand-cpp.svg b/src/_icons/brand-cpp.svg new file mode 100644 index 000000000..785f22ef2 --- /dev/null +++ b/src/_icons/brand-cpp.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f5fe" +version: "1.114" +--- + + + + + + + diff --git a/src/_icons/brand-ctemplar.svg b/src/_icons/brand-ctemplar.svg new file mode 100644 index 000000000..ff687b0b9 --- /dev/null +++ b/src/_icons/brand-ctemplar.svg @@ -0,0 +1,12 @@ +--- +tags: [e-mail, file, sharing, encryption, app, mobile] +category: Brand +unicode: "f4d0" +version: "1.99" +--- + + + + + + diff --git a/src/_icons/brand-cucumber.svg b/src/_icons/brand-cucumber.svg index 2893d7b2d..2bc955e35 100644 --- a/src/_icons/brand-cucumber.svg +++ b/src/_icons/brand-cucumber.svg @@ -5,7 +5,7 @@ version: "1.45" unicode: "ef6c" --- - + diff --git a/src/_icons/brand-cupra.svg b/src/_icons/brand-cupra.svg new file mode 100644 index 000000000..ecd199a1c --- /dev/null +++ b/src/_icons/brand-cupra.svg @@ -0,0 +1,10 @@ +--- +tags: [car, seat, sport, formentor, ateca, leon ] +category: Brand +unicode: "f4d1" +version: "1.99" +--- + + + + diff --git a/src/_icons/brand-cypress.svg b/src/_icons/brand-cypress.svg new file mode 100644 index 000000000..d2e3424b1 --- /dev/null +++ b/src/_icons/brand-cypress.svg @@ -0,0 +1,11 @@ +--- +tags: [test, automation, user, interface, javascript] +category: Brand +unicode: "f333" +version: "1.86" +--- + + + + + diff --git a/src/_icons/brand-days-counter.svg b/src/_icons/brand-days-counter.svg new file mode 100644 index 000000000..74e017bcf --- /dev/null +++ b/src/_icons/brand-days-counter.svg @@ -0,0 +1,11 @@ +--- +tags: [app, mobile, highlights, days, birthday] +category: Brand +unicode: "f4d2" +version: "1.99" +--- + + + + + diff --git a/src/_icons/brand-dcos.svg b/src/_icons/brand-dcos.svg new file mode 100644 index 000000000..d11d8dba2 --- /dev/null +++ b/src/_icons/brand-dcos.svg @@ -0,0 +1,9 @@ +--- +tags: [os, operating, system, cloud, services, networking] +category: Brand +unicode: "f32a" +version: "1.86" +--- + + + diff --git a/src/_icons/brand-debian.svg b/src/_icons/brand-debian.svg index 685487933..bcac53f86 100644 --- a/src/_icons/brand-debian.svg +++ b/src/_icons/brand-debian.svg @@ -1,10 +1,10 @@ --- -tags: [operating system, Linux, computer, gnu] +tags: [operating system, linux, computer, gnu] category: Brand version: "1.44" unicode: "ef57" --- - + diff --git a/src/_icons/brand-deliveroo.svg b/src/_icons/brand-deliveroo.svg new file mode 100644 index 000000000..60f0e7d37 --- /dev/null +++ b/src/_icons/brand-deliveroo.svg @@ -0,0 +1,11 @@ +--- +tags: [food, online, delivery, supplier] +category: Brand +unicode: "f4d3" +version: "1.99" +--- + + + + + diff --git a/src/_icons/brand-deno.svg b/src/_icons/brand-deno.svg index 69b3c12cb..61feda287 100644 --- a/src/_icons/brand-deno.svg +++ b/src/_icons/brand-deno.svg @@ -5,7 +5,7 @@ version: "1.75" unicode: "f24f" --- - + diff --git a/src/_icons/brand-denodo.svg b/src/_icons/brand-denodo.svg new file mode 100644 index 000000000..58c808441 --- /dev/null +++ b/src/_icons/brand-denodo.svg @@ -0,0 +1,14 @@ +--- +category: Brand +unicode: "f610" +version: "1.115" +--- + + + + + + + + + diff --git a/src/_icons/brand-dingtalk.svg b/src/_icons/brand-dingtalk.svg new file mode 100644 index 000000000..76878d80c --- /dev/null +++ b/src/_icons/brand-dingtalk.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f5ea" +version: "1.113" +--- + + + + diff --git a/src/_icons/brand-discord.svg b/src/_icons/brand-discord.svg index 24d8f79e3..be9b030ed 100644 --- a/src/_icons/brand-discord.svg +++ b/src/_icons/brand-discord.svg @@ -5,8 +5,8 @@ version: "1.21" unicode: "ece3" --- - - + + diff --git a/src/_icons/brand-django.svg b/src/_icons/brand-django.svg new file mode 100644 index 000000000..d9e4c7dc4 --- /dev/null +++ b/src/_icons/brand-django.svg @@ -0,0 +1,12 @@ +--- +tags: [creation, web, application, framework] +category: Brand +unicode: "f349" +version: "1.88" +--- + + + + + + diff --git a/src/_icons/brand-docker.svg b/src/_icons/brand-docker.svg index 60801f57a..cf33ac0cc 100644 --- a/src/_icons/brand-docker.svg +++ b/src/_icons/brand-docker.svg @@ -5,7 +5,7 @@ version: "1.36" unicode: "edca" --- - + @@ -13,5 +13,5 @@ unicode: "edca" - + diff --git a/src/_icons/brand-doctrine.svg b/src/_icons/brand-doctrine.svg index 3676c73d8..456eb3031 100644 --- a/src/_icons/brand-doctrine.svg +++ b/src/_icons/brand-doctrine.svg @@ -5,7 +5,7 @@ version: "1.45" unicode: "ef6d" --- - + diff --git a/src/_icons/brand-dolby-digital.svg b/src/_icons/brand-dolby-digital.svg new file mode 100644 index 000000000..59d1c0cf8 --- /dev/null +++ b/src/_icons/brand-dolby-digital.svg @@ -0,0 +1,10 @@ +--- +tags: [cinema, technology, sound, home] +category: Brand +unicode: "f4d4" +version: "1.99" +--- + + + + diff --git a/src/_icons/brand-douban.svg b/src/_icons/brand-douban.svg new file mode 100644 index 000000000..14f376584 --- /dev/null +++ b/src/_icons/brand-douban.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f5ff" +version: "1.114" +--- + + + + + + + diff --git a/src/_icons/brand-dribbble.svg b/src/_icons/brand-dribbble.svg index e73b8ce43..57bedd0ed 100644 --- a/src/_icons/brand-dribbble.svg +++ b/src/_icons/brand-dribbble.svg @@ -5,7 +5,7 @@ version: "1.18" unicode: "ec19" --- - + diff --git a/src/_icons/brand-drops.svg b/src/_icons/brand-drops.svg new file mode 100644 index 000000000..a55e6378b --- /dev/null +++ b/src/_icons/brand-drops.svg @@ -0,0 +1,10 @@ +--- +tags: [education, learning, language, word, game, design ] +category: Brand +unicode: "f4d5" +version: "1.99" +--- + + + + diff --git a/src/_icons/brand-drupal.svg b/src/_icons/brand-drupal.svg new file mode 100644 index 000000000..1482005a9 --- /dev/null +++ b/src/_icons/brand-drupal.svg @@ -0,0 +1,10 @@ +--- +tags: [software, content, management, creation, application] +category: Brand +unicode: "f393" +version: "1.92" +--- + + + + diff --git a/src/_icons/brand-elastic.svg b/src/_icons/brand-elastic.svg new file mode 100644 index 000000000..2705229cc --- /dev/null +++ b/src/_icons/brand-elastic.svg @@ -0,0 +1,13 @@ +--- +category: Brand +unicode: "f611" +version: "1.115" +--- + + + + + + + + diff --git a/src/_icons/brand-ember.svg b/src/_icons/brand-ember.svg new file mode 100644 index 000000000..f10849abb --- /dev/null +++ b/src/_icons/brand-ember.svg @@ -0,0 +1,9 @@ +--- +tags: [library, javascript, web, app, framework] +category: Brand +unicode: "f497" +version: "1.96" +--- + + + diff --git a/src/_icons/brand-envato.svg b/src/_icons/brand-envato.svg new file mode 100644 index 000000000..34f5c8a94 --- /dev/null +++ b/src/_icons/brand-envato.svg @@ -0,0 +1,10 @@ +--- +tags: [community, creative, resources, tools] +category: Brand +unicode: "f394" +version: "1.92" +--- + + + + diff --git a/src/_icons/brand-etsy.svg b/src/_icons/brand-etsy.svg new file mode 100644 index 000000000..61fe133ab --- /dev/null +++ b/src/_icons/brand-etsy.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f654" +version: "1.119" +--- + + + + + diff --git a/src/_icons/brand-evernote.svg b/src/_icons/brand-evernote.svg new file mode 100644 index 000000000..4f5c34246 --- /dev/null +++ b/src/_icons/brand-evernote.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f600" +version: "1.114" +--- + + + + + diff --git a/src/_icons/brand-facebook.svg b/src/_icons/brand-facebook.svg index 7335de9cd..d7d3ae3a9 100644 --- a/src/_icons/brand-facebook.svg +++ b/src/_icons/brand-facebook.svg @@ -1,5 +1,5 @@ --- -tags: [logo, app, application, community, social, communication, website, user, post, images, photos, comment, feedback] +tags: [logo, app, application, community, social, communication, website, user, post, images, photos, comment, feedback, fb] category: Brand version: "1.18" unicode: "ec1a" diff --git a/src/_icons/brand-figma.svg b/src/_icons/brand-figma.svg index a328e93b4..96566b804 100644 --- a/src/_icons/brand-figma.svg +++ b/src/_icons/brand-figma.svg @@ -5,7 +5,7 @@ version: "1.16" unicode: "ec93" --- - - + + diff --git a/src/_icons/brand-finder.svg b/src/_icons/brand-finder.svg index 4cca0b838..415056d61 100644 --- a/src/_icons/brand-finder.svg +++ b/src/_icons/brand-finder.svg @@ -5,7 +5,7 @@ version: "1.72" unicode: "f218" --- - + diff --git a/src/_icons/brand-firefox.svg b/src/_icons/brand-firefox.svg index c6f788b5b..d9a797710 100644 --- a/src/_icons/brand-firefox.svg +++ b/src/_icons/brand-firefox.svg @@ -6,5 +6,5 @@ unicode: "ecfd" --- - + diff --git a/src/_icons/brand-flickr.svg b/src/_icons/brand-flickr.svg index 44e10ca82..bf257d419 100644 --- a/src/_icons/brand-flickr.svg +++ b/src/_icons/brand-flickr.svg @@ -5,6 +5,6 @@ version: "1.23" unicode: "ecfe" --- - - + + diff --git a/src/_icons/brand-flightradar24.svg b/src/_icons/brand-flightradar24.svg new file mode 100644 index 000000000..68d49afaa --- /dev/null +++ b/src/_icons/brand-flightradar24.svg @@ -0,0 +1,12 @@ +--- +tags: [plane, route, fly, height, speed, statistisc] +category: Brand +unicode: "f4d6" +version: "1.99" +--- + + + + + + diff --git a/src/_icons/brand-flutter.svg b/src/_icons/brand-flutter.svg new file mode 100644 index 000000000..542cc1941 --- /dev/null +++ b/src/_icons/brand-flutter.svg @@ -0,0 +1,10 @@ +--- +tags: [tools, programmer, creation, aplication] +category: Brand +unicode: "f395" +version: "1.92" +--- + + + + diff --git a/src/_icons/brand-foursquare.svg b/src/_icons/brand-foursquare.svg index 4023ff69f..b757b9d51 100644 --- a/src/_icons/brand-foursquare.svg +++ b/src/_icons/brand-foursquare.svg @@ -5,6 +5,6 @@ version: "1.23" unicode: "ecff" --- - - + + diff --git a/src/_icons/brand-funimation.svg b/src/_icons/brand-funimation.svg new file mode 100644 index 000000000..95b686242 --- /dev/null +++ b/src/_icons/brand-funimation.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f655" +version: "1.119" +--- + + + + diff --git a/src/_icons/brand-gatsby.svg b/src/_icons/brand-gatsby.svg new file mode 100644 index 000000000..43fb14932 --- /dev/null +++ b/src/_icons/brand-gatsby.svg @@ -0,0 +1,10 @@ +--- +tags: [framework, webpage, creation, software] +category: Brand +unicode: "f396" +version: "1.92" +--- + + + + diff --git a/src/_icons/brand-git.svg b/src/_icons/brand-git.svg index 7cd593e28..c1d9ac8dc 100644 --- a/src/_icons/brand-git.svg +++ b/src/_icons/brand-git.svg @@ -5,9 +5,9 @@ version: "1.45" unicode: "ef6f" --- - - - + + + diff --git a/src/_icons/brand-github-copilot.svg b/src/_icons/brand-github-copilot.svg new file mode 100644 index 000000000..dedd3804a --- /dev/null +++ b/src/_icons/brand-github-copilot.svg @@ -0,0 +1,15 @@ +--- +tags: [ai, artificial, intelligence, autocomplete, coding ] +category: Brand +unicode: "f4a8" +version: "1.97" +--- + + + + + + + + + diff --git a/src/_icons/brand-google-analytics.svg b/src/_icons/brand-google-analytics.svg index 404cc34e1..b50aa7fe9 100644 --- a/src/_icons/brand-google-analytics.svg +++ b/src/_icons/brand-google-analytics.svg @@ -5,7 +5,7 @@ version: "1.36" unicode: "edcb" --- - - - + + + diff --git a/src/_icons/brand-google-big-query.svg b/src/_icons/brand-google-big-query.svg new file mode 100644 index 000000000..f44bba38b --- /dev/null +++ b/src/_icons/brand-google-big-query.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f612" +version: "1.115" +--- + + + + + diff --git a/src/_icons/brand-google-fit.svg b/src/_icons/brand-google-fit.svg index ba09333ba..9f71dfa48 100644 --- a/src/_icons/brand-google-fit.svg +++ b/src/_icons/brand-google-fit.svg @@ -1,4 +1,5 @@ --- +tags: [health, tracking, platform, software] category: Brand version: "1.79" unicode: "f297" diff --git a/src/_icons/brand-google-home.svg b/src/_icons/brand-google-home.svg new file mode 100644 index 000000000..2334ed77b --- /dev/null +++ b/src/_icons/brand-google-home.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f601" +version: "1.114" +--- + + + + + + + diff --git a/src/_icons/brand-google-one.svg b/src/_icons/brand-google-one.svg index 1aa73ea4d..e4958a179 100644 --- a/src/_icons/brand-google-one.svg +++ b/src/_icons/brand-google-one.svg @@ -5,6 +5,6 @@ version: "1.73" unicode: "f232" --- - + diff --git a/src/_icons/brand-google-play.svg b/src/_icons/brand-google-play.svg index 5ea547dd0..5bef7d7bf 100644 --- a/src/_icons/brand-google-play.svg +++ b/src/_icons/brand-google-play.svg @@ -6,6 +6,6 @@ unicode: "ed25" --- - - + + diff --git a/src/_icons/brand-google-podcasts.svg b/src/_icons/brand-google-podcasts.svg new file mode 100644 index 000000000..d5f426efe --- /dev/null +++ b/src/_icons/brand-google-podcasts.svg @@ -0,0 +1,16 @@ +--- +category: Brand +unicode: "f656" +version: "1.119" +--- + + + + + + + + + + + diff --git a/src/_icons/brand-grammarly.svg b/src/_icons/brand-grammarly.svg new file mode 100644 index 000000000..8d052f59b --- /dev/null +++ b/src/_icons/brand-grammarly.svg @@ -0,0 +1,11 @@ +--- +tags: [text, editor, detects, mistakes, grammar] +category: Brand +unicode: "f32b" +version: "1.86" +--- + + + + + diff --git a/src/_icons/brand-graphql.svg b/src/_icons/brand-graphql.svg new file mode 100644 index 000000000..1894f734d --- /dev/null +++ b/src/_icons/brand-graphql.svg @@ -0,0 +1,23 @@ +--- +tags: [software, communication, server] +category: Brand +unicode: "f32c" +version: "1.86" +--- + + + + + + + + + + + + + + + + + diff --git a/src/_icons/brand-guardian.svg b/src/_icons/brand-guardian.svg new file mode 100644 index 000000000..8f51a6172 --- /dev/null +++ b/src/_icons/brand-guardian.svg @@ -0,0 +1,14 @@ +--- +tags: [news, log, british, article, blog ] +category: Brand +unicode: "f4fb" +version: "1.101" +--- + + + + + + + + diff --git a/src/_icons/brand-gumroad.svg b/src/_icons/brand-gumroad.svg new file mode 100644 index 000000000..737130972 --- /dev/null +++ b/src/_icons/brand-gumroad.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f5d6" +version: "1.112" +--- + + + + + diff --git a/src/_icons/brand-hbo.svg b/src/_icons/brand-hbo.svg new file mode 100644 index 000000000..5ed547c0e --- /dev/null +++ b/src/_icons/brand-hbo.svg @@ -0,0 +1,13 @@ +--- +category: Brand +unicode: "f657" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/brand-headlessui.svg b/src/_icons/brand-headlessui.svg new file mode 100644 index 000000000..1e830d1e3 --- /dev/null +++ b/src/_icons/brand-headlessui.svg @@ -0,0 +1,10 @@ +--- +tags: [tailwind, css, js, javascript] +category: Brand +unicode: "f32d" +version: "1.86" +--- + + + + diff --git a/src/_icons/brand-hipchat.svg b/src/_icons/brand-hipchat.svg index 4a5dade0f..2268a6556 100644 --- a/src/_icons/brand-hipchat.svg +++ b/src/_icons/brand-hipchat.svg @@ -5,6 +5,6 @@ version: "1.36" unicode: "edcd" --- - + diff --git a/src/_icons/brand-inertia.svg b/src/_icons/brand-inertia.svg new file mode 100644 index 000000000..4d9ee2dfa --- /dev/null +++ b/src/_icons/brand-inertia.svg @@ -0,0 +1,10 @@ +--- +tags: [create, app, online, javascript ] +category: Brand +unicode: "f34a" +version: "1.88" +--- + + + + diff --git a/src/_icons/brand-instagram.svg b/src/_icons/brand-instagram.svg index a0797b1e0..eaa7c0abf 100644 --- a/src/_icons/brand-instagram.svg +++ b/src/_icons/brand-instagram.svg @@ -5,7 +5,7 @@ version: "1.9" unicode: "ec20" --- - - - + + + diff --git a/src/_icons/brand-intercom.svg b/src/_icons/brand-intercom.svg index e89609797..bde626c2a 100644 --- a/src/_icons/brand-intercom.svg +++ b/src/_icons/brand-intercom.svg @@ -5,7 +5,7 @@ version: "1.68" unicode: "f1cf" --- - + 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..2ca0bad69 100644 --- a/src/_icons/brand-kotlin.svg +++ b/src/_icons/brand-kotlin.svg @@ -6,7 +6,7 @@ unicode: "ed6d" --- - + - + diff --git a/src/_icons/brand-laravel.svg b/src/_icons/brand-laravel.svg new file mode 100644 index 000000000..659d8c6b5 --- /dev/null +++ b/src/_icons/brand-laravel.svg @@ -0,0 +1,16 @@ +--- +tags: [framework, software, php, modular, application, building, system] +category: Brand +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..4b132f709 100644 --- a/src/_icons/brand-linkedin.svg +++ b/src/_icons/brand-linkedin.svg @@ -5,9 +5,9 @@ version: "1.15" unicode: "ec8c" --- - - - - + + + + diff --git a/src/_icons/brand-linqpad.svg b/src/_icons/brand-linqpad.svg new file mode 100644 index 000000000..1fb7d880d --- /dev/null +++ b/src/_icons/brand-linqpad.svg @@ -0,0 +1,9 @@ +--- +tags: [framework, programmers, database] +category: Brand +unicode: "f562" +version: "1.106" +--- + + + diff --git a/src/_icons/brand-loom.svg b/src/_icons/brand-loom.svg index 2d0cb8e15..09d06d97e 100644 --- a/src/_icons/brand-loom.svg +++ b/src/_icons/brand-loom.svg @@ -5,8 +5,8 @@ version: "1.45" unicode: "ef70" --- - - - - + + + + diff --git a/src/_icons/brand-mailgun.svg b/src/_icons/brand-mailgun.svg new file mode 100644 index 000000000..7a2253a48 --- /dev/null +++ b/src/_icons/brand-mailgun.svg @@ -0,0 +1,12 @@ +--- +tags: [delivery, service, tracking, pickup] +category: Brand +unicode: "f32e" +version: "1.86" +--- + + + + + + diff --git a/src/_icons/brand-mantine.svg b/src/_icons/brand-mantine.svg new file mode 100644 index 000000000..f1bae6220 --- /dev/null +++ b/src/_icons/brand-mantine.svg @@ -0,0 +1,13 @@ +--- +tags: [creation, web, application, development] +category: Brand +unicode: "f32f" +version: "1.86" +--- + + + + + + + diff --git a/src/_icons/brand-mastercard.svg b/src/_icons/brand-mastercard.svg index f3230192f..8ef9317a8 100644 --- a/src/_icons/brand-mastercard.svg +++ b/src/_icons/brand-mastercard.svg @@ -5,7 +5,7 @@ version: "1.43" unicode: "ef49" --- - + - + diff --git a/src/_icons/brand-matrix.svg b/src/_icons/brand-matrix.svg new file mode 100644 index 000000000..ada89073a --- /dev/null +++ b/src/_icons/brand-matrix.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f5eb" +version: "1.113" +--- + + + + + + + diff --git a/src/_icons/brand-medium.svg b/src/_icons/brand-medium.svg index 9ac299725..f59df3fef 100644 --- a/src/_icons/brand-medium.svg +++ b/src/_icons/brand-medium.svg @@ -5,10 +5,10 @@ version: "1.13" unicode: "ec70" --- - + - - - - + + + + diff --git a/src/_icons/brand-mercedes.svg b/src/_icons/brand-mercedes.svg index 5e6223094..ec60c4095 100644 --- a/src/_icons/brand-mercedes.svg +++ b/src/_icons/brand-mercedes.svg @@ -5,7 +5,7 @@ version: "1.59" unicode: "f072" --- - + diff --git a/src/_icons/brand-meta.svg b/src/_icons/brand-meta.svg index 62783632e..09fbf0113 100644 --- a/src/_icons/brand-meta.svg +++ b/src/_icons/brand-meta.svg @@ -1,5 +1,5 @@ --- -tags: [social media, Facebook, Instagram, Messegner, Giphy] +tags: [social media,facebook, fb, instagram, messegner, giphy] category: Brand version: "1.49" unicode: "efb0" diff --git a/src/_icons/brand-miniprogram.svg b/src/_icons/brand-miniprogram.svg new file mode 100644 index 000000000..e53c58430 --- /dev/null +++ b/src/_icons/brand-miniprogram.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f602" +version: "1.114" +--- + + + + diff --git a/src/_icons/brand-mixpanel.svg b/src/_icons/brand-mixpanel.svg new file mode 100644 index 000000000..6c7634c03 --- /dev/null +++ b/src/_icons/brand-mixpanel.svg @@ -0,0 +1,11 @@ +--- +tags: [analytics, buisness, software, application] +category: Brand +unicode: "f397" +version: "1.92" +--- + + + + + diff --git a/src/_icons/brand-monday.svg b/src/_icons/brand-monday.svg index 7844741f9..04ff5f5e7 100644 --- a/src/_icons/brand-monday.svg +++ b/src/_icons/brand-monday.svg @@ -5,7 +5,7 @@ version: "1.72" unicode: "f219" --- - + diff --git a/src/_icons/brand-mongodb.svg b/src/_icons/brand-mongodb.svg new file mode 100644 index 000000000..800a77531 --- /dev/null +++ b/src/_icons/brand-mongodb.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f613" +version: "1.115" +--- + + + + diff --git a/src/_icons/brand-my-oppo.svg b/src/_icons/brand-my-oppo.svg new file mode 100644 index 000000000..13d4c005c --- /dev/null +++ b/src/_icons/brand-my-oppo.svg @@ -0,0 +1,10 @@ +--- +tags: [mobile, app, services, membership] +category: Brand +unicode: "f4d7" +version: "1.99" +--- + + + + diff --git a/src/_icons/brand-mysql.svg b/src/_icons/brand-mysql.svg new file mode 100644 index 000000000..9f0dbfd9a --- /dev/null +++ b/src/_icons/brand-mysql.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f614" +version: "1.115" +--- + + + + diff --git a/src/_icons/brand-national-geographic.svg b/src/_icons/brand-national-geographic.svg new file mode 100644 index 000000000..f98467934 --- /dev/null +++ b/src/_icons/brand-national-geographic.svg @@ -0,0 +1,8 @@ +--- +category: Brand +unicode: "f603" +version: "1.114" +--- + + + diff --git a/src/_icons/brand-nem.svg b/src/_icons/brand-nem.svg new file mode 100644 index 000000000..0821d4eb8 --- /dev/null +++ b/src/_icons/brand-nem.svg @@ -0,0 +1,11 @@ +--- +tags: [coin, crypto, cryptocurrency, digital] +category: Brand +unicode: "f5a1" +version: "1.110" +--- + + + + + diff --git a/src/_icons/brand-netbeans.svg b/src/_icons/brand-netbeans.svg index 370a34406..3d846dc71 100644 --- a/src/_icons/brand-netbeans.svg +++ b/src/_icons/brand-netbeans.svg @@ -1,5 +1,5 @@ --- -tags: [software, programming, tools, Java, mobile devices] +tags: [software, programming, tools, java, mobile devices] category: Brand version: "1.45" unicode: "ef71" diff --git a/src/_icons/brand-netease-music.svg b/src/_icons/brand-netease-music.svg new file mode 100644 index 000000000..13609523b --- /dev/null +++ b/src/_icons/brand-netease-music.svg @@ -0,0 +1,8 @@ +--- +category: Brand +unicode: "f604" +version: "1.114" +--- + + + diff --git a/src/_icons/brand-netflix.svg b/src/_icons/brand-netflix.svg index 1e4d097ae..4b6e60ecb 100644 --- a/src/_icons/brand-netflix.svg +++ b/src/_icons/brand-netflix.svg @@ -5,5 +5,7 @@ version: "1.36" unicode: "edcf" --- - + + + diff --git a/src/_icons/brand-nexo.svg b/src/_icons/brand-nexo.svg new file mode 100644 index 000000000..3df66f224 --- /dev/null +++ b/src/_icons/brand-nexo.svg @@ -0,0 +1,10 @@ +--- +tags: [coin, crypto, cryptocurrency, digital] +category: Brand +unicode: "f5a2" +version: "1.110" +--- + + + + diff --git a/src/_icons/brand-nextcloud.svg b/src/_icons/brand-nextcloud.svg new file mode 100644 index 000000000..cb5d10a44 --- /dev/null +++ b/src/_icons/brand-nextcloud.svg @@ -0,0 +1,11 @@ +--- +tags: [software, technology, file, hosting, php, javascript] +category: Brand +unicode: "f4d8" +version: "1.99" +--- + + + + + diff --git a/src/_icons/brand-nord-vpn.svg b/src/_icons/brand-nord-vpn.svg new file mode 100644 index 000000000..37574ae4a --- /dev/null +++ b/src/_icons/brand-nord-vpn.svg @@ -0,0 +1,10 @@ +--- +tags: [protects, device, software] +category: Brand +unicode: "f37f" +version: "1.91" +--- + + + + diff --git a/src/_icons/brand-notion.svg b/src/_icons/brand-notion.svg index b4ef67fe8..04600cf87 100644 --- a/src/_icons/brand-notion.svg +++ b/src/_icons/brand-notion.svg @@ -5,7 +5,7 @@ version: "1.46" unicode: "ef7b" --- - + diff --git a/src/_icons/brand-npm.svg b/src/_icons/brand-npm.svg new file mode 100644 index 000000000..a8c654acb --- /dev/null +++ b/src/_icons/brand-npm.svg @@ -0,0 +1,15 @@ +--- +tags: [package, manager, node.js, javascript] +category: Brand +unicode: "f569" +version: "1.107" +--- + + + + + + + + + diff --git a/src/_icons/brand-nuxt.svg b/src/_icons/brand-nuxt.svg index f387646e1..f323862f0 100644 --- a/src/_icons/brand-nuxt.svg +++ b/src/_icons/brand-nuxt.svg @@ -1,5 +1,5 @@ --- -tags: [software, app development, library, JavaScript] +tags: [software, app development, library, javascript, js] category: Brand version: "1.64" unicode: "f0de" diff --git a/src/_icons/brand-nytimes.svg b/src/_icons/brand-nytimes.svg index 2b6c49e8e..77468aa21 100644 --- a/src/_icons/brand-nytimes.svg +++ b/src/_icons/brand-nytimes.svg @@ -5,7 +5,7 @@ version: "1.47" unicode: "ef8d" --- - + diff --git a/src/_icons/brand-office.svg b/src/_icons/brand-office.svg new file mode 100644 index 000000000..9ea9eff54 --- /dev/null +++ b/src/_icons/brand-office.svg @@ -0,0 +1,9 @@ +--- +tags: [text, editor, software, word, excel] +category: Brand +unicode: "f398" +version: "1.92" +--- + + + diff --git a/src/_icons/brand-ok-ru.svg b/src/_icons/brand-ok-ru.svg new file mode 100644 index 000000000..ceb79fdd7 --- /dev/null +++ b/src/_icons/brand-ok-ru.svg @@ -0,0 +1,13 @@ +--- +tags: [socialmedia, message, posts] +category: Brand +unicode: "f399" +version: "1.92" +--- + + + + + + + diff --git a/src/_icons/brand-onedrive.svg b/src/_icons/brand-onedrive.svg new file mode 100644 index 000000000..6571908fc --- /dev/null +++ b/src/_icons/brand-onedrive.svg @@ -0,0 +1,8 @@ +--- +category: Brand +unicode: "f5d7" +version: "1.112" +--- + + + diff --git a/src/_icons/brand-onlyfans.svg b/src/_icons/brand-onlyfans.svg new file mode 100644 index 000000000..700b90eff --- /dev/null +++ b/src/_icons/brand-onlyfans.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f605" +version: "1.114" +--- + + + + + diff --git a/src/_icons/brand-openvpn.svg b/src/_icons/brand-openvpn.svg new file mode 100644 index 000000000..3cfc3dc46 --- /dev/null +++ b/src/_icons/brand-openvpn.svg @@ -0,0 +1,10 @@ +--- +tags: [software, creating, secure, connection] +category: Brand +unicode: "f39a" +version: "1.92" +--- + + + + diff --git a/src/_icons/brand-opera.svg b/src/_icons/brand-opera.svg index 7aacb6647..40688de51 100644 --- a/src/_icons/brand-opera.svg +++ b/src/_icons/brand-opera.svg @@ -5,6 +5,6 @@ version: "1.9" unicode: "ec21" --- - - + + diff --git a/src/_icons/brand-patreon.svg b/src/_icons/brand-patreon.svg index 9853b5a56..d1e0a406c 100644 --- a/src/_icons/brand-patreon.svg +++ b/src/_icons/brand-patreon.svg @@ -6,5 +6,5 @@ unicode: "edd2" --- - + diff --git a/src/_icons/brand-paypay.svg b/src/_icons/brand-paypay.svg new file mode 100644 index 000000000..76d1dc0aa --- /dev/null +++ b/src/_icons/brand-paypay.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f5ec" +version: "1.113" +--- + + + + + diff --git a/src/_icons/brand-peanut.svg b/src/_icons/brand-peanut.svg new file mode 100644 index 000000000..687a72252 --- /dev/null +++ b/src/_icons/brand-peanut.svg @@ -0,0 +1,9 @@ +--- +tags: [social, app, mobile, women] +category: Brand +unicode: "f39b" +version: "1.92" +--- + + + diff --git a/src/_icons/brand-pepsi.svg b/src/_icons/brand-pepsi.svg index a7a282124..f9150eafb 100644 --- a/src/_icons/brand-pepsi.svg +++ b/src/_icons/brand-pepsi.svg @@ -5,7 +5,7 @@ version: "1.76" unicode: "f261" --- - + diff --git a/src/_icons/brand-php.svg b/src/_icons/brand-php.svg index 9a397c941..9d67c7c2f 100644 --- a/src/_icons/brand-php.svg +++ b/src/_icons/brand-php.svg @@ -5,7 +5,7 @@ version: "1.45" unicode: "ef72" --- - + diff --git a/src/_icons/brand-picsart.svg b/src/_icons/brand-picsart.svg new file mode 100644 index 000000000..2acbe7077 --- /dev/null +++ b/src/_icons/brand-picsart.svg @@ -0,0 +1,11 @@ +--- +tags: [photo, photography, software, video, editing] +category: Brand +unicode: "f4d9" +version: "1.99" +--- + + + + + diff --git a/src/_icons/brand-pinterest.svg b/src/_icons/brand-pinterest.svg index 3dc972919..4dccda803 100644 --- a/src/_icons/brand-pinterest.svg +++ b/src/_icons/brand-pinterest.svg @@ -5,7 +5,7 @@ version: "1.15" unicode: "ec8d" --- - + - + diff --git a/src/_icons/brand-pocket.svg b/src/_icons/brand-pocket.svg index 7fb44e8e4..316db1a68 100644 --- a/src/_icons/brand-pocket.svg +++ b/src/_icons/brand-pocket.svg @@ -6,5 +6,5 @@ unicode: "ed00" --- - + diff --git a/src/_icons/brand-polymer.svg b/src/_icons/brand-polymer.svg new file mode 100644 index 000000000..c1237237b --- /dev/null +++ b/src/_icons/brand-polymer.svg @@ -0,0 +1,8 @@ +--- +category: Brand +unicode: "f498" +version: "1.96" +--- + + + diff --git a/src/_icons/brand-powershell.svg b/src/_icons/brand-powershell.svg new file mode 100644 index 000000000..6355e8e65 --- /dev/null +++ b/src/_icons/brand-powershell.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f5ed" +version: "1.113" +--- + + + + + diff --git a/src/_icons/brand-prisma.svg b/src/_icons/brand-prisma.svg new file mode 100644 index 000000000..bddacba1c --- /dev/null +++ b/src/_icons/brand-prisma.svg @@ -0,0 +1,10 @@ +--- +tags: [software, open, source, tools, developer, platform ] +category: Brand +unicode: "f499" +version: "1.96" +--- + + + + diff --git a/src/_icons/brand-producthunt.svg b/src/_icons/brand-producthunt.svg index fa71bae37..5ed0280a8 100644 --- a/src/_icons/brand-producthunt.svg +++ b/src/_icons/brand-producthunt.svg @@ -6,5 +6,5 @@ unicode: "edd3" --- - + diff --git a/src/_icons/brand-pushbullet.svg b/src/_icons/brand-pushbullet.svg new file mode 100644 index 000000000..654838e93 --- /dev/null +++ b/src/_icons/brand-pushbullet.svg @@ -0,0 +1,11 @@ +--- +tags: [data, transfer, tool, software] +category: Brand +unicode: "f330" +version: "1.86" +--- + + + + + diff --git a/src/_icons/brand-python.svg b/src/_icons/brand-python.svg index 466565ccb..6d4f21e78 100644 --- a/src/_icons/brand-python.svg +++ b/src/_icons/brand-python.svg @@ -8,6 +8,6 @@ unicode: "ed01" - - + + diff --git a/src/_icons/brand-qq.svg b/src/_icons/brand-qq.svg new file mode 100644 index 000000000..658726859 --- /dev/null +++ b/src/_icons/brand-qq.svg @@ -0,0 +1,13 @@ +--- +category: Brand +unicode: "f606" +version: "1.114" +--- + + + + + + + + diff --git a/src/_icons/brand-react-native.svg b/src/_icons/brand-react-native.svg index 400f80474..f46f7c884 100644 --- a/src/_icons/brand-react-native.svg +++ b/src/_icons/brand-react-native.svg @@ -1,5 +1,5 @@ --- -tags: [programming, tools, app, JavaScript] +tags: [programming, tools, app, javascript, js] category: Brand version: "1.45" unicode: "ef73" diff --git a/src/_icons/brand-react.svg b/src/_icons/brand-react.svg new file mode 100644 index 000000000..d5a3b6ad8 --- /dev/null +++ b/src/_icons/brand-react.svg @@ -0,0 +1,15 @@ +--- +tags: [library, javascript, creation, interface, software] +category: Brand +unicode: "f34c" +version: "1.88" +--- + + + + + + + + + diff --git a/src/_icons/brand-reason.svg b/src/_icons/brand-reason.svg new file mode 100644 index 000000000..4207cf672 --- /dev/null +++ b/src/_icons/brand-reason.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f49a" +version: "1.96" +--- + + + + + + + diff --git a/src/_icons/brand-reddit.svg b/src/_icons/brand-reddit.svg index 346a88b17..826f4799e 100644 --- a/src/_icons/brand-reddit.svg +++ b/src/_icons/brand-reddit.svg @@ -7,7 +7,7 @@ unicode: "ec8e" - + diff --git a/src/_icons/brand-redhat.svg b/src/_icons/brand-redhat.svg new file mode 100644 index 000000000..48337e159 --- /dev/null +++ b/src/_icons/brand-redhat.svg @@ -0,0 +1,10 @@ +--- +tags: [software, entrepreneurship, creation] +category: Brand +unicode: "f331" +version: "1.86" +--- + + + + diff --git a/src/_icons/brand-redux.svg b/src/_icons/brand-redux.svg new file mode 100644 index 000000000..cd087588f --- /dev/null +++ b/src/_icons/brand-redux.svg @@ -0,0 +1,14 @@ +--- +tags: [library, javascript, menagment, centralization, application, status] +category: Brand +version: "1.93" +unicode: "f3a8" +--- + + + + + + + + diff --git a/src/_icons/brand-revolut.svg b/src/_icons/brand-revolut.svg new file mode 100644 index 000000000..ae2633def --- /dev/null +++ b/src/_icons/brand-revolut.svg @@ -0,0 +1,10 @@ +--- +tags: [bank, money, finance, change, currency] +category: Brand +unicode: "f4da" +version: "1.99" +--- + + + + diff --git a/src/_icons/brand-safari.svg b/src/_icons/brand-safari.svg index 8e20fc1d1..3c713b350 100644 --- a/src/_icons/brand-safari.svg +++ b/src/_icons/brand-safari.svg @@ -1,10 +1,10 @@ --- -tags: [logo, browser, internet, iPhone, iPad, MacBook, compass, apple, discover] +tags: [logo, browser, internet, iphone, ipad, MacBook, compass, apple, discover] category: Brand version: "1.9" unicode: "ec23" --- - - + + diff --git a/src/_icons/brand-samsungpass.svg b/src/_icons/brand-samsungpass.svg new file mode 100644 index 000000000..d073697ba --- /dev/null +++ b/src/_icons/brand-samsungpass.svg @@ -0,0 +1,11 @@ +--- +tags: [management, storage, personal, information, id, password] +category: Brand +unicode: "f4db" +version: "1.99" +--- + + + + + diff --git a/src/_icons/brand-sass.svg b/src/_icons/brand-sass.svg index 06d95a558..d834120ab 100644 --- a/src/_icons/brand-sass.svg +++ b/src/_icons/brand-sass.svg @@ -5,6 +5,6 @@ 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-sharik.svg b/src/_icons/brand-sharik.svg new file mode 100644 index 000000000..8c442d988 --- /dev/null +++ b/src/_icons/brand-sharik.svg @@ -0,0 +1,9 @@ +--- +tags: [file, sharing, wifi, mobile, hotspot] +category: Brand +unicode: "f4dc" +version: "1.99" +--- + + + diff --git a/src/_icons/brand-shazam.svg b/src/_icons/brand-shazam.svg index f55c1ca8e..3641c42b3 100644 --- a/src/_icons/brand-shazam.svg +++ b/src/_icons/brand-shazam.svg @@ -7,5 +7,5 @@ unicode: "edd6" - + diff --git a/src/_icons/brand-shopee.svg b/src/_icons/brand-shopee.svg index 4821c5380..8e45fc399 100644 --- a/src/_icons/brand-shopee.svg +++ b/src/_icons/brand-shopee.svg @@ -5,7 +5,7 @@ version: "1.75" unicode: "f252" --- - + diff --git a/src/_icons/brand-skype.svg b/src/_icons/brand-skype.svg index 58056856e..e3dddda9d 100644 --- a/src/_icons/brand-skype.svg +++ b/src/_icons/brand-skype.svg @@ -6,5 +6,5 @@ unicode: "ed02" --- - + diff --git a/src/_icons/brand-slack.svg b/src/_icons/brand-slack.svg index 7b5efd187..a95c1b22b 100644 --- a/src/_icons/brand-slack.svg +++ b/src/_icons/brand-slack.svg @@ -1,5 +1,5 @@ --- -tags: [logo, free, internet, service, stuff, Electron, app, application, communicator, textual, audio, multimedia] +tags: [logo, free, internet, service, stuff, electron, app, application, communicator, textual, audio, multimedia] category: Brand version: "1.13" unicode: "ec72" diff --git a/src/_icons/brand-snowflake.svg b/src/_icons/brand-snowflake.svg new file mode 100644 index 000000000..bec324bc2 --- /dev/null +++ b/src/_icons/brand-snowflake.svg @@ -0,0 +1,14 @@ +--- +category: Brand +unicode: "f615" +version: "1.115" +--- + + + + + + + + + diff --git a/src/_icons/brand-socket-io.svg b/src/_icons/brand-socket-io.svg new file mode 100644 index 000000000..17064442b --- /dev/null +++ b/src/_icons/brand-socket-io.svg @@ -0,0 +1,11 @@ +--- +tags: [library, javascript, web, app, communication] +category: Brand +unicode: "f49b" +version: "1.96" +--- + + + + + diff --git a/src/_icons/brand-solidjs.svg b/src/_icons/brand-solidjs.svg new file mode 100644 index 000000000..be2b1dd68 --- /dev/null +++ b/src/_icons/brand-solidjs.svg @@ -0,0 +1,14 @@ +--- +category: Brand +unicode: "f5ee" +version: "1.113" +--- + + + + + + + + + diff --git a/src/_icons/brand-soundcloud.svg b/src/_icons/brand-soundcloud.svg index 8e61c3d85..762aa8ce4 100644 --- a/src/_icons/brand-soundcloud.svg +++ b/src/_icons/brand-soundcloud.svg @@ -6,7 +6,7 @@ unicode: "ed6e" --- - - - + + + diff --git a/src/_icons/brand-spacehey.svg b/src/_icons/brand-spacehey.svg new file mode 100644 index 000000000..5d99df071 --- /dev/null +++ b/src/_icons/brand-spacehey.svg @@ -0,0 +1,11 @@ +--- +tags: [internet, network, social, website ] +category: Brand +unicode: "f4fc" +version: "1.101" +--- + + + + + diff --git a/src/_icons/brand-spotify.svg b/src/_icons/brand-spotify.svg index 52c4eccc2..d5e79e810 100644 --- a/src/_icons/brand-spotify.svg +++ b/src/_icons/brand-spotify.svg @@ -5,7 +5,7 @@ version: "1.23" unicode: "ed03" --- - + diff --git a/src/_icons/brand-stackshare.svg b/src/_icons/brand-stackshare.svg new file mode 100644 index 000000000..08c259a72 --- /dev/null +++ b/src/_icons/brand-stackshare.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f607" +version: "1.114" +--- + + + + + + + diff --git a/src/_icons/brand-steam.svg b/src/_icons/brand-steam.svg index 81381da48..b6e826f4f 100644 --- a/src/_icons/brand-steam.svg +++ b/src/_icons/brand-steam.svg @@ -5,6 +5,6 @@ version: "1.32" unicode: "ed6f" --- - - + + diff --git a/src/_icons/brand-storybook.svg b/src/_icons/brand-storybook.svg new file mode 100644 index 000000000..9ba01ccc1 --- /dev/null +++ b/src/_icons/brand-storybook.svg @@ -0,0 +1,11 @@ +--- +tags: [tool, creation, interface, application] +category: Brand +unicode: "f332" +version: "1.86" +--- + + + + + diff --git a/src/_icons/brand-storytel.svg b/src/_icons/brand-storytel.svg new file mode 100644 index 000000000..d01c3d856 --- /dev/null +++ b/src/_icons/brand-storytel.svg @@ -0,0 +1,8 @@ +--- +category: Brand +unicode: "f608" +version: "1.114" +--- + + + 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-supabase.svg b/src/_icons/brand-supabase.svg new file mode 100644 index 000000000..2164455c9 --- /dev/null +++ b/src/_icons/brand-supabase.svg @@ -0,0 +1,6 @@ +--- +category: Brand +--- + + + diff --git a/src/_icons/brand-superhuman.svg b/src/_icons/brand-superhuman.svg new file mode 100644 index 000000000..31f0e19ee --- /dev/null +++ b/src/_icons/brand-superhuman.svg @@ -0,0 +1,11 @@ +--- +tags: [software, email, productivity, tools ] +category: Brand +version: "1.102" +unicode: "f50c" +--- + + + + + diff --git a/src/_icons/brand-supernova.svg b/src/_icons/brand-supernova.svg new file mode 100644 index 000000000..1d9017300 --- /dev/null +++ b/src/_icons/brand-supernova.svg @@ -0,0 +1,13 @@ +--- +tags: [editor, developer, tools, technology, design] +category: Brand +unicode: "f49c" +version: "1.96" +--- + + + + + + + diff --git a/src/_icons/brand-surfshark.svg b/src/_icons/brand-surfshark.svg index c7651f4f2..b9e2ced9e 100644 --- a/src/_icons/brand-surfshark.svg +++ b/src/_icons/brand-surfshark.svg @@ -5,6 +5,6 @@ version: "1.75" unicode: "f255" --- - + diff --git a/src/_icons/brand-symfony.svg b/src/_icons/brand-symfony.svg new file mode 100644 index 000000000..fb1966d8b --- /dev/null +++ b/src/_icons/brand-symfony.svg @@ -0,0 +1,10 @@ +--- +category: Brand +unicode: "f616" +version: "1.115" +--- + + + + + diff --git a/src/_icons/brand-tabler.svg b/src/_icons/brand-tabler.svg index 2698fea75..5d7aef922 100644 --- a/src/_icons/brand-tabler.svg +++ b/src/_icons/brand-tabler.svg @@ -1,11 +1,11 @@ --- -tags: [logo, website, dashboard, download, open-source, UI] +tags: [logo, website, dashboard, download, open-source, ui] category: Brand version: "1.15" unicode: "ec8f" --- - - + + diff --git a/src/_icons/brand-taobao.svg b/src/_icons/brand-taobao.svg new file mode 100644 index 000000000..60a70420f --- /dev/null +++ b/src/_icons/brand-taobao.svg @@ -0,0 +1,17 @@ +--- +category: Brand +unicode: "f5ef" +version: "1.113" +--- + + + + + + + + + + + + diff --git a/src/_icons/brand-ted.svg b/src/_icons/brand-ted.svg new file mode 100644 index 000000000..a99dfe613 --- /dev/null +++ b/src/_icons/brand-ted.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f658" +version: "1.119" +--- + + + + + + + diff --git a/src/_icons/brand-tether.svg b/src/_icons/brand-tether.svg new file mode 100644 index 000000000..8773f5dc4 --- /dev/null +++ b/src/_icons/brand-tether.svg @@ -0,0 +1,11 @@ +--- +tags: [coin, crypto, cryptocurrency, digital] +category: Brand +unicode: "f5a3" +version: "1.110" +--- + + + + + diff --git a/src/_icons/brand-threejs.svg b/src/_icons/brand-threejs.svg new file mode 100644 index 000000000..37d6e5151 --- /dev/null +++ b/src/_icons/brand-threejs.svg @@ -0,0 +1,11 @@ +--- +category: Brand +unicode: "f5f0" +version: "1.113" +--- + + + + + + diff --git a/src/_icons/brand-topbuzz.svg b/src/_icons/brand-topbuzz.svg new file mode 100644 index 000000000..1e089707e --- /dev/null +++ b/src/_icons/brand-topbuzz.svg @@ -0,0 +1,9 @@ +--- +tags: [video, gif, articles, news] +category: Brand +version: "1.102" +unicode: "f50d" +--- + + + diff --git a/src/_icons/brand-torchain.svg b/src/_icons/brand-torchain.svg new file mode 100644 index 000000000..bb3fe43e6 --- /dev/null +++ b/src/_icons/brand-torchain.svg @@ -0,0 +1,10 @@ +--- +tags: [coin, crypto, cryptocurrency, digital] +category: Brand +unicode: "f5a4" +version: "1.110" +--- + + + + diff --git a/src/_icons/brand-toyota.svg b/src/_icons/brand-toyota.svg index 03d9d7a4b..67f759da3 100644 --- a/src/_icons/brand-toyota.svg +++ b/src/_icons/brand-toyota.svg @@ -5,7 +5,7 @@ version: "1.76" unicode: "f262" --- - + diff --git a/src/_icons/brand-trello.svg b/src/_icons/brand-trello.svg new file mode 100644 index 000000000..4a7c32cef --- /dev/null +++ b/src/_icons/brand-trello.svg @@ -0,0 +1,11 @@ +--- +tags: [visual, tool, board, kanban] +category: Brand +unicode: "f39d" +version: "1.92" +--- + + + + + diff --git a/src/_icons/brand-tripadvisor.svg b/src/_icons/brand-tripadvisor.svg index 82b80c602..e1af70089 100644 --- a/src/_icons/brand-tripadvisor.svg +++ b/src/_icons/brand-tripadvisor.svg @@ -5,8 +5,8 @@ category: Brand unicode: "f002" --- - - + + diff --git a/src/_icons/brand-twilio.svg b/src/_icons/brand-twilio.svg new file mode 100644 index 000000000..3ad44a238 --- /dev/null +++ b/src/_icons/brand-twilio.svg @@ -0,0 +1,12 @@ +--- +category: Brand +unicode: "f617" +version: "1.115" +--- + + + + + + + diff --git a/src/_icons/brand-twitch.svg b/src/_icons/brand-twitch.svg index 239b1d7fc..3c94dd760 100644 --- a/src/_icons/brand-twitch.svg +++ b/src/_icons/brand-twitch.svg @@ -6,6 +6,6 @@ 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 new file mode 100644 index 000000000..dbae2cb2d --- /dev/null +++ b/src/_icons/brand-typescript.svg @@ -0,0 +1,11 @@ +--- +category: Brand +unicode: "f5f1" +version: "1.113" +--- + + + + + + diff --git a/src/_icons/brand-uber.svg b/src/_icons/brand-uber.svg index 8e51504e3..2f1657677 100644 --- a/src/_icons/brand-uber.svg +++ b/src/_icons/brand-uber.svg @@ -5,7 +5,7 @@ version: "1.45" unicode: "ef75" --- - - + + diff --git a/src/_icons/brand-ubuntu.svg b/src/_icons/brand-ubuntu.svg index 591718ff4..17d06f58e 100644 --- a/src/_icons/brand-ubuntu.svg +++ b/src/_icons/brand-ubuntu.svg @@ -5,8 +5,8 @@ version: "1.44" unicode: "ef59" --- - - - - + + + + diff --git a/src/_icons/brand-unity.svg b/src/_icons/brand-unity.svg index e0fdc55e8..b32a4af16 100644 --- a/src/_icons/brand-unity.svg +++ b/src/_icons/brand-unity.svg @@ -1,12 +1,13 @@ --- +tags: [engine, creation, 3d, 2d] category: Brand -version: "1.80" -unicode: "f2ac" +unicode: "f49d" +version: "1.96" --- - - - - - + + + + + diff --git a/src/_icons/brand-upwork.svg b/src/_icons/brand-upwork.svg new file mode 100644 index 000000000..a68d7201a --- /dev/null +++ b/src/_icons/brand-upwork.svg @@ -0,0 +1,9 @@ +--- +tags: [freelancer, software, finance] +category: Brand +unicode: "f39e" +version: "1.92" +--- + + + diff --git a/src/_icons/brand-valorant.svg b/src/_icons/brand-valorant.svg new file mode 100644 index 000000000..2834ccb9f --- /dev/null +++ b/src/_icons/brand-valorant.svg @@ -0,0 +1,10 @@ +--- +tags: [game, fps, videogame, shooter] +category: Brand +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 new file mode 100644 index 000000000..dda2dfecb --- /dev/null +++ b/src/_icons/brand-visa.svg @@ -0,0 +1,13 @@ +--- +tags: [payment, card, method, pay] +category: Brand +unicode: "f380" +version: "1.91" +--- + + + + + + + diff --git a/src/_icons/brand-vite.svg b/src/_icons/brand-vite.svg new file mode 100644 index 000000000..9ad311791 --- /dev/null +++ b/src/_icons/brand-vite.svg @@ -0,0 +1,9 @@ +--- +category: Brand +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 new file mode 100644 index 000000000..f521e1248 --- /dev/null +++ b/src/_icons/brand-volkswagen.svg @@ -0,0 +1,11 @@ +--- +tags: [car, vehicle, transportation, van, traveling] +category: Brand +version: "1.102" +unicode: "f50e" +--- + + + + + diff --git a/src/_icons/brand-vsco.svg b/src/_icons/brand-vsco.svg new file mode 100644 index 000000000..6f055758e --- /dev/null +++ b/src/_icons/brand-vsco.svg @@ -0,0 +1,18 @@ +--- +tags: [photography, image, application] +category: Brand +unicode: "f334" +version: "1.86" +--- + + + + + + + + + + + + diff --git a/src/_icons/brand-vscode.svg b/src/_icons/brand-vscode.svg new file mode 100644 index 000000000..f8c925162 --- /dev/null +++ b/src/_icons/brand-vscode.svg @@ -0,0 +1,11 @@ +--- +tags: [code, editor, software] +category: Brand +unicode: "f3a0" +version: "1.92" +--- + + + + + diff --git a/src/_icons/brand-vue.svg b/src/_icons/brand-vue.svg index 3ce08e729..95347cebf 100644 --- a/src/_icons/brand-vue.svg +++ b/src/_icons/brand-vue.svg @@ -5,6 +5,6 @@ version: "1.64" unicode: "f0e0" --- - - + + diff --git a/src/_icons/brand-waze.svg b/src/_icons/brand-waze.svg new file mode 100644 index 000000000..8d0ce7852 --- /dev/null +++ b/src/_icons/brand-waze.svg @@ -0,0 +1,13 @@ +--- +category: Brand +unicode: "f5d8" +version: "1.112" +--- + + + + + + + + diff --git a/src/_icons/brand-webflow.svg b/src/_icons/brand-webflow.svg index d2a871e78..b30993613 100644 --- a/src/_icons/brand-webflow.svg +++ b/src/_icons/brand-webflow.svg @@ -1,8 +1,9 @@ --- +tags: [web, website, creation] category: Brand version: "1.82" unicode: "f2d2" --- - + diff --git a/src/_icons/brand-wechat.svg b/src/_icons/brand-wechat.svg new file mode 100644 index 000000000..ba628441a --- /dev/null +++ b/src/_icons/brand-wechat.svg @@ -0,0 +1,13 @@ +--- +category: Brand +unicode: "f5f3" +version: "1.113" +--- + + + + + + + + diff --git a/src/_icons/brand-weibo.svg b/src/_icons/brand-weibo.svg new file mode 100644 index 000000000..893695ad1 --- /dev/null +++ b/src/_icons/brand-weibo.svg @@ -0,0 +1,9 @@ +--- +category: Brand +unicode: "f609" +version: "1.114" +--- + + + + diff --git a/src/_icons/brand-windows.svg b/src/_icons/brand-windows.svg index 3bdc63533..99eaacdd4 100644 --- a/src/_icons/brand-windows.svg +++ b/src/_icons/brand-windows.svg @@ -1,11 +1,11 @@ --- -tags: [logo, system, OS, computer, Microsoft] +tags: [logo, system, os, computer, microsoft] category: Brand version: "1.20" unicode: "ecd8" --- - - + + diff --git a/src/_icons/brand-windy.svg b/src/_icons/brand-windy.svg new file mode 100644 index 000000000..7903ca9de --- /dev/null +++ b/src/_icons/brand-windy.svg @@ -0,0 +1,10 @@ +--- +tags: [weather, sun, cold, hot, rain, forecast ] +category: Brand +unicode: "f4dd" +version: "1.99" +--- + + + + diff --git a/src/_icons/brand-wish.svg b/src/_icons/brand-wish.svg index 7fe4538cb..4f9201838 100644 --- a/src/_icons/brand-wish.svg +++ b/src/_icons/brand-wish.svg @@ -6,5 +6,5 @@ unicode: "f212" --- - + diff --git a/src/_icons/brand-wix.svg b/src/_icons/brand-wix.svg new file mode 100644 index 000000000..46a6c118d --- /dev/null +++ b/src/_icons/brand-wix.svg @@ -0,0 +1,13 @@ +--- +tags: [logo, maker, web, website] +category: Brand +unicode: "f3a1" +version: "1.92" +--- + + + + + + + diff --git a/src/_icons/brand-wordpress.svg b/src/_icons/brand-wordpress.svg index ccab2c602..dd89f1d13 100644 --- a/src/_icons/brand-wordpress.svg +++ b/src/_icons/brand-wordpress.svg @@ -1,14 +1,14 @@ --- +tags: [logotype, web, website, glyph, social] category: Brand version: "1.82" unicode: "f2d3" --- - - - - - - - + + + + + + diff --git a/src/_icons/brand-xbox.svg b/src/_icons/brand-xbox.svg index ca8a4b793..2990f3e62 100644 --- a/src/_icons/brand-xbox.svg +++ b/src/_icons/brand-xbox.svg @@ -1,10 +1,11 @@ --- +tags: [game, console, videogame, controller] category: Brand version: "1.79" unicode: "f298" --- - + diff --git a/src/_icons/brand-yahoo.svg b/src/_icons/brand-yahoo.svg index 6e7b8fec9..c78feb32a 100644 --- a/src/_icons/brand-yahoo.svg +++ b/src/_icons/brand-yahoo.svg @@ -5,11 +5,11 @@ 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..4d879acd6 100644 --- a/src/_icons/brand-ycombinator.svg +++ b/src/_icons/brand-ycombinator.svg @@ -5,7 +5,7 @@ version: "1.36" unicode: "edd9" --- - - - + + + diff --git a/src/_icons/brand-youtube-kids.svg b/src/_icons/brand-youtube-kids.svg index 1ad249cb9..92854f52c 100644 --- a/src/_icons/brand-youtube-kids.svg +++ b/src/_icons/brand-youtube-kids.svg @@ -5,6 +5,6 @@ version: "1.71" unicode: "f214" --- - + diff --git a/src/_icons/brand-youtube.svg b/src/_icons/brand-youtube.svg index 6cf0d14dc..120ffca71 100644 --- a/src/_icons/brand-youtube.svg +++ b/src/_icons/brand-youtube.svg @@ -5,6 +5,6 @@ version: "1.15" unicode: "ec90" --- - + diff --git a/src/_icons/brand-zalando.svg b/src/_icons/brand-zalando.svg new file mode 100644 index 000000000..e50e796dd --- /dev/null +++ b/src/_icons/brand-zalando.svg @@ -0,0 +1,9 @@ +--- +tags: [footwear, shoes, clotches, app, online, shop ] +category: Brand +unicode: "f49e" +version: "1.96" +--- + + + diff --git a/src/_icons/brand-zapier.svg b/src/_icons/brand-zapier.svg new file mode 100644 index 000000000..cfc2816b4 --- /dev/null +++ b/src/_icons/brand-zapier.svg @@ -0,0 +1,16 @@ +--- +tags: [automated, create, app, buissnes ] +category: Brand +unicode: "f49f" +version: "1.96" +--- + + + + + + + + + + diff --git a/src/_icons/brand-zeit.svg b/src/_icons/brand-zeit.svg new file mode 100644 index 000000000..db0179412 --- /dev/null +++ b/src/_icons/brand-zeit.svg @@ -0,0 +1,9 @@ +--- +tags: [consulting, software] +category: Brand +unicode: "f335" +version: "1.86" +--- + + + diff --git a/src/_icons/brand-zhihu.svg b/src/_icons/brand-zhihu.svg new file mode 100644 index 000000000..7a024d424 --- /dev/null +++ b/src/_icons/brand-zhihu.svg @@ -0,0 +1,13 @@ +--- +category: Brand +unicode: "f60a" +version: "1.114" +--- + + + + + + + + diff --git a/src/_icons/brand-zoom.svg b/src/_icons/brand-zoom.svg index 3a4805b2e..7e0f8f40f 100644 --- a/src/_icons/brand-zoom.svg +++ b/src/_icons/brand-zoom.svg @@ -6,5 +6,5 @@ unicode: "f215" --- - + diff --git a/src/_icons/brand-zulip.svg b/src/_icons/brand-zulip.svg new file mode 100644 index 000000000..9ca02ce45 --- /dev/null +++ b/src/_icons/brand-zulip.svg @@ -0,0 +1,10 @@ +--- +tags: [chat, software, phyton, javascript] +category: Brand +unicode: "f4de" +version: "1.99" +--- + + + + diff --git a/src/_icons/bread-off.svg b/src/_icons/bread-off.svg new file mode 100644 index 000000000..a170e2307 --- /dev/null +++ b/src/_icons/bread-off.svg @@ -0,0 +1,10 @@ +--- +tags: [food, breakfast, sandwich, toast, baking] +category: Food +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 new file mode 100644 index 000000000..8ea54a586 --- /dev/null +++ b/src/_icons/briefcase-off.svg @@ -0,0 +1,12 @@ +--- +tags: [bag, baggage, folder, carrier, documents] +unicode: "f3cc" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/briefcase.svg b/src/_icons/briefcase.svg index 006ad2b9b..0a015743e 100644 --- a/src/_icons/briefcase.svg +++ b/src/_icons/briefcase.svg @@ -4,8 +4,8 @@ version: "1.0" unicode: "ea46" --- - + - + diff --git a/src/_icons/brightness-2.svg b/src/_icons/brightness-2.svg index 63eccc58c..1856b0c0d 100644 --- a/src/_icons/brightness-2.svg +++ b/src/_icons/brightness-2.svg @@ -5,6 +5,6 @@ version: "1.39" unicode: "ee19" --- - + diff --git a/src/_icons/brightness-down.svg b/src/_icons/brightness-down.svg index 7e5593e35..3bbaf8fdd 100644 --- a/src/_icons/brightness-down.svg +++ b/src/_icons/brightness-down.svg @@ -5,13 +5,13 @@ version: "1.3" unicode: "eb7d" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/brightness-off.svg b/src/_icons/brightness-off.svg new file mode 100644 index 000000000..42934d9a5 --- /dev/null +++ b/src/_icons/brightness-off.svg @@ -0,0 +1,14 @@ +--- +tags: [light, dark, screen] +category: Photography +unicode: "f3cd" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/brightness-up.svg b/src/_icons/brightness-up.svg index 8f4e628b8..8dbbfdc8d 100644 --- a/src/_icons/brightness-up.svg +++ b/src/_icons/brightness-up.svg @@ -5,13 +5,13 @@ version: "1.3" unicode: "eb7e" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/brightness.svg b/src/_icons/brightness.svg index d143d34a5..fd7c4d807 100644 --- a/src/_icons/brightness.svg +++ b/src/_icons/brightness.svg @@ -5,9 +5,9 @@ version: "1.3" unicode: "eb7f" --- - - - - - + + + + + diff --git a/src/_icons/broadcast-off.svg b/src/_icons/broadcast-off.svg index 8e9111d07..946de2312 100644 --- a/src/_icons/broadcast-off.svg +++ b/src/_icons/broadcast-off.svg @@ -1,12 +1,12 @@ --- -tags: [communication, tv, signal, media, sound, connection, network] +tags: [communication, tv, signal, media, sound, connection, network ] category: Devices version: "1.69" unicode: "f1e8" --- - + diff --git a/src/_icons/broadcast.svg b/src/_icons/broadcast.svg index b0ae1e277..5b9735d8d 100644 --- a/src/_icons/broadcast.svg +++ b/src/_icons/broadcast.svg @@ -7,5 +7,5 @@ unicode: "f1e9" - + diff --git a/src/_icons/browser-check.svg b/src/_icons/browser-check.svg index ffba5bf49..1f23a9786 100644 --- a/src/_icons/browser-check.svg +++ b/src/_icons/browser-check.svg @@ -5,7 +5,7 @@ version: "1.51" unicode: "efd6" --- - + diff --git a/src/_icons/browser-off.svg b/src/_icons/browser-off.svg index e19d112fe..fd49addad 100644 --- a/src/_icons/browser-off.svg +++ b/src/_icons/browser-off.svg @@ -5,7 +5,7 @@ version: "1.63" unicode: "f0c1" --- - + diff --git a/src/_icons/browser-plus.svg b/src/_icons/browser-plus.svg index 720674160..e9a65731e 100644 --- a/src/_icons/browser-plus.svg +++ b/src/_icons/browser-plus.svg @@ -5,7 +5,7 @@ version: "1.51" unicode: "efd7" --- - + diff --git a/src/_icons/browser-x.svg b/src/_icons/browser-x.svg index cb84a9850..71d3c5e79 100644 --- a/src/_icons/browser-x.svg +++ b/src/_icons/browser-x.svg @@ -5,7 +5,7 @@ version: "1.51" unicode: "efd8" --- - + diff --git a/src/_icons/browser.svg b/src/_icons/browser.svg index 7c339af58..3278d457d 100644 --- a/src/_icons/browser.svg +++ b/src/_icons/browser.svg @@ -5,7 +5,7 @@ version: "1.5" unicode: "ebb7" --- - - - + + + diff --git a/src/_icons/brush-off.svg b/src/_icons/brush-off.svg index 58a465acd..a4f7a5ea1 100644 --- a/src/_icons/brush-off.svg +++ b/src/_icons/brush-off.svg @@ -1,12 +1,12 @@ --- -tags: [paint, art, picture, paintbrush, painter] +tags: [paint, art, picture, paintbrush, painter, theme] category: Design version: "1.63" unicode: "f0c2" --- - - + + diff --git a/src/_icons/brush.svg b/src/_icons/brush.svg index 3779809ce..a1ae4743f 100644 --- a/src/_icons/brush.svg +++ b/src/_icons/brush.svg @@ -1,6 +1,6 @@ --- category: Design -tags: [paint, art, picture, paintbrush, painter] +tags: [paint, art, picture, paintbrush, painter, theme] version: "1.5" unicode: "ebb8" --- diff --git a/src/_icons/bucket-droplet.svg b/src/_icons/bucket-droplet.svg new file mode 100644 index 000000000..d9389c680 --- /dev/null +++ b/src/_icons/bucket-droplet.svg @@ -0,0 +1,11 @@ +--- +tags: [water, liquid, drop, tool, fill ] +category: Design +unicode: "f56a" +version: "1.107" +--- + + + + + diff --git a/src/_icons/bucket-off.svg b/src/_icons/bucket-off.svg index 4b1d51d8c..d8578a037 100644 --- a/src/_icons/bucket-off.svg +++ b/src/_icons/bucket-off.svg @@ -2,9 +2,10 @@ tags: [collection, container, water, liquid] version: "1.65" unicode: "f103" +category: Design --- - - + + diff --git a/src/_icons/bucket.svg b/src/_icons/bucket.svg index 9e67fd558..537c7b081 100644 --- a/src/_icons/bucket.svg +++ b/src/_icons/bucket.svg @@ -2,8 +2,9 @@ tags: [collection, container, water, liquid] version: "1.0" unicode: "ea47" +category: Design --- - - + + diff --git a/src/_icons/bug-off.svg b/src/_icons/bug-off.svg index e7d908dde..08e6fd8df 100644 --- a/src/_icons/bug-off.svg +++ b/src/_icons/bug-off.svg @@ -6,7 +6,7 @@ unicode: "f0c3" --- - + diff --git a/src/_icons/bug.svg b/src/_icons/bug.svg index 4b86452a3..bc19b083a 100644 --- a/src/_icons/bug.svg +++ b/src/_icons/bug.svg @@ -7,11 +7,11 @@ unicode: "ea48" - - - - - - - + + + + + + + diff --git a/src/_icons/building-arch.svg b/src/_icons/building-arch.svg index e49d96480..553b0f436 100644 --- a/src/_icons/building-arch.svg +++ b/src/_icons/building-arch.svg @@ -5,7 +5,7 @@ version: "1.1" unicode: "ea49" --- - + diff --git a/src/_icons/building-bank.svg b/src/_icons/building-bank.svg index 404c386f0..f8f1380be 100644 --- a/src/_icons/building-bank.svg +++ b/src/_icons/building-bank.svg @@ -5,12 +5,12 @@ version: "1.7" unicode: "ebe2" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/building-bridge.svg b/src/_icons/building-bridge.svg index b37abe7f0..2d08be506 100644 --- a/src/_icons/building-bridge.svg +++ b/src/_icons/building-bridge.svg @@ -5,9 +5,9 @@ version: "1.1" unicode: "ea4b" --- - - - + + + - + diff --git a/src/_icons/building-broadcast-tower.svg b/src/_icons/building-broadcast-tower.svg new file mode 100644 index 000000000..c55f43605 --- /dev/null +++ b/src/_icons/building-broadcast-tower.svg @@ -0,0 +1,13 @@ +--- +tags: [communication, internet, signal ] +category: Buildings +unicode: "f4be" +version: "1.98" +--- + + + + + + + diff --git a/src/_icons/building-carousel.svg b/src/_icons/building-carousel.svg index 220d969d0..cc3a83bd8 100644 --- a/src/_icons/building-carousel.svg +++ b/src/_icons/building-carousel.svg @@ -5,11 +5,11 @@ version: "1.34" unicode: "ed87" --- - - - - - - + + + + + + diff --git a/src/_icons/building-castle.svg b/src/_icons/building-castle.svg index d56a23ce7..af2b527ce 100644 --- a/src/_icons/building-castle.svg +++ b/src/_icons/building-castle.svg @@ -6,5 +6,5 @@ unicode: "ed88" --- - + diff --git a/src/_icons/building-church.svg b/src/_icons/building-church.svg index 4f2fb02e4..93266fb24 100644 --- a/src/_icons/building-church.svg +++ b/src/_icons/building-church.svg @@ -5,9 +5,9 @@ version: "1.1" unicode: "ea4c" --- - + - - + + diff --git a/src/_icons/building-circus.svg b/src/_icons/building-circus.svg new file mode 100644 index 000000000..2b43f9909 --- /dev/null +++ b/src/_icons/building-circus.svg @@ -0,0 +1,14 @@ +--- +tags: [tent, show, carnival, clown ] +category: Buildings +unicode: "f4bf" +version: "1.98" +--- + + + + + + + + diff --git a/src/_icons/building-community.svg b/src/_icons/building-community.svg index 3973ac27a..c82bc22ce 100644 --- a/src/_icons/building-community.svg +++ b/src/_icons/building-community.svg @@ -6,8 +6,8 @@ unicode: "ebf6" --- - - - - + + + + diff --git a/src/_icons/building-cottage.svg b/src/_icons/building-cottage.svg index 873ccebd4..b3a79b3aa 100644 --- a/src/_icons/building-cottage.svg +++ b/src/_icons/building-cottage.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "ee1b" --- - + - + diff --git a/src/_icons/building-estate.svg b/src/_icons/building-estate.svg new file mode 100644 index 000000000..2e5e2c8ea --- /dev/null +++ b/src/_icons/building-estate.svg @@ -0,0 +1,15 @@ +--- +tags: [office, property, work, architecture] +category: Buildings +unicode: "f5a5" +version: "1.110" +--- + + + + + + + + + diff --git a/src/_icons/building-factory.svg b/src/_icons/building-factory.svg index 73ea6b7ec..088aec605 100644 --- a/src/_icons/building-factory.svg +++ b/src/_icons/building-factory.svg @@ -8,5 +8,5 @@ unicode: "ee1c" - + diff --git a/src/_icons/building-hospital.svg b/src/_icons/building-hospital.svg index ac820b489..196d8a730 100644 --- a/src/_icons/building-hospital.svg +++ b/src/_icons/building-hospital.svg @@ -5,9 +5,9 @@ version: "1.1" unicode: "ea4d" --- - + - - + + diff --git a/src/_icons/building-lighthouse.svg b/src/_icons/building-lighthouse.svg index 50509376d..1aca5b2bd 100644 --- a/src/_icons/building-lighthouse.svg +++ b/src/_icons/building-lighthouse.svg @@ -6,7 +6,7 @@ unicode: "ed8a" --- - + diff --git a/src/_icons/building-monument.svg b/src/_icons/building-monument.svg index 3af4786bf..421855ea9 100644 --- a/src/_icons/building-monument.svg +++ b/src/_icons/building-monument.svg @@ -7,5 +7,5 @@ unicode: "ed26" - + diff --git a/src/_icons/building-pavilion.svg b/src/_icons/building-pavilion.svg new file mode 100644 index 000000000..c705f2de4 --- /dev/null +++ b/src/_icons/building-pavilion.svg @@ -0,0 +1,12 @@ +--- +tags: [place, party, residence, ornamentation] +category: Buildings +version: "1.8" +unicode: "ebf7" +--- + + + + + + diff --git a/src/_icons/building-pavilon.svg b/src/_icons/building-pavilon.svg deleted file mode 100644 index e7d1a4e44..000000000 --- a/src/_icons/building-pavilon.svg +++ /dev/null @@ -1,12 +0,0 @@ ---- -tags: [place, party, residence, ornamentation] -category: Buildings -version: "1.8" -unicode: "ebf7" ---- - - - - - - diff --git a/src/_icons/building-skyscraper.svg b/src/_icons/building-skyscraper.svg index a0fd0a852..0681ae6d6 100644 --- a/src/_icons/building-skyscraper.svg +++ b/src/_icons/building-skyscraper.svg @@ -5,11 +5,11 @@ version: "1.8" unicode: "ec39" --- - + - - - - + + + + diff --git a/src/_icons/building-stadium.svg b/src/_icons/building-stadium.svg new file mode 100644 index 000000000..894fea4b4 --- /dev/null +++ b/src/_icons/building-stadium.svg @@ -0,0 +1,11 @@ +--- +category: Buildings +unicode: "f641" +version: "1.118" +--- + + + + + + diff --git a/src/_icons/building-store.svg b/src/_icons/building-store.svg index 38ccb8f5b..2db9882bd 100644 --- a/src/_icons/building-store.svg +++ b/src/_icons/building-store.svg @@ -5,9 +5,9 @@ version: "1.1" unicode: "ea4e" --- - + - - + + diff --git a/src/_icons/building-tunnel.svg b/src/_icons/building-tunnel.svg new file mode 100644 index 000000000..02e870fc2 --- /dev/null +++ b/src/_icons/building-tunnel.svg @@ -0,0 +1,17 @@ +--- +tags: [train, road, underground, subway] +category: Buildings +unicode: "f5a6" +version: "1.110" +--- + + + + + + + + + + + diff --git a/src/_icons/building-wind-turbine.svg b/src/_icons/building-wind-turbine.svg new file mode 100644 index 000000000..528845a45 --- /dev/null +++ b/src/_icons/building-wind-turbine.svg @@ -0,0 +1,15 @@ +--- +tags: [power, ecology, electricy, energy ] +category: Buildings +unicode: "f4c0" +version: "1.98" +--- + + + + + + + + + diff --git a/src/_icons/building.svg b/src/_icons/building.svg index 6687b5211..8028f6d34 100644 --- a/src/_icons/building.svg +++ b/src/_icons/building.svg @@ -5,12 +5,12 @@ 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..0f191aa6d --- /dev/null +++ b/src/_icons/bulb-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f66a" +--- + + + diff --git a/src/_icons/bulb.svg b/src/_icons/bulb.svg index 4a0798e9e..867ee6d0e 100644 --- a/src/_icons/bulb.svg +++ b/src/_icons/bulb.svg @@ -6,5 +6,5 @@ unicode: "ea51" - + diff --git a/src/_icons/bulldozer.svg b/src/_icons/bulldozer.svg index 47e28d9e3..a6634d01d 100644 --- a/src/_icons/bulldozer.svg +++ b/src/_icons/bulldozer.svg @@ -5,12 +5,12 @@ version: "1.34" unicode: "ee1d" --- - - + + - - + + - + diff --git a/src/_icons/bus-off.svg b/src/_icons/bus-off.svg new file mode 100644 index 000000000..86f832f22 --- /dev/null +++ b/src/_icons/bus-off.svg @@ -0,0 +1,16 @@ +--- +tags: [vehicle, drive, driver, engine, motor, journey, trip] +category: Vehicles +unicode: "f3ce" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/bus-stop.svg b/src/_icons/bus-stop.svg index fbfeeee40..9e898209a 100644 --- a/src/_icons/bus-stop.svg +++ b/src/_icons/bus-stop.svg @@ -1,11 +1,12 @@ --- +tags: [transport, station, city, travel] category: Vehicles version: "1.82" unicode: "f2d4" --- - - + + diff --git a/src/_icons/bus.svg b/src/_icons/bus.svg index ea2a385fb..64711bc1f 100644 --- a/src/_icons/bus.svg +++ b/src/_icons/bus.svg @@ -5,11 +5,11 @@ version: "1.7" unicode: "ebe4" --- - - + + - - - - + + + + diff --git a/src/_icons/businessplan.svg b/src/_icons/businessplan.svg index 9577bc52e..eea03a5e6 100644 --- a/src/_icons/businessplan.svg +++ b/src/_icons/businessplan.svg @@ -4,7 +4,7 @@ version: "1.39" unicode: "ee1e" --- - + diff --git a/src/_icons/butterfly.svg b/src/_icons/butterfly.svg index 9fb8a3c11..90188f6ad 100644 --- a/src/_icons/butterfly.svg +++ b/src/_icons/butterfly.svg @@ -5,7 +5,7 @@ category: Nature unicode: "efd9" --- - + diff --git a/src/_icons/cactus-off.svg b/src/_icons/cactus-off.svg new file mode 100644 index 000000000..944147550 --- /dev/null +++ b/src/_icons/cactus-off.svg @@ -0,0 +1,13 @@ +--- +tags: [plant, desert, spikes, nature, garden] +category: Nature +unicode: "f3cf" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/cake-off.svg b/src/_icons/cake-off.svg index e1e49ff57..c0c2c8ed5 100644 --- a/src/_icons/cake-off.svg +++ b/src/_icons/cake-off.svg @@ -5,7 +5,7 @@ unicode: "f104" --- - + diff --git a/src/_icons/cake.svg b/src/_icons/cake.svg index bfdc2a54c..60febe72a 100644 --- a/src/_icons/cake.svg +++ b/src/_icons/cake.svg @@ -5,6 +5,6 @@ unicode: "f00f" --- - + diff --git a/src/_icons/calculator.svg b/src/_icons/calculator.svg index 4e95d704e..842eddb90 100644 --- a/src/_icons/calculator.svg +++ b/src/_icons/calculator.svg @@ -4,12 +4,12 @@ version: "1.3" unicode: "eb80" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/calendar-due.svg b/src/_icons/calendar-due.svg new file mode 100644 index 000000000..4d1a9e3ac --- /dev/null +++ b/src/_icons/calendar-due.svg @@ -0,0 +1,11 @@ +--- +unicode: "f621" +version: "1.116" +--- + + + + + + + diff --git a/src/_icons/calendar-event.svg b/src/_icons/calendar-event.svg index 42c773b08..b85c420d3 100644 --- a/src/_icons/calendar-event.svg +++ b/src/_icons/calendar-event.svg @@ -1,13 +1,13 @@ --- category: System -tags: [date, day, plan, schedule, agenda] +tags: [date, day, plan, schedule, agenda, calender] version: "1.1" unicode: "ea52" --- - - - - - + + + + + diff --git a/src/_icons/calendar-minus.svg b/src/_icons/calendar-minus.svg index 3e1c63aed..5b96a6005 100644 --- a/src/_icons/calendar-minus.svg +++ b/src/_icons/calendar-minus.svg @@ -1,13 +1,13 @@ --- category: System -tags: [date, day, plan, schedule, agenda] +tags: [date, day, plan, schedule, agenda, calender] version: "1.5" unicode: "ebb9" --- - - - - - + + + + + diff --git a/src/_icons/calendar-off.svg b/src/_icons/calendar-off.svg index 682e85c0c..5bf441551 100644 --- a/src/_icons/calendar-off.svg +++ b/src/_icons/calendar-off.svg @@ -1,15 +1,15 @@ --- +tags: [date, day, plan, schedule, agenda, calender] category: System -tags: [unavailable, unavailability, leave, plan, schedule, busy, date, month, year, meeting] version: "1.39" unicode: "ee1f" --- - - + + - - - + + + diff --git a/src/_icons/calendar-plus.svg b/src/_icons/calendar-plus.svg index 6c2476e21..ab7a008e4 100644 --- a/src/_icons/calendar-plus.svg +++ b/src/_icons/calendar-plus.svg @@ -1,14 +1,14 @@ --- category: System -tags: [date, day, plan, schedule, agenda, add] +tags: [date, day, plan, schedule, agenda, add, calender] version: "1.5" unicode: "ebba" --- - - - - - - + + + + + + diff --git a/src/_icons/calendar-stats.svg b/src/_icons/calendar-stats.svg index f3c793c8a..2687af686 100644 --- a/src/_icons/calendar-stats.svg +++ b/src/_icons/calendar-stats.svg @@ -1,13 +1,13 @@ --- category: System -tags: [plan, timetable, schedule, meeting, busy, month, year, date, statistics] +tags: [plan, timetable, schedule, meeting, busy, month, year, date, statistics, calender] version: "1.39" unicode: "ee20" --- - + diff --git a/src/_icons/calendar-time.svg b/src/_icons/calendar-time.svg index 147d445ad..46cf0278b 100644 --- a/src/_icons/calendar-time.svg +++ b/src/_icons/calendar-time.svg @@ -1,12 +1,12 @@ --- category: System -tags: [plan, timetable, schedule, meeting, busy, month, year, date] +tags: [plan, timetable, schedule, meeting, busy, month, year, date, calender] version: "1.39" unicode: "ee21" --- - + diff --git a/src/_icons/calendar.svg b/src/_icons/calendar.svg index 9297f69cb..cd01a1171 100644 --- a/src/_icons/calendar.svg +++ b/src/_icons/calendar.svg @@ -1,14 +1,14 @@ --- category: System -tags: [date, day, plan, schedule, agenda] +tags: [date, day, plan, schedule, agenda, calender] version: "1.0" unicode: "ea53" --- - - - - - - + + + + + + diff --git a/src/_icons/camera-minus.svg b/src/_icons/camera-minus.svg index bc72d4e47..4f59f8c43 100644 --- a/src/_icons/camera-minus.svg +++ b/src/_icons/camera-minus.svg @@ -5,7 +5,7 @@ version: "1.11" unicode: "ec3a" --- - + - + diff --git a/src/_icons/camera-off.svg b/src/_icons/camera-off.svg index 973ffca72..e29493e46 100644 --- a/src/_icons/camera-off.svg +++ b/src/_icons/camera-off.svg @@ -1,11 +1,11 @@ --- -category: Media tags: [video, photo, aperture] +category: Media version: "1.22" unicode: "ecee" --- - + diff --git a/src/_icons/camera-plus.svg b/src/_icons/camera-plus.svg index 506b4b3f2..f7aa257f8 100644 --- a/src/_icons/camera-plus.svg +++ b/src/_icons/camera-plus.svg @@ -5,8 +5,8 @@ version: "1.11" unicode: "ec3b" --- - + - - + + diff --git a/src/_icons/camera-selfie.svg b/src/_icons/camera-selfie.svg index 2d91fc7c7..2ce2ea577 100644 --- a/src/_icons/camera-selfie.svg +++ b/src/_icons/camera-selfie.svg @@ -7,6 +7,6 @@ unicode: "ee23" - - + + diff --git a/src/_icons/camera.svg b/src/_icons/camera.svg index d00e54e8e..4cfac4018 100644 --- a/src/_icons/camera.svg +++ b/src/_icons/camera.svg @@ -6,5 +6,5 @@ unicode: "ea54" --- - + diff --git a/src/_icons/campfire.svg b/src/_icons/campfire.svg new file mode 100644 index 000000000..4c0826056 --- /dev/null +++ b/src/_icons/campfire.svg @@ -0,0 +1,10 @@ +--- +tags: [camping, bonfire, wood, camp, burn, flame ] +unicode: "f5a7" +version: "1.110" +--- + + + + + diff --git a/src/_icons/candy-off.svg b/src/_icons/candy-off.svg index 1270c596f..957ea2482 100644 --- a/src/_icons/candy-off.svg +++ b/src/_icons/candy-off.svg @@ -5,7 +5,7 @@ version: "1.63" unicode: "f0c5" --- - + diff --git a/src/_icons/cane.svg b/src/_icons/cane.svg new file mode 100644 index 000000000..d39bcd594 --- /dev/null +++ b/src/_icons/cane.svg @@ -0,0 +1,8 @@ +--- +tags: [candy, christmas, sweet, food, decoration] +version: "1.102" +unicode: "f50f" +--- + + + diff --git a/src/_icons/cannabis.svg b/src/_icons/cannabis.svg new file mode 100644 index 000000000..583f8ea87 --- /dev/null +++ b/src/_icons/cannabis.svg @@ -0,0 +1,9 @@ +--- +tags: [marijuana, weed, drug, cbd, medical ] +unicode: "f4c1" +version: "1.98" +--- + + + + diff --git a/src/_icons/capture.svg b/src/_icons/capture.svg index 4927b92d8..83c509074 100644 --- a/src/_icons/capture.svg +++ b/src/_icons/capture.svg @@ -9,5 +9,5 @@ unicode: "ec3c" - + diff --git a/src/_icons/car-crane.svg b/src/_icons/car-crane.svg index 7bff94e2f..c54951cf4 100644 --- a/src/_icons/car-crane.svg +++ b/src/_icons/car-crane.svg @@ -5,8 +5,8 @@ version: "1.41" unicode: "ef25" --- - - + + diff --git a/src/_icons/car-crash.svg b/src/_icons/car-crash.svg index 0cb4319e4..fe1dfbd90 100644 --- a/src/_icons/car-crash.svg +++ b/src/_icons/car-crash.svg @@ -5,7 +5,7 @@ version: "1.48" unicode: "efa4" --- - + diff --git a/src/_icons/car-off.svg b/src/_icons/car-off.svg index a41678316..bfa78a0a8 100644 --- a/src/_icons/car-off.svg +++ b/src/_icons/car-off.svg @@ -5,7 +5,7 @@ version: "1.63" unicode: "f0c7" --- - + diff --git a/src/_icons/car-turbine.svg b/src/_icons/car-turbine.svg new file mode 100644 index 000000000..0a2dcfbbf --- /dev/null +++ b/src/_icons/car-turbine.svg @@ -0,0 +1,17 @@ +--- +tags: [detail, service, mechanic, part, power] +category: Vehicles +unicode: "f4fd" +version: "1.101" +--- + + + + + + + + + + + diff --git a/src/_icons/car.svg b/src/_icons/car.svg index dc471249b..3edfd76a7 100644 --- a/src/_icons/car.svg +++ b/src/_icons/car.svg @@ -5,7 +5,7 @@ version: "1.5" unicode: "ebbb" --- - - + + diff --git a/src/_icons/caravan.svg b/src/_icons/caravan.svg index 26637580a..5acdc8b59 100644 --- a/src/_icons/caravan.svg +++ b/src/_icons/caravan.svg @@ -5,8 +5,8 @@ version: "1.14" unicode: "ec7c" --- - - + + - + diff --git a/src/_icons/cardboards-off.svg b/src/_icons/cardboards-off.svg index 99f4f3395..27684968b 100644 --- a/src/_icons/cardboards-off.svg +++ b/src/_icons/cardboards-off.svg @@ -6,7 +6,7 @@ unicode: "f0c8" --- - + diff --git a/src/_icons/cardboards.svg b/src/_icons/cardboards.svg index 43fad4661..ed33e694c 100644 --- a/src/_icons/cardboards.svg +++ b/src/_icons/cardboards.svg @@ -6,6 +6,6 @@ unicode: "ed74" --- - - + + diff --git a/src/_icons/cards.svg b/src/_icons/cards.svg new file mode 100644 index 000000000..159e044b0 --- /dev/null +++ b/src/_icons/cards.svg @@ -0,0 +1,10 @@ +--- +tags: [game, poker, credit, peyment, casino] +version: "1.102" +unicode: "f510" +--- + + + + + diff --git a/src/_icons/caret-down.svg b/src/_icons/caret-down.svg index 4f4d2358d..6f21b668e 100644 --- a/src/_icons/caret-down.svg +++ b/src/_icons/caret-down.svg @@ -5,5 +5,5 @@ version: "1.2" unicode: "eb5d" --- - + diff --git a/src/_icons/caret-left.svg b/src/_icons/caret-left.svg index fd02732d0..972319078 100644 --- a/src/_icons/caret-left.svg +++ b/src/_icons/caret-left.svg @@ -5,5 +5,5 @@ version: "1.2" unicode: "eb5e" --- - + diff --git a/src/_icons/caret-right.svg b/src/_icons/caret-right.svg index 5b3f93ce0..d0842260b 100644 --- a/src/_icons/caret-right.svg +++ b/src/_icons/caret-right.svg @@ -5,5 +5,5 @@ version: "1.2" unicode: "eb5f" --- - + diff --git a/src/_icons/caret-up.svg b/src/_icons/caret-up.svg index b7edcf209..8b93b97dd 100644 --- a/src/_icons/caret-up.svg +++ b/src/_icons/caret-up.svg @@ -5,5 +5,5 @@ version: "1.2" unicode: "eb60" --- - + diff --git a/src/_icons/carousel-horizontal.svg b/src/_icons/carousel-horizontal.svg new file mode 100644 index 000000000..50e2e037b --- /dev/null +++ b/src/_icons/carousel-horizontal.svg @@ -0,0 +1,9 @@ +--- +unicode: "f659" +version: "1.119" +--- + + + + + diff --git a/src/_icons/carousel-vertical.svg b/src/_icons/carousel-vertical.svg new file mode 100644 index 000000000..41831747a --- /dev/null +++ b/src/_icons/carousel-vertical.svg @@ -0,0 +1,9 @@ +--- +unicode: "f65a" +version: "1.119" +--- + + + + + diff --git a/src/_icons/carrot-off.svg b/src/_icons/carrot-off.svg new file mode 100644 index 000000000..b21273d4e --- /dev/null +++ b/src/_icons/carrot-off.svg @@ -0,0 +1,13 @@ +--- +tags: [food, healthy, rabbit, vegetable] +category: Food +unicode: "f3d0" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/carrot.svg b/src/_icons/carrot.svg index e628cc4d3..6d50a9bcf 100644 --- a/src/_icons/carrot.svg +++ b/src/_icons/carrot.svg @@ -5,7 +5,7 @@ version: "1.72" unicode: "f21c" --- - + diff --git a/src/_icons/cash-banknote-off.svg b/src/_icons/cash-banknote-off.svg index 54c195f24..fb34c7590 100644 --- a/src/_icons/cash-banknote-off.svg +++ b/src/_icons/cash-banknote-off.svg @@ -1,13 +1,13 @@ --- -category: E-commerce tags: [money, pay, bank, dollar, pound, bank, yen, business] +category: E-commerce version: "1.39" unicode: "ee24" --- - - - + + + diff --git a/src/_icons/cash-banknote.svg b/src/_icons/cash-banknote.svg index 1e42daf47..7d333c16c 100644 --- a/src/_icons/cash-banknote.svg +++ b/src/_icons/cash-banknote.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "ee25" --- - - - - + + + + diff --git a/src/_icons/cash.svg b/src/_icons/cash.svg index a71b60aed..947d2d59a 100644 --- a/src/_icons/cash.svg +++ b/src/_icons/cash.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea55" --- - - + + diff --git a/src/_icons/cast-off.svg b/src/_icons/cast-off.svg index 3c81ea6dd..f2b6c860a 100644 --- a/src/_icons/cast-off.svg +++ b/src/_icons/cast-off.svg @@ -8,6 +8,6 @@ unicode: "f0c9" - + diff --git a/src/_icons/cast.svg b/src/_icons/cast.svg index 6642270f8..854e0694c 100644 --- a/src/_icons/cast.svg +++ b/src/_icons/cast.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea56" --- - + diff --git a/src/_icons/cat.svg b/src/_icons/cat.svg new file mode 100644 index 000000000..b7c518c7c --- /dev/null +++ b/src/_icons/cat.svg @@ -0,0 +1,13 @@ +--- +category: Animals +unicode: "f65b" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/category-2.svg b/src/_icons/category-2.svg index d38c499ff..3fb6ac867 100644 --- a/src/_icons/category-2.svg +++ b/src/_icons/category-2.svg @@ -7,6 +7,6 @@ unicode: "f1f5" - - + + diff --git a/src/_icons/category.svg b/src/_icons/category.svg index b25898375..90358b280 100644 --- a/src/_icons/category.svg +++ b/src/_icons/category.svg @@ -8,5 +8,5 @@ unicode: "f1f6" - + diff --git a/src/_icons/ce-off.svg b/src/_icons/ce-off.svg index 2495c2b1e..ca64d52d7 100644 --- a/src/_icons/ce-off.svg +++ b/src/_icons/ce-off.svg @@ -7,7 +7,7 @@ unicode: "f0ca" - + diff --git a/src/_icons/ce.svg b/src/_icons/ce.svg index 4eae45e37..c49e52a54 100644 --- a/src/_icons/ce.svg +++ b/src/_icons/ce.svg @@ -7,5 +7,5 @@ unicode: "ed75" - + diff --git a/src/_icons/cell-signal-off.svg b/src/_icons/cell-signal-off.svg index 0dec8ec16..053872ee8 100644 --- a/src/_icons/cell-signal-off.svg +++ b/src/_icons/cell-signal-off.svg @@ -5,6 +5,6 @@ category: Devices unicode: "f088" --- - + diff --git a/src/_icons/certificate-2-off.svg b/src/_icons/certificate-2-off.svg index fb62eeddf..99039c6c2 100644 --- a/src/_icons/certificate-2-off.svg +++ b/src/_icons/certificate-2-off.svg @@ -1,5 +1,6 @@ --- tags: [award, license, document, achievement, course, complete] +category: Document version: "1.63" unicode: "f0cb" --- diff --git a/src/_icons/certificate-2.svg b/src/_icons/certificate-2.svg index 00a2da6d6..5434f5690 100644 --- a/src/_icons/certificate-2.svg +++ b/src/_icons/certificate-2.svg @@ -5,7 +5,7 @@ version: "1.59" unicode: "f073" --- - + diff --git a/src/_icons/certificate.svg b/src/_icons/certificate.svg index 1c3cb6fd5..ca52b61be 100644 --- a/src/_icons/certificate.svg +++ b/src/_icons/certificate.svg @@ -5,10 +5,10 @@ version: "1.33" unicode: "ed76" --- - + - - - + + + diff --git a/src/_icons/chair-director.svg b/src/_icons/chair-director.svg index 54103e114..be8b522ba 100644 --- a/src/_icons/chair-director.svg +++ b/src/_icons/chair-director.svg @@ -1,4 +1,5 @@ --- +tags: [film, seat, furniture, interior] version: "1.82" unicode: "f2d5" --- diff --git a/src/_icons/chalkboard-off.svg b/src/_icons/chalkboard-off.svg new file mode 100644 index 000000000..7a0a0b3bd --- /dev/null +++ b/src/_icons/chalkboard-off.svg @@ -0,0 +1,11 @@ +--- +tags: [school, classroom, education, learn] +category: Document +unicode: "f3d1" +version: "1.94" +--- + + + + + diff --git a/src/_icons/chalkboard.svg b/src/_icons/chalkboard.svg new file mode 100644 index 000000000..3b18c25d0 --- /dev/null +++ b/src/_icons/chalkboard.svg @@ -0,0 +1,10 @@ +--- +tags: [school, classroom, education, learn] +category: Document +unicode: "f34d" +version: "1.88" +--- + + + + diff --git a/src/_icons/charging-pile.svg b/src/_icons/charging-pile.svg index a45c8c58b..e621e3137 100644 --- a/src/_icons/charging-pile.svg +++ b/src/_icons/charging-pile.svg @@ -5,10 +5,10 @@ version: "1.39" unicode: "ee26" --- - + - - + + diff --git a/src/_icons/chart-arcs-3.svg b/src/_icons/chart-arcs-3.svg index 417d7ef08..61279c7b0 100644 --- a/src/_icons/chart-arcs-3.svg +++ b/src/_icons/chart-arcs-3.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee27" --- - + diff --git a/src/_icons/chart-arcs.svg b/src/_icons/chart-arcs.svg index bf1580257..a7ac79091 100644 --- a/src/_icons/chart-arcs.svg +++ b/src/_icons/chart-arcs.svg @@ -5,7 +5,7 @@ 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..82cd773b3 --- /dev/null +++ b/src/_icons/chart-area-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.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..e170848dd --- /dev/null +++ b/src/_icons/chart-area-line-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f66c" +--- + + + + diff --git a/src/_icons/chart-area-line.svg b/src/_icons/chart-area-line.svg index 7b6f4316d..ccbaa4e89 100644 --- a/src/_icons/chart-area-line.svg +++ b/src/_icons/chart-area-line.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea57" --- - - + + diff --git a/src/_icons/chart-area.svg b/src/_icons/chart-area.svg index eb18983d8..6a89001cd 100644 --- a/src/_icons/chart-area.svg +++ b/src/_icons/chart-area.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea58" --- - - + + diff --git a/src/_icons/chart-arrows-vertical.svg b/src/_icons/chart-arrows-vertical.svg index 5d31b87ac..110206171 100644 --- a/src/_icons/chart-arrows-vertical.svg +++ b/src/_icons/chart-arrows-vertical.svg @@ -8,8 +8,8 @@ unicode: "ee29" - - + + diff --git a/src/_icons/chart-arrows.svg b/src/_icons/chart-arrows.svg index de518746a..5fff44f10 100644 --- a/src/_icons/chart-arrows.svg +++ b/src/_icons/chart-arrows.svg @@ -5,11 +5,11 @@ version: "1.39" unicode: "ee2a" --- - + - - + + - + diff --git a/src/_icons/chart-bar-off.svg b/src/_icons/chart-bar-off.svg new file mode 100644 index 000000000..d5121f1f6 --- /dev/null +++ b/src/_icons/chart-bar-off.svg @@ -0,0 +1,13 @@ +--- +tags: [statistics, diagram, graph, rhythm, data, analysis] +category: Charts +unicode: "f3d2" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/chart-bar.svg b/src/_icons/chart-bar.svg index 8e6192bc7..b99ef45fd 100644 --- a/src/_icons/chart-bar.svg +++ b/src/_icons/chart-bar.svg @@ -5,8 +5,8 @@ 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..0710278d2 --- /dev/null +++ b/src/_icons/chart-bubble-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f66d" +--- + + + + + diff --git a/src/_icons/chart-bubble.svg b/src/_icons/chart-bubble.svg index 2adf8a66d..9b96defaf 100644 --- a/src/_icons/chart-bubble.svg +++ b/src/_icons/chart-bubble.svg @@ -5,7 +5,7 @@ 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..b35a901bc --- /dev/null +++ b/src/_icons/chart-candle-filled.svg @@ -0,0 +1,16 @@ +--- +category: Filled +version: "2.0" +unicode: "f66e" +--- + + + + + + + + + + + diff --git a/src/_icons/chart-candle.svg b/src/_icons/chart-candle.svg index 2477d3c1f..f52e009e8 100644 --- a/src/_icons/chart-candle.svg +++ b/src/_icons/chart-candle.svg @@ -5,13 +5,13 @@ version: "1.0" unicode: "ea5a" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/chart-circles.svg b/src/_icons/chart-circles.svg index 81b398b9c..cda3fc8c8 100644 --- a/src/_icons/chart-circles.svg +++ b/src/_icons/chart-circles.svg @@ -5,6 +5,6 @@ version: "1.39" unicode: "ee2b" --- - - + + diff --git a/src/_icons/chart-donut-2.svg b/src/_icons/chart-donut-2.svg index 981e8f7e2..1c6664bae 100644 --- a/src/_icons/chart-donut-2.svg +++ b/src/_icons/chart-donut-2.svg @@ -6,6 +6,6 @@ unicode: "ee2c" --- - - + + diff --git a/src/_icons/chart-donut-3.svg b/src/_icons/chart-donut-3.svg index c7a7b2256..621bb442b 100644 --- a/src/_icons/chart-donut-3.svg +++ b/src/_icons/chart-donut-3.svg @@ -7,6 +7,6 @@ unicode: "ee2d" - - + + diff --git a/src/_icons/chart-donut-4.svg b/src/_icons/chart-donut-4.svg index a7e2b24d5..931140714 100644 --- a/src/_icons/chart-donut-4.svg +++ b/src/_icons/chart-donut-4.svg @@ -7,7 +7,7 @@ unicode: "ee2e" - + - + diff --git a/src/_icons/chart-donut-filled.svg b/src/_icons/chart-donut-filled.svg new file mode 100644 index 000000000..6430b421a --- /dev/null +++ b/src/_icons/chart-donut-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f66f" +--- + + + + diff --git a/src/_icons/chart-dots-2.svg b/src/_icons/chart-dots-2.svg index ed67dfaef..77b50ec35 100644 --- a/src/_icons/chart-dots-2.svg +++ b/src/_icons/chart-dots-2.svg @@ -6,9 +6,9 @@ unicode: "f097" --- - - - + + + diff --git a/src/_icons/chart-dots-3.svg b/src/_icons/chart-dots-3.svg index 132e17367..dd9a3a85b 100644 --- a/src/_icons/chart-dots-3.svg +++ b/src/_icons/chart-dots-3.svg @@ -5,10 +5,10 @@ version: "1.61" unicode: "f098" --- - - - - + + + + diff --git a/src/_icons/chart-dots.svg b/src/_icons/chart-dots.svg index a829ca45e..2ed7cbf98 100644 --- a/src/_icons/chart-dots.svg +++ b/src/_icons/chart-dots.svg @@ -6,9 +6,9 @@ unicode: "ee2f" --- - - - - + + + + diff --git a/src/_icons/chart-grid-dots.svg b/src/_icons/chart-grid-dots.svg new file mode 100644 index 000000000..c226b4991 --- /dev/null +++ b/src/_icons/chart-grid-dots.svg @@ -0,0 +1,26 @@ +--- +tags: [graph, diagram, analytics, statistics, data] +category: Charts +unicode: "f4c2" +version: "1.98" +--- + + + + + + + + + + + + + + + + + + + + diff --git a/src/_icons/chart-histogram.svg b/src/_icons/chart-histogram.svg new file mode 100644 index 000000000..3c9abf02c --- /dev/null +++ b/src/_icons/chart-histogram.svg @@ -0,0 +1,12 @@ +--- +unicode: "f65c" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/chart-infographic.svg b/src/_icons/chart-infographic.svg index 440ec50e4..dae76e9f6 100644 --- a/src/_icons/chart-infographic.svg +++ b/src/_icons/chart-infographic.svg @@ -5,10 +5,10 @@ version: "1.39" unicode: "ee30" --- - + - - - - + + + + diff --git a/src/_icons/chart-line.svg b/src/_icons/chart-line.svg index ccc3ad94f..f8836a774 100644 --- a/src/_icons/chart-line.svg +++ b/src/_icons/chart-line.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea5c" --- - - + + diff --git a/src/_icons/chart-pie-2.svg b/src/_icons/chart-pie-2.svg index 6bee2365b..be19c89db 100644 --- a/src/_icons/chart-pie-2.svg +++ b/src/_icons/chart-pie-2.svg @@ -6,5 +6,5 @@ unicode: "ee31" --- - + diff --git a/src/_icons/chart-pie-3.svg b/src/_icons/chart-pie-3.svg index 50a7ce45f..e4a15aff2 100644 --- a/src/_icons/chart-pie-3.svg +++ b/src/_icons/chart-pie-3.svg @@ -7,5 +7,5 @@ unicode: "ee32" - + diff --git a/src/_icons/chart-pie-4.svg b/src/_icons/chart-pie-4.svg index c13b2e17d..70df78024 100644 --- a/src/_icons/chart-pie-4.svg +++ b/src/_icons/chart-pie-4.svg @@ -7,6 +7,6 @@ unicode: "ee33" - + diff --git a/src/_icons/chart-pie-filled.svg b/src/_icons/chart-pie-filled.svg new file mode 100644 index 000000000..98097a6a3 --- /dev/null +++ b/src/_icons/chart-pie-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f670" +--- + + + + diff --git a/src/_icons/chart-pie-off.svg b/src/_icons/chart-pie-off.svg new file mode 100644 index 000000000..ee6adb54d --- /dev/null +++ b/src/_icons/chart-pie-off.svg @@ -0,0 +1,11 @@ +--- +tags: [statistics, diagram, graph, rhythm, data, analysis] +category: Charts +unicode: "f3d3" +version: "1.94" +--- + + + + + diff --git a/src/_icons/chart-ppf.svg b/src/_icons/chart-ppf.svg new file mode 100644 index 000000000..e2e88dc12 --- /dev/null +++ b/src/_icons/chart-ppf.svg @@ -0,0 +1,9 @@ +--- +category: Charts +unicode: "f618" +version: "1.115" +--- + + + + diff --git a/src/_icons/chart-sankey.svg b/src/_icons/chart-sankey.svg new file mode 100644 index 000000000..680f79e3f --- /dev/null +++ b/src/_icons/chart-sankey.svg @@ -0,0 +1,10 @@ +--- +category: Charts +unicode: "f619" +version: "1.115" +--- + + + + + diff --git a/src/_icons/chart-treemap.svg b/src/_icons/chart-treemap.svg new file mode 100644 index 000000000..a4b1f3cd1 --- /dev/null +++ b/src/_icons/chart-treemap.svg @@ -0,0 +1,13 @@ +--- +tags: [diagram, analytics, buisness, data] +unicode: "f381" +version: "1.91" +--- + + + + + + + + diff --git a/src/_icons/checkbox.svg b/src/_icons/checkbox.svg index d47c35882..294e14ec9 100644 --- a/src/_icons/checkbox.svg +++ b/src/_icons/checkbox.svg @@ -5,6 +5,6 @@ version: "1.4" unicode: "eba6" --- - + diff --git a/src/_icons/checkup-list.svg b/src/_icons/checkup-list.svg index 46a7c2752..2c2f57a75 100644 --- a/src/_icons/checkup-list.svg +++ b/src/_icons/checkup-list.svg @@ -6,7 +6,7 @@ unicode: "ef5a" --- - + diff --git a/src/_icons/chef-hat-off.svg b/src/_icons/chef-hat-off.svg new file mode 100644 index 000000000..7bbe45729 --- /dev/null +++ b/src/_icons/chef-hat-off.svg @@ -0,0 +1,10 @@ +--- +tags: [cooking, kitchen, restaurant, food, job] +unicode: "f3d4" +version: "1.94" +--- + + + + + diff --git a/src/_icons/chef-hat.svg b/src/_icons/chef-hat.svg index 4643b02b6..ca6a84752 100644 --- a/src/_icons/chef-hat.svg +++ b/src/_icons/chef-hat.svg @@ -4,6 +4,6 @@ version: "1.72" unicode: "f21d" --- - + diff --git a/src/_icons/cherry.svg b/src/_icons/cherry.svg new file mode 100644 index 000000000..07d02e71c --- /dev/null +++ b/src/_icons/cherry.svg @@ -0,0 +1,12 @@ +--- +tags: [fruit, food, sweet, healthy] +version: "1.102" +unicode: "f511" +--- + + + + + + + diff --git a/src/_icons/chess-bishop.svg b/src/_icons/chess-bishop.svg new file mode 100644 index 000000000..2046e88fa --- /dev/null +++ b/src/_icons/chess-bishop.svg @@ -0,0 +1,13 @@ +--- +tags: [game, figure, strategy, pawn] +unicode: "f56b" +version: "1.107" +category: Sport +--- + + + + + + + diff --git a/src/_icons/chess-king.svg b/src/_icons/chess-king.svg new file mode 100644 index 000000000..5bacc64d0 --- /dev/null +++ b/src/_icons/chess-king.svg @@ -0,0 +1,12 @@ +--- +tags: [game, figure, strategy, pawn] +unicode: "f56c" +version: "1.107" +category: Sport +--- + + + + + + diff --git a/src/_icons/chess-knight.svg b/src/_icons/chess-knight.svg new file mode 100644 index 000000000..4b171f69c --- /dev/null +++ b/src/_icons/chess-knight.svg @@ -0,0 +1,10 @@ +--- +tags: [game, figure, strategy, pawn] +unicode: "f56d" +version: "1.107" +category: Sport +--- + + + + diff --git a/src/_icons/chess-queen.svg b/src/_icons/chess-queen.svg new file mode 100644 index 000000000..ade6b2a03 --- /dev/null +++ b/src/_icons/chess-queen.svg @@ -0,0 +1,13 @@ +--- +tags: [game, figure, strategy, pawn] +unicode: "f56e" +version: "1.107" +category: Sport +--- + + + + + + + diff --git a/src/_icons/chess-rook.svg b/src/_icons/chess-rook.svg new file mode 100644 index 000000000..d8908cd09 --- /dev/null +++ b/src/_icons/chess-rook.svg @@ -0,0 +1,13 @@ +--- +tags: [game, figure, strategy, pawn] +unicode: "f56f" +version: "1.107" +category: Sport +--- + + + + + + + diff --git a/src/_icons/chess.svg b/src/_icons/chess.svg new file mode 100644 index 000000000..aa974589d --- /dev/null +++ b/src/_icons/chess.svg @@ -0,0 +1,11 @@ +--- +tags: [game, strategy, pawn, figure] +category: Sport +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.svg b/src/_icons/chevrons-down.svg index 9bbd87e87..baa98b47d 100644 --- a/src/_icons/chevrons-down.svg +++ b/src/_icons/chevrons-down.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea63" --- - - + + diff --git a/src/_icons/chevrons-left.svg b/src/_icons/chevrons-left.svg index 5e42c38da..4d7d6568a 100644 --- a/src/_icons/chevrons-left.svg +++ b/src/_icons/chevrons-left.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea64" --- - - + + diff --git a/src/_icons/chevrons-right.svg b/src/_icons/chevrons-right.svg index bc786665f..47f1ad1d1 100644 --- a/src/_icons/chevrons-right.svg +++ b/src/_icons/chevrons-right.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea65" --- - - + + diff --git a/src/_icons/chevrons-up.svg b/src/_icons/chevrons-up.svg index 5240a093a..1eaed8e3b 100644 --- a/src/_icons/chevrons-up.svg +++ b/src/_icons/chevrons-up.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea66" --- - - + + diff --git a/src/_icons/chisel.svg b/src/_icons/chisel.svg new file mode 100644 index 000000000..4ebdcb1d3 --- /dev/null +++ b/src/_icons/chisel.svg @@ -0,0 +1,10 @@ +--- +tags: [tool, equipment, work, wood] +unicode: "f383" +version: "1.91" +--- + + + + + diff --git a/src/_icons/christmas-tree-off.svg b/src/_icons/christmas-tree-off.svg new file mode 100644 index 000000000..7b3883339 --- /dev/null +++ b/src/_icons/christmas-tree-off.svg @@ -0,0 +1,11 @@ +--- +tags: [holidays, pine, decorate, decoration, gift, present, carol, evergreen, spruce, fir, winter] +category: Nature +unicode: "f3d5" +version: "1.94" +--- + + + + + diff --git a/src/_icons/circle-0.svg b/src/_icons/circle-0.svg deleted file mode 100644 index 39d13345d..000000000 --- a/src/_icons/circle-0.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee34" ---- - - - - diff --git a/src/_icons/circle-1.svg b/src/_icons/circle-1.svg deleted file mode 100644 index 735ca1a4f..000000000 --- a/src/_icons/circle-1.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [one, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee35" ---- - - - - diff --git a/src/_icons/circle-2.svg b/src/_icons/circle-2.svg deleted file mode 100644 index 6953a8134..000000000 --- a/src/_icons/circle-2.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [two, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee36" ---- - - - - diff --git a/src/_icons/circle-3.svg b/src/_icons/circle-3.svg deleted file mode 100644 index 5ef868980..000000000 --- a/src/_icons/circle-3.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [three, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee37" ---- - - - - - diff --git a/src/_icons/circle-4.svg b/src/_icons/circle-4.svg deleted file mode 100644 index c8e762203..000000000 --- a/src/_icons/circle-4.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [four, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee38" ---- - - - - diff --git a/src/_icons/circle-5.svg b/src/_icons/circle-5.svg deleted file mode 100644 index a645dc125..000000000 --- a/src/_icons/circle-5.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [five, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee39" ---- - - - - diff --git a/src/_icons/circle-6.svg b/src/_icons/circle-6.svg deleted file mode 100644 index 3520af3b2..000000000 --- a/src/_icons/circle-6.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [six, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee3a" ---- - - - - - diff --git a/src/_icons/circle-7.svg b/src/_icons/circle-7.svg deleted file mode 100644 index ad3918911..000000000 --- a/src/_icons/circle-7.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [seven, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee3b" ---- - - - - diff --git a/src/_icons/circle-8.svg b/src/_icons/circle-8.svg deleted file mode 100644 index 5207b8abe..000000000 --- a/src/_icons/circle-8.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [eight, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee3c" ---- - - - - - diff --git a/src/_icons/circle-9.svg b/src/_icons/circle-9.svg deleted file mode 100644 index 34d64e6ef..000000000 --- a/src/_icons/circle-9.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [nine, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "ee3d" ---- - - - - - diff --git a/src/_icons/circle-caret-down.svg b/src/_icons/circle-caret-down.svg new file mode 100644 index 000000000..6f8f7b16c --- /dev/null +++ b/src/_icons/circle-caret-down.svg @@ -0,0 +1,10 @@ +--- +tags: [direction, shape, south, bottom ] +category: Arrows +unicode: "f4a9" +version: "1.97" +--- + + + + diff --git a/src/_icons/circle-caret-left.svg b/src/_icons/circle-caret-left.svg new file mode 100644 index 000000000..6ee5e4e91 --- /dev/null +++ b/src/_icons/circle-caret-left.svg @@ -0,0 +1,10 @@ +--- +tags: [direction, shape, west] +category: Arrows +unicode: "f4aa" +version: "1.97" +--- + + + + diff --git a/src/_icons/circle-caret-right.svg b/src/_icons/circle-caret-right.svg new file mode 100644 index 000000000..9b13efb9d --- /dev/null +++ b/src/_icons/circle-caret-right.svg @@ -0,0 +1,10 @@ +--- +tags: [direction, shape, east ] +category: Arrows +unicode: "f4ab" +version: "1.97" +--- + + + + diff --git a/src/_icons/circle-caret-up.svg b/src/_icons/circle-caret-up.svg new file mode 100644 index 000000000..e8498b6c0 --- /dev/null +++ b/src/_icons/circle-caret-up.svg @@ -0,0 +1,10 @@ +--- +tags: [direction, shape, north, top ] +category: Arrows +unicode: "f4ac" +version: "1.97" +--- + + + + diff --git a/src/_icons/circle-check.svg b/src/_icons/circle-check.svg index 287fdec1c..caf906468 100644 --- a/src/_icons/circle-check.svg +++ b/src/_icons/circle-check.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "ea67" --- - + diff --git a/src/_icons/circle-chevron-down.svg b/src/_icons/circle-chevron-down.svg new file mode 100644 index 000000000..155be25e3 --- /dev/null +++ b/src/_icons/circle-chevron-down.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f622" +version: "1.116" +--- + + + + diff --git a/src/_icons/circle-chevron-left.svg b/src/_icons/circle-chevron-left.svg new file mode 100644 index 000000000..0583cf2ee --- /dev/null +++ b/src/_icons/circle-chevron-left.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f623" +version: "1.116" +--- + + + + diff --git a/src/_icons/circle-chevron-right.svg b/src/_icons/circle-chevron-right.svg new file mode 100644 index 000000000..4cf5f34db --- /dev/null +++ b/src/_icons/circle-chevron-right.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f624" +version: "1.116" +--- + + + + diff --git a/src/_icons/circle-chevron-up.svg b/src/_icons/circle-chevron-up.svg new file mode 100644 index 000000000..0ae6e908b --- /dev/null +++ b/src/_icons/circle-chevron-up.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f625" +version: "1.116" +--- + + + + diff --git a/src/_icons/circle-chevrons-down.svg b/src/_icons/circle-chevrons-down.svg new file mode 100644 index 000000000..30074076f --- /dev/null +++ b/src/_icons/circle-chevrons-down.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f642" +version: "1.118" +--- + + + + + diff --git a/src/_icons/circle-chevrons-left.svg b/src/_icons/circle-chevrons-left.svg new file mode 100644 index 000000000..86b1ca053 --- /dev/null +++ b/src/_icons/circle-chevrons-left.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f643" +version: "1.118" +--- + + + + + diff --git a/src/_icons/circle-chevrons-right.svg b/src/_icons/circle-chevrons-right.svg new file mode 100644 index 000000000..c037cf2f5 --- /dev/null +++ b/src/_icons/circle-chevrons-right.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f644" +version: "1.118" +--- + + + + + diff --git a/src/_icons/circle-chevrons-up.svg b/src/_icons/circle-chevrons-up.svg new file mode 100644 index 000000000..b3811304b --- /dev/null +++ b/src/_icons/circle-chevrons-up.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f645" +version: "1.118" +--- + + + + + diff --git a/src/_icons/circle-dot.svg b/src/_icons/circle-dot.svg index 565a7ef30..d854a6a9b 100644 --- a/src/_icons/circle-dot.svg +++ b/src/_icons/circle-dot.svg @@ -4,6 +4,6 @@ version: "1.49" unicode: "efb1" --- - - + + diff --git a/src/_icons/circle-dotted.svg b/src/_icons/circle-dotted.svg index 4370f799f..a92a8a835 100644 --- a/src/_icons/circle-dotted.svg +++ b/src/_icons/circle-dotted.svg @@ -4,16 +4,16 @@ 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..435981d2c --- /dev/null +++ b/src/_icons/circle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f671" +--- + + + diff --git a/src/_icons/circle-half-2.svg b/src/_icons/circle-half-2.svg index ade17c196..864a59320 100644 --- a/src/_icons/circle-half-2.svg +++ b/src/_icons/circle-half-2.svg @@ -5,7 +5,7 @@ version: "1.52" unicode: "eff3" --- - + diff --git a/src/_icons/circle-half-vertical.svg b/src/_icons/circle-half-vertical.svg index dd1ad2904..481ed067f 100644 --- a/src/_icons/circle-half-vertical.svg +++ b/src/_icons/circle-half-vertical.svg @@ -4,6 +4,6 @@ version: "1.39" unicode: "ee3e" --- - + diff --git a/src/_icons/circle-half.svg b/src/_icons/circle-half.svg index 1021d9ce5..1e35a64f2 100644 --- a/src/_icons/circle-half.svg +++ b/src/_icons/circle-half.svg @@ -4,6 +4,6 @@ version: "1.39" unicode: "ee3f" --- - + diff --git a/src/_icons/circle-key.svg b/src/_icons/circle-key.svg new file mode 100644 index 000000000..d53624bf0 --- /dev/null +++ b/src/_icons/circle-key.svg @@ -0,0 +1,10 @@ +--- +unicode: "f633" +version: "1.117" +--- + + + + + + diff --git a/src/_icons/circle-letter-a.svg b/src/_icons/circle-letter-a.svg new file mode 100644 index 000000000..4b0cde796 --- /dev/null +++ b/src/_icons/circle-letter-a.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f441" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-b.svg b/src/_icons/circle-letter-b.svg new file mode 100644 index 000000000..916b3f20b --- /dev/null +++ b/src/_icons/circle-letter-b.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f442" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-c.svg b/src/_icons/circle-letter-c.svg new file mode 100644 index 000000000..9e128c165 --- /dev/null +++ b/src/_icons/circle-letter-c.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f443" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-d.svg b/src/_icons/circle-letter-d.svg new file mode 100644 index 000000000..5028bf657 --- /dev/null +++ b/src/_icons/circle-letter-d.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f444" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-e.svg b/src/_icons/circle-letter-e.svg new file mode 100644 index 000000000..4c501b89b --- /dev/null +++ b/src/_icons/circle-letter-e.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f445" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-f.svg b/src/_icons/circle-letter-f.svg new file mode 100644 index 000000000..7fc2c6d08 --- /dev/null +++ b/src/_icons/circle-letter-f.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f446" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-g.svg b/src/_icons/circle-letter-g.svg new file mode 100644 index 000000000..ff5ba6365 --- /dev/null +++ b/src/_icons/circle-letter-g.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f447" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-h.svg b/src/_icons/circle-letter-h.svg new file mode 100644 index 000000000..1cc63a264 --- /dev/null +++ b/src/_icons/circle-letter-h.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f448" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-i.svg b/src/_icons/circle-letter-i.svg new file mode 100644 index 000000000..e65c9d019 --- /dev/null +++ b/src/_icons/circle-letter-i.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f449" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-j.svg b/src/_icons/circle-letter-j.svg new file mode 100644 index 000000000..56a7ac700 --- /dev/null +++ b/src/_icons/circle-letter-j.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f44a" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-k.svg b/src/_icons/circle-letter-k.svg new file mode 100644 index 000000000..94dfd78a3 --- /dev/null +++ b/src/_icons/circle-letter-k.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f44b" +version: "1.95" +--- + + + + + + diff --git a/src/_icons/circle-letter-l.svg b/src/_icons/circle-letter-l.svg new file mode 100644 index 000000000..d1ee44409 --- /dev/null +++ b/src/_icons/circle-letter-l.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f44c" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-m.svg b/src/_icons/circle-letter-m.svg new file mode 100644 index 000000000..af51275dc --- /dev/null +++ b/src/_icons/circle-letter-m.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f44d" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-n.svg b/src/_icons/circle-letter-n.svg new file mode 100644 index 000000000..0a9f97ccb --- /dev/null +++ b/src/_icons/circle-letter-n.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f44e" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-o.svg b/src/_icons/circle-letter-o.svg new file mode 100644 index 000000000..456a9f4b1 --- /dev/null +++ b/src/_icons/circle-letter-o.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f44f" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-p.svg b/src/_icons/circle-letter-p.svg new file mode 100644 index 000000000..492911fa5 --- /dev/null +++ b/src/_icons/circle-letter-p.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f450" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-q.svg b/src/_icons/circle-letter-q.svg new file mode 100644 index 000000000..f976c6bf2 --- /dev/null +++ b/src/_icons/circle-letter-q.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f451" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-r.svg b/src/_icons/circle-letter-r.svg new file mode 100644 index 000000000..f9bcd52f9 --- /dev/null +++ b/src/_icons/circle-letter-r.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f452" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-s.svg b/src/_icons/circle-letter-s.svg new file mode 100644 index 000000000..4e15eda61 --- /dev/null +++ b/src/_icons/circle-letter-s.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f453" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-t.svg b/src/_icons/circle-letter-t.svg new file mode 100644 index 000000000..67a226976 --- /dev/null +++ b/src/_icons/circle-letter-t.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f454" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-u.svg b/src/_icons/circle-letter-u.svg new file mode 100644 index 000000000..79815f268 --- /dev/null +++ b/src/_icons/circle-letter-u.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f455" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-v.svg b/src/_icons/circle-letter-v.svg new file mode 100644 index 000000000..224abf616 --- /dev/null +++ b/src/_icons/circle-letter-v.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f4ad" +version: "1.97" +--- + + + + diff --git a/src/_icons/circle-letter-w.svg b/src/_icons/circle-letter-w.svg new file mode 100644 index 000000000..e503e89f3 --- /dev/null +++ b/src/_icons/circle-letter-w.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f456" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-letter-x.svg b/src/_icons/circle-letter-x.svg new file mode 100644 index 000000000..30e1b3eed --- /dev/null +++ b/src/_icons/circle-letter-x.svg @@ -0,0 +1,11 @@ +--- +tags: [cancel, "no"] +version: "1.0" +category: Letters +unicode: "f4ae" +--- + + + + + diff --git a/src/_icons/circle-letter-y.svg b/src/_icons/circle-letter-y.svg new file mode 100644 index 000000000..c9e1b0cf1 --- /dev/null +++ b/src/_icons/circle-letter-y.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f457" +version: "1.95" +--- + + + + + diff --git a/src/_icons/circle-letter-z.svg b/src/_icons/circle-letter-z.svg new file mode 100644 index 000000000..79147f630 --- /dev/null +++ b/src/_icons/circle-letter-z.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f458" +version: "1.95" +--- + + + + diff --git a/src/_icons/circle-minus.svg b/src/_icons/circle-minus.svg index cda5179b8..44f21e45d 100644 --- a/src/_icons/circle-minus.svg +++ b/src/_icons/circle-minus.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "ea68" --- - - + + diff --git a/src/_icons/circle-number-0.svg b/src/_icons/circle-number-0.svg new file mode 100644 index 000000000..070eafcdd --- /dev/null +++ b/src/_icons/circle-number-0.svg @@ -0,0 +1,10 @@ +--- +tags: [zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee34" +--- + + + + diff --git a/src/_icons/circle-number-1.svg b/src/_icons/circle-number-1.svg new file mode 100644 index 000000000..4212b46bc --- /dev/null +++ b/src/_icons/circle-number-1.svg @@ -0,0 +1,10 @@ +--- +tags: [one, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee35" +--- + + + + diff --git a/src/_icons/circle-number-2.svg b/src/_icons/circle-number-2.svg new file mode 100644 index 000000000..5a3240ab0 --- /dev/null +++ b/src/_icons/circle-number-2.svg @@ -0,0 +1,10 @@ +--- +tags: [two, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee36" +--- + + + + diff --git a/src/_icons/circle-number-3.svg b/src/_icons/circle-number-3.svg new file mode 100644 index 000000000..0a2f4dcb4 --- /dev/null +++ b/src/_icons/circle-number-3.svg @@ -0,0 +1,10 @@ +--- +tags: [three, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee37" +--- + + + + diff --git a/src/_icons/circle-number-4.svg b/src/_icons/circle-number-4.svg new file mode 100644 index 000000000..610e93202 --- /dev/null +++ b/src/_icons/circle-number-4.svg @@ -0,0 +1,11 @@ +--- +tags: [four, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee38" +--- + + + + + diff --git a/src/_icons/circle-number-5.svg b/src/_icons/circle-number-5.svg new file mode 100644 index 000000000..f0acccad5 --- /dev/null +++ b/src/_icons/circle-number-5.svg @@ -0,0 +1,10 @@ +--- +tags: [five, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee39" +--- + + + + diff --git a/src/_icons/circle-number-6.svg b/src/_icons/circle-number-6.svg new file mode 100644 index 000000000..ec5a7975a --- /dev/null +++ b/src/_icons/circle-number-6.svg @@ -0,0 +1,10 @@ +--- +tags: [six, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee3a" +--- + + + + diff --git a/src/_icons/circle-number-7.svg b/src/_icons/circle-number-7.svg new file mode 100644 index 000000000..07bcd9e74 --- /dev/null +++ b/src/_icons/circle-number-7.svg @@ -0,0 +1,10 @@ +--- +tags: [seven, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee3b" +--- + + + + diff --git a/src/_icons/circle-number-8.svg b/src/_icons/circle-number-8.svg new file mode 100644 index 000000000..800fd2f00 --- /dev/null +++ b/src/_icons/circle-number-8.svg @@ -0,0 +1,10 @@ +--- +tags: [eight, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee3c" +--- + + + + diff --git a/src/_icons/circle-number-9.svg b/src/_icons/circle-number-9.svg new file mode 100644 index 000000000..381a2c528 --- /dev/null +++ b/src/_icons/circle-number-9.svg @@ -0,0 +1,10 @@ +--- +tags: [nine, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "ee3d" +--- + + + + diff --git a/src/_icons/circle-off.svg b/src/_icons/circle-off.svg index f92725cdb..c5714d668 100644 --- a/src/_icons/circle-off.svg +++ b/src/_icons/circle-off.svg @@ -1,6 +1,6 @@ --- +tags: [off, zero] category: Shapes -tags: [shape, split, slash, disabled] version: "1.39" unicode: "ee40" --- diff --git a/src/_icons/circle-plus.svg b/src/_icons/circle-plus.svg index 8f2f7c8cd..202201509 100644 --- a/src/_icons/circle-plus.svg +++ b/src/_icons/circle-plus.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "ea69" --- - - - + + + diff --git a/src/_icons/circle-rectangle.svg b/src/_icons/circle-rectangle.svg index cced5d63f..a8c018e06 100644 --- a/src/_icons/circle-rectangle.svg +++ b/src/_icons/circle-rectangle.svg @@ -4,6 +4,6 @@ version: "1.54" unicode: "f010" --- - + diff --git a/src/_icons/circle-square.svg b/src/_icons/circle-square.svg index 7ffbf586b..ddda46f0c 100644 --- a/src/_icons/circle-square.svg +++ b/src/_icons/circle-square.svg @@ -5,6 +5,6 @@ version: "1.21" unicode: "ece4" --- - - + + diff --git a/src/_icons/circle-triangle.svg b/src/_icons/circle-triangle.svg index 82e5acc43..0cc475e4f 100644 --- a/src/_icons/circle-triangle.svg +++ b/src/_icons/circle-triangle.svg @@ -4,6 +4,6 @@ version: "1.54" unicode: "f011" --- - + diff --git a/src/_icons/circle-x.svg b/src/_icons/circle-x.svg index 603dc96c5..ee16798a7 100644 --- a/src/_icons/circle-x.svg +++ b/src/_icons/circle-x.svg @@ -4,6 +4,6 @@ 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..98ba0ddce --- /dev/null +++ b/src/_icons/circles-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f672" +--- + + + diff --git a/src/_icons/circles-relation.svg b/src/_icons/circles-relation.svg new file mode 100644 index 000000000..9b0ff4135 --- /dev/null +++ b/src/_icons/circles-relation.svg @@ -0,0 +1,9 @@ +--- +tags: [ ] +unicode: "f4c3" +version: "1.98" +--- + + + + diff --git a/src/_icons/circles.svg b/src/_icons/circles.svg index f46208dd5..de12ca2b0 100644 --- a/src/_icons/circles.svg +++ b/src/_icons/circles.svg @@ -5,7 +5,7 @@ version: "1.21" unicode: "ece5" --- - - - + + + diff --git a/src/_icons/circuit-ammeter.svg b/src/_icons/circuit-ammeter.svg index 46f9d982e..00a064314 100644 --- a/src/_icons/circuit-ammeter.svg +++ b/src/_icons/circuit-ammeter.svg @@ -5,7 +5,7 @@ version: "1.77" unicode: "f271" --- - + diff --git a/src/_icons/circuit-bulb.svg b/src/_icons/circuit-bulb.svg index 32849c1d6..8b8ae082a 100644 --- a/src/_icons/circuit-bulb.svg +++ b/src/_icons/circuit-bulb.svg @@ -7,7 +7,7 @@ unicode: "f273" - + diff --git a/src/_icons/circuit-changeover.svg b/src/_icons/circuit-changeover.svg index 318a84cb7..42a2942d2 100644 --- a/src/_icons/circuit-changeover.svg +++ b/src/_icons/circuit-changeover.svg @@ -7,9 +7,9 @@ unicode: "f278" - - + + - + diff --git a/src/_icons/circuit-motor.svg b/src/_icons/circuit-motor.svg index e552534c8..6a92c499a 100644 --- a/src/_icons/circuit-motor.svg +++ b/src/_icons/circuit-motor.svg @@ -5,7 +5,7 @@ version: "1.77" unicode: "f27e" --- - + diff --git a/src/_icons/circuit-pushbutton.svg b/src/_icons/circuit-pushbutton.svg index e8f607d1e..961993f9c 100644 --- a/src/_icons/circuit-pushbutton.svg +++ b/src/_icons/circuit-pushbutton.svg @@ -7,8 +7,8 @@ unicode: "f27f" - - + + diff --git a/src/_icons/circuit-switch-closed.svg b/src/_icons/circuit-switch-closed.svg index 0cc06aca0..bc0f33761 100644 --- a/src/_icons/circuit-switch-closed.svg +++ b/src/_icons/circuit-switch-closed.svg @@ -7,7 +7,7 @@ unicode: "f281" - - + + diff --git a/src/_icons/circuit-switch-open.svg b/src/_icons/circuit-switch-open.svg index 57b8a4d54..4b270f65f 100644 --- a/src/_icons/circuit-switch-open.svg +++ b/src/_icons/circuit-switch-open.svg @@ -7,7 +7,7 @@ unicode: "f282" - - + + diff --git a/src/_icons/circuit-voltmeter.svg b/src/_icons/circuit-voltmeter.svg index 0c01b2d75..671cee4b0 100644 --- a/src/_icons/circuit-voltmeter.svg +++ b/src/_icons/circuit-voltmeter.svg @@ -5,7 +5,7 @@ version: "1.77" unicode: "f283" --- - + diff --git a/src/_icons/clear-formatting.svg b/src/_icons/clear-formatting.svg index 409958d3e..7fc55ce77 100644 --- a/src/_icons/clear-formatting.svg +++ b/src/_icons/clear-formatting.svg @@ -7,6 +7,6 @@ unicode: "ebe5" - - + + diff --git a/src/_icons/click.svg b/src/_icons/click.svg index 021ec4575..43e9f2177 100644 --- a/src/_icons/click.svg +++ b/src/_icons/click.svg @@ -4,10 +4,10 @@ version: "1.5" unicode: "ebbc" --- - - - - - + + + + + diff --git a/src/_icons/clipboard-check.svg b/src/_icons/clipboard-check.svg index 1f3bdc5e2..dee8e9b8a 100644 --- a/src/_icons/clipboard-check.svg +++ b/src/_icons/clipboard-check.svg @@ -6,6 +6,6 @@ unicode: "ea6c" --- - + diff --git a/src/_icons/clipboard-copy.svg b/src/_icons/clipboard-copy.svg index f3994be68..d0d772950 100644 --- a/src/_icons/clipboard-copy.svg +++ b/src/_icons/clipboard-copy.svg @@ -1,4 +1,5 @@ --- +tags: [duplicate, paste, document, task ] category: Document version: "1.79" unicode: "f299" @@ -6,5 +7,5 @@ unicode: "f299" - + diff --git a/src/_icons/clipboard-data.svg b/src/_icons/clipboard-data.svg new file mode 100644 index 000000000..d045fbe4c --- /dev/null +++ b/src/_icons/clipboard-data.svg @@ -0,0 +1,14 @@ +--- +tags: [document, report, file, list, analytics] +category: Document +unicode: "f563" +version: "1.106" +--- + + + + + + + + diff --git a/src/_icons/clipboard-heart.svg b/src/_icons/clipboard-heart.svg new file mode 100644 index 000000000..30089090e --- /dev/null +++ b/src/_icons/clipboard-heart.svg @@ -0,0 +1,11 @@ +--- +tags: [medical, health, healthcare, medicine, hospital] +category: Document +unicode: "f34e" +version: "1.88" +--- + + + + + diff --git a/src/_icons/clipboard-list.svg b/src/_icons/clipboard-list.svg index 8afefd616..e56f11b06 100644 --- a/src/_icons/clipboard-list.svg +++ b/src/_icons/clipboard-list.svg @@ -6,9 +6,9 @@ unicode: "ea6d" --- - - - - - + + + + + diff --git a/src/_icons/clipboard-off.svg b/src/_icons/clipboard-off.svg index bdb90404d..963d56776 100644 --- a/src/_icons/clipboard-off.svg +++ b/src/_icons/clipboard-off.svg @@ -1,11 +1,11 @@ --- -tags: [task, document, file, report] +tags: [copy] category: Document version: "1.63" unicode: "f0ce" --- - + diff --git a/src/_icons/clipboard-plus.svg b/src/_icons/clipboard-plus.svg index 8e2c31b2e..1a90abc02 100644 --- a/src/_icons/clipboard-plus.svg +++ b/src/_icons/clipboard-plus.svg @@ -6,7 +6,7 @@ unicode: "efb2" --- - + diff --git a/src/_icons/clipboard-text.svg b/src/_icons/clipboard-text.svg index 1a73ad519..6ccdff2a1 100644 --- a/src/_icons/clipboard-text.svg +++ b/src/_icons/clipboard-text.svg @@ -6,7 +6,7 @@ unicode: "f089" --- - + diff --git a/src/_icons/clipboard-typography.svg b/src/_icons/clipboard-typography.svg new file mode 100644 index 000000000..06adffe42 --- /dev/null +++ b/src/_icons/clipboard-typography.svg @@ -0,0 +1,13 @@ +--- +tags: [document, list, raport, paper] +category: Document +unicode: "f34f" +version: "1.88" +--- + + + + + + + diff --git a/src/_icons/clipboard-x.svg b/src/_icons/clipboard-x.svg index 5e1ecc976..b2abc102f 100644 --- a/src/_icons/clipboard-x.svg +++ b/src/_icons/clipboard-x.svg @@ -6,6 +6,6 @@ unicode: "ea6e" --- - + diff --git a/src/_icons/clipboard.svg b/src/_icons/clipboard.svg index e77e4f022..17e34ed08 100644 --- a/src/_icons/clipboard.svg +++ b/src/_icons/clipboard.svg @@ -6,5 +6,5 @@ unicode: "ea6f" --- - + diff --git a/src/_icons/clock-2.svg b/src/_icons/clock-2.svg index 8fc3cf0e9..a2f1b8d3f 100644 --- a/src/_icons/clock-2.svg +++ b/src/_icons/clock-2.svg @@ -5,7 +5,7 @@ version: "1.61" unicode: "f099" --- - + diff --git a/src/_icons/clock-cancel.svg b/src/_icons/clock-cancel.svg new file mode 100644 index 000000000..8f30d4660 --- /dev/null +++ b/src/_icons/clock-cancel.svg @@ -0,0 +1,12 @@ +--- +tags: [time, delete, remove, close, alarm] +category: System +version: "1.105" +unicode: "f546" +--- + + + + + + diff --git a/src/_icons/clock-edit.svg b/src/_icons/clock-edit.svg new file mode 100644 index 000000000..283f14a9b --- /dev/null +++ b/src/_icons/clock-edit.svg @@ -0,0 +1,11 @@ +--- +tags: [time, edit, create, alarm] +category: System +version: "1.105" +unicode: "f547" +--- + + + + + diff --git a/src/_icons/clock-hour-1.svg b/src/_icons/clock-hour-1.svg new file mode 100644 index 000000000..f7fc31efe --- /dev/null +++ b/src/_icons/clock-hour-1.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f313" +--- + + + + + diff --git a/src/_icons/clock-hour-10.svg b/src/_icons/clock-hour-10.svg new file mode 100644 index 000000000..12b3e6df9 --- /dev/null +++ b/src/_icons/clock-hour-10.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f314" +--- + + + + + diff --git a/src/_icons/clock-hour-11.svg b/src/_icons/clock-hour-11.svg new file mode 100644 index 000000000..db7d028ea --- /dev/null +++ b/src/_icons/clock-hour-11.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f315" +--- + + + + + diff --git a/src/_icons/clock-hour-12.svg b/src/_icons/clock-hour-12.svg new file mode 100644 index 000000000..4a620b1a9 --- /dev/null +++ b/src/_icons/clock-hour-12.svg @@ -0,0 +1,10 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f316" +--- + + + + diff --git a/src/_icons/clock-hour-2.svg b/src/_icons/clock-hour-2.svg new file mode 100644 index 000000000..648472212 --- /dev/null +++ b/src/_icons/clock-hour-2.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f317" +--- + + + + + diff --git a/src/_icons/clock-hour-3.svg b/src/_icons/clock-hour-3.svg new file mode 100644 index 000000000..221a53274 --- /dev/null +++ b/src/_icons/clock-hour-3.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f318" +--- + + + + + diff --git a/src/_icons/clock-hour-4.svg b/src/_icons/clock-hour-4.svg new file mode 100644 index 000000000..854f7171d --- /dev/null +++ b/src/_icons/clock-hour-4.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f319" +--- + + + + + diff --git a/src/_icons/clock-hour-5.svg b/src/_icons/clock-hour-5.svg new file mode 100644 index 000000000..f783152bf --- /dev/null +++ b/src/_icons/clock-hour-5.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f31a" +--- + + + + + diff --git a/src/_icons/clock-hour-6.svg b/src/_icons/clock-hour-6.svg new file mode 100644 index 000000000..c3263fe44 --- /dev/null +++ b/src/_icons/clock-hour-6.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f31b" +--- + + + + + diff --git a/src/_icons/clock-hour-7.svg b/src/_icons/clock-hour-7.svg new file mode 100644 index 000000000..fda8c5d9d --- /dev/null +++ b/src/_icons/clock-hour-7.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f31c" +--- + + + + + diff --git a/src/_icons/clock-hour-8.svg b/src/_icons/clock-hour-8.svg new file mode 100644 index 000000000..e0e7fd3a9 --- /dev/null +++ b/src/_icons/clock-hour-8.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f31d" +--- + + + + + diff --git a/src/_icons/clock-hour-9.svg b/src/_icons/clock-hour-9.svg new file mode 100644 index 000000000..54b3da635 --- /dev/null +++ b/src/_icons/clock-hour-9.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, timer, alarm, minutes, seconds] +category: System +version: "1.85" +unicode: "f31e" +--- + + + + + diff --git a/src/_icons/clock-off.svg b/src/_icons/clock-off.svg index 8a63b38d1..5003da842 100644 --- a/src/_icons/clock-off.svg +++ b/src/_icons/clock-off.svg @@ -1,5 +1,5 @@ --- -tags: [time, watch, timer, alarm, date, hour, schedule] +tags: [time, watch, alarm] category: System version: "1.63" unicode: "f0cf" diff --git a/src/_icons/clock-pause.svg b/src/_icons/clock-pause.svg new file mode 100644 index 000000000..da40573ef --- /dev/null +++ b/src/_icons/clock-pause.svg @@ -0,0 +1,12 @@ +--- +tags: [time, stop, pause, wait, rest, off] +category: System +version: "1.105" +unicode: "f548" +--- + + + + + + diff --git a/src/_icons/clock-play.svg b/src/_icons/clock-play.svg new file mode 100644 index 000000000..0d5d51ef0 --- /dev/null +++ b/src/_icons/clock-play.svg @@ -0,0 +1,11 @@ +--- +tags: [time, hour, work, alarm, on] +category: System +version: "1.105" +unicode: "f549" +--- + + + + + diff --git a/src/_icons/clock-record.svg b/src/_icons/clock-record.svg new file mode 100644 index 000000000..cefaad15a --- /dev/null +++ b/src/_icons/clock-record.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, alarm, recording] +category: System +version: "1.105" +unicode: "f54a" +--- + + + + + diff --git a/src/_icons/clock-stop.svg b/src/_icons/clock-stop.svg new file mode 100644 index 000000000..1dd4c2674 --- /dev/null +++ b/src/_icons/clock-stop.svg @@ -0,0 +1,11 @@ +--- +tags: [time, watch, alarm, pause, off] +category: System +version: "1.105" +unicode: "f54b" +--- + + + + + diff --git a/src/_icons/clock.svg b/src/_icons/clock.svg index e20ff289c..b88506f1f 100644 --- a/src/_icons/clock.svg +++ b/src/_icons/clock.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea70" --- - - + + diff --git a/src/_icons/clothes-rack-off.svg b/src/_icons/clothes-rack-off.svg new file mode 100644 index 000000000..d07bff75a --- /dev/null +++ b/src/_icons/clothes-rack-off.svg @@ -0,0 +1,12 @@ +--- +tags: [hanger, furniture, fashion, clothing, stand] +unicode: "f3d6" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/clothes-rack.svg b/src/_icons/clothes-rack.svg index 290bc27f7..08aa051ae 100644 --- a/src/_icons/clothes-rack.svg +++ b/src/_icons/clothes-rack.svg @@ -4,7 +4,7 @@ version: "1.78" unicode: "f285" --- - + diff --git a/src/_icons/cloud-computing.svg b/src/_icons/cloud-computing.svg index ee3c420c0..add63d0cd 100644 --- a/src/_icons/cloud-computing.svg +++ b/src/_icons/cloud-computing.svg @@ -4,7 +4,7 @@ version: "1.68" unicode: "f1d0" --- - + diff --git a/src/_icons/cloud-data-connection.svg b/src/_icons/cloud-data-connection.svg index 3bf8b6353..c4e8d60fb 100644 --- a/src/_icons/cloud-data-connection.svg +++ b/src/_icons/cloud-data-connection.svg @@ -6,7 +6,7 @@ unicode: "f1d1" - + diff --git a/src/_icons/cloud-download.svg b/src/_icons/cloud-download.svg index 60de715bc..ccc03ce23 100644 --- a/src/_icons/cloud-download.svg +++ b/src/_icons/cloud-download.svg @@ -6,6 +6,6 @@ unicode: "ea71" --- - - + + diff --git a/src/_icons/cloud-filled.svg b/src/_icons/cloud-filled.svg new file mode 100644 index 000000000..35010420a --- /dev/null +++ b/src/_icons/cloud-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f673" +--- + + + diff --git a/src/_icons/cloud-fog.svg b/src/_icons/cloud-fog.svg index 9fa21a17b..e8fb248d4 100644 --- a/src/_icons/cloud-fog.svg +++ b/src/_icons/cloud-fog.svg @@ -6,5 +6,5 @@ unicode: "ecd9" --- - + diff --git a/src/_icons/cloud-lock-open.svg b/src/_icons/cloud-lock-open.svg index 51219a75c..56a6d0c5e 100644 --- a/src/_icons/cloud-lock-open.svg +++ b/src/_icons/cloud-lock-open.svg @@ -6,6 +6,6 @@ unicode: "efda" --- - - + + diff --git a/src/_icons/cloud-lock.svg b/src/_icons/cloud-lock.svg index 70cc877b3..937ff06fe 100644 --- a/src/_icons/cloud-lock.svg +++ b/src/_icons/cloud-lock.svg @@ -6,6 +6,6 @@ unicode: "efdb" --- - + diff --git a/src/_icons/cloud-off.svg b/src/_icons/cloud-off.svg index 91b8ab074..d4993ec2d 100644 --- a/src/_icons/cloud-off.svg +++ b/src/_icons/cloud-off.svg @@ -1,10 +1,10 @@ --- +tags: [weather, online] category: Weather -tags: [auto, backup, storage, memory, files, pictures, store] version: "1.28" unicode: "ed3e" --- - - + + diff --git a/src/_icons/cloud-storm.svg b/src/_icons/cloud-storm.svg index ea96281f3..1212c5482 100644 --- a/src/_icons/cloud-storm.svg +++ b/src/_icons/cloud-storm.svg @@ -6,5 +6,5 @@ unicode: "ea74" --- - + diff --git a/src/_icons/cloud-upload.svg b/src/_icons/cloud-upload.svg index 9055014cb..080538748 100644 --- a/src/_icons/cloud-upload.svg +++ b/src/_icons/cloud-upload.svg @@ -6,6 +6,6 @@ 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/clubs-filled.svg b/src/_icons/clubs-filled.svg new file mode 100644 index 000000000..320900cd9 --- /dev/null +++ b/src/_icons/clubs-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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 new file mode 100644 index 000000000..c34fe17dd --- /dev/null +++ b/src/_icons/code-asterix.svg @@ -0,0 +1,16 @@ +--- +tags: [coding, programming, html] +category: Text +version: "1.85" +unicode: "f312" +--- + + + + + + + + + + diff --git a/src/_icons/code-circle-2.svg b/src/_icons/code-circle-2.svg new file mode 100644 index 000000000..f5a330fa4 --- /dev/null +++ b/src/_icons/code-circle-2.svg @@ -0,0 +1,12 @@ +--- +tags: [coding, programming, development, shape, technology] +category: Text +unicode: "f4fe" +version: "1.101" +--- + + + + + + diff --git a/src/_icons/code-circle.svg b/src/_icons/code-circle.svg new file mode 100644 index 000000000..03fadfd9a --- /dev/null +++ b/src/_icons/code-circle.svg @@ -0,0 +1,11 @@ +--- +tags: [coding, programming, development, shape, technology] +category: Text +unicode: "f4ff" +version: "1.101" +--- + + + + + diff --git a/src/_icons/code-dots.svg b/src/_icons/code-dots.svg new file mode 100644 index 000000000..dbf0bdb30 --- /dev/null +++ b/src/_icons/code-dots.svg @@ -0,0 +1,12 @@ +--- +category: Text +unicode: "f61a" +version: "1.115" +--- + + + + + + + diff --git a/src/_icons/code-off.svg b/src/_icons/code-off.svg index 05fd3ae67..659730475 100644 --- a/src/_icons/code-off.svg +++ b/src/_icons/code-off.svg @@ -7,6 +7,6 @@ unicode: "f0d0" - + diff --git a/src/_icons/code.svg b/src/_icons/code.svg index 524508596..2c0d54305 100644 --- a/src/_icons/code.svg +++ b/src/_icons/code.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea77" --- - - - + + + diff --git a/src/_icons/coffee-off.svg b/src/_icons/coffee-off.svg index af74887f9..c1303c957 100644 --- a/src/_icons/coffee-off.svg +++ b/src/_icons/coffee-off.svg @@ -5,10 +5,10 @@ version: "1.65" unicode: "f106" --- - + - + diff --git a/src/_icons/coffin.svg b/src/_icons/coffin.svg new file mode 100644 index 000000000..37a5db3e8 --- /dev/null +++ b/src/_icons/coffin.svg @@ -0,0 +1,11 @@ +--- +tags: [halloween, death, scary, horror, cementry ] +unicode: "f579" +version: "1.108" +--- + + + + + + diff --git a/src/_icons/coin-bitcoin.svg b/src/_icons/coin-bitcoin.svg index c74e7eb04..010997ba2 100644 --- a/src/_icons/coin-bitcoin.svg +++ b/src/_icons/coin-bitcoin.svg @@ -5,7 +5,7 @@ version: "1.81" unicode: "f2be" --- - + diff --git a/src/_icons/coin-euro.svg b/src/_icons/coin-euro.svg index afdd36c8e..fa50c19e1 100644 --- a/src/_icons/coin-euro.svg +++ b/src/_icons/coin-euro.svg @@ -5,7 +5,7 @@ version: "1.81" unicode: "f2bf" --- - + diff --git a/src/_icons/coin-monero.svg b/src/_icons/coin-monero.svg new file mode 100644 index 000000000..236fdee39 --- /dev/null +++ b/src/_icons/coin-monero.svg @@ -0,0 +1,10 @@ +--- +tags: [money, earn, salary, change] +category: E-commerce +unicode: "f4a0" +version: "1.96" +--- + + + + diff --git a/src/_icons/coin-off.svg b/src/_icons/coin-off.svg index af177ea16..c87cd23ee 100644 --- a/src/_icons/coin-off.svg +++ b/src/_icons/coin-off.svg @@ -1,7 +1,7 @@ --- tags: [money, earn, salary, change, dollar] -version: "1.63" category: E-commerce +version: "1.63" unicode: "f0d1" --- diff --git a/src/_icons/coin-pound.svg b/src/_icons/coin-pound.svg index 1312b09e8..986a09f4e 100644 --- a/src/_icons/coin-pound.svg +++ b/src/_icons/coin-pound.svg @@ -5,7 +5,7 @@ version: "1.81" unicode: "f2c0" --- - + diff --git a/src/_icons/coin-rupee.svg b/src/_icons/coin-rupee.svg index 01febb0ed..79c1e22c3 100644 --- a/src/_icons/coin-rupee.svg +++ b/src/_icons/coin-rupee.svg @@ -5,7 +5,7 @@ version: "1.81" unicode: "f2c1" --- - + diff --git a/src/_icons/coin-yen.svg b/src/_icons/coin-yen.svg index 4a35cb173..04c8ea69c 100644 --- a/src/_icons/coin-yen.svg +++ b/src/_icons/coin-yen.svg @@ -5,7 +5,7 @@ version: "1.81" unicode: "f2c2" --- - + diff --git a/src/_icons/coin-yuan.svg b/src/_icons/coin-yuan.svg index 405f9247d..efd7fdf67 100644 --- a/src/_icons/coin-yuan.svg +++ b/src/_icons/coin-yuan.svg @@ -5,7 +5,7 @@ version: "1.81" unicode: "f2c3" --- - + diff --git a/src/_icons/coin.svg b/src/_icons/coin.svg index 4e82a1bd5..41e4ff7c5 100644 --- a/src/_icons/coin.svg +++ b/src/_icons/coin.svg @@ -5,7 +5,7 @@ category: E-commerce unicode: "eb82" --- - + diff --git a/src/_icons/coins.svg b/src/_icons/coins.svg new file mode 100644 index 000000000..48c813374 --- /dev/null +++ b/src/_icons/coins.svg @@ -0,0 +1,11 @@ +--- +unicode: "f65d" +version: "1.119" +--- + + + + + + + diff --git a/src/_icons/color-filter.svg b/src/_icons/color-filter.svg new file mode 100644 index 000000000..b3515bd48 --- /dev/null +++ b/src/_icons/color-filter.svg @@ -0,0 +1,11 @@ +--- +tags: [hue, brightness, effects, sotring, tools] +category: Design +unicode: "f5a8" +version: "1.110" +--- + + + + + diff --git a/src/_icons/color-picker-off.svg b/src/_icons/color-picker-off.svg index 9170c14ad..25b0545e0 100644 --- a/src/_icons/color-picker-off.svg +++ b/src/_icons/color-picker-off.svg @@ -6,6 +6,6 @@ unicode: "f0d2" --- - + diff --git a/src/_icons/color-swatch.svg b/src/_icons/color-swatch.svg index 9a6953d80..c53dc1823 100644 --- a/src/_icons/color-swatch.svg +++ b/src/_icons/color-swatch.svg @@ -8,5 +8,5 @@ unicode: "eb61" - + diff --git a/src/_icons/column-insert-left.svg b/src/_icons/column-insert-left.svg index 9354275a5..7b8f87552 100644 --- a/src/_icons/column-insert-left.svg +++ b/src/_icons/column-insert-left.svg @@ -6,6 +6,6 @@ unicode: "ee44" --- - - + + diff --git a/src/_icons/column-insert-right.svg b/src/_icons/column-insert-right.svg index 8b2787428..cb4bd18cc 100644 --- a/src/_icons/column-insert-right.svg +++ b/src/_icons/column-insert-right.svg @@ -6,6 +6,6 @@ unicode: "ee45" --- - - + + diff --git a/src/_icons/columns-1.svg b/src/_icons/columns-1.svg new file mode 100644 index 000000000..401b6545d --- /dev/null +++ b/src/_icons/columns-1.svg @@ -0,0 +1,6 @@ +--- +category: Text +--- + + + diff --git a/src/_icons/columns-2.svg b/src/_icons/columns-2.svg new file mode 100644 index 000000000..2bca82516 --- /dev/null +++ b/src/_icons/columns-2.svg @@ -0,0 +1,6 @@ +--- +category: Text +--- + + + diff --git a/src/_icons/columns-3.svg b/src/_icons/columns-3.svg new file mode 100644 index 000000000..1f96dec49 --- /dev/null +++ b/src/_icons/columns-3.svg @@ -0,0 +1,6 @@ +--- +category: Text +--- + + + diff --git a/src/_icons/columns.svg b/src/_icons/columns.svg index 27aaf98df..e98e786f9 100644 --- a/src/_icons/columns.svg +++ b/src/_icons/columns.svg @@ -5,12 +5,12 @@ version: "1.3" unicode: "eb83" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/comet.svg b/src/_icons/comet.svg index 80f2473cc..3f34c5672 100644 --- a/src/_icons/comet.svg +++ b/src/_icons/comet.svg @@ -6,7 +6,7 @@ unicode: "ec76" --- - - - + + + diff --git a/src/_icons/command-off.svg b/src/_icons/command-off.svg new file mode 100644 index 000000000..28b145567 --- /dev/null +++ b/src/_icons/command-off.svg @@ -0,0 +1,10 @@ +--- +tags: [apple, key, keyboard, cmd] +category: Symbols +unicode: "f3d7" +version: "1.94" +--- + + + + diff --git a/src/_icons/compass-off.svg b/src/_icons/compass-off.svg index 5d390cc45..59e1c6b86 100644 --- a/src/_icons/compass-off.svg +++ b/src/_icons/compass-off.svg @@ -5,7 +5,7 @@ version: "1.63" unicode: "f0d5" --- - + diff --git a/src/_icons/compass.svg b/src/_icons/compass.svg index 720257263..4597748ed 100644 --- a/src/_icons/compass.svg +++ b/src/_icons/compass.svg @@ -5,10 +5,10 @@ version: "1.0" unicode: "ea79" --- - - - - - - + + + + + + diff --git a/src/_icons/cone-2.svg b/src/_icons/cone-2.svg index fa6369144..a17412e61 100644 --- a/src/_icons/cone-2.svg +++ b/src/_icons/cone-2.svg @@ -4,6 +4,6 @@ version: "1.51" unicode: "efdc" --- - + diff --git a/src/_icons/cone-off.svg b/src/_icons/cone-off.svg new file mode 100644 index 000000000..c3f83c9e8 --- /dev/null +++ b/src/_icons/cone-off.svg @@ -0,0 +1,10 @@ +--- +tags: [geometry, math, object, shape] +unicode: "f3d8" +version: "1.94" +--- + + + + + diff --git a/src/_icons/cone.svg b/src/_icons/cone.svg index 1bfb75eb6..92bd3f58e 100644 --- a/src/_icons/cone.svg +++ b/src/_icons/cone.svg @@ -4,6 +4,6 @@ version: "1.51" unicode: "efdd" --- - + diff --git a/src/_icons/confetti-off.svg b/src/_icons/confetti-off.svg new file mode 100644 index 000000000..3880f5b34 --- /dev/null +++ b/src/_icons/confetti-off.svg @@ -0,0 +1,18 @@ +--- +tags: [party, celebrate, streamers, paper, parade, wedding, celebration] +unicode: "f3d9" +version: "1.94" +--- + + + + + + + + + + + + + diff --git a/src/_icons/confetti.svg b/src/_icons/confetti.svg index de06f8948..5561c699b 100644 --- a/src/_icons/confetti.svg +++ b/src/_icons/confetti.svg @@ -13,5 +13,5 @@ unicode: "ee46" - + diff --git a/src/_icons/confucius.svg b/src/_icons/confucius.svg new file mode 100644 index 000000000..e3aa81f93 --- /dev/null +++ b/src/_icons/confucius.svg @@ -0,0 +1,12 @@ +--- +tags: [culture, religion, philosophy, tradition] +category: Symbols +unicode: "f58a" +version: "1.109" +--- + + + + + + diff --git a/src/_icons/container-off.svg b/src/_icons/container-off.svg index 5083d6c29..a48d43460 100644 --- a/src/_icons/container-off.svg +++ b/src/_icons/container-off.svg @@ -10,7 +10,7 @@ unicode: "f107" - + diff --git a/src/_icons/container.svg b/src/_icons/container.svg index 19889b33d..df16e3a95 100644 --- a/src/_icons/container.svg +++ b/src/_icons/container.svg @@ -10,7 +10,7 @@ unicode: "ee47" - + diff --git a/src/_icons/contrast-2-off.svg b/src/_icons/contrast-2-off.svg new file mode 100644 index 000000000..d98c1d782 --- /dev/null +++ b/src/_icons/contrast-2-off.svg @@ -0,0 +1,11 @@ +--- +tags: [edit, paint, photo] +category: Photography +unicode: "f3da" +version: "1.94" +--- + + + + + diff --git a/src/_icons/contrast-2.svg b/src/_icons/contrast-2.svg index 381b5c197..8f047ccde 100644 --- a/src/_icons/contrast-2.svg +++ b/src/_icons/contrast-2.svg @@ -5,6 +5,6 @@ version: "1.50" unicode: "efc7" --- - + diff --git a/src/_icons/contrast-off.svg b/src/_icons/contrast-off.svg new file mode 100644 index 000000000..01f07b429 --- /dev/null +++ b/src/_icons/contrast-off.svg @@ -0,0 +1,11 @@ +--- +tags: [edit, paint, photo] +category: Photography +unicode: "f3db" +version: "1.94" +--- + + + + + diff --git a/src/_icons/contrast.svg b/src/_icons/contrast.svg index 25f340bb2..a8db1fe56 100644 --- a/src/_icons/contrast.svg +++ b/src/_icons/contrast.svg @@ -5,6 +5,6 @@ version: "1.12" unicode: "ec4e" --- - + diff --git a/src/_icons/cooker.svg b/src/_icons/cooker.svg new file mode 100644 index 000000000..2cec57ad1 --- /dev/null +++ b/src/_icons/cooker.svg @@ -0,0 +1,13 @@ +--- +tags: [kitchen, cook, oven, chef] +unicode: "f57a" +version: "1.108" +--- + + + + + + + + diff --git a/src/_icons/cookie-man.svg b/src/_icons/cookie-man.svg new file mode 100644 index 000000000..4223d9b7a --- /dev/null +++ b/src/_icons/cookie-man.svg @@ -0,0 +1,13 @@ +--- +tags: [food, christmas, sweet, bakery ] +unicode: "f4c4" +version: "1.98" +--- + + + + + + + + diff --git a/src/_icons/copy-off.svg b/src/_icons/copy-off.svg index 53675fea2..2c2002436 100644 --- a/src/_icons/copy-off.svg +++ b/src/_icons/copy-off.svg @@ -5,7 +5,7 @@ version: "1.63" unicode: "f0d8" --- - + diff --git a/src/_icons/copy.svg b/src/_icons/copy.svg index f1e35653e..879b9ca99 100644 --- a/src/_icons/copy.svg +++ b/src/_icons/copy.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea7a" --- - + diff --git a/src/_icons/copyleft-off.svg b/src/_icons/copyleft-off.svg index 190b0f98e..2e292dccb 100644 --- a/src/_icons/copyleft-off.svg +++ b/src/_icons/copyleft-off.svg @@ -1,5 +1,5 @@ --- -tags: [licence, direction] +tags: [licence, license] category: Symbols version: "1.63" unicode: "f0d9" diff --git a/src/_icons/copyleft.svg b/src/_icons/copyleft.svg index c5985506f..172bd67d8 100644 --- a/src/_icons/copyleft.svg +++ b/src/_icons/copyleft.svg @@ -5,6 +5,6 @@ version: "1.11" unicode: "ec3d" --- - + diff --git a/src/_icons/copyright-off.svg b/src/_icons/copyright-off.svg index 2586631c7..5d59228ca 100644 --- a/src/_icons/copyright-off.svg +++ b/src/_icons/copyright-off.svg @@ -1,5 +1,5 @@ --- -tags: [licence, direction] +tags: [licence, license] category: Symbols version: "1.63" unicode: "f0da" diff --git a/src/_icons/copyright.svg b/src/_icons/copyright.svg index 41f54a489..a1d95367a 100644 --- a/src/_icons/copyright.svg +++ b/src/_icons/copyright.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea7b" --- - + diff --git a/src/_icons/cpu-2.svg b/src/_icons/cpu-2.svg index 6e1bd77cc..bd3322068 100644 --- a/src/_icons/cpu-2.svg +++ b/src/_icons/cpu-2.svg @@ -5,7 +5,7 @@ version: "1.59" unicode: "f075" --- - + diff --git a/src/_icons/cpu-off.svg b/src/_icons/cpu-off.svg index 7771a0403..89409462f 100644 --- a/src/_icons/cpu-off.svg +++ b/src/_icons/cpu-off.svg @@ -5,7 +5,7 @@ version: "1.65" unicode: "f108" --- - + diff --git a/src/_icons/cpu.svg b/src/_icons/cpu.svg index 040c32dc6..9b430c89f 100644 --- a/src/_icons/cpu.svg +++ b/src/_icons/cpu.svg @@ -5,7 +5,7 @@ version: "1.47" unicode: "ef8e" --- - + diff --git a/src/_icons/crane-off.svg b/src/_icons/crane-off.svg index 9533216da..8a0f5c600 100644 --- a/src/_icons/crane-off.svg +++ b/src/_icons/crane-off.svg @@ -7,8 +7,8 @@ unicode: "f109" - - + + diff --git a/src/_icons/creative-commons-by.svg b/src/_icons/creative-commons-by.svg index 72993a28b..3ad0ac325 100644 --- a/src/_icons/creative-commons-by.svg +++ b/src/_icons/creative-commons-by.svg @@ -4,7 +4,7 @@ version: "1.72" unicode: "f21f" --- - - + + diff --git a/src/_icons/creative-commons-nc.svg b/src/_icons/creative-commons-nc.svg index fddcf7c44..e16844645 100644 --- a/src/_icons/creative-commons-nc.svg +++ b/src/_icons/creative-commons-nc.svg @@ -4,7 +4,7 @@ version: "1.72" unicode: "f220" --- - + diff --git a/src/_icons/creative-commons-nd.svg b/src/_icons/creative-commons-nd.svg index f51a8d816..041393509 100644 --- a/src/_icons/creative-commons-nd.svg +++ b/src/_icons/creative-commons-nd.svg @@ -4,7 +4,7 @@ version: "1.72" unicode: "f221" --- - + diff --git a/src/_icons/creative-commons-off.svg b/src/_icons/creative-commons-off.svg index cec712c07..4d27d9e36 100644 --- a/src/_icons/creative-commons-off.svg +++ b/src/_icons/creative-commons-off.svg @@ -1,6 +1,6 @@ --- -version: "1.65" tags: [licence, license] +version: "1.65" unicode: "f10a" --- diff --git a/src/_icons/creative-commons-sa.svg b/src/_icons/creative-commons-sa.svg index 7b4ca759a..15ff112f5 100644 --- a/src/_icons/creative-commons-sa.svg +++ b/src/_icons/creative-commons-sa.svg @@ -4,7 +4,7 @@ version: "1.72" unicode: "f222" --- - + diff --git a/src/_icons/creative-commons-zero.svg b/src/_icons/creative-commons-zero.svg index 0534af8be..59229685d 100644 --- a/src/_icons/creative-commons-zero.svg +++ b/src/_icons/creative-commons-zero.svg @@ -4,7 +4,7 @@ version: "1.72" unicode: "f223" --- - - + + diff --git a/src/_icons/creative-commons.svg b/src/_icons/creative-commons.svg index 7ca325629..34639f891 100644 --- a/src/_icons/creative-commons.svg +++ b/src/_icons/creative-commons.svg @@ -4,7 +4,7 @@ tags: [licence, license] unicode: "efb3" --- - + diff --git a/src/_icons/credit-card-off.svg b/src/_icons/credit-card-off.svg index d64f03ddf..8f2d7b5cd 100644 --- a/src/_icons/credit-card-off.svg +++ b/src/_icons/credit-card-off.svg @@ -4,11 +4,11 @@ version: "1.24" unicode: "ed11" --- - + - - - - + + + + diff --git a/src/_icons/credit-card.svg b/src/_icons/credit-card.svg index 864ec47fd..c5dec6866 100644 --- a/src/_icons/credit-card.svg +++ b/src/_icons/credit-card.svg @@ -4,8 +4,8 @@ version: "1.0" unicode: "ea84" --- - - - - + + + + diff --git a/src/_icons/cricket.svg b/src/_icons/cricket.svg index d43488d16..ec72a28a0 100644 --- a/src/_icons/cricket.svg +++ b/src/_icons/cricket.svg @@ -5,7 +5,7 @@ version: "1.61" unicode: "f09a" --- - + - + diff --git a/src/_icons/cross-filled.svg b/src/_icons/cross-filled.svg new file mode 100644 index 000000000..c1d69f80e --- /dev/null +++ b/src/_icons/cross-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f675" +--- + + + diff --git a/src/_icons/crosshair.svg b/src/_icons/crosshair.svg index 57136ae44..971268f0b 100644 --- a/src/_icons/crosshair.svg +++ b/src/_icons/crosshair.svg @@ -8,6 +8,6 @@ unicode: "ec3e" - - + + diff --git a/src/_icons/crown-off.svg b/src/_icons/crown-off.svg index 74a5623fb..078fdfd80 100644 --- a/src/_icons/crown-off.svg +++ b/src/_icons/crown-off.svg @@ -1,9 +1,9 @@ --- -tags: [king, queen, royal, throne, power] +tags: [symbol, queen, king, prince, princess, dynasty, royalty] version: "1.39" unicode: "ee50" --- - + diff --git a/src/_icons/crutches.svg b/src/_icons/crutches.svg index 797ea1989..38a993eb8 100644 --- a/src/_icons/crutches.svg +++ b/src/_icons/crutches.svg @@ -5,7 +5,7 @@ version: "1.44" unicode: "ef5b" --- - + diff --git a/src/_icons/crystal-ball.svg b/src/_icons/crystal-ball.svg new file mode 100644 index 000000000..4b1a8b2a4 --- /dev/null +++ b/src/_icons/crystal-ball.svg @@ -0,0 +1,10 @@ +--- +tags: [magic, fortune, christmas, witch, future ] +unicode: "f57b" +version: "1.108" +--- + + + + + diff --git a/src/_icons/cube-send.svg b/src/_icons/cube-send.svg new file mode 100644 index 000000000..980b3ce63 --- /dev/null +++ b/src/_icons/cube-send.svg @@ -0,0 +1,12 @@ +--- +unicode: "f61b" +version: "1.115" +--- + + + + + + + + diff --git a/src/_icons/cube-unfolded.svg b/src/_icons/cube-unfolded.svg new file mode 100644 index 000000000..fefeff98d --- /dev/null +++ b/src/_icons/cube-unfolded.svg @@ -0,0 +1,8 @@ +--- +unicode: "f61c" +version: "1.115" +--- + + + + diff --git a/src/_icons/curling.svg b/src/_icons/curling.svg index 3139cfd2a..4e5111db0 100644 --- a/src/_icons/curling.svg +++ b/src/_icons/curling.svg @@ -5,7 +5,7 @@ version: "1.50" unicode: "efc8" --- - + diff --git a/src/_icons/currency-afghani.svg b/src/_icons/currency-afghani.svg new file mode 100644 index 000000000..01e37c135 --- /dev/null +++ b/src/_icons/currency-afghani.svg @@ -0,0 +1,10 @@ +--- +category: Currencies +unicode: "f65e" +version: "1.119" +--- + + + + + diff --git a/src/_icons/currency-bahraini.svg b/src/_icons/currency-bahraini.svg index 297f59da8..3010f5b36 100644 --- a/src/_icons/currency-bahraini.svg +++ b/src/_icons/currency-bahraini.svg @@ -8,5 +8,5 @@ unicode: "ee51" - + diff --git a/src/_icons/currency-bitcoin.svg b/src/_icons/currency-bitcoin.svg index edb06c107..e44213a38 100644 --- a/src/_icons/currency-bitcoin.svg +++ b/src/_icons/currency-bitcoin.svg @@ -6,10 +6,10 @@ unicode: "ebab" --- - - - - - - + + + + + + diff --git a/src/_icons/currency-cent.svg b/src/_icons/currency-cent.svg index fbab5efa3..fd680bf02 100644 --- a/src/_icons/currency-cent.svg +++ b/src/_icons/currency-cent.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee53" --- - + diff --git a/src/_icons/currency-dinar.svg b/src/_icons/currency-dinar.svg index 93259c9f6..af525fd09 100644 --- a/src/_icons/currency-dinar.svg +++ b/src/_icons/currency-dinar.svg @@ -8,5 +8,5 @@ unicode: "ee54" - + diff --git a/src/_icons/currency-dollar-brunei.svg b/src/_icons/currency-dollar-brunei.svg new file mode 100644 index 000000000..2e973cf4a --- /dev/null +++ b/src/_icons/currency-dollar-brunei.svg @@ -0,0 +1,12 @@ +--- +tags: [exchange, buisness, commerce] +category: Currencies +unicode: "f36c" +version: "1.90" +--- + + + + + + diff --git a/src/_icons/currency-dollar-guyanese.svg b/src/_icons/currency-dollar-guyanese.svg new file mode 100644 index 000000000..a1974903f --- /dev/null +++ b/src/_icons/currency-dollar-guyanese.svg @@ -0,0 +1,12 @@ +--- +tags: [exchange, buisness, commerce] +category: Currencies +unicode: "f36d" +version: "1.90" +--- + + + + + + diff --git a/src/_icons/currency-dollar-off.svg b/src/_icons/currency-dollar-off.svg new file mode 100644 index 000000000..f69551224 --- /dev/null +++ b/src/_icons/currency-dollar-off.svg @@ -0,0 +1,11 @@ +--- +tags: [american, us, dollar, usd, sign, bucks, usa, money, banknote, pay] +category: Currencies +unicode: "f3dc" +version: "1.94" +--- + + + + + diff --git a/src/_icons/currency-dollar-zimbabwean.svg b/src/_icons/currency-dollar-zimbabwean.svg new file mode 100644 index 000000000..9accf5f85 --- /dev/null +++ b/src/_icons/currency-dollar-zimbabwean.svg @@ -0,0 +1,12 @@ +--- +tags: [exchange, buisness, commerce] +category: Currencies +unicode: "f36e" +version: "1.90" +--- + + + + + + diff --git a/src/_icons/currency-dong.svg b/src/_icons/currency-dong.svg new file mode 100644 index 000000000..98b6927de --- /dev/null +++ b/src/_icons/currency-dong.svg @@ -0,0 +1,12 @@ +--- +tags: [vietnam, exchange, finance, money, cash] +category: Currencies +unicode: "f36f" +version: "1.90" +--- + + + + + + diff --git a/src/_icons/currency-dram.svg b/src/_icons/currency-dram.svg new file mode 100644 index 000000000..62e09e495 --- /dev/null +++ b/src/_icons/currency-dram.svg @@ -0,0 +1,11 @@ +--- +tags: [exchange, finance, money, cash, armenia] +category: Currencies +unicode: "f370" +version: "1.90" +--- + + + + + diff --git a/src/_icons/currency-euro-off.svg b/src/_icons/currency-euro-off.svg new file mode 100644 index 000000000..6044c751c --- /dev/null +++ b/src/_icons/currency-euro-off.svg @@ -0,0 +1,11 @@ +--- +tags: [euro, eur, trade, finance, europe, eu, money, banknote, pay] +category: Currencies +unicode: "f3dd" +version: "1.94" +--- + + + + + diff --git a/src/_icons/currency-guarani.svg b/src/_icons/currency-guarani.svg new file mode 100644 index 000000000..3fcdff01a --- /dev/null +++ b/src/_icons/currency-guarani.svg @@ -0,0 +1,10 @@ +--- +tags: [exchange, finance, money, cash, paraguay] +category: Currencies +unicode: "f371" +version: "1.90" +--- + + + + diff --git a/src/_icons/currency-hryvnia.svg b/src/_icons/currency-hryvnia.svg new file mode 100644 index 000000000..7587c3842 --- /dev/null +++ b/src/_icons/currency-hryvnia.svg @@ -0,0 +1,11 @@ +--- +tags: [exchange, finance, money, cash, ukraine] +category: Currencies +unicode: "f372" +version: "1.90" +--- + + + + + diff --git a/src/_icons/currency-kip.svg b/src/_icons/currency-kip.svg new file mode 100644 index 000000000..f89de0075 --- /dev/null +++ b/src/_icons/currency-kip.svg @@ -0,0 +1,11 @@ +--- +tags: [exchange, finance, money, cash, laos] +category: Currencies +unicode: "f373" +version: "1.90" +--- + + + + + diff --git a/src/_icons/currency-lari.svg b/src/_icons/currency-lari.svg new file mode 100644 index 000000000..6b4a00181 --- /dev/null +++ b/src/_icons/currency-lari.svg @@ -0,0 +1,12 @@ +--- +tags: [exchange, finance, money, cash, georgia] +category: Currencies +unicode: "f374" +version: "1.90" +--- + + + + + + diff --git a/src/_icons/currency-lyd.svg b/src/_icons/currency-lyd.svg new file mode 100644 index 000000000..dc4dc9560 --- /dev/null +++ b/src/_icons/currency-lyd.svg @@ -0,0 +1,11 @@ +--- +tags: [exchange, finance, money, cash, libya] +category: Currencies +unicode: "f375" +version: "1.90" +--- + + + + + diff --git a/src/_icons/currency-manat.svg b/src/_icons/currency-manat.svg new file mode 100644 index 000000000..c6c2e98c0 --- /dev/null +++ b/src/_icons/currency-manat.svg @@ -0,0 +1,10 @@ +--- +tags: [exchange, finance, money, cash, azerbaijan] +category: Currencies +unicode: "f376" +version: "1.90" +--- + + + + diff --git a/src/_icons/currency-monero.svg b/src/_icons/currency-monero.svg new file mode 100644 index 000000000..28458c195 --- /dev/null +++ b/src/_icons/currency-monero.svg @@ -0,0 +1,9 @@ +--- +tags: [exchange, finance, money, cash, cryptocurrency] +category: Currencies +unicode: "f377" +version: "1.90" +--- + + + diff --git a/src/_icons/currency-off.svg b/src/_icons/currency-off.svg new file mode 100644 index 000000000..f23c5dfed --- /dev/null +++ b/src/_icons/currency-off.svg @@ -0,0 +1,14 @@ +--- +tags: [target, goal, focus, marketing] +category: Currencies +unicode: "f3de" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/currency-paanga.svg b/src/_icons/currency-paanga.svg new file mode 100644 index 000000000..a9dfb5792 --- /dev/null +++ b/src/_icons/currency-paanga.svg @@ -0,0 +1,13 @@ +--- +tags: [exchange, finance, money, cash, tonga] +category: Currencies +unicode: "f378" +version: "1.90" +--- + + + + + + + diff --git a/src/_icons/currency-peso.svg b/src/_icons/currency-peso.svg new file mode 100644 index 000000000..266080d7d --- /dev/null +++ b/src/_icons/currency-peso.svg @@ -0,0 +1,10 @@ +--- +category: Currencies +unicode: "f65f" +version: "1.119" +--- + + + + + diff --git a/src/_icons/currency-pound-off.svg b/src/_icons/currency-pound-off.svg new file mode 100644 index 000000000..03456d618 --- /dev/null +++ b/src/_icons/currency-pound-off.svg @@ -0,0 +1,10 @@ +--- +tags: [gbp, pound, sterling, british, britain, uk, money, banknote, pay] +category: Currencies +unicode: "f3df" +version: "1.94" +--- + + + + diff --git a/src/_icons/currency-quetzal.svg b/src/_icons/currency-quetzal.svg new file mode 100644 index 000000000..e0d0415e7 --- /dev/null +++ b/src/_icons/currency-quetzal.svg @@ -0,0 +1,10 @@ +--- +tags: [exchange, finance, money, cash, guatemala] +category: Currencies +unicode: "f379" +version: "1.90" +--- + + + + diff --git a/src/_icons/currency-ripple.svg b/src/_icons/currency-ripple.svg index b13bc8b19..692a293dc 100644 --- a/src/_icons/currency-ripple.svg +++ b/src/_icons/currency-ripple.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "ee65" --- - - - + + + diff --git a/src/_icons/currency-rufiyaa.svg b/src/_icons/currency-rufiyaa.svg new file mode 100644 index 000000000..a7afdcf8f --- /dev/null +++ b/src/_icons/currency-rufiyaa.svg @@ -0,0 +1,11 @@ +--- +tags: [exchange, finance, money, cash, maldives] +category: Currencies +unicode: "f37a" +version: "1.90" +--- + + + + + diff --git a/src/_icons/currency-rupee-nepalese.svg b/src/_icons/currency-rupee-nepalese.svg new file mode 100644 index 000000000..86d419f54 --- /dev/null +++ b/src/_icons/currency-rupee-nepalese.svg @@ -0,0 +1,10 @@ +--- +tags: [exchange, finance, money, cash, nepal] +category: Currencies +unicode: "f37b" +version: "1.90" +--- + + + + diff --git a/src/_icons/currency-rupee.svg b/src/_icons/currency-rupee.svg index 2f215158f..ad2a2f63c 100644 --- a/src/_icons/currency-rupee.svg +++ b/src/_icons/currency-rupee.svg @@ -6,5 +6,5 @@ unicode: "ebad" --- - + diff --git a/src/_icons/currency-solana.svg b/src/_icons/currency-solana.svg new file mode 100644 index 000000000..9c5389ae3 --- /dev/null +++ b/src/_icons/currency-solana.svg @@ -0,0 +1,11 @@ +--- +tags: [crypto, bitcoin, mining, digital, cryptocurrency ] +category: Currencies +unicode: "f4a1" +version: "1.96" +--- + + + + + diff --git a/src/_icons/currency-som.svg b/src/_icons/currency-som.svg new file mode 100644 index 000000000..56615c9dc --- /dev/null +++ b/src/_icons/currency-som.svg @@ -0,0 +1,10 @@ +--- +tags: [exchange, finance, money, cash, kyrgyzstan] +category: Currencies +unicode: "f37c" +version: "1.90" +--- + + + + diff --git a/src/_icons/currency-taka.svg b/src/_icons/currency-taka.svg index c46ae5841..fdc1a3472 100644 --- a/src/_icons/currency-taka.svg +++ b/src/_icons/currency-taka.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee69" --- - + diff --git a/src/_icons/currency-tenge.svg b/src/_icons/currency-tenge.svg new file mode 100644 index 000000000..0b7bc141d --- /dev/null +++ b/src/_icons/currency-tenge.svg @@ -0,0 +1,11 @@ +--- +tags: [exchange, finance, money, cash, kazakhstan] +category: Currencies +unicode: "f37d" +version: "1.90" +--- + + + + + diff --git a/src/_icons/currency-yen-off.svg b/src/_icons/currency-yen-off.svg new file mode 100644 index 000000000..197a242ca --- /dev/null +++ b/src/_icons/currency-yen-off.svg @@ -0,0 +1,12 @@ +--- +tags: [japanese, yen, jpy, chinese, money, banknote, pay] +category: Currencies +unicode: "f3e0" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/currency-yen.svg b/src/_icons/currency-yen.svg index f1eb5df5c..49c8087bc 100644 --- a/src/_icons/currency-yen.svg +++ b/src/_icons/currency-yen.svg @@ -6,6 +6,6 @@ unicode: "ebae" --- - - + + diff --git a/src/_icons/currency-yuan.svg b/src/_icons/currency-yuan.svg index 21269a072..062b1a3c9 100644 --- a/src/_icons/currency-yuan.svg +++ b/src/_icons/currency-yuan.svg @@ -1,4 +1,5 @@ --- +tags: [exchange, finance, money, cash, china] category: Currencies version: "1.79" unicode: "f29a" diff --git a/src/_icons/currency.svg b/src/_icons/currency.svg index fd1fb8e32..66c587f7b 100644 --- a/src/_icons/currency.svg +++ b/src/_icons/currency.svg @@ -5,7 +5,7 @@ version: "1.48" unicode: "efa6" --- - + diff --git a/src/_icons/current-location.svg b/src/_icons/current-location.svg index 6f128f66b..352f926b8 100644 --- a/src/_icons/current-location.svg +++ b/src/_icons/current-location.svg @@ -5,10 +5,10 @@ version: "1.22" unicode: "ecef" --- - - - - - - + + + + + + diff --git a/src/_icons/cut.svg b/src/_icons/cut.svg index 4cddf3d5b..f5f80f8df 100644 --- a/src/_icons/cut.svg +++ b/src/_icons/cut.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea86" --- - - - - + + + + diff --git a/src/_icons/cylinder.svg b/src/_icons/cylinder.svg new file mode 100644 index 000000000..c921ec94d --- /dev/null +++ b/src/_icons/cylinder.svg @@ -0,0 +1,10 @@ +--- +tags: [geometry, gas, tube, object, piston] +category: Shapes +version: "1.105" +unicode: "f54c" +--- + + + + diff --git a/src/_icons/dashboard-off.svg b/src/_icons/dashboard-off.svg new file mode 100644 index 000000000..11fb60660 --- /dev/null +++ b/src/_icons/dashboard-off.svg @@ -0,0 +1,12 @@ +--- +tags: [home, car] +category: System +unicode: "f3e1" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/dashboard.svg b/src/_icons/dashboard.svg index 466152272..8504775f1 100644 --- a/src/_icons/dashboard.svg +++ b/src/_icons/dashboard.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea87" --- - - + + diff --git a/src/_icons/database-export.svg b/src/_icons/database-export.svg index edc9e12df..b5670788e 100644 --- a/src/_icons/database-export.svg +++ b/src/_icons/database-export.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee6e" --- - + - + diff --git a/src/_icons/database-import.svg b/src/_icons/database-import.svg index fd858fffe..7e3ca96b6 100644 --- a/src/_icons/database-import.svg +++ b/src/_icons/database-import.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee6f" --- - + diff --git a/src/_icons/database-off.svg b/src/_icons/database-off.svg index 01b1d612e..eee3bf196 100644 --- a/src/_icons/database-off.svg +++ b/src/_icons/database-off.svg @@ -1,6 +1,6 @@ --- +tags: [storage, data, memory] category: Database -tags: [data, file, storage, table, system] version: "1.39" unicode: "ee70" --- @@ -8,5 +8,5 @@ unicode: "ee70" - + diff --git a/src/_icons/database.svg b/src/_icons/database.svg index b6abc7a27..d69f0fdc7 100644 --- a/src/_icons/database.svg +++ b/src/_icons/database.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea88" --- - + diff --git a/src/_icons/deer.svg b/src/_icons/deer.svg new file mode 100644 index 000000000..f812de61c --- /dev/null +++ b/src/_icons/deer.svg @@ -0,0 +1,19 @@ +--- +tags: [animal, christmas, santa, forest ] +category: Animals +unicode: "f4c5" +version: "1.98" +--- + + + + + + + + + + + + + diff --git a/src/_icons/delta.svg b/src/_icons/delta.svg new file mode 100644 index 000000000..974b87d02 --- /dev/null +++ b/src/_icons/delta.svg @@ -0,0 +1,8 @@ +--- +tags: [letter, alphabet, greek, math ] +unicode: "f53c" +version: "1.104" +--- + + + diff --git a/src/_icons/dental-broken.svg b/src/_icons/dental-broken.svg index f966af290..8b85c07dc 100644 --- a/src/_icons/dental-broken.svg +++ b/src/_icons/dental-broken.svg @@ -4,6 +4,6 @@ version: "1.78" unicode: "f286" --- - + diff --git a/src/_icons/dental-off.svg b/src/_icons/dental-off.svg index 36bd0d13c..33bc755db 100644 --- a/src/_icons/dental-off.svg +++ b/src/_icons/dental-off.svg @@ -5,7 +5,7 @@ version: "1.65" unicode: "f110" --- - + diff --git a/src/_icons/dental.svg b/src/_icons/dental.svg index 2b9055283..cc5a27309 100644 --- a/src/_icons/dental.svg +++ b/src/_icons/dental.svg @@ -5,6 +5,6 @@ version: "1.55" unicode: "f025" --- - + diff --git a/src/_icons/details-off.svg b/src/_icons/details-off.svg new file mode 100644 index 000000000..3b21a94ba --- /dev/null +++ b/src/_icons/details-off.svg @@ -0,0 +1,11 @@ +--- +tags: [geometric, half, shape, highlight, triangle] +unicode: "f3e2" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/device-airpods-case.svg b/src/_icons/device-airpods-case.svg new file mode 100644 index 000000000..b584d0b4b --- /dev/null +++ b/src/_icons/device-airpods-case.svg @@ -0,0 +1,10 @@ +--- +category: Devices +unicode: "f646" +version: "1.118" +--- + + + + + diff --git a/src/_icons/device-airpods.svg b/src/_icons/device-airpods.svg new file mode 100644 index 000000000..58374d00d --- /dev/null +++ b/src/_icons/device-airpods.svg @@ -0,0 +1,10 @@ +--- +tags: [music, iphone, apple, wireless, headphones, sound, earbuds] +category: Devices +unicode: "f5a9" +version: "1.110" +--- + + + + diff --git a/src/_icons/device-analytics.svg b/src/_icons/device-analytics.svg index 8b4c88ee2..f881d791b 100644 --- a/src/_icons/device-analytics.svg +++ b/src/_icons/device-analytics.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "ee72" --- - - - - + + + + diff --git a/src/_icons/device-audio-tape.svg b/src/_icons/device-audio-tape.svg index 1a2761c9e..a4275af1e 100644 --- a/src/_icons/device-audio-tape.svg +++ b/src/_icons/device-audio-tape.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee73" --- - + diff --git a/src/_icons/device-camera-phone.svg b/src/_icons/device-camera-phone.svg index fe8d264cf..1094b1f70 100644 --- a/src/_icons/device-camera-phone.svg +++ b/src/_icons/device-camera-phone.svg @@ -5,7 +5,7 @@ version: "1.73" unicode: "f233" --- - + diff --git a/src/_icons/device-cctv-off.svg b/src/_icons/device-cctv-off.svg new file mode 100644 index 000000000..572aa719b --- /dev/null +++ b/src/_icons/device-cctv-off.svg @@ -0,0 +1,13 @@ +--- +tags: [closed, circuit, television, video, surveillance, signal, monitor, record] +category: Devices +unicode: "f3e3" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/device-cctv.svg b/src/_icons/device-cctv.svg index 1fc27d377..de983153d 100644 --- a/src/_icons/device-cctv.svg +++ b/src/_icons/device-cctv.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "ee74" --- - - + + - + diff --git a/src/_icons/device-computer-camera-off.svg b/src/_icons/device-computer-camera-off.svg index 77f81a200..150271854 100644 --- a/src/_icons/device-computer-camera-off.svg +++ b/src/_icons/device-computer-camera-off.svg @@ -1,6 +1,6 @@ --- -category: Devices tags: [video, meeting, record, recording, webcam] +category: Devices version: "1.39" unicode: "ee75" --- @@ -8,5 +8,5 @@ unicode: "ee75" - + diff --git a/src/_icons/device-computer-camera.svg b/src/_icons/device-computer-camera.svg index 97f385bbb..ee8666bd0 100644 --- a/src/_icons/device-computer-camera.svg +++ b/src/_icons/device-computer-camera.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee76" --- - - + + diff --git a/src/_icons/device-desktop-analytics.svg b/src/_icons/device-desktop-analytics.svg index 0c8f90d1e..618e27c1f 100644 --- a/src/_icons/device-desktop-analytics.svg +++ b/src/_icons/device-desktop-analytics.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee77" --- - + diff --git a/src/_icons/device-desktop-off.svg b/src/_icons/device-desktop-off.svg index 6f7f11da7..63bce1846 100644 --- a/src/_icons/device-desktop-off.svg +++ b/src/_icons/device-desktop-off.svg @@ -1,13 +1,13 @@ --- -category: Devices tags: [monitor, computer, imac] +category: Devices version: "1.39" unicode: "ee78" --- - - - - + + + + diff --git a/src/_icons/device-desktop.svg b/src/_icons/device-desktop.svg index 0d9439568..078fdde89 100644 --- a/src/_icons/device-desktop.svg +++ b/src/_icons/device-desktop.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea89" --- - - - - + + + + diff --git a/src/_icons/device-floppy.svg b/src/_icons/device-floppy.svg index 5dd92b642..9b8677103 100644 --- a/src/_icons/device-floppy.svg +++ b/src/_icons/device-floppy.svg @@ -1,11 +1,11 @@ --- -tags: [save, file] +tags: [save, file, disk] category: Devices version: "1.2" unicode: "eb62" --- - - + + diff --git a/src/_icons/device-gamepad.svg b/src/_icons/device-gamepad.svg index 0de5d443f..71fe19bea 100644 --- a/src/_icons/device-gamepad.svg +++ b/src/_icons/device-gamepad.svg @@ -5,8 +5,8 @@ version: "1.2" unicode: "eb63" --- - + - - + + diff --git a/src/_icons/device-heart-monitor.svg b/src/_icons/device-heart-monitor.svg index 270eb9d12..183c8df90 100644 --- a/src/_icons/device-heart-monitor.svg +++ b/src/_icons/device-heart-monitor.svg @@ -5,7 +5,7 @@ category: Devices unicode: "f060" --- - + diff --git a/src/_icons/device-ipad-horizontal.svg b/src/_icons/device-ipad-horizontal.svg new file mode 100644 index 000000000..6734debcf --- /dev/null +++ b/src/_icons/device-ipad-horizontal.svg @@ -0,0 +1,9 @@ +--- +category: Devices +unicode: "f647" +version: "1.118" +--- + + + + diff --git a/src/_icons/device-ipad.svg b/src/_icons/device-ipad.svg new file mode 100644 index 000000000..b0a796a44 --- /dev/null +++ b/src/_icons/device-ipad.svg @@ -0,0 +1,9 @@ +--- +category: Devices +unicode: "f648" +version: "1.118" +--- + + + + diff --git a/src/_icons/device-landline-phone.svg b/src/_icons/device-landline-phone.svg new file mode 100644 index 000000000..64f26b3bb --- /dev/null +++ b/src/_icons/device-landline-phone.svg @@ -0,0 +1,16 @@ +--- +category: Devices +unicode: "f649" +version: "1.118" +--- + + + + + + + + + + + diff --git a/src/_icons/device-laptop.svg b/src/_icons/device-laptop.svg index 12ef7c3ee..9343f2e66 100644 --- a/src/_icons/device-laptop.svg +++ b/src/_icons/device-laptop.svg @@ -5,6 +5,6 @@ version: "1.2" unicode: "eb64" --- - - + + diff --git a/src/_icons/device-mobile-charging.svg b/src/_icons/device-mobile-charging.svg index d7f559e23..d4abba91a 100644 --- a/src/_icons/device-mobile-charging.svg +++ b/src/_icons/device-mobile-charging.svg @@ -5,7 +5,7 @@ version: "1.72" unicode: "f224" --- - + diff --git a/src/_icons/device-mobile-rotated.svg b/src/_icons/device-mobile-rotated.svg index f29319daa..834d0e1a3 100644 --- a/src/_icons/device-mobile-rotated.svg +++ b/src/_icons/device-mobile-rotated.svg @@ -5,7 +5,7 @@ version: "1.20" unicode: "ecdb" --- - + diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index db84e3629..11ee84f18 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -5,8 +5,8 @@ version: "1.3" unicode: "eb86" --- - - - + + + diff --git a/src/_icons/device-mobile.svg b/src/_icons/device-mobile.svg index c39c8f37b..ff0d2d946 100644 --- a/src/_icons/device-mobile.svg +++ b/src/_icons/device-mobile.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ea8a" --- - - - + + + diff --git a/src/_icons/device-nintendo-off.svg b/src/_icons/device-nintendo-off.svg index e1bd8e719..64d64841f 100644 --- a/src/_icons/device-nintendo-off.svg +++ b/src/_icons/device-nintendo-off.svg @@ -5,8 +5,8 @@ version: "1.65" unicode: "f111" --- - + - + diff --git a/src/_icons/device-sd-card.svg b/src/_icons/device-sd-card.svg new file mode 100644 index 000000000..af83fed8d --- /dev/null +++ b/src/_icons/device-sd-card.svg @@ -0,0 +1,12 @@ +--- +tags: [memory, storage, technology, data] +category: Devices +unicode: "f384" +version: "1.91" +--- + + + + + + diff --git a/src/_icons/device-sim-1.svg b/src/_icons/device-sim-1.svg new file mode 100644 index 000000000..787b9f9d3 --- /dev/null +++ b/src/_icons/device-sim-1.svg @@ -0,0 +1,10 @@ +--- +tags: [card, phone, mobile, smartphone ] +category: Devices +unicode: "f4af" +version: "1.97" +--- + + + + diff --git a/src/_icons/device-sim-2.svg b/src/_icons/device-sim-2.svg new file mode 100644 index 000000000..a8b998e26 --- /dev/null +++ b/src/_icons/device-sim-2.svg @@ -0,0 +1,10 @@ +--- +tags: [card, phone, mobile, smartphone ] +category: Devices +unicode: "f4b0" +version: "1.97" +--- + + + + diff --git a/src/_icons/device-sim-3.svg b/src/_icons/device-sim-3.svg new file mode 100644 index 000000000..fcee6f6db --- /dev/null +++ b/src/_icons/device-sim-3.svg @@ -0,0 +1,10 @@ +--- +tags: [card, phone, mobile, smartphone ] +category: Devices +unicode: "f4b1" +version: "1.97" +--- + + + + diff --git a/src/_icons/device-sim.svg b/src/_icons/device-sim.svg new file mode 100644 index 000000000..bfdda5d1a --- /dev/null +++ b/src/_icons/device-sim.svg @@ -0,0 +1,15 @@ +--- +tags: [card, phone, mobile, smartphone ] +category: Devices +unicode: "f4b2" +version: "1.97" +--- + + + + + + + + + diff --git a/src/_icons/device-speaker-off.svg b/src/_icons/device-speaker-off.svg index d5466805e..ac49ed4bc 100644 --- a/src/_icons/device-speaker-off.svg +++ b/src/_icons/device-speaker-off.svg @@ -6,7 +6,7 @@ unicode: "f112" --- - + diff --git a/src/_icons/device-speaker.svg b/src/_icons/device-speaker.svg index 106f4e98a..e88a3bbf0 100644 --- a/src/_icons/device-speaker.svg +++ b/src/_icons/device-speaker.svg @@ -5,7 +5,7 @@ version: "1.1" unicode: "ea8b" --- - - - + + + diff --git a/src/_icons/device-tablet-off.svg b/src/_icons/device-tablet-off.svg index a3386474a..e26bf7118 100644 --- a/src/_icons/device-tablet-off.svg +++ b/src/_icons/device-tablet-off.svg @@ -6,6 +6,6 @@ unicode: "f063" --- - + diff --git a/src/_icons/device-tablet.svg b/src/_icons/device-tablet.svg index 3d40a91ea..1919fe9ca 100644 --- a/src/_icons/device-tablet.svg +++ b/src/_icons/device-tablet.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea8c" --- - - + + diff --git a/src/_icons/device-tv-old.svg b/src/_icons/device-tv-old.svg index 509a192d3..8b16ec90b 100644 --- a/src/_icons/device-tv-old.svg +++ b/src/_icons/device-tv-old.svg @@ -5,7 +5,7 @@ version: "1.68" unicode: "f1d3" --- - + diff --git a/src/_icons/device-tv.svg b/src/_icons/device-tv.svg index 2b7b81c28..e7b293717 100644 --- a/src/_icons/device-tv.svg +++ b/src/_icons/device-tv.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea8d" --- - - + + diff --git a/src/_icons/device-watch-stats-2.svg b/src/_icons/device-watch-stats-2.svg index cd567c1c2..cc29a6eb9 100644 --- a/src/_icons/device-watch-stats-2.svg +++ b/src/_icons/device-watch-stats-2.svg @@ -5,7 +5,7 @@ version: "1.46" unicode: "ef7c" --- - + diff --git a/src/_icons/device-watch-stats.svg b/src/_icons/device-watch-stats.svg index 1fbc200c7..ba2536401 100644 --- a/src/_icons/device-watch-stats.svg +++ b/src/_icons/device-watch-stats.svg @@ -5,7 +5,7 @@ version: "1.46" unicode: "ef7d" --- - + diff --git a/src/_icons/device-watch.svg b/src/_icons/device-watch.svg index 49dfe9296..ac7252943 100644 --- a/src/_icons/device-watch.svg +++ b/src/_icons/device-watch.svg @@ -5,7 +5,7 @@ version: "1.8" unicode: "ebf9" --- - + diff --git a/src/_icons/devices-2.svg b/src/_icons/devices-2.svg index bd76bbb2b..bb1eb0a1f 100644 --- a/src/_icons/devices-2.svg +++ b/src/_icons/devices-2.svg @@ -6,9 +6,9 @@ unicode: "ed29" --- - - - - - + + + + + diff --git a/src/_icons/devices-off.svg b/src/_icons/devices-off.svg index e259038d2..354d99c60 100644 --- a/src/_icons/devices-off.svg +++ b/src/_icons/devices-off.svg @@ -1,8 +1,8 @@ --- tags: [computer, laptop, notebook, tablet, phone, mobile, mac, iphone] category: Devices -version: "1.58" -unicode: "f066" +unicode: "f3e4" +version: "1.94" --- diff --git a/src/_icons/devices.svg b/src/_icons/devices.svg index 3b2c968c3..f89a5b8d0 100644 --- a/src/_icons/devices.svg +++ b/src/_icons/devices.svg @@ -5,7 +5,7 @@ version: "1.3" unicode: "eb87" --- - + - + diff --git a/src/_icons/diamonds-filled.svg b/src/_icons/diamonds-filled.svg new file mode 100644 index 000000000..70f020dab --- /dev/null +++ b/src/_icons/diamonds-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..507eba57b 100644 --- a/src/_icons/dice-1.svg +++ b/src/_icons/dice-1.svg @@ -4,6 +4,6 @@ version: "1.60" unicode: "f08b" --- - + diff --git a/src/_icons/dice-2.svg b/src/_icons/dice-2.svg index 344eda0b8..35501f1e1 100644 --- a/src/_icons/dice-2.svg +++ b/src/_icons/dice-2.svg @@ -4,7 +4,7 @@ version: "1.60" unicode: "f08c" --- - + diff --git a/src/_icons/dice-3.svg b/src/_icons/dice-3.svg index 266c88e6d..b471435b9 100644 --- a/src/_icons/dice-3.svg +++ b/src/_icons/dice-3.svg @@ -4,7 +4,7 @@ version: "1.60" unicode: "f08d" --- - + diff --git a/src/_icons/dice-4.svg b/src/_icons/dice-4.svg index 925d25dad..9abea85d8 100644 --- a/src/_icons/dice-4.svg +++ b/src/_icons/dice-4.svg @@ -4,7 +4,7 @@ version: "1.60" unicode: "f08e" --- - + diff --git a/src/_icons/dice-5.svg b/src/_icons/dice-5.svg index d38549402..b93cd7ad8 100644 --- a/src/_icons/dice-5.svg +++ b/src/_icons/dice-5.svg @@ -4,7 +4,7 @@ version: "1.60" unicode: "f08f" --- - + diff --git a/src/_icons/dice-6.svg b/src/_icons/dice-6.svg index 48a20f112..272896f7d 100644 --- a/src/_icons/dice-6.svg +++ b/src/_icons/dice-6.svg @@ -4,7 +4,7 @@ version: "1.60" unicode: "f090" --- - + diff --git a/src/_icons/dice.svg b/src/_icons/dice.svg index 848c107a6..cdca1a6ec 100644 --- a/src/_icons/dice.svg +++ b/src/_icons/dice.svg @@ -4,7 +4,7 @@ version: "1.2" unicode: "eb66" --- - + diff --git a/src/_icons/dimensions.svg b/src/_icons/dimensions.svg index b714abcac..267954be6 100644 --- a/src/_icons/dimensions.svg +++ b/src/_icons/dimensions.svg @@ -11,5 +11,5 @@ unicode: "ee7b" - + diff --git a/src/_icons/direction-sign-off.svg b/src/_icons/direction-sign-off.svg new file mode 100644 index 000000000..8c38e2977 --- /dev/null +++ b/src/_icons/direction-sign-off.svg @@ -0,0 +1,11 @@ +--- +tags: [arrow, navigation, forward, right] +unicode: "f3e5" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/disabled-2.svg b/src/_icons/disabled-2.svg index 33e67b4cd..7e96c4585 100644 --- a/src/_icons/disabled-2.svg +++ b/src/_icons/disabled-2.svg @@ -5,7 +5,7 @@ version: "1.4" unicode: "ebaf" --- - + diff --git a/src/_icons/disabled-off.svg b/src/_icons/disabled-off.svg index 7aab86e70..9c74f025a 100644 --- a/src/_icons/disabled-off.svg +++ b/src/_icons/disabled-off.svg @@ -1,5 +1,5 @@ --- -tags: [wheelchair, accessible, handicapped] +tags: [wheelchair, handicapped] category: Health version: "1.65" unicode: "f117" diff --git a/src/_icons/disabled.svg b/src/_icons/disabled.svg index f08ae96b3..677d14cc1 100644 --- a/src/_icons/disabled.svg +++ b/src/_icons/disabled.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea8f" --- - - - + + + diff --git a/src/_icons/disc-golf.svg b/src/_icons/disc-golf.svg new file mode 100644 index 000000000..08b676008 --- /dev/null +++ b/src/_icons/disc-golf.svg @@ -0,0 +1,17 @@ +--- +tags: [frisbee, throw, sport, activity] +category: Sport +unicode: "f385" +version: "1.91" +--- + + + + + + + + + + + diff --git a/src/_icons/disc-off.svg b/src/_icons/disc-off.svg index 2c87e5617..d3a7cbfd0 100644 --- a/src/_icons/disc-off.svg +++ b/src/_icons/disc-off.svg @@ -5,7 +5,7 @@ version: "1.65" unicode: "f118" --- - + diff --git a/src/_icons/disc.svg b/src/_icons/disc.svg index 9549196c8..214b1ed63 100644 --- a/src/_icons/disc.svg +++ b/src/_icons/disc.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea90" --- - - + + diff --git a/src/_icons/discount-2-off.svg b/src/_icons/discount-2-off.svg new file mode 100644 index 000000000..e9d3a4595 --- /dev/null +++ b/src/_icons/discount-2-off.svg @@ -0,0 +1,13 @@ +--- +tags: [sale, reduction, price, cost, money, shopping, bargain] +category: E-commerce +unicode: "f3e6" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/discount-2.svg b/src/_icons/discount-2.svg index ff1399354..fe03a7cfd 100644 --- a/src/_icons/discount-2.svg +++ b/src/_icons/discount-2.svg @@ -5,7 +5,7 @@ version: "1.5" unicode: "ee7c" --- - + diff --git a/src/_icons/discount-off.svg b/src/_icons/discount-off.svg new file mode 100644 index 000000000..38f3698ff --- /dev/null +++ b/src/_icons/discount-off.svg @@ -0,0 +1,13 @@ +--- +tags: [sale, reduction, price, cost, money, shopping, bargain] +category: E-commerce +unicode: "f3e7" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/discount.svg b/src/_icons/discount.svg index 274b1da56..4ae560bbf 100644 --- a/src/_icons/discount.svg +++ b/src/_icons/discount.svg @@ -5,8 +5,8 @@ version: "1.35" unicode: "ebbd" --- - + - + diff --git a/src/_icons/divide.svg b/src/_icons/divide.svg index f50cc4506..11102cc74 100644 --- a/src/_icons/divide.svg +++ b/src/_icons/divide.svg @@ -5,7 +5,7 @@ version: "1.31" unicode: "ed5c" --- - - - + + + diff --git a/src/_icons/dna-2-off.svg b/src/_icons/dna-2-off.svg index 47b8491f4..f45a695e4 100644 --- a/src/_icons/dna-2-off.svg +++ b/src/_icons/dna-2-off.svg @@ -5,8 +5,8 @@ version: "1.65" unicode: "f119" --- - - + + diff --git a/src/_icons/dna-2.svg b/src/_icons/dna-2.svg index f99b4f4d2..d01054fc3 100644 --- a/src/_icons/dna-2.svg +++ b/src/_icons/dna-2.svg @@ -5,8 +5,8 @@ version: "1.44" unicode: "ef5c" --- - - + + diff --git a/src/_icons/dna.svg b/src/_icons/dna.svg index f57221680..ba0b0dc40 100644 --- a/src/_icons/dna.svg +++ b/src/_icons/dna.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ee7d" --- - + - + diff --git a/src/_icons/dog.svg b/src/_icons/dog.svg new file mode 100644 index 000000000..092d52ba7 --- /dev/null +++ b/src/_icons/dog.svg @@ -0,0 +1,15 @@ +--- +category: Animals +unicode: "f660" +version: "1.119" +--- + + + + + + + + + + diff --git a/src/_icons/dots-circle-horizontal.svg b/src/_icons/dots-circle-horizontal.svg index 7ab2a803f..9a53e2c43 100644 --- a/src/_icons/dots-circle-horizontal.svg +++ b/src/_icons/dots-circle-horizontal.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "ea91" --- - - - - + + + + diff --git a/src/_icons/dots-diagonal-2.svg b/src/_icons/dots-diagonal-2.svg index ff8e6b1c4..fdf04f7d8 100644 --- a/src/_icons/dots-diagonal-2.svg +++ b/src/_icons/dots-diagonal-2.svg @@ -6,7 +6,7 @@ version: "1.0" unicode: "ea92" --- - - - + + + diff --git a/src/_icons/dots-diagonal.svg b/src/_icons/dots-diagonal.svg index d47e7862b..2c3a06e07 100644 --- a/src/_icons/dots-diagonal.svg +++ b/src/_icons/dots-diagonal.svg @@ -6,7 +6,7 @@ version: "1.0" unicode: "ea93" --- - - - + + + diff --git a/src/_icons/dots-vertical.svg b/src/_icons/dots-vertical.svg index c16aa0112..ce51a7f86 100644 --- a/src/_icons/dots-vertical.svg +++ b/src/_icons/dots-vertical.svg @@ -6,7 +6,7 @@ version: "1.0" unicode: "ea94" --- - - - + + + diff --git a/src/_icons/dots.svg b/src/_icons/dots.svg index 2c6d5cdea..051be5f3f 100644 --- a/src/_icons/dots.svg +++ b/src/_icons/dots.svg @@ -6,7 +6,7 @@ version: "1.0" unicode: "ea95" --- - - - + + + diff --git a/src/_icons/download-off.svg b/src/_icons/download-off.svg index 2eb2df65e..004dcb828 100644 --- a/src/_icons/download-off.svg +++ b/src/_icons/download-off.svg @@ -1,12 +1,12 @@ --- -tags: [save, arrow, cloud, document, file] +tags: [save, arrow] category: Arrows version: "1.65" unicode: "f11c" --- - + diff --git a/src/_icons/download.svg b/src/_icons/download.svg index 116330ffb..d44f4edcd 100644 --- a/src/_icons/download.svg +++ b/src/_icons/download.svg @@ -6,6 +6,6 @@ unicode: "ea96" --- - - + + diff --git a/src/_icons/drag-drop-2.svg b/src/_icons/drag-drop-2.svg index 9088e2fce..ddb8a212a 100644 --- a/src/_icons/drag-drop-2.svg +++ b/src/_icons/drag-drop-2.svg @@ -5,12 +5,12 @@ version: "1.3" unicode: "eb88" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/drag-drop.svg b/src/_icons/drag-drop.svg index b81d6d6ee..7cb13352f 100644 --- a/src/_icons/drag-drop.svg +++ b/src/_icons/drag-drop.svg @@ -7,11 +7,11 @@ unicode: "eb89" - - - - - - - + + + + + + + diff --git a/src/_icons/drone-off.svg b/src/_icons/drone-off.svg index 43f218013..0991c47a0 100644 --- a/src/_icons/drone-off.svg +++ b/src/_icons/drone-off.svg @@ -1,6 +1,6 @@ --- +tags: [device, fly, aircraft, surveillance, control, autonomous] category: Vehicles -tags: [device, fly, aircraft, surveillance, control, autonomous, forbidden, banned, unlicensed] version: "1.39" unicode: "ee7e" --- @@ -10,9 +10,9 @@ unicode: "ee7e" - + - + - + diff --git a/src/_icons/drone.svg b/src/_icons/drone.svg index 655447a0b..02800cad6 100644 --- a/src/_icons/drone.svg +++ b/src/_icons/drone.svg @@ -6,12 +6,12 @@ unicode: "ed79" --- - + - + - + diff --git a/src/_icons/drop-circle.svg b/src/_icons/drop-circle.svg index 6a3b0707f..184505111 100644 --- a/src/_icons/drop-circle.svg +++ b/src/_icons/drop-circle.svg @@ -5,5 +5,5 @@ unicode: "efde" --- - + diff --git a/src/_icons/droplet-filled.svg b/src/_icons/droplet-filled.svg index cb3438aec..8fa3abc87 100644 --- a/src/_icons/droplet-filled.svg +++ b/src/_icons/droplet-filled.svg @@ -5,8 +5,5 @@ version: "1.39" unicode: "ee80" --- - - - - + 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-off.svg b/src/_icons/droplet-off.svg index 529446ea9..a54a1b442 100644 --- a/src/_icons/droplet-off.svg +++ b/src/_icons/droplet-off.svg @@ -1,6 +1,6 @@ --- -category: Design tags: [water, rain, liquid] +category: Design version: "1.39" unicode: "ee83" --- diff --git a/src/_icons/e-passport.svg b/src/_icons/e-passport.svg new file mode 100644 index 000000000..4e2dd0526 --- /dev/null +++ b/src/_icons/e-passport.svg @@ -0,0 +1,11 @@ +--- +tags: [id, online, mobile, app, travel ] +unicode: "f4df" +version: "1.99" +--- + + + + + + diff --git a/src/_icons/ear-off.svg b/src/_icons/ear-off.svg index d6a52993f..bb73774cc 100644 --- a/src/_icons/ear-off.svg +++ b/src/_icons/ear-off.svg @@ -1,11 +1,11 @@ --- +tags: [sound, listen, music, hear, loud, speakers] category: Health -tags: [sound, deaf, hearing, impaired, handicapped, hard-of-hearing, mute] version: "1.39" unicode: "ee84" --- - + diff --git a/src/_icons/ease-in-control-point.svg b/src/_icons/ease-in-control-point.svg new file mode 100644 index 000000000..7c9b336b1 --- /dev/null +++ b/src/_icons/ease-in-control-point.svg @@ -0,0 +1,12 @@ +--- +tags: [animation, graph, curve, function] +category: Design +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 new file mode 100644 index 000000000..445123655 --- /dev/null +++ b/src/_icons/ease-in-out-control-points.svg @@ -0,0 +1,15 @@ +--- +tags: [animation, graph, curve, function] +category: Design +unicode: "f571" +version: "1.107" +--- + + + + + + + + + diff --git a/src/_icons/ease-in-out.svg b/src/_icons/ease-in-out.svg new file mode 100644 index 000000000..801b64551 --- /dev/null +++ b/src/_icons/ease-in-out.svg @@ -0,0 +1,9 @@ +--- +tags: [animation, graph, curve, function] +category: Design +unicode: "f572" +version: "1.107" +--- + + + diff --git a/src/_icons/ease-in.svg b/src/_icons/ease-in.svg new file mode 100644 index 000000000..9ce29068d --- /dev/null +++ b/src/_icons/ease-in.svg @@ -0,0 +1,9 @@ +--- +tags: [animation, graph, curve, function] +category: Design +unicode: "f573" +version: "1.107" +--- + + + diff --git a/src/_icons/ease-out-control-point.svg b/src/_icons/ease-out-control-point.svg new file mode 100644 index 000000000..e31156d40 --- /dev/null +++ b/src/_icons/ease-out-control-point.svg @@ -0,0 +1,12 @@ +--- +tags: [animation, graph, curve, function] +category: Design +unicode: "f574" +version: "1.107" +--- + + + + + + diff --git a/src/_icons/ease-out.svg b/src/_icons/ease-out.svg new file mode 100644 index 000000000..b3edbf33b --- /dev/null +++ b/src/_icons/ease-out.svg @@ -0,0 +1,9 @@ +--- +tags: [animation, graph, curve, function] +category: Design +unicode: "f575" +version: "1.107" +--- + + + diff --git a/src/_icons/edit-circle-off.svg b/src/_icons/edit-circle-off.svg index ab559e34a..cfd828c48 100644 --- a/src/_icons/edit-circle-off.svg +++ b/src/_icons/edit-circle-off.svg @@ -5,8 +5,8 @@ version: "1.65" unicode: "f11d" --- - + - + diff --git a/src/_icons/edit-circle.svg b/src/_icons/edit-circle.svg index dadcfc98f..538a6fa01 100644 --- a/src/_icons/edit-circle.svg +++ b/src/_icons/edit-circle.svg @@ -7,5 +7,5 @@ unicode: "ee85" - + diff --git a/src/_icons/edit-off.svg b/src/_icons/edit-off.svg index d7d23dc3b..7577b092a 100644 --- a/src/_icons/edit-off.svg +++ b/src/_icons/edit-off.svg @@ -6,7 +6,7 @@ unicode: "f11e" --- - + diff --git a/src/_icons/egg-cracked.svg b/src/_icons/egg-cracked.svg index e91fa995a..be1ef24ee 100644 --- a/src/_icons/egg-cracked.svg +++ b/src/_icons/egg-cracked.svg @@ -1,9 +1,10 @@ --- +tags: [breaking, broken, food, breakfast] category: Food 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..f271cadcc --- /dev/null +++ b/src/_icons/egg-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f678" +--- + + + diff --git a/src/_icons/egg-fried.svg b/src/_icons/egg-fried.svg new file mode 100644 index 000000000..6a763f349 --- /dev/null +++ b/src/_icons/egg-fried.svg @@ -0,0 +1,10 @@ +--- +tags: [food, breakfast, cooking, kitchen] +category: Food +unicode: "f386" +version: "1.91" +--- + + + + diff --git a/src/_icons/egg-off.svg b/src/_icons/egg-off.svg index 787ff5f0a..dc9436100 100644 --- a/src/_icons/egg-off.svg +++ b/src/_icons/egg-off.svg @@ -1,10 +1,11 @@ --- -tags: [food, chicken, easter] +tags: [food, easter, chicken] category: Food version: "1.65" unicode: "f11f" --- - + + diff --git a/src/_icons/egg.svg b/src/_icons/egg.svg index e583a9ebe..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 new file mode 100644 index 000000000..3a6bbac08 --- /dev/null +++ b/src/_icons/eggs.svg @@ -0,0 +1,10 @@ +--- +tags: [food, chicken, easter] +category: Food +unicode: "f500" +version: "1.101" +--- + + + + diff --git a/src/_icons/elevator-off.svg b/src/_icons/elevator-off.svg new file mode 100644 index 000000000..d9e9765c8 --- /dev/null +++ b/src/_icons/elevator-off.svg @@ -0,0 +1,11 @@ +--- +tags: [hotel, up, down, service, door, lift] +unicode: "f3e8" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/elevator.svg b/src/_icons/elevator.svg index 192829259..762c49378 100644 --- a/src/_icons/elevator.svg +++ b/src/_icons/elevator.svg @@ -4,7 +4,7 @@ version: "1.51" unicode: "efdf" --- - + diff --git a/src/_icons/emergency-bed.svg b/src/_icons/emergency-bed.svg index 2cd5dbf16..2bdee8ae9 100644 --- a/src/_icons/emergency-bed.svg +++ b/src/_icons/emergency-bed.svg @@ -5,8 +5,8 @@ version: "1.44" unicode: "ef5d" --- - - + + diff --git a/src/_icons/empathize-off.svg b/src/_icons/empathize-off.svg new file mode 100644 index 000000000..638d35249 --- /dev/null +++ b/src/_icons/empathize-off.svg @@ -0,0 +1,11 @@ +--- +tags: [pepole, understund, thinking, care] +category: Health +unicode: "f3e9" +version: "1.94" +--- + + + + + diff --git a/src/_icons/empathize.svg b/src/_icons/empathize.svg index af4b7ac4c..d9907b97e 100644 --- a/src/_icons/empathize.svg +++ b/src/_icons/empathize.svg @@ -1,9 +1,10 @@ --- +tags: [pepole, understund, thinking, care] category: Health version: "1.79" unicode: "f29b" --- - + diff --git a/src/_icons/emphasis.svg b/src/_icons/emphasis.svg index 393778e9a..44d754f57 100644 --- a/src/_icons/emphasis.svg +++ b/src/_icons/emphasis.svg @@ -6,8 +6,8 @@ unicode: "ebcf" --- - - - - + + + + diff --git a/src/_icons/equal-double.svg b/src/_icons/equal-double.svg new file mode 100644 index 000000000..cd72d6b53 --- /dev/null +++ b/src/_icons/equal-double.svg @@ -0,0 +1,12 @@ +--- +tags: [coding, programming, code, sign] +category: Math +unicode: "f4e1" +version: "1.100" +--- + + + + + + diff --git a/src/_icons/equal-not.svg b/src/_icons/equal-not.svg index 487d10fb0..86f3d412d 100644 --- a/src/_icons/equal-not.svg +++ b/src/_icons/equal-not.svg @@ -5,5 +5,7 @@ version: "1.39" unicode: "ee86" --- - + + + diff --git a/src/_icons/equal.svg b/src/_icons/equal.svg index 00ed36d4e..95d5b3812 100644 --- a/src/_icons/equal.svg +++ b/src/_icons/equal.svg @@ -5,5 +5,6 @@ version: "1.39" unicode: "ee87" --- - + + diff --git a/src/_icons/eraser-off.svg b/src/_icons/eraser-off.svg index bae4124bf..46048546c 100644 --- a/src/_icons/eraser-off.svg +++ b/src/_icons/eraser-off.svg @@ -6,6 +6,6 @@ unicode: "f121" --- - + diff --git a/src/_icons/exchange-off.svg b/src/_icons/exchange-off.svg index 1f03f81b9..3dbc95b82 100644 --- a/src/_icons/exchange-off.svg +++ b/src/_icons/exchange-off.svg @@ -4,11 +4,11 @@ version: "1.65" unicode: "f123" --- - - + + - + diff --git a/src/_icons/exchange.svg b/src/_icons/exchange.svg index 6ac14655b..b4a00643e 100644 --- a/src/_icons/exchange.svg +++ b/src/_icons/exchange.svg @@ -4,8 +4,8 @@ version: "1.7" unicode: "ebe7" --- - - + + diff --git a/src/_icons/exclamation-circle.svg b/src/_icons/exclamation-circle.svg new file mode 100644 index 000000000..574356eab --- /dev/null +++ b/src/_icons/exclamation-circle.svg @@ -0,0 +1,9 @@ +--- +unicode: "f634" +version: "1.117" +--- + + + + + diff --git a/src/_icons/exclamation-mark-off.svg b/src/_icons/exclamation-mark-off.svg index 1f938cfb3..07fada696 100644 --- a/src/_icons/exclamation-mark-off.svg +++ b/src/_icons/exclamation-mark-off.svg @@ -1,5 +1,5 @@ --- -tags: [warning, caution, alert, danger] +tags: [warning, caution, alert, danger, "!"] version: "1.65" unicode: "f124" --- diff --git a/src/_icons/exclamation-mark.svg b/src/_icons/exclamation-mark.svg index d8fb29146..95ab15834 100644 --- a/src/_icons/exclamation-mark.svg +++ b/src/_icons/exclamation-mark.svg @@ -1,5 +1,5 @@ --- -tags: [warning, caution, alert, danger] +tags: [warning, caution, alert, danger, "!"] version: "1.49" unicode: "efb4" --- diff --git a/src/_icons/explicit-off.svg b/src/_icons/explicit-off.svg new file mode 100644 index 000000000..932952523 --- /dev/null +++ b/src/_icons/explicit-off.svg @@ -0,0 +1,11 @@ +--- +tags: [adult, content, xxx, curse, words, porn] +unicode: "f3ea" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/explicit.svg b/src/_icons/explicit.svg index ea9976d72..9a7f05cc1 100644 --- a/src/_icons/explicit.svg +++ b/src/_icons/explicit.svg @@ -4,7 +4,7 @@ version: "1.75" unicode: "f256" --- - + diff --git a/src/_icons/exposure-0.svg b/src/_icons/exposure-0.svg index 097ad8cab..2c0bcfac0 100644 --- a/src/_icons/exposure-0.svg +++ b/src/_icons/exposure-0.svg @@ -1,4 +1,5 @@ --- +tags: [digit, math, number, evaluation] category: Photography version: "1.79" unicode: "f29c" diff --git a/src/_icons/exposure-minus-1.svg b/src/_icons/exposure-minus-1.svg index 83e4a7f08..69286d1fb 100644 --- a/src/_icons/exposure-minus-1.svg +++ b/src/_icons/exposure-minus-1.svg @@ -1,4 +1,5 @@ --- +tags: [digit, math, number, evaluation] category: Photography version: "1.79" unicode: "f29d" diff --git a/src/_icons/exposure-minus-2.svg b/src/_icons/exposure-minus-2.svg index 72fcbfde5..9b6106b09 100644 --- a/src/_icons/exposure-minus-2.svg +++ b/src/_icons/exposure-minus-2.svg @@ -1,4 +1,5 @@ --- +tags: [digit, math, number, evaluation] category: Photography version: "1.79" unicode: "f29e" diff --git a/src/_icons/exposure-off.svg b/src/_icons/exposure-off.svg new file mode 100644 index 000000000..d8059ec5b --- /dev/null +++ b/src/_icons/exposure-off.svg @@ -0,0 +1,13 @@ +--- +tags: [light, bright, dark, camera] +category: Photography +unicode: "f3eb" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/exposure-plus-1.svg b/src/_icons/exposure-plus-1.svg index 9265f38ed..4d7a99034 100644 --- a/src/_icons/exposure-plus-1.svg +++ b/src/_icons/exposure-plus-1.svg @@ -1,4 +1,5 @@ --- +tags: [digit, math, number, evaluation] category: Photography version: "1.79" unicode: "f29f" diff --git a/src/_icons/exposure-plus-2.svg b/src/_icons/exposure-plus-2.svg index 7eece9b51..8b4d2c6ea 100644 --- a/src/_icons/exposure-plus-2.svg +++ b/src/_icons/exposure-plus-2.svg @@ -1,4 +1,5 @@ --- +tags: [digit, math, number, evaluation] category: Photography version: "1.79" unicode: "f2a0" diff --git a/src/_icons/exposure.svg b/src/_icons/exposure.svg index 9bafc459f..9e9edfd8c 100644 --- a/src/_icons/exposure.svg +++ b/src/_icons/exposure.svg @@ -5,8 +5,8 @@ version: "1.3" unicode: "eb8c" --- - - + + - + diff --git a/src/_icons/external-link-off.svg b/src/_icons/external-link-off.svg index 8eafd1d5e..1c45187cd 100644 --- a/src/_icons/external-link-off.svg +++ b/src/_icons/external-link-off.svg @@ -6,7 +6,7 @@ unicode: "f125" --- - + diff --git a/src/_icons/external-link.svg b/src/_icons/external-link.svg index 32f710d99..83fce2de0 100644 --- a/src/_icons/external-link.svg +++ b/src/_icons/external-link.svg @@ -6,6 +6,6 @@ unicode: "ea99" --- - - + + diff --git a/src/_icons/eye-check.svg b/src/_icons/eye-check.svg index b764a2ddc..aba9e6a97 100644 --- a/src/_icons/eye-check.svg +++ b/src/_icons/eye-check.svg @@ -5,7 +5,7 @@ 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..fe7c4edd1 --- /dev/null +++ b/src/_icons/eye-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f679" +--- + + + diff --git a/src/_icons/eye-off.svg b/src/_icons/eye-off.svg index 237197e85..e77c0461f 100644 --- a/src/_icons/eye-off.svg +++ b/src/_icons/eye-off.svg @@ -1,11 +1,11 @@ --- -category: Health tags: [view, watch] +category: Health version: "1.22" unicode: "ecf0" --- - + diff --git a/src/_icons/eye-table.svg b/src/_icons/eye-table.svg index f6f7eaf5c..128d197a9 100644 --- a/src/_icons/eye-table.svg +++ b/src/_icons/eye-table.svg @@ -5,9 +5,9 @@ version: "1.44" unicode: "ef5e" --- - - - + + + diff --git a/src/_icons/eye.svg b/src/_icons/eye.svg index e28a216ac..d322dce0e 100644 --- a/src/_icons/eye.svg +++ b/src/_icons/eye.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ea9a" --- - + diff --git a/src/_icons/eyeglass-2.svg b/src/_icons/eyeglass-2.svg index 451c00fd5..ea697b8ab 100644 --- a/src/_icons/eyeglass-2.svg +++ b/src/_icons/eyeglass-2.svg @@ -7,7 +7,7 @@ unicode: "ee89" - - - + + + diff --git a/src/_icons/eyeglass.svg b/src/_icons/eyeglass.svg index a2e6e6e17..601a2082a 100644 --- a/src/_icons/eyeglass.svg +++ b/src/_icons/eyeglass.svg @@ -7,7 +7,7 @@ unicode: "ee8a" - + diff --git a/src/_icons/face-id.svg b/src/_icons/face-id.svg index 9822b34da..ac1616a73 100644 --- a/src/_icons/face-id.svg +++ b/src/_icons/face-id.svg @@ -8,7 +8,7 @@ unicode: "ea9b" - - + + diff --git a/src/_icons/face-mask-off.svg b/src/_icons/face-mask-off.svg index ba551bd5c..05d6c8288 100644 --- a/src/_icons/face-mask-off.svg +++ b/src/_icons/face-mask-off.svg @@ -5,8 +5,8 @@ version: "1.65" unicode: "f127" --- - - + + diff --git a/src/_icons/face-mask.svg b/src/_icons/face-mask.svg index 6da31042d..ed8e752e3 100644 --- a/src/_icons/face-mask.svg +++ b/src/_icons/face-mask.svg @@ -5,8 +5,8 @@ version: "1.49" unicode: "efb5" --- - - + + diff --git a/src/_icons/fall.svg b/src/_icons/fall.svg index c908f6c41..66675aa1c 100644 --- a/src/_icons/fall.svg +++ b/src/_icons/fall.svg @@ -7,6 +7,6 @@ unicode: "ecb9" - + diff --git a/src/_icons/fidget-spinner.svg b/src/_icons/fidget-spinner.svg index ca788c4b8..dbc0557e4 100644 --- a/src/_icons/fidget-spinner.svg +++ b/src/_icons/fidget-spinner.svg @@ -4,7 +4,7 @@ version: "1.58" unicode: "f068" --- - + diff --git a/src/_icons/file-alert.svg b/src/_icons/file-alert.svg index 52f7aec52..45c4c861f 100644 --- a/src/_icons/file-alert.svg +++ b/src/_icons/file-alert.svg @@ -7,6 +7,6 @@ unicode: "ede6" - - + + diff --git a/src/_icons/file-analytics.svg b/src/_icons/file-analytics.svg index d795f4112..d52e75d3c 100644 --- a/src/_icons/file-analytics.svg +++ b/src/_icons/file-analytics.svg @@ -7,7 +7,7 @@ unicode: "ede7" - - - + + + diff --git a/src/_icons/file-broken.svg b/src/_icons/file-broken.svg new file mode 100644 index 000000000..0353d5a0e --- /dev/null +++ b/src/_icons/file-broken.svg @@ -0,0 +1,16 @@ +--- +tags: [document, error, demaged, delete ] +category: Document +unicode: "f501" +version: "1.101" +--- + + + + + + + + + + diff --git a/src/_icons/file-certificate.svg b/src/_icons/file-certificate.svg index ffae073b0..ed3425483 100644 --- a/src/_icons/file-certificate.svg +++ b/src/_icons/file-certificate.svg @@ -7,6 +7,6 @@ unicode: "ed4d" - + diff --git a/src/_icons/file-chart.svg b/src/_icons/file-chart.svg index 0568f2860..a16df8c05 100644 --- a/src/_icons/file-chart.svg +++ b/src/_icons/file-chart.svg @@ -8,5 +8,5 @@ unicode: "f036" - + diff --git a/src/_icons/file-database.svg b/src/_icons/file-database.svg index c930f8775..767a480b0 100644 --- a/src/_icons/file-database.svg +++ b/src/_icons/file-database.svg @@ -5,7 +5,7 @@ version: "1.56" unicode: "f037" --- - + diff --git a/src/_icons/file-delta.svg b/src/_icons/file-delta.svg new file mode 100644 index 000000000..5fa859714 --- /dev/null +++ b/src/_icons/file-delta.svg @@ -0,0 +1,11 @@ +--- +tags: [data, document, extension, paper] +category: Document +unicode: "f53d" +version: "1.104" +--- + + + + + diff --git a/src/_icons/file-diff.svg b/src/_icons/file-diff.svg index 869919ccd..cde54bc5e 100644 --- a/src/_icons/file-diff.svg +++ b/src/_icons/file-diff.svg @@ -7,7 +7,7 @@ unicode: "ecf1" - - - + + + diff --git a/src/_icons/file-digit.svg b/src/_icons/file-digit.svg index b7a19e35b..de3e919f6 100644 --- a/src/_icons/file-digit.svg +++ b/src/_icons/file-digit.svg @@ -6,7 +6,7 @@ unicode: "efa8" --- - + diff --git a/src/_icons/file-dislike.svg b/src/_icons/file-dislike.svg index 0a2440551..e5bad424a 100644 --- a/src/_icons/file-dislike.svg +++ b/src/_icons/file-dislike.svg @@ -5,7 +5,7 @@ version: "1.26" unicode: "ed2a" --- - + diff --git a/src/_icons/file-euro.svg b/src/_icons/file-euro.svg index ffc00e167..79801b066 100644 --- a/src/_icons/file-euro.svg +++ b/src/_icons/file-euro.svg @@ -8,5 +8,5 @@ unicode: "efe1" - + diff --git a/src/_icons/file-function.svg b/src/_icons/file-function.svg new file mode 100644 index 000000000..a6b35d26d --- /dev/null +++ b/src/_icons/file-function.svg @@ -0,0 +1,12 @@ +--- +tags: [data, document, extension, paper] +category: Document +unicode: "f53e" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/file-infinity.svg b/src/_icons/file-infinity.svg new file mode 100644 index 000000000..ce9aede75 --- /dev/null +++ b/src/_icons/file-infinity.svg @@ -0,0 +1,12 @@ +--- +tags: [document, eternity, sync, loop ] +category: Document +unicode: "f502" +version: "1.101" +--- + + + + + + diff --git a/src/_icons/file-invoice.svg b/src/_icons/file-invoice.svg index 7e0bb38d5..4db966b6a 100644 --- a/src/_icons/file-invoice.svg +++ b/src/_icons/file-invoice.svg @@ -7,7 +7,7 @@ unicode: "eb67" - - - + + + diff --git a/src/_icons/file-lambda.svg b/src/_icons/file-lambda.svg new file mode 100644 index 000000000..910d52b61 --- /dev/null +++ b/src/_icons/file-lambda.svg @@ -0,0 +1,12 @@ +--- +tags: [data, document, extension, paper] +category: Document +unicode: "f53f" +version: "1.104" +--- + + + + + + diff --git a/src/_icons/file-like.svg b/src/_icons/file-like.svg index fcd837806..6d6369db9 100644 --- a/src/_icons/file-like.svg +++ b/src/_icons/file-like.svg @@ -5,7 +5,7 @@ version: "1.26" unicode: "ed2b" --- - + diff --git a/src/_icons/file-minus.svg b/src/_icons/file-minus.svg index 67d247e93..10bdd228d 100644 --- a/src/_icons/file-minus.svg +++ b/src/_icons/file-minus.svg @@ -7,5 +7,5 @@ unicode: "ea9e" - + diff --git a/src/_icons/file-music.svg b/src/_icons/file-music.svg index 576338006..71e42aad5 100644 --- a/src/_icons/file-music.svg +++ b/src/_icons/file-music.svg @@ -7,6 +7,6 @@ unicode: "ea9f" - - + + diff --git a/src/_icons/file-off.svg b/src/_icons/file-off.svg index 77f030522..00a99c645 100644 --- a/src/_icons/file-off.svg +++ b/src/_icons/file-off.svg @@ -1,10 +1,10 @@ --- +tags: [paper, new] category: Document -tags: [new, close, gap, paper] version: "1.22" unicode: "ecf2" --- - + diff --git a/src/_icons/file-orientation.svg b/src/_icons/file-orientation.svg index e455d3640..833c81ddd 100644 --- a/src/_icons/file-orientation.svg +++ b/src/_icons/file-orientation.svg @@ -1,4 +1,5 @@ --- +tags: [document, arrow, change, modify, page] category: Document version: "1.79" unicode: "f2a1" diff --git a/src/_icons/file-percent.svg b/src/_icons/file-percent.svg new file mode 100644 index 000000000..8e5443253 --- /dev/null +++ b/src/_icons/file-percent.svg @@ -0,0 +1,13 @@ +--- +tags: [data, document, extension, paper] +category: Document +unicode: "f540" +version: "1.104" +--- + + + + + + + diff --git a/src/_icons/file-plus.svg b/src/_icons/file-plus.svg index 1c8a1ec0d..3480c1890 100644 --- a/src/_icons/file-plus.svg +++ b/src/_icons/file-plus.svg @@ -7,6 +7,6 @@ unicode: "eaa0" - - + + diff --git a/src/_icons/file-report.svg b/src/_icons/file-report.svg index fbcfd31c0..4243a4ac7 100644 --- a/src/_icons/file-report.svg +++ b/src/_icons/file-report.svg @@ -5,7 +5,7 @@ version: "1.38" unicode: "eded" --- - + diff --git a/src/_icons/file-scissors.svg b/src/_icons/file-scissors.svg index cd417da8b..dc509ca4e 100644 --- a/src/_icons/file-scissors.svg +++ b/src/_icons/file-scissors.svg @@ -7,8 +7,8 @@ unicode: "f03c" - - + + diff --git a/src/_icons/file-search.svg b/src/_icons/file-search.svg index b30d50fc9..4e72a7836 100644 --- a/src/_icons/file-search.svg +++ b/src/_icons/file-search.svg @@ -7,6 +7,6 @@ unicode: "ed5d" - - + + diff --git a/src/_icons/file-settings.svg b/src/_icons/file-settings.svg index 3242c4a4d..53093a833 100644 --- a/src/_icons/file-settings.svg +++ b/src/_icons/file-settings.svg @@ -5,7 +5,7 @@ version: "1.55" unicode: "f029" --- - + diff --git a/src/_icons/file-shredder.svg b/src/_icons/file-shredder.svg index c508a112f..12f88f391 100644 --- a/src/_icons/file-shredder.svg +++ b/src/_icons/file-shredder.svg @@ -7,9 +7,9 @@ unicode: "eaa1" - - - - - + + + + + diff --git a/src/_icons/file-stack.svg b/src/_icons/file-stack.svg new file mode 100644 index 000000000..a5b46fda7 --- /dev/null +++ b/src/_icons/file-stack.svg @@ -0,0 +1,13 @@ +--- +tags: [document, duplicate, data, add] +category: Document +unicode: "f503" +version: "1.101" +--- + + + + + + + diff --git a/src/_icons/file-text.svg b/src/_icons/file-text.svg index 3544199c8..60521daf1 100644 --- a/src/_icons/file-text.svg +++ b/src/_icons/file-text.svg @@ -7,7 +7,7 @@ unicode: "eaa2" - - - + + + diff --git a/src/_icons/file-time.svg b/src/_icons/file-time.svg index b14697a6c..09ba0e988 100644 --- a/src/_icons/file-time.svg +++ b/src/_icons/file-time.svg @@ -7,6 +7,6 @@ unicode: "f040" - + diff --git a/src/_icons/file-vector.svg b/src/_icons/file-vector.svg index bdc83d9fe..444506a63 100644 --- a/src/_icons/file-vector.svg +++ b/src/_icons/file-vector.svg @@ -6,8 +6,8 @@ unicode: "f043" --- - - + + diff --git a/src/_icons/file-zip.svg b/src/_icons/file-zip.svg index 89bc04987..4b86fee93 100644 --- a/src/_icons/file-zip.svg +++ b/src/_icons/file-zip.svg @@ -7,10 +7,10 @@ unicode: "ed4e" - - - - - - + + + + + + diff --git a/src/_icons/files-off.svg b/src/_icons/files-off.svg index 1131e4501..9ded8acf9 100644 --- a/src/_icons/files-off.svg +++ b/src/_icons/files-off.svg @@ -1,6 +1,6 @@ --- -category: Document tags: [forms, documents, stack, letter] +category: Document version: "1.38" unicode: "edee" --- @@ -8,5 +8,5 @@ unicode: "edee" - + diff --git a/src/_icons/filter-off.svg b/src/_icons/filter-off.svg index 19bc0b567..7a933dd3a 100644 --- a/src/_icons/filter-off.svg +++ b/src/_icons/filter-off.svg @@ -1,10 +1,10 @@ --- -category: System tags: [funnel, hopper, filtration] +category: System version: "1.26" unicode: "ed2c" --- - + diff --git a/src/_icons/fingerprint-off.svg b/src/_icons/fingerprint-off.svg index a337d37aa..b3c641727 100644 --- a/src/_icons/fingerprint-off.svg +++ b/src/_icons/fingerprint-off.svg @@ -5,7 +5,7 @@ unicode: "f12a" --- - + diff --git a/src/_icons/fire-hydrant-off.svg b/src/_icons/fire-hydrant-off.svg new file mode 100644 index 000000000..1fd572565 --- /dev/null +++ b/src/_icons/fire-hydrant-off.svg @@ -0,0 +1,12 @@ +--- +tags: [water, emergency, fireman, safety, urban] +unicode: "f3ec" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/fire-hydrant.svg b/src/_icons/fire-hydrant.svg new file mode 100644 index 000000000..54254750f --- /dev/null +++ b/src/_icons/fire-hydrant.svg @@ -0,0 +1,11 @@ +--- +tags: [water, emergency, fireman, safety, urban] +version: "1.93" +unicode: "f3a9" +--- + + + + + + diff --git a/src/_icons/firetruck.svg b/src/_icons/firetruck.svg index e21f90678..d55fde6c7 100644 --- a/src/_icons/firetruck.svg +++ b/src/_icons/firetruck.svg @@ -5,11 +5,11 @@ version: "1.7" unicode: "ebe8" --- - - + + - - - + + + diff --git a/src/_icons/first-aid-kit-off.svg b/src/_icons/first-aid-kit-off.svg new file mode 100644 index 000000000..631ba34aa --- /dev/null +++ b/src/_icons/first-aid-kit-off.svg @@ -0,0 +1,13 @@ +--- +tags: [medical, healthcare, hospital, health] +category: Health +unicode: "f3ed" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/first-aid-kit.svg b/src/_icons/first-aid-kit.svg index 765279fc6..563f95f61 100644 --- a/src/_icons/first-aid-kit.svg +++ b/src/_icons/first-aid-kit.svg @@ -6,7 +6,7 @@ unicode: "ef5f" --- - + diff --git a/src/_icons/fish-bone.svg b/src/_icons/fish-bone.svg index cb2eb80f9..ea589768d 100644 --- a/src/_icons/fish-bone.svg +++ b/src/_icons/fish-bone.svg @@ -5,10 +5,10 @@ version: "1.78" unicode: "f287" --- - + - + diff --git a/src/_icons/fish-christianity.svg b/src/_icons/fish-christianity.svg new file mode 100644 index 000000000..a22e8c73e --- /dev/null +++ b/src/_icons/fish-christianity.svg @@ -0,0 +1,9 @@ +--- +tags: [religion, jesus, faith, christian] +category: Symbols +unicode: "f58b" +version: "1.109" +--- + + + diff --git a/src/_icons/fish-hook-off.svg b/src/_icons/fish-hook-off.svg new file mode 100644 index 000000000..6e5aadd05 --- /dev/null +++ b/src/_icons/fish-hook-off.svg @@ -0,0 +1,11 @@ +--- +tags: [fishing, bait, hanging, catch, water] +unicode: "f3ee" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/fish-hook.svg b/src/_icons/fish-hook.svg index b5a86f55c..ecdcaf3db 100644 --- a/src/_icons/fish-hook.svg +++ b/src/_icons/fish-hook.svg @@ -5,6 +5,6 @@ unicode: "f1f9" --- - + diff --git a/src/_icons/fish-off.svg b/src/_icons/fish-off.svg index 1b2307b8b..150189141 100644 --- a/src/_icons/fish-off.svg +++ b/src/_icons/fish-off.svg @@ -6,7 +6,7 @@ unicode: "f12b" --- - + diff --git a/src/_icons/flag-filled.svg b/src/_icons/flag-filled.svg new file mode 100644 index 000000000..81be6da33 --- /dev/null +++ b/src/_icons/flag-filled.svg @@ -0,0 +1,11 @@ +--- +category: Filled +version: "2.0" +unicode: "f67a" +--- + + + + + + diff --git a/src/_icons/flag-off.svg b/src/_icons/flag-off.svg index c82279fb8..1d34b068a 100644 --- a/src/_icons/flag-off.svg +++ b/src/_icons/flag-off.svg @@ -7,7 +7,7 @@ unicode: "f12d" - + diff --git a/src/_icons/flag.svg b/src/_icons/flag.svg index f8b6f7234..6c1271be4 100644 --- a/src/_icons/flag.svg +++ b/src/_icons/flag.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaa6" --- - - + + diff --git a/src/_icons/flare.svg b/src/_icons/flare.svg index ef3265471..29e50012e 100644 --- a/src/_icons/flare.svg +++ b/src/_icons/flare.svg @@ -5,6 +5,5 @@ version: "1.39" unicode: "ee8e" --- - - + diff --git a/src/_icons/flask-2-off.svg b/src/_icons/flask-2-off.svg index a729e1b91..45bc9d425 100644 --- a/src/_icons/flask-2-off.svg +++ b/src/_icons/flask-2-off.svg @@ -6,7 +6,7 @@ unicode: "f12f" --- - + diff --git a/src/_icons/flask-2.svg b/src/_icons/flask-2.svg index 276a3a596..e4a96df09 100644 --- a/src/_icons/flask-2.svg +++ b/src/_icons/flask-2.svg @@ -6,6 +6,6 @@ unicode: "ef60" --- - + diff --git a/src/_icons/flask.svg b/src/_icons/flask.svg index 6984713bc..0568a05e5 100644 --- a/src/_icons/flask.svg +++ b/src/_icons/flask.svg @@ -5,7 +5,7 @@ version: "1.6" unicode: "ebd2" --- - - + + diff --git a/src/_icons/flip-flops.svg b/src/_icons/flip-flops.svg new file mode 100644 index 000000000..e4716687f --- /dev/null +++ b/src/_icons/flip-flops.svg @@ -0,0 +1,13 @@ +--- +tags: [summer, sand, sandals, beach, shoes] +unicode: "f564" +version: "1.106" +--- + + + + + + + + diff --git a/src/_icons/flip-horizontal.svg b/src/_icons/flip-horizontal.svg index c71784483..f13a7c8e2 100644 --- a/src/_icons/flip-horizontal.svg +++ b/src/_icons/flip-horizontal.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eaa7" --- - - - + + + diff --git a/src/_icons/flip-vertical.svg b/src/_icons/flip-vertical.svg index 80ad8d2a3..479d29704 100644 --- a/src/_icons/flip-vertical.svg +++ b/src/_icons/flip-vertical.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eaa8" --- - - - + + + diff --git a/src/_icons/float-center.svg b/src/_icons/float-center.svg index fa0faaa10..6200ae4f4 100644 --- a/src/_icons/float-center.svg +++ b/src/_icons/float-center.svg @@ -5,11 +5,11 @@ version: "1.4" unicode: "ebb1" --- - - - - - - - + + + + + + + diff --git a/src/_icons/float-left.svg b/src/_icons/float-left.svg index 61b015979..7a1f8be07 100644 --- a/src/_icons/float-left.svg +++ b/src/_icons/float-left.svg @@ -5,9 +5,9 @@ version: "1.4" unicode: "ebb2" --- - - - - - + + + + + diff --git a/src/_icons/float-none.svg b/src/_icons/float-none.svg index 9ac4a5afe..e7e5ff3c7 100644 --- a/src/_icons/float-none.svg +++ b/src/_icons/float-none.svg @@ -5,7 +5,7 @@ version: "1.24" unicode: "ed13" --- - - - + + + diff --git a/src/_icons/float-right.svg b/src/_icons/float-right.svg index 382693a0d..aed012171 100644 --- a/src/_icons/float-right.svg +++ b/src/_icons/float-right.svg @@ -5,9 +5,9 @@ version: "1.4" unicode: "ebb3" --- - - - - - + + + + + diff --git a/src/_icons/flower-off.svg b/src/_icons/flower-off.svg index 7c2bc6596..65108ff50 100644 --- a/src/_icons/flower-off.svg +++ b/src/_icons/flower-off.svg @@ -6,6 +6,6 @@ unicode: "f131" --- - + diff --git a/src/_icons/flower.svg b/src/_icons/flower.svg index c0e4b8a22..c708a90c1 100644 --- a/src/_icons/flower.svg +++ b/src/_icons/flower.svg @@ -5,6 +5,6 @@ version: "1.52" unicode: "eff6" --- - - + + diff --git a/src/_icons/focus-2.svg b/src/_icons/focus-2.svg index d257b6b3d..e7b3a650b 100644 --- a/src/_icons/focus-2.svg +++ b/src/_icons/focus-2.svg @@ -6,9 +6,9 @@ unicode: "ebd3" --- - - - - - + + + + + diff --git a/src/_icons/focus-centered.svg b/src/_icons/focus-centered.svg index cf9f567b7..3015dcad6 100644 --- a/src/_icons/focus-centered.svg +++ b/src/_icons/focus-centered.svg @@ -4,7 +4,7 @@ version: "1.55" unicode: "f02a" --- - + diff --git a/src/_icons/focus.svg b/src/_icons/focus.svg index 9cd23700d..015cff169 100644 --- a/src/_icons/focus.svg +++ b/src/_icons/focus.svg @@ -6,5 +6,5 @@ unicode: "eb8d" --- - + diff --git a/src/_icons/fold-down.svg b/src/_icons/fold-down.svg index ae06e55df..bae8f212a 100644 --- a/src/_icons/fold-down.svg +++ b/src/_icons/fold-down.svg @@ -6,8 +6,8 @@ unicode: "ed54" --- - - - - + + + + diff --git a/src/_icons/fold-up.svg b/src/_icons/fold-up.svg index c2b7e946f..af9aaa7af 100644 --- a/src/_icons/fold-up.svg +++ b/src/_icons/fold-up.svg @@ -6,8 +6,8 @@ unicode: "ed55" --- - - - - + + + + diff --git a/src/_icons/fold.svg b/src/_icons/fold.svg index f1f14bced..eb83bb4d2 100644 --- a/src/_icons/fold.svg +++ b/src/_icons/fold.svg @@ -7,8 +7,8 @@ unicode: "ed56" - - - - + + + + diff --git a/src/_icons/folder-minus.svg b/src/_icons/folder-minus.svg index f1b74dde7..b9666d3cc 100644 --- a/src/_icons/folder-minus.svg +++ b/src/_icons/folder-minus.svg @@ -6,5 +6,5 @@ unicode: "eaaa" --- - + diff --git a/src/_icons/folder-off.svg b/src/_icons/folder-off.svg index 7420d3753..369f13c27 100644 --- a/src/_icons/folder-off.svg +++ b/src/_icons/folder-off.svg @@ -1,10 +1,10 @@ --- -category: Document tags: [cancel, "no", directory, dir] +category: Document version: "1.24" unicode: "ed14" --- - + diff --git a/src/_icons/folder-plus.svg b/src/_icons/folder-plus.svg index 9eec457be..90ab02151 100644 --- a/src/_icons/folder-plus.svg +++ b/src/_icons/folder-plus.svg @@ -6,6 +6,6 @@ unicode: "eaab" --- - - + + diff --git a/src/_icons/forbid-2.svg b/src/_icons/forbid-2.svg index 874d745d6..755218f19 100644 --- a/src/_icons/forbid-2.svg +++ b/src/_icons/forbid-2.svg @@ -4,6 +4,6 @@ version: "1.6" unicode: "ebd4" --- - - + + diff --git a/src/_icons/forbid.svg b/src/_icons/forbid.svg index 4d04bd0ac..a5ea88c64 100644 --- a/src/_icons/forbid.svg +++ b/src/_icons/forbid.svg @@ -4,6 +4,6 @@ version: "1.6" unicode: "ebd5" --- - - + + diff --git a/src/_icons/forklift.svg b/src/_icons/forklift.svg index 522f1d791..effdcf719 100644 --- a/src/_icons/forklift.svg +++ b/src/_icons/forklift.svg @@ -5,12 +5,12 @@ version: "1.7" unicode: "ebe9" --- - - - + + + - + diff --git a/src/_icons/frame-off.svg b/src/_icons/frame-off.svg index a1ce1d3aa..9c6d04bb4 100644 --- a/src/_icons/frame-off.svg +++ b/src/_icons/frame-off.svg @@ -1,5 +1,5 @@ --- -tags: [crop, grid, mesh, photo, image, picture] +tags: [crop] category: Design version: "1.66" unicode: "f135" diff --git a/src/_icons/frame.svg b/src/_icons/frame.svg index 837d4d35e..a9da6e321 100644 --- a/src/_icons/frame.svg +++ b/src/_icons/frame.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaaf" --- - - - - + + + + diff --git a/src/_icons/free-rights.svg b/src/_icons/free-rights.svg index ce7abc663..b2d10fe00 100644 --- a/src/_icons/free-rights.svg +++ b/src/_icons/free-rights.svg @@ -4,7 +4,7 @@ version: "1.49" unicode: "efb6" --- - + diff --git a/src/_icons/fridge-off.svg b/src/_icons/fridge-off.svg new file mode 100644 index 000000000..dcb81ef3e --- /dev/null +++ b/src/_icons/fridge-off.svg @@ -0,0 +1,12 @@ +--- +tags: [kitchen, cooler, control, freezer, food] +category: Devices +unicode: "f3ef" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/fridge.svg b/src/_icons/fridge.svg index 401b00bf8..efd9975f0 100644 --- a/src/_icons/fridge.svg +++ b/src/_icons/fridge.svg @@ -5,7 +5,7 @@ version: "1.70" unicode: "f1fa" --- - + diff --git a/src/_icons/friends-off.svg b/src/_icons/friends-off.svg index 3e09a07dd..8015ddc23 100644 --- a/src/_icons/friends-off.svg +++ b/src/_icons/friends-off.svg @@ -6,7 +6,7 @@ unicode: "f136" - - + + diff --git a/src/_icons/friends.svg b/src/_icons/friends.svg index eb29083f3..63e951d18 100644 --- a/src/_icons/friends.svg +++ b/src/_icons/friends.svg @@ -4,8 +4,8 @@ version: "1.0" unicode: "eab0" --- - + - + diff --git a/src/_icons/function-off.svg b/src/_icons/function-off.svg new file mode 100644 index 000000000..20ae7e26a --- /dev/null +++ b/src/_icons/function-off.svg @@ -0,0 +1,12 @@ +--- +tags: [math, linear, statyscics, graph] +category: Math +unicode: "f3f0" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/function.svg b/src/_icons/function.svg index 160072b78..c31559fdb 100644 --- a/src/_icons/function.svg +++ b/src/_icons/function.svg @@ -5,7 +5,7 @@ version: "1.72" unicode: "f225" --- - + diff --git a/src/_icons/garden-cart-off.svg b/src/_icons/garden-cart-off.svg new file mode 100644 index 000000000..cc1862a9d --- /dev/null +++ b/src/_icons/garden-cart-off.svg @@ -0,0 +1,12 @@ +--- +tags: [gardening, conctruction, wheel, wheelbarrow] +category: Vehicles +unicode: "f3f1" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/garden-cart.svg b/src/_icons/garden-cart.svg index a7b8270cf..aae638393 100644 --- a/src/_icons/garden-cart.svg +++ b/src/_icons/garden-cart.svg @@ -5,7 +5,7 @@ version: "1.74" unicode: "f23e" --- - + diff --git a/src/_icons/gas-station.svg b/src/_icons/gas-station.svg index e8bc6df64..df3237b53 100644 --- a/src/_icons/gas-station.svg +++ b/src/_icons/gas-station.svg @@ -8,7 +8,7 @@ unicode: "ec7d" - + - + diff --git a/src/_icons/gauge-off.svg b/src/_icons/gauge-off.svg index 2d17ff300..55a60a5fd 100644 --- a/src/_icons/gauge-off.svg +++ b/src/_icons/gauge-off.svg @@ -1,5 +1,5 @@ --- -tags: [car, dashboard, speed] +tags: [car, dashboard] category: System version: "1.66" unicode: "f138" diff --git a/src/_icons/gauge.svg b/src/_icons/gauge.svg index b11a3a0f1..a2408c49b 100644 --- a/src/_icons/gauge.svg +++ b/src/_icons/gauge.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eab1" --- - - - + + + diff --git a/src/_icons/gender-agender.svg b/src/_icons/gender-agender.svg index b646c8566..e8dc2fe05 100644 --- a/src/_icons/gender-agender.svg +++ b/src/_icons/gender-agender.svg @@ -5,6 +5,6 @@ version: "1.64" unicode: "f0e1" --- - + diff --git a/src/_icons/gender-androgyne.svg b/src/_icons/gender-androgyne.svg index 504e1fd4c..a2b8c653d 100644 --- a/src/_icons/gender-androgyne.svg +++ b/src/_icons/gender-androgyne.svg @@ -6,7 +6,7 @@ unicode: "f0e2" --- - + diff --git a/src/_icons/gender-bigender.svg b/src/_icons/gender-bigender.svg index dfb89e1ae..4b58af40d 100644 --- a/src/_icons/gender-bigender.svg +++ b/src/_icons/gender-bigender.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0e3" --- - + diff --git a/src/_icons/gender-demiboy.svg b/src/_icons/gender-demiboy.svg index 982e4a944..6f0e1cdd0 100644 --- a/src/_icons/gender-demiboy.svg +++ b/src/_icons/gender-demiboy.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0e4" --- - + diff --git a/src/_icons/gender-demigirl.svg b/src/_icons/gender-demigirl.svg index 71546ce93..7f51243a2 100644 --- a/src/_icons/gender-demigirl.svg +++ b/src/_icons/gender-demigirl.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0e5" --- - + diff --git a/src/_icons/gender-epicene.svg b/src/_icons/gender-epicene.svg index e538a153a..0c19d052d 100644 --- a/src/_icons/gender-epicene.svg +++ b/src/_icons/gender-epicene.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0e6" --- - + diff --git a/src/_icons/gender-female.svg b/src/_icons/gender-female.svg index 4c834d8d8..fdb95baa5 100644 --- a/src/_icons/gender-female.svg +++ b/src/_icons/gender-female.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0e7" --- - + diff --git a/src/_icons/gender-femme.svg b/src/_icons/gender-femme.svg index c0092de9a..add0bafcb 100644 --- a/src/_icons/gender-femme.svg +++ b/src/_icons/gender-femme.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0e8" --- - + diff --git a/src/_icons/gender-genderfluid.svg b/src/_icons/gender-genderfluid.svg index a7ada81fb..bcf927ed2 100644 --- a/src/_icons/gender-genderfluid.svg +++ b/src/_icons/gender-genderfluid.svg @@ -5,11 +5,9 @@ version: "1.64" unicode: "f0e9" --- - - - - - + + + diff --git a/src/_icons/gender-genderless.svg b/src/_icons/gender-genderless.svg index 34bccb73c..53117d375 100644 --- a/src/_icons/gender-genderless.svg +++ b/src/_icons/gender-genderless.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0ea" --- - + diff --git a/src/_icons/gender-genderqueer.svg b/src/_icons/gender-genderqueer.svg index a4d9ee3af..c07f0955c 100644 --- a/src/_icons/gender-genderqueer.svg +++ b/src/_icons/gender-genderqueer.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0eb" --- - + diff --git a/src/_icons/gender-hermaphrodite.svg b/src/_icons/gender-hermaphrodite.svg index 726a190b2..6e6540472 100644 --- a/src/_icons/gender-hermaphrodite.svg +++ b/src/_icons/gender-hermaphrodite.svg @@ -7,6 +7,6 @@ unicode: "f0ec" - - + + diff --git a/src/_icons/gender-intergender.svg b/src/_icons/gender-intergender.svg index fa3f0e614..96a71dc74 100644 --- a/src/_icons/gender-intergender.svg +++ b/src/_icons/gender-intergender.svg @@ -7,6 +7,6 @@ unicode: "f0ed" - + diff --git a/src/_icons/gender-male.svg b/src/_icons/gender-male.svg index dc2333d0a..f7cd4c098 100644 --- a/src/_icons/gender-male.svg +++ b/src/_icons/gender-male.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0ee" --- - + diff --git a/src/_icons/gender-neutrois.svg b/src/_icons/gender-neutrois.svg index a0e70a9fb..ee416f8e1 100644 --- a/src/_icons/gender-neutrois.svg +++ b/src/_icons/gender-neutrois.svg @@ -5,6 +5,6 @@ version: "1.64" unicode: "f0ef" --- - + diff --git a/src/_icons/gender-third.svg b/src/_icons/gender-third.svg index 764acd7e1..b0f39058c 100644 --- a/src/_icons/gender-third.svg +++ b/src/_icons/gender-third.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0f0" --- - + diff --git a/src/_icons/gender-transgender.svg b/src/_icons/gender-transgender.svg index df1c26da8..e60c19e0d 100644 --- a/src/_icons/gender-transgender.svg +++ b/src/_icons/gender-transgender.svg @@ -5,7 +5,7 @@ version: "1.64" unicode: "f0f1" --- - + diff --git a/src/_icons/geometry.svg b/src/_icons/geometry.svg index e13284917..0d36112dc 100644 --- a/src/_icons/geometry.svg +++ b/src/_icons/geometry.svg @@ -6,7 +6,7 @@ unicode: "ee90" --- - + diff --git a/src/_icons/ghost-2.svg b/src/_icons/ghost-2.svg new file mode 100644 index 000000000..70aa8ac69 --- /dev/null +++ b/src/_icons/ghost-2.svg @@ -0,0 +1,11 @@ +--- +tags: [spirit, transparent, fairytale, horror, movie, shadow, haunt] +unicode: "f57c" +version: "1.108" +--- + + + + + + diff --git a/src/_icons/ghost-off.svg b/src/_icons/ghost-off.svg new file mode 100644 index 000000000..07c21ba88 --- /dev/null +++ b/src/_icons/ghost-off.svg @@ -0,0 +1,11 @@ +--- +tags: [spirit, transparent, fairytale, horror, movie, shadow, haunt] +unicode: "f3f2" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/ghost.svg b/src/_icons/ghost.svg index d50304582..e8aa843ca 100644 --- a/src/_icons/ghost.svg +++ b/src/_icons/ghost.svg @@ -5,7 +5,7 @@ unicode: "eb8e" --- - - + + diff --git a/src/_icons/gift-card.svg b/src/_icons/gift-card.svg new file mode 100644 index 000000000..a1c54aa73 --- /dev/null +++ b/src/_icons/gift-card.svg @@ -0,0 +1,10 @@ +--- +tags: [coupon, present, voucher, shopping, birthday] +version: "1.93" +unicode: "f3aa" +--- + + + + + diff --git a/src/_icons/gift-off.svg b/src/_icons/gift-off.svg new file mode 100644 index 000000000..be27f5d94 --- /dev/null +++ b/src/_icons/gift-off.svg @@ -0,0 +1,12 @@ +--- +tags: [present, birthday, celebration, wish, bonus, souvenire, surprise] +unicode: "f3f3" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/gift.svg b/src/_icons/gift.svg index 0e0369f41..e98c33c42 100644 --- a/src/_icons/gift.svg +++ b/src/_icons/gift.svg @@ -4,8 +4,8 @@ version: "1.2" unicode: "eb68" --- - - + + diff --git a/src/_icons/git-branch-deleted.svg b/src/_icons/git-branch-deleted.svg new file mode 100644 index 000000000..ea0417bee --- /dev/null +++ b/src/_icons/git-branch-deleted.svg @@ -0,0 +1,15 @@ +--- +tags: [code, version control, command] +category: Version control +unicode: "f57d" +version: "1.108" +--- + + + + + + + + + diff --git a/src/_icons/git-branch.svg b/src/_icons/git-branch.svg index cf6969d44..4fe86af8b 100644 --- a/src/_icons/git-branch.svg +++ b/src/_icons/git-branch.svg @@ -2,12 +2,13 @@ tags: [code, version control, command] version: "1.0" unicode: "eab2" +category: Version control --- - - - - + + + + - + diff --git a/src/_icons/git-cherry-pick.svg b/src/_icons/git-cherry-pick.svg new file mode 100644 index 000000000..976a7ed45 --- /dev/null +++ b/src/_icons/git-cherry-pick.svg @@ -0,0 +1,13 @@ +--- +tags: [code, version control, command] +category: Version control +unicode: "f57e" +version: "1.108" +--- + + + + + + + diff --git a/src/_icons/git-commit.svg b/src/_icons/git-commit.svg index 7370190e8..869f68aff 100644 --- a/src/_icons/git-commit.svg +++ b/src/_icons/git-commit.svg @@ -2,9 +2,10 @@ tags: [code, version control, command] version: "1.0" unicode: "eab3" +category: Version control --- - - - + + + diff --git a/src/_icons/git-compare.svg b/src/_icons/git-compare.svg index 71e2af32b..2f141fb8d 100644 --- a/src/_icons/git-compare.svg +++ b/src/_icons/git-compare.svg @@ -2,12 +2,13 @@ tags: [code, version control, command] version: "1.0" unicode: "eab4" +category: Version control --- - - + + - + - + diff --git a/src/_icons/git-fork.svg b/src/_icons/git-fork.svg index d10116a9f..43abf9d3a 100644 --- a/src/_icons/git-fork.svg +++ b/src/_icons/git-fork.svg @@ -2,11 +2,12 @@ tags: [code, version control, command] version: "1.3" unicode: "eb8f" +category: Version control --- - - - + + + - + diff --git a/src/_icons/git-merge.svg b/src/_icons/git-merge.svg index 46c19c1db..5a56046a7 100644 --- a/src/_icons/git-merge.svg +++ b/src/_icons/git-merge.svg @@ -2,11 +2,12 @@ tags: [code, version control, command] version: "1.0" unicode: "eab5" +category: Version control --- - - - - + + + + diff --git a/src/_icons/git-pull-request-closed.svg b/src/_icons/git-pull-request-closed.svg index 8b4e38628..229d14e5e 100644 --- a/src/_icons/git-pull-request-closed.svg +++ b/src/_icons/git-pull-request-closed.svg @@ -2,11 +2,12 @@ tags: [code, version control, command] version: "1.46" unicode: "ef7f" +category: Version control --- - - - + + + diff --git a/src/_icons/git-pull-request-draft.svg b/src/_icons/git-pull-request-draft.svg index e1e192a75..cd2db504b 100644 --- a/src/_icons/git-pull-request-draft.svg +++ b/src/_icons/git-pull-request-draft.svg @@ -2,11 +2,12 @@ tags: [code, version control, command] version: "1.49" unicode: "efb7" +category: Version control --- - - - + + + diff --git a/src/_icons/git-pull-request.svg b/src/_icons/git-pull-request.svg index a79a4b45a..f6b3b67db 100644 --- a/src/_icons/git-pull-request.svg +++ b/src/_icons/git-pull-request.svg @@ -2,12 +2,13 @@ tags: [code, version control, command] version: "1.0" unicode: "eab6" +category: Version control --- - - - - + + + + - + diff --git a/src/_icons/gizmo.svg b/src/_icons/gizmo.svg index 95b02b5e3..4204f1e82 100644 --- a/src/_icons/gizmo.svg +++ b/src/_icons/gizmo.svg @@ -6,7 +6,7 @@ unicode: "f02b" - - - + + + diff --git a/src/_icons/glass-full.svg b/src/_icons/glass-full.svg index 6366381b7..33f1a8d56 100644 --- a/src/_icons/glass-full.svg +++ b/src/_icons/glass-full.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eab7" --- - - + + diff --git a/src/_icons/glass-off.svg b/src/_icons/glass-off.svg index c79131b92..61c6a0728 100644 --- a/src/_icons/glass-off.svg +++ b/src/_icons/glass-off.svg @@ -1,12 +1,12 @@ --- +tags: [wine, cup, goblet] category: Food -tags: [drink, alcohol, not-allowed, sober, non-alcoholic, wine] version: "1.39" unicode: "ee91" --- - - + + - + diff --git a/src/_icons/glass.svg b/src/_icons/glass.svg index 82515961e..93678e8d5 100644 --- a/src/_icons/glass.svg +++ b/src/_icons/glass.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eab8" --- - - + + diff --git a/src/_icons/globe-off.svg b/src/_icons/globe-off.svg index 732b69469..b44b6b397 100644 --- a/src/_icons/globe-off.svg +++ b/src/_icons/globe-off.svg @@ -5,8 +5,8 @@ version: "1.66" unicode: "f139" --- - - + + diff --git a/src/_icons/globe.svg b/src/_icons/globe.svg index 369ccd64a..2fc933513 100644 --- a/src/_icons/globe.svg +++ b/src/_icons/globe.svg @@ -5,8 +5,8 @@ version: "1.1" unicode: "eab9" --- - + - - + + diff --git a/src/_icons/go-game.svg b/src/_icons/go-game.svg new file mode 100644 index 000000000..af7f6641a --- /dev/null +++ b/src/_icons/go-game.svg @@ -0,0 +1,17 @@ +--- +tags: [strategy, board, mind] +version: "1.102" +unicode: "f512" +--- + + + + + + + + + + + + diff --git a/src/_icons/gps.svg b/src/_icons/gps.svg index f1984bf94..015913559 100644 --- a/src/_icons/gps.svg +++ b/src/_icons/gps.svg @@ -5,6 +5,6 @@ version: "1.33" unicode: "ed7a" --- - + diff --git a/src/_icons/gradienter.svg b/src/_icons/gradienter.svg new file mode 100644 index 000000000..28cb45eef --- /dev/null +++ b/src/_icons/gradienter.svg @@ -0,0 +1,9 @@ +--- +version: "1.93" +unicode: "f3ab" +--- + + + + + diff --git a/src/_icons/grain.svg b/src/_icons/grain.svg index 78964c175..350bf4b7d 100644 --- a/src/_icons/grain.svg +++ b/src/_icons/grain.svg @@ -4,12 +4,12 @@ version: "1.39" unicode: "ee92" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/graph-off.svg b/src/_icons/graph-off.svg new file mode 100644 index 000000000..43bb3dda4 --- /dev/null +++ b/src/_icons/graph-off.svg @@ -0,0 +1,10 @@ +--- +tags: [analytics, raport, statistics, chart] +unicode: "f3f4" +version: "1.94" +--- + + + + + diff --git a/src/_icons/grave-2.svg b/src/_icons/grave-2.svg new file mode 100644 index 000000000..8d110b04b --- /dev/null +++ b/src/_icons/grave-2.svg @@ -0,0 +1,11 @@ +--- +tags: [cementry, halloween, death, dead, tomb] +unicode: "f57f" +version: "1.108" +--- + + + + + + diff --git a/src/_icons/grave.svg b/src/_icons/grave.svg new file mode 100644 index 000000000..c40238628 --- /dev/null +++ b/src/_icons/grave.svg @@ -0,0 +1,9 @@ +--- +tags: [cemetery, halloween, death, dead, tomb] +unicode: "f580" +version: "1.108" +--- + + + + diff --git a/src/_icons/grid-dots.svg b/src/_icons/grid-dots.svg index d12a1ce58..562b9009f 100644 --- a/src/_icons/grid-dots.svg +++ b/src/_icons/grid-dots.svg @@ -5,13 +5,13 @@ version: "1.0" unicode: "eaba" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/grid-pattern.svg b/src/_icons/grid-pattern.svg index 7b985c536..5427cb486 100644 --- a/src/_icons/grid-pattern.svg +++ b/src/_icons/grid-pattern.svg @@ -4,7 +4,7 @@ version: "1.50" unicode: "efc9" --- - + diff --git a/src/_icons/grill-fork.svg b/src/_icons/grill-fork.svg new file mode 100644 index 000000000..1cf0d33f3 --- /dev/null +++ b/src/_icons/grill-fork.svg @@ -0,0 +1,11 @@ +--- +tags: [cook, cooking, bbq, meat, tool] +category: Food +unicode: "f35b" +version: "1.89" +--- + + + + + diff --git a/src/_icons/grill-off.svg b/src/_icons/grill-off.svg index b4dff6f3b..c4a0373b5 100644 --- a/src/_icons/grill-off.svg +++ b/src/_icons/grill-off.svg @@ -1,12 +1,12 @@ --- tags: [food, sasuage, beef, steak, bbq, cooking] category: Food -version: "1.66" -unicode: "f13b" +unicode: "f3f5" +version: "1.94" --- - - + + diff --git a/src/_icons/grill-spatula.svg b/src/_icons/grill-spatula.svg new file mode 100644 index 000000000..ab5dc9af8 --- /dev/null +++ b/src/_icons/grill-spatula.svg @@ -0,0 +1,11 @@ +--- +tags: [cook, cooking, bbq, meat, tool] +category: Food +unicode: "f35c" +version: "1.89" +--- + + + + + diff --git a/src/_icons/grill.svg b/src/_icons/grill.svg index 41d87772c..6d3c495f6 100644 --- a/src/_icons/grill.svg +++ b/src/_icons/grill.svg @@ -5,7 +5,7 @@ version: "1.48" unicode: "efa9" --- - + diff --git a/src/_icons/grip-horizontal.svg b/src/_icons/grip-horizontal.svg index e215f7bc4..d9b0045dc 100644 --- a/src/_icons/grip-horizontal.svg +++ b/src/_icons/grip-horizontal.svg @@ -1,14 +1,14 @@ --- -tags: [picture, abstract, symbol, design, across] +tags: [picture, abstract, symbol, design, across, dots, drag] category: System version: "1.8" unicode: "ec00" --- - - - - - - + + + + + + diff --git a/src/_icons/grip-vertical.svg b/src/_icons/grip-vertical.svg index 4b6ab0764..4e005c6d1 100644 --- a/src/_icons/grip-vertical.svg +++ b/src/_icons/grip-vertical.svg @@ -1,14 +1,14 @@ --- -tags: [picture, abstract, symbol, design, upright] +tags: [picture, abstract, symbol, design, upright, dots, drag] category: System 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..a9767a418 --- /dev/null +++ b/src/_icons/guitar-pick-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f67b" +--- + + + diff --git a/src/_icons/guitar-pick.svg b/src/_icons/guitar-pick.svg new file mode 100644 index 000000000..12bd637e9 --- /dev/null +++ b/src/_icons/guitar-pick.svg @@ -0,0 +1,8 @@ +--- +tags: [music, instrument, melody, accesories ] +unicode: "f4c6" +version: "1.98" +--- + + + diff --git a/src/_icons/h-6.svg b/src/_icons/h-6.svg index 49793d489..5ab0ab906 100644 --- a/src/_icons/h-6.svg +++ b/src/_icons/h-6.svg @@ -5,7 +5,7 @@ version: "1.16" unicode: "ec99" --- - + diff --git a/src/_icons/hammer-off.svg b/src/_icons/hammer-off.svg index 960d208b8..4fc547f29 100644 --- a/src/_icons/hammer-off.svg +++ b/src/_icons/hammer-off.svg @@ -5,6 +5,6 @@ unicode: "f13c" --- - + diff --git a/src/_icons/hand-finger-off.svg b/src/_icons/hand-finger-off.svg index a22634df2..0fdbac072 100644 --- a/src/_icons/hand-finger-off.svg +++ b/src/_icons/hand-finger-off.svg @@ -9,6 +9,6 @@ unicode: "f13d" - + diff --git a/src/_icons/hand-off.svg b/src/_icons/hand-off.svg index ede6f421b..a10088340 100644 --- a/src/_icons/hand-off.svg +++ b/src/_icons/hand-off.svg @@ -5,6 +5,6 @@ version: "1.24" unicode: "ed15" --- - + diff --git a/src/_icons/hand-sanitizer.svg b/src/_icons/hand-sanitizer.svg new file mode 100644 index 000000000..c57dc59cc --- /dev/null +++ b/src/_icons/hand-sanitizer.svg @@ -0,0 +1,11 @@ +--- +unicode: "f5f4" +version: "1.113" +--- + + + + + + + diff --git a/src/_icons/hanger-2.svg b/src/_icons/hanger-2.svg index b323b77aa..3fb44381d 100644 --- a/src/_icons/hanger-2.svg +++ b/src/_icons/hanger-2.svg @@ -5,6 +5,6 @@ unicode: "f09c" --- - - + + diff --git a/src/_icons/hanger-off.svg b/src/_icons/hanger-off.svg index b6d677b44..a7692de69 100644 --- a/src/_icons/hanger-off.svg +++ b/src/_icons/hanger-off.svg @@ -4,6 +4,6 @@ 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..01e1bd201 100644 --- a/src/_icons/hash.svg +++ b/src/_icons/hash.svg @@ -4,8 +4,8 @@ version: "1.0" unicode: "eabc" --- - - - - + + + + diff --git a/src/_icons/headphones-off.svg b/src/_icons/headphones-off.svg index aa530aa17..5a13e1554 100644 --- a/src/_icons/headphones-off.svg +++ b/src/_icons/headphones-off.svg @@ -1,12 +1,12 @@ --- +tags: [music, headset, audio, sound] category: Media -tags: [sound, silence, mute, earphones, electronics, wireless, listen] version: "1.25" unicode: "ed1d" --- - - + + diff --git a/src/_icons/headphones.svg b/src/_icons/headphones.svg index 1c6b6508c..d614ac4d5 100644 --- a/src/_icons/headphones.svg +++ b/src/_icons/headphones.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eabd" --- - - + + diff --git a/src/_icons/headset-off.svg b/src/_icons/headset-off.svg new file mode 100644 index 000000000..f60ba7aa8 --- /dev/null +++ b/src/_icons/headset-off.svg @@ -0,0 +1,13 @@ +--- +tags: [music, headphones, audio, sound] +category: Media +unicode: "f3f6" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/headset.svg b/src/_icons/headset.svg index f338dd50d..7d4ab1077 100644 --- a/src/_icons/headset.svg +++ b/src/_icons/headset.svg @@ -5,8 +5,8 @@ version: "1.3" unicode: "eb90" --- - - + + diff --git a/src/_icons/heart-filled.svg b/src/_icons/heart-filled.svg new file mode 100644 index 000000000..2cc6f8a95 --- /dev/null +++ b/src/_icons/heart-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f67c" +--- + + + diff --git a/src/_icons/heart-minus.svg b/src/_icons/heart-minus.svg index 98484ff7d..ad751041b 100644 --- a/src/_icons/heart-minus.svg +++ b/src/_icons/heart-minus.svg @@ -5,5 +5,5 @@ unicode: "f140" --- - + diff --git a/src/_icons/heart-off.svg b/src/_icons/heart-off.svg index ad81e14cc..841de9743 100644 --- a/src/_icons/heart-off.svg +++ b/src/_icons/heart-off.svg @@ -6,5 +6,5 @@ unicode: "f141" --- - + diff --git a/src/_icons/heart-plus.svg b/src/_icons/heart-plus.svg index de315e9a4..a7bc6a478 100644 --- a/src/_icons/heart-plus.svg +++ b/src/_icons/heart-plus.svg @@ -4,7 +4,7 @@ version: "1.66" unicode: "f142" --- - + diff --git a/src/_icons/heart-rate-monitor.svg b/src/_icons/heart-rate-monitor.svg index 5792c4497..27c149ed9 100644 --- a/src/_icons/heart-rate-monitor.svg +++ b/src/_icons/heart-rate-monitor.svg @@ -5,7 +5,7 @@ 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/hearts-off.svg b/src/_icons/hearts-off.svg new file mode 100644 index 000000000..c3c9099fd --- /dev/null +++ b/src/_icons/hearts-off.svg @@ -0,0 +1,11 @@ +--- +tags: [love, valentine, romantic, romance, marriage] +category: Shapes +unicode: "f3f7" +version: "1.94" +--- + + + + + diff --git a/src/_icons/hearts.svg b/src/_icons/hearts.svg new file mode 100644 index 000000000..aee602c6f --- /dev/null +++ b/src/_icons/hearts.svg @@ -0,0 +1,10 @@ +--- +tags: [love, valentine, romantic, romance, marriage] +category: Shapes +unicode: "f387" +version: "1.91" +--- + + + + diff --git a/src/_icons/helicopter-landing.svg b/src/_icons/helicopter-landing.svg index dd8c3784a..679195527 100644 --- a/src/_icons/helicopter-landing.svg +++ b/src/_icons/helicopter-landing.svg @@ -5,8 +5,8 @@ version: "1.34" unicode: "ed8d" --- - - - - + + + + diff --git a/src/_icons/helicopter.svg b/src/_icons/helicopter.svg index dbb563e75..c5413af4c 100644 --- a/src/_icons/helicopter.svg +++ b/src/_icons/helicopter.svg @@ -7,9 +7,9 @@ unicode: "ed8e" - - + + - - + + diff --git a/src/_icons/help-off.svg b/src/_icons/help-off.svg new file mode 100644 index 000000000..d29f4a0da --- /dev/null +++ b/src/_icons/help-off.svg @@ -0,0 +1,11 @@ +--- +tags: [tooltip, assistance, advice, support] +unicode: "f3f8" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/help.svg b/src/_icons/help.svg index 52b50d462..293be08b9 100644 --- a/src/_icons/help.svg +++ b/src/_icons/help.svg @@ -4,7 +4,7 @@ version: "1.1" unicode: "eabf" --- - - + + diff --git a/src/_icons/hexagon-3d.svg b/src/_icons/hexagon-3d.svg new file mode 100644 index 000000000..652ae83c6 --- /dev/null +++ b/src/_icons/hexagon-3d.svg @@ -0,0 +1,14 @@ +--- +tags: [geometry, six, dimensional, shape ] +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..4c75b088c --- /dev/null +++ b/src/_icons/hexagon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f67d" +--- + + + diff --git a/src/_icons/hexagon-letter-a.svg b/src/_icons/hexagon-letter-a.svg new file mode 100644 index 000000000..42e30cf04 --- /dev/null +++ b/src/_icons/hexagon-letter-a.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f463" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-b.svg b/src/_icons/hexagon-letter-b.svg new file mode 100644 index 000000000..187e3a19c --- /dev/null +++ b/src/_icons/hexagon-letter-b.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f464" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-c.svg b/src/_icons/hexagon-letter-c.svg new file mode 100644 index 000000000..c1b251eb3 --- /dev/null +++ b/src/_icons/hexagon-letter-c.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f465" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-d.svg b/src/_icons/hexagon-letter-d.svg new file mode 100644 index 000000000..03975636a --- /dev/null +++ b/src/_icons/hexagon-letter-d.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f466" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-e.svg b/src/_icons/hexagon-letter-e.svg new file mode 100644 index 000000000..5f67884c5 --- /dev/null +++ b/src/_icons/hexagon-letter-e.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f467" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-f.svg b/src/_icons/hexagon-letter-f.svg new file mode 100644 index 000000000..f2d443f0a --- /dev/null +++ b/src/_icons/hexagon-letter-f.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f468" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-g.svg b/src/_icons/hexagon-letter-g.svg new file mode 100644 index 000000000..cce22aba4 --- /dev/null +++ b/src/_icons/hexagon-letter-g.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f469" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-h.svg b/src/_icons/hexagon-letter-h.svg new file mode 100644 index 000000000..80af27e83 --- /dev/null +++ b/src/_icons/hexagon-letter-h.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f46a" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-i.svg b/src/_icons/hexagon-letter-i.svg new file mode 100644 index 000000000..1926ab3c4 --- /dev/null +++ b/src/_icons/hexagon-letter-i.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f46b" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-j.svg b/src/_icons/hexagon-letter-j.svg new file mode 100644 index 000000000..6f70abdd9 --- /dev/null +++ b/src/_icons/hexagon-letter-j.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f46c" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-k.svg b/src/_icons/hexagon-letter-k.svg new file mode 100644 index 000000000..0f94ea45a --- /dev/null +++ b/src/_icons/hexagon-letter-k.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f46d" +version: "1.95" +--- + + + + + + diff --git a/src/_icons/hexagon-letter-l.svg b/src/_icons/hexagon-letter-l.svg new file mode 100644 index 000000000..3a8acab75 --- /dev/null +++ b/src/_icons/hexagon-letter-l.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f46e" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-m.svg b/src/_icons/hexagon-letter-m.svg new file mode 100644 index 000000000..f3f2f3e8a --- /dev/null +++ b/src/_icons/hexagon-letter-m.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f46f" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-n.svg b/src/_icons/hexagon-letter-n.svg new file mode 100644 index 000000000..36eddee0e --- /dev/null +++ b/src/_icons/hexagon-letter-n.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f470" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-o.svg b/src/_icons/hexagon-letter-o.svg new file mode 100644 index 000000000..7c7109e7e --- /dev/null +++ b/src/_icons/hexagon-letter-o.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f471" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-p.svg b/src/_icons/hexagon-letter-p.svg new file mode 100644 index 000000000..d0083c04f --- /dev/null +++ b/src/_icons/hexagon-letter-p.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f472" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-q.svg b/src/_icons/hexagon-letter-q.svg new file mode 100644 index 000000000..310af86c4 --- /dev/null +++ b/src/_icons/hexagon-letter-q.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f473" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-r.svg b/src/_icons/hexagon-letter-r.svg new file mode 100644 index 000000000..d12faa409 --- /dev/null +++ b/src/_icons/hexagon-letter-r.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f474" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-s.svg b/src/_icons/hexagon-letter-s.svg new file mode 100644 index 000000000..43316155e --- /dev/null +++ b/src/_icons/hexagon-letter-s.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f475" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-t.svg b/src/_icons/hexagon-letter-t.svg new file mode 100644 index 000000000..203c9b737 --- /dev/null +++ b/src/_icons/hexagon-letter-t.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f476" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-u.svg b/src/_icons/hexagon-letter-u.svg new file mode 100644 index 000000000..82e768d72 --- /dev/null +++ b/src/_icons/hexagon-letter-u.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f477" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-v.svg b/src/_icons/hexagon-letter-v.svg new file mode 100644 index 000000000..dbf62e3ff --- /dev/null +++ b/src/_icons/hexagon-letter-v.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f4b3" +version: "1.97" +--- + + + + diff --git a/src/_icons/hexagon-letter-w.svg b/src/_icons/hexagon-letter-w.svg new file mode 100644 index 000000000..87b823330 --- /dev/null +++ b/src/_icons/hexagon-letter-w.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f478" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-letter-x.svg b/src/_icons/hexagon-letter-x.svg new file mode 100644 index 000000000..bdc4e8d6e --- /dev/null +++ b/src/_icons/hexagon-letter-x.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f479" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-y.svg b/src/_icons/hexagon-letter-y.svg new file mode 100644 index 000000000..4bee4e521 --- /dev/null +++ b/src/_icons/hexagon-letter-y.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f47a" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-letter-z.svg b/src/_icons/hexagon-letter-z.svg new file mode 100644 index 000000000..605f4a40e --- /dev/null +++ b/src/_icons/hexagon-letter-z.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f47b" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-0.svg b/src/_icons/hexagon-number-0.svg new file mode 100644 index 000000000..c1581486a --- /dev/null +++ b/src/_icons/hexagon-number-0.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f459" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-1.svg b/src/_icons/hexagon-number-1.svg new file mode 100644 index 000000000..04d78030b --- /dev/null +++ b/src/_icons/hexagon-number-1.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f45a" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-2.svg b/src/_icons/hexagon-number-2.svg new file mode 100644 index 000000000..35efa92a3 --- /dev/null +++ b/src/_icons/hexagon-number-2.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f45b" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-3.svg b/src/_icons/hexagon-number-3.svg new file mode 100644 index 000000000..db4641637 --- /dev/null +++ b/src/_icons/hexagon-number-3.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f45c" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-4.svg b/src/_icons/hexagon-number-4.svg new file mode 100644 index 000000000..c82eb916e --- /dev/null +++ b/src/_icons/hexagon-number-4.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f45d" +version: "1.95" +--- + + + + + diff --git a/src/_icons/hexagon-number-5.svg b/src/_icons/hexagon-number-5.svg new file mode 100644 index 000000000..e3c0c0184 --- /dev/null +++ b/src/_icons/hexagon-number-5.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f45e" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-6.svg b/src/_icons/hexagon-number-6.svg new file mode 100644 index 000000000..1030f38df --- /dev/null +++ b/src/_icons/hexagon-number-6.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f45f" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-7.svg b/src/_icons/hexagon-number-7.svg new file mode 100644 index 000000000..f31a213b3 --- /dev/null +++ b/src/_icons/hexagon-number-7.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f460" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-8.svg b/src/_icons/hexagon-number-8.svg new file mode 100644 index 000000000..9663e20d4 --- /dev/null +++ b/src/_icons/hexagon-number-8.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f461" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-number-9.svg b/src/_icons/hexagon-number-9.svg new file mode 100644 index 000000000..1ad197d59 --- /dev/null +++ b/src/_icons/hexagon-number-9.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f462" +version: "1.95" +--- + + + + diff --git a/src/_icons/hexagon-off.svg b/src/_icons/hexagon-off.svg index d63a7c475..c5a919d8a 100644 --- a/src/_icons/hexagon-off.svg +++ b/src/_icons/hexagon-off.svg @@ -1,6 +1,6 @@ --- +tags: [shape, geometric, math, 2d] category: Shapes -tags: [six, angle, shape, crossed] version: "1.39" unicode: "ee9c" --- diff --git a/src/_icons/hexagon.svg b/src/_icons/hexagon.svg index 06ed7c0e8..8cdd77f0a 100644 --- a/src/_icons/hexagon.svg +++ b/src/_icons/hexagon.svg @@ -1,6 +1,6 @@ --- category: Shapes -tags: [shape, geometric, math, 2D] +tags: [shape, geometric, math, 2d] version: "1.8" unicode: "ec02" --- diff --git a/src/_icons/hexagons-off.svg b/src/_icons/hexagons-off.svg new file mode 100644 index 000000000..9d3ed3420 --- /dev/null +++ b/src/_icons/hexagons-off.svg @@ -0,0 +1,13 @@ +--- +tags: [diagram, chemistry, modules, geometric] +category: Shapes +unicode: "f3f9" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/hierarchy-2.svg b/src/_icons/hierarchy-2.svg index 4e28f69db..62c28bb9b 100644 --- a/src/_icons/hierarchy-2.svg +++ b/src/_icons/hierarchy-2.svg @@ -9,5 +9,5 @@ unicode: "ee9d" - + diff --git a/src/_icons/hierarchy-3.svg b/src/_icons/hierarchy-3.svg index b30142069..2c92e632a 100644 --- a/src/_icons/hierarchy-3.svg +++ b/src/_icons/hierarchy-3.svg @@ -5,12 +5,12 @@ version: "1.78" unicode: "f289" --- - - - - - - + + + + + + diff --git a/src/_icons/hierarchy-off.svg b/src/_icons/hierarchy-off.svg new file mode 100644 index 000000000..24edac02f --- /dev/null +++ b/src/_icons/hierarchy-off.svg @@ -0,0 +1,14 @@ +--- +tags: [relation, above, below, status, society, important] +category: Design +unicode: "f3fa" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/hierarchy.svg b/src/_icons/hierarchy.svg index 711c10b27..2f07bf200 100644 --- a/src/_icons/hierarchy.svg +++ b/src/_icons/hierarchy.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "ee9e" --- - - - + + + - + diff --git a/src/_icons/highlight-off.svg b/src/_icons/highlight-off.svg index a503c4cf6..af0d8db25 100644 --- a/src/_icons/highlight-off.svg +++ b/src/_icons/highlight-off.svg @@ -5,9 +5,9 @@ version: "1.66" unicode: "f144" --- - + - + diff --git a/src/_icons/history-off.svg b/src/_icons/history-off.svg new file mode 100644 index 000000000..16de8bc1c --- /dev/null +++ b/src/_icons/history-off.svg @@ -0,0 +1,10 @@ +--- +tags: [search, see, past, card, website] +category: System +unicode: "f3fb" +version: "1.94" +--- + + + + diff --git a/src/_icons/history.svg b/src/_icons/history.svg index 7f21c14eb..537ea36bc 100644 --- a/src/_icons/history.svg +++ b/src/_icons/history.svg @@ -5,6 +5,6 @@ version: "1.7" unicode: "ebea" --- - + diff --git a/src/_icons/home-2.svg b/src/_icons/home-2.svg index f1c8b3e28..67957f885 100644 --- a/src/_icons/home-2.svg +++ b/src/_icons/home-2.svg @@ -5,7 +5,7 @@ version: "1.1" unicode: "eac0" --- - + - + diff --git a/src/_icons/home-bolt.svg b/src/_icons/home-bolt.svg new file mode 100644 index 000000000..860ff713e --- /dev/null +++ b/src/_icons/home-bolt.svg @@ -0,0 +1,11 @@ +--- +tags: [electrity, energy, power, lightning, energetic, house] +category: Buildings +unicode: "f336" +version: "1.87" +--- + + + + + diff --git a/src/_icons/home-cancel.svg b/src/_icons/home-cancel.svg new file mode 100644 index 000000000..909b540af --- /dev/null +++ b/src/_icons/home-cancel.svg @@ -0,0 +1,12 @@ +--- +tags: [delete, house, building, close] +category: Buildings +unicode: "f350" +version: "1.88" +--- + + + + + + diff --git a/src/_icons/home-check.svg b/src/_icons/home-check.svg new file mode 100644 index 000000000..a896a7a35 --- /dev/null +++ b/src/_icons/home-check.svg @@ -0,0 +1,11 @@ +--- +tags: [house, tick, mark, assure, safety] +category: Buildings +unicode: "f337" +version: "1.87" +--- + + + + + diff --git a/src/_icons/home-cog.svg b/src/_icons/home-cog.svg new file mode 100644 index 000000000..60ed32bc2 --- /dev/null +++ b/src/_icons/home-cog.svg @@ -0,0 +1,17 @@ +--- +tags: [gear, house, building, settings, renovation] +category: Buildings +unicode: "f338" +version: "1.87" +--- + + + + + + + + + + + diff --git a/src/_icons/home-dollar.svg b/src/_icons/home-dollar.svg new file mode 100644 index 000000000..82a7e60ab --- /dev/null +++ b/src/_icons/home-dollar.svg @@ -0,0 +1,12 @@ +--- +tags: [buisness, house, estate, finance, building, money] +category: Buildings +unicode: "f339" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-dot.svg b/src/_icons/home-dot.svg new file mode 100644 index 000000000..6c8fda4f8 --- /dev/null +++ b/src/_icons/home-dot.svg @@ -0,0 +1,11 @@ +--- +tags: [notification, alert, monitor] +category: Buildings +unicode: "f33a" +version: "1.87" +--- + + + + + diff --git a/src/_icons/home-down.svg b/src/_icons/home-down.svg new file mode 100644 index 000000000..71a9d0e21 --- /dev/null +++ b/src/_icons/home-down.svg @@ -0,0 +1,12 @@ +--- +tags: [property, estate, bottom, south, house] +category: Buildings +unicode: "f33b" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-eco.svg b/src/_icons/home-eco.svg new file mode 100644 index 000000000..91ee21f1e --- /dev/null +++ b/src/_icons/home-eco.svg @@ -0,0 +1,12 @@ +--- +tags: [ecology, energy, nature, leaf, house] +category: Buildings +unicode: "f351" +version: "1.88" +--- + + + + + + diff --git a/src/_icons/home-edit.svg b/src/_icons/home-edit.svg new file mode 100644 index 000000000..0e8716e33 --- /dev/null +++ b/src/_icons/home-edit.svg @@ -0,0 +1,11 @@ +--- +tags: [house, building, renovation, estate] +category: Buildings +unicode: "f352" +version: "1.88" +--- + + + + + diff --git a/src/_icons/home-exclamation.svg b/src/_icons/home-exclamation.svg new file mode 100644 index 000000000..aaea5b4cd --- /dev/null +++ b/src/_icons/home-exclamation.svg @@ -0,0 +1,12 @@ +--- +tags: [warning, danger, accident, house] +category: Buildings +unicode: "f33c" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-hand.svg b/src/_icons/home-hand.svg new file mode 100644 index 000000000..b7048ddce --- /dev/null +++ b/src/_icons/home-hand.svg @@ -0,0 +1,10 @@ +--- +tags: [house, dashboard, living, building, care ] +unicode: "f504" +version: "1.101" +--- + + + + + diff --git a/src/_icons/home-heart.svg b/src/_icons/home-heart.svg new file mode 100644 index 000000000..196a9df23 --- /dev/null +++ b/src/_icons/home-heart.svg @@ -0,0 +1,11 @@ +--- +tags: [love, sweet, dating, care, safety] +category: Buildings +unicode: "f353" +version: "1.88" +--- + + + + + diff --git a/src/_icons/home-infinity.svg b/src/_icons/home-infinity.svg new file mode 100644 index 000000000..5dff298ec --- /dev/null +++ b/src/_icons/home-infinity.svg @@ -0,0 +1,11 @@ +--- +tags: [house, dashboard, living, building, endless] +unicode: "f505" +version: "1.101" +--- + + + + + + diff --git a/src/_icons/home-link.svg b/src/_icons/home-link.svg new file mode 100644 index 000000000..72d1f63d9 --- /dev/null +++ b/src/_icons/home-link.svg @@ -0,0 +1,14 @@ +--- +tags: [address, technology, smart, internet] +category: Buildings +unicode: "f354" +version: "1.88" +--- + + + + + + + + diff --git a/src/_icons/home-minus.svg b/src/_icons/home-minus.svg new file mode 100644 index 000000000..7a520e3cc --- /dev/null +++ b/src/_icons/home-minus.svg @@ -0,0 +1,11 @@ +--- +tags: [remove, delete, cancel, close] +category: Buildings +unicode: "f33d" +version: "1.87" +--- + + + + + diff --git a/src/_icons/home-move.svg b/src/_icons/home-move.svg new file mode 100644 index 000000000..65ca3516c --- /dev/null +++ b/src/_icons/home-move.svg @@ -0,0 +1,12 @@ +--- +tags: [relocation, moving, house, change, exchange] +category: Buildings +unicode: "f33e" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-off.svg b/src/_icons/home-off.svg index f188ab44f..6fd59d19f 100644 --- a/src/_icons/home-off.svg +++ b/src/_icons/home-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f145" --- - + diff --git a/src/_icons/home-plus.svg b/src/_icons/home-plus.svg new file mode 100644 index 000000000..c42a10336 --- /dev/null +++ b/src/_icons/home-plus.svg @@ -0,0 +1,12 @@ +--- +tags: [add, building, new, create] +category: Buildings +unicode: "f33f" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-question.svg b/src/_icons/home-question.svg new file mode 100644 index 000000000..9f0d333d7 --- /dev/null +++ b/src/_icons/home-question.svg @@ -0,0 +1,12 @@ +--- +tags: [support, help, information, ask, anwser, "?"] +category: Buildings +unicode: "f340" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-ribbon.svg b/src/_icons/home-ribbon.svg new file mode 100644 index 000000000..770454838 --- /dev/null +++ b/src/_icons/home-ribbon.svg @@ -0,0 +1,11 @@ +--- +tags: [contract, certifited, achievement] +category: Buildings +unicode: "f355" +version: "1.88" +--- + + + + + diff --git a/src/_icons/home-search.svg b/src/_icons/home-search.svg new file mode 100644 index 000000000..d4e667557 --- /dev/null +++ b/src/_icons/home-search.svg @@ -0,0 +1,12 @@ +--- +tags: [find, estate, house, building] +category: Buildings +unicode: "f341" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-share.svg b/src/_icons/home-share.svg new file mode 100644 index 000000000..06a6d5b1f --- /dev/null +++ b/src/_icons/home-share.svg @@ -0,0 +1,12 @@ +--- +tags: [house, dashboard, living, building, network, link, connection] +category: Buildings +unicode: "f342" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-shield.svg b/src/_icons/home-shield.svg new file mode 100644 index 000000000..04a573ca8 --- /dev/null +++ b/src/_icons/home-shield.svg @@ -0,0 +1,11 @@ +--- +tags: [security, safety, secure, safe] +category: Buildings +unicode: "f343" +version: "1.87" +--- + + + + + diff --git a/src/_icons/home-signal.svg b/src/_icons/home-signal.svg new file mode 100644 index 000000000..2ccecd187 --- /dev/null +++ b/src/_icons/home-signal.svg @@ -0,0 +1,13 @@ +--- +tags: [wi-fi, communication, internet, wireless] +category: Buildings +unicode: "f356" +version: "1.88" +--- + + + + + + + diff --git a/src/_icons/home-star.svg b/src/_icons/home-star.svg new file mode 100644 index 000000000..d13049832 --- /dev/null +++ b/src/_icons/home-star.svg @@ -0,0 +1,11 @@ +--- +tags: [best, favourite, like, house] +category: Buildings +unicode: "f344" +version: "1.87" +--- + + + + + diff --git a/src/_icons/home-stats.svg b/src/_icons/home-stats.svg new file mode 100644 index 000000000..45024db24 --- /dev/null +++ b/src/_icons/home-stats.svg @@ -0,0 +1,12 @@ +--- +tags: [analytics, business, finance] +category: Buildings +unicode: "f345" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-up.svg b/src/_icons/home-up.svg new file mode 100644 index 000000000..d5d50b91c --- /dev/null +++ b/src/_icons/home-up.svg @@ -0,0 +1,12 @@ +--- +tags: [arrow, higher, house, north] +category: Buildings +unicode: "f346" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home-x.svg b/src/_icons/home-x.svg new file mode 100644 index 000000000..a047a2298 --- /dev/null +++ b/src/_icons/home-x.svg @@ -0,0 +1,12 @@ +--- +tags: [off, sale, commerce] +category: Buildings +unicode: "f347" +version: "1.87" +--- + + + + + + diff --git a/src/_icons/home.svg b/src/_icons/home.svg index 0cc676c69..341c53a77 100644 --- a/src/_icons/home.svg +++ b/src/_icons/home.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eac1" --- - + diff --git a/src/_icons/hourglass-off.svg b/src/_icons/hourglass-off.svg index 4deca4d27..597fcc268 100644 --- a/src/_icons/hourglass-off.svg +++ b/src/_icons/hourglass-off.svg @@ -6,6 +6,6 @@ unicode: "f147" --- - + diff --git a/src/_icons/ice-cream-2.svg b/src/_icons/ice-cream-2.svg index d07021f92..23d35d854 100644 --- a/src/_icons/ice-cream-2.svg +++ b/src/_icons/ice-cream-2.svg @@ -5,6 +5,6 @@ version: "1.39" unicode: "ee9f" --- - - + + diff --git a/src/_icons/ice-cream-off.svg b/src/_icons/ice-cream-off.svg index f173825f7..c3afae7f5 100644 --- a/src/_icons/ice-cream-off.svg +++ b/src/_icons/ice-cream-off.svg @@ -1,5 +1,5 @@ --- -tags: [sweet, cold, dessert, food, taste, frozen, snack, flavour, flavor, cone] +tags: [candy, dessert, frozen, sweet] category: Food version: "1.66" unicode: "f148" diff --git a/src/_icons/ice-skating.svg b/src/_icons/ice-skating.svg index 25c7ea3dd..0f4f1858a 100644 --- a/src/_icons/ice-skating.svg +++ b/src/_icons/ice-skating.svg @@ -5,7 +5,7 @@ version: "1.50" unicode: "efcb" --- - + diff --git a/src/_icons/icons-off.svg b/src/_icons/icons-off.svg new file mode 100644 index 000000000..be755dc0c --- /dev/null +++ b/src/_icons/icons-off.svg @@ -0,0 +1,14 @@ +--- +tags: [design, image, picture] +category: Shapes +unicode: "f3fc" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/icons.svg b/src/_icons/icons.svg index df2059321..c0e5be729 100644 --- a/src/_icons/icons.svg +++ b/src/_icons/icons.svg @@ -5,7 +5,7 @@ version: "1.68" unicode: "f1d4" --- - + diff --git a/src/_icons/id-badge-2.svg b/src/_icons/id-badge-2.svg index 36be8e955..635944fac 100644 --- a/src/_icons/id-badge-2.svg +++ b/src/_icons/id-badge-2.svg @@ -6,7 +6,7 @@ unicode: "f076" - + diff --git a/src/_icons/id-badge-off.svg b/src/_icons/id-badge-off.svg new file mode 100644 index 000000000..4e611b61a --- /dev/null +++ b/src/_icons/id-badge-off.svg @@ -0,0 +1,12 @@ +--- +tags: [identification, pass, card, identity] +unicode: "f3fd" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/id-badge.svg b/src/_icons/id-badge.svg index 360b6cbfc..a83b3dbb6 100644 --- a/src/_icons/id-badge.svg +++ b/src/_icons/id-badge.svg @@ -4,8 +4,8 @@ version: "1.52" unicode: "eff7" --- - - + + diff --git a/src/_icons/id.svg b/src/_icons/id.svg index 8b8bdf898..c7fae5834 100644 --- a/src/_icons/id.svg +++ b/src/_icons/id.svg @@ -4,9 +4,9 @@ version: "1.1" unicode: "eac3" --- - - - - - + + + + + diff --git a/src/_icons/inbox-off.svg b/src/_icons/inbox-off.svg index 1684031a7..d8d7a0e9a 100644 --- a/src/_icons/inbox-off.svg +++ b/src/_icons/inbox-off.svg @@ -4,7 +4,7 @@ version: "1.66" unicode: "f14a" --- - + diff --git a/src/_icons/inbox.svg b/src/_icons/inbox.svg index 3e436f889..70545a892 100644 --- a/src/_icons/inbox.svg +++ b/src/_icons/inbox.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eac4" --- - + diff --git a/src/_icons/indent-decrease.svg b/src/_icons/indent-decrease.svg index 0f35ea9d4..b0faaeb4a 100644 --- a/src/_icons/indent-decrease.svg +++ b/src/_icons/indent-decrease.svg @@ -5,8 +5,8 @@ version: "1.3" unicode: "eb91" --- - - - + + + diff --git a/src/_icons/indent-increase.svg b/src/_icons/indent-increase.svg index 2057bbd63..037b53a90 100644 --- a/src/_icons/indent-increase.svg +++ b/src/_icons/indent-increase.svg @@ -5,8 +5,8 @@ version: "1.3" unicode: "eb92" --- - - - + + + diff --git a/src/_icons/infinity-off.svg b/src/_icons/infinity-off.svg new file mode 100644 index 000000000..c14770ff8 --- /dev/null +++ b/src/_icons/infinity-off.svg @@ -0,0 +1,10 @@ +--- +tags: [endless, eternity, continuum, time] +category: Math +unicode: "f3fe" +version: "1.94" +--- + + + + diff --git a/src/_icons/info-circle.svg b/src/_icons/info-circle.svg index c2a3d5c7d..56c5d3e22 100644 --- a/src/_icons/info-circle.svg +++ b/src/_icons/info-circle.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "eac5" --- - - - + + + diff --git a/src/_icons/info-square-rounded.svg b/src/_icons/info-square-rounded.svg new file mode 100644 index 000000000..90130d0bd --- /dev/null +++ b/src/_icons/info-square-rounded.svg @@ -0,0 +1,9 @@ +--- +unicode: "f635" +version: "1.117" +--- + + + + + diff --git a/src/_icons/info-square.svg b/src/_icons/info-square.svg index 8bc3b397a..5989bb61c 100644 --- a/src/_icons/info-square.svg +++ b/src/_icons/info-square.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "eac6" --- - - - + + + diff --git a/src/_icons/inner-shadow-bottom-left.svg b/src/_icons/inner-shadow-bottom-left.svg new file mode 100644 index 000000000..28187203e --- /dev/null +++ b/src/_icons/inner-shadow-bottom-left.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, down, south, west] +category: Design +unicode: "f51e" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-bottom-right.svg b/src/_icons/inner-shadow-bottom-right.svg new file mode 100644 index 000000000..a34c91e7b --- /dev/null +++ b/src/_icons/inner-shadow-bottom-right.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, down, south, east] +category: Design +unicode: "f51f" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-bottom.svg b/src/_icons/inner-shadow-bottom.svg new file mode 100644 index 000000000..19b289487 --- /dev/null +++ b/src/_icons/inner-shadow-bottom.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, down, south] +category: Design +unicode: "f520" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-left.svg b/src/_icons/inner-shadow-left.svg new file mode 100644 index 000000000..fc6c1f355 --- /dev/null +++ b/src/_icons/inner-shadow-left.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, west] +category: Design +unicode: "f521" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-right.svg b/src/_icons/inner-shadow-right.svg new file mode 100644 index 000000000..808fe6e05 --- /dev/null +++ b/src/_icons/inner-shadow-right.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, east] +category: Design +unicode: "f522" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-top-left.svg b/src/_icons/inner-shadow-top-left.svg new file mode 100644 index 000000000..8c923adcc --- /dev/null +++ b/src/_icons/inner-shadow-top-left.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, up, north, west] +category: Design +unicode: "f523" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-top-right.svg b/src/_icons/inner-shadow-top-right.svg new file mode 100644 index 000000000..5fd94e759 --- /dev/null +++ b/src/_icons/inner-shadow-top-right.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, up, north, east] +category: Design +unicode: "f524" +version: "1.103" +--- + + + + diff --git a/src/_icons/inner-shadow-top.svg b/src/_icons/inner-shadow-top.svg new file mode 100644 index 000000000..5c9e5b139 --- /dev/null +++ b/src/_icons/inner-shadow-top.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, circle, up, north] +category: Design +unicode: "f525" +version: "1.103" +--- + + + + diff --git a/src/_icons/input-search.svg b/src/_icons/input-search.svg index 26c013d63..e5d3ab52f 100644 --- a/src/_icons/input-search.svg +++ b/src/_icons/input-search.svg @@ -1,10 +1,11 @@ --- +tags: [find, website, field, explore] category: Text version: "1.79" unicode: "f2a2" --- - + diff --git a/src/_icons/ironing-1.svg b/src/_icons/ironing-1.svg new file mode 100644 index 000000000..3a9cc5436 --- /dev/null +++ b/src/_icons/ironing-1.svg @@ -0,0 +1,10 @@ +--- +tags: [clotches, housework, iron, smooth ] +category: Laundry +unicode: "f2f4" +version: "1.84" +--- + + + + diff --git a/src/_icons/ironing-2.svg b/src/_icons/ironing-2.svg new file mode 100644 index 000000000..b1c69388e --- /dev/null +++ b/src/_icons/ironing-2.svg @@ -0,0 +1,11 @@ +--- +tags: [clotches, housework, iron, smooth ] +category: Laundry +unicode: "f2f5" +version: "1.84" +--- + + + + + diff --git a/src/_icons/ironing-3.svg b/src/_icons/ironing-3.svg new file mode 100644 index 000000000..09c39d618 --- /dev/null +++ b/src/_icons/ironing-3.svg @@ -0,0 +1,12 @@ +--- +tags: [clotches, housework, iron, smooth ] +category: Laundry +unicode: "f2f6" +version: "1.84" +--- + + + + + + diff --git a/src/_icons/ironing-off.svg b/src/_icons/ironing-off.svg new file mode 100644 index 000000000..c33302f58 --- /dev/null +++ b/src/_icons/ironing-off.svg @@ -0,0 +1,10 @@ +--- +tags: [clotches, housework, iron, smooth ] +category: Laundry +unicode: "f2f7" +version: "1.84" +--- + + + + diff --git a/src/_icons/ironing-steam-off.svg b/src/_icons/ironing-steam-off.svg new file mode 100644 index 000000000..746c13bfa --- /dev/null +++ b/src/_icons/ironing-steam-off.svg @@ -0,0 +1,15 @@ +--- +tags: [clotches, housework, iron, smooth, water] +category: Laundry +unicode: "f2f8" +version: "1.84" +--- + + + + + + + + + diff --git a/src/_icons/ironing-steam.svg b/src/_icons/ironing-steam.svg new file mode 100644 index 000000000..386178592 --- /dev/null +++ b/src/_icons/ironing-steam.svg @@ -0,0 +1,12 @@ +--- +tags: [clotches, housework, iron, smooth, water] +category: Laundry +unicode: "f2f9" +version: "1.84" +--- + + + + + + diff --git a/src/_icons/italic.svg b/src/_icons/italic.svg index 97500c900..908a21406 100644 --- a/src/_icons/italic.svg +++ b/src/_icons/italic.svg @@ -5,7 +5,7 @@ version: "1.3" unicode: "eb93" --- - - - + + + diff --git a/src/_icons/jacket.svg b/src/_icons/jacket.svg new file mode 100644 index 000000000..27774e9e7 --- /dev/null +++ b/src/_icons/jacket.svg @@ -0,0 +1,11 @@ +--- +unicode: "f661" +version: "1.119" +--- + + + + + + + diff --git a/src/_icons/jetpack.svg b/src/_icons/jetpack.svg new file mode 100644 index 000000000..5daa292e0 --- /dev/null +++ b/src/_icons/jetpack.svg @@ -0,0 +1,13 @@ +--- +tags: [fly, rocket, transport, space, future] +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..2a724ca88 --- /dev/null +++ b/src/_icons/jewish-star-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f67e" +--- + + + diff --git a/src/_icons/jewish-star.svg b/src/_icons/jewish-star.svg index 6c2245364..dbe08c54f 100644 --- a/src/_icons/jewish-star.svg +++ b/src/_icons/jewish-star.svg @@ -1,8 +1,7 @@ --- tags: [judaism, israel, religion, bright] -category: Symbols -version: "1.68" -unicode: "f1d5" +unicode: "f3ff" +version: "1.94" --- diff --git a/src/_icons/jpg.svg b/src/_icons/jpg.svg new file mode 100644 index 000000000..1d0bc3b48 --- /dev/null +++ b/src/_icons/jpg.svg @@ -0,0 +1,10 @@ +--- +tags: [file, format, type, document ] +version: "1.93" +unicode: "f3ac" +--- + + + + + diff --git a/src/_icons/jump-rope.svg b/src/_icons/jump-rope.svg index 85fb29ddb..780427053 100644 --- a/src/_icons/jump-rope.svg +++ b/src/_icons/jump-rope.svg @@ -6,6 +6,6 @@ unicode: "ed8f" --- - - + + diff --git a/src/_icons/karate.svg b/src/_icons/karate.svg index 58565b8f9..437f81f4e 100644 --- a/src/_icons/karate.svg +++ b/src/_icons/karate.svg @@ -5,7 +5,7 @@ version: "1.27" unicode: "ed32" --- - + diff --git a/src/_icons/key-off.svg b/src/_icons/key-off.svg index 6ffce55c5..81aa1cad2 100644 --- a/src/_icons/key-off.svg +++ b/src/_icons/key-off.svg @@ -4,9 +4,8 @@ version: "1.66" unicode: "f14b" --- - - - - + + + diff --git a/src/_icons/key.svg b/src/_icons/key.svg index 58f5b3e5c..ef346ed07 100644 --- a/src/_icons/key.svg +++ b/src/_icons/key.svg @@ -4,8 +4,6 @@ version: "1.0" unicode: "eac7" --- - - - - + + diff --git a/src/_icons/keyboard-hide.svg b/src/_icons/keyboard-hide.svg index 37f3d02ea..7db8a72eb 100644 --- a/src/_icons/keyboard-hide.svg +++ b/src/_icons/keyboard-hide.svg @@ -5,13 +5,13 @@ version: "1.14" unicode: "ec7e" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/keyboard-off.svg b/src/_icons/keyboard-off.svg index ab048a175..01c3d03e2 100644 --- a/src/_icons/keyboard-off.svg +++ b/src/_icons/keyboard-off.svg @@ -1,17 +1,17 @@ --- +tags: [computer, laptop, device, type] category: Devices -tags: [device, type, disconnect, unplug] version: "1.39" unicode: "eea0" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/keyboard-show.svg b/src/_icons/keyboard-show.svg index 9c6d5da6c..357a2e660 100644 --- a/src/_icons/keyboard-show.svg +++ b/src/_icons/keyboard-show.svg @@ -5,13 +5,13 @@ version: "1.14" unicode: "ec7f" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/keyboard.svg b/src/_icons/keyboard.svg index b2045dd43..262496d4d 100644 --- a/src/_icons/keyboard.svg +++ b/src/_icons/keyboard.svg @@ -5,12 +5,12 @@ version: "1.6" unicode: "ebd6" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/keyframe-align-center.svg b/src/_icons/keyframe-align-center.svg new file mode 100644 index 000000000..3bc4d1a69 --- /dev/null +++ b/src/_icons/keyframe-align-center.svg @@ -0,0 +1,12 @@ +--- +tags: [middle, animation, shape] +unicode: "f582" +version: "1.108" +--- + + + + + + + diff --git a/src/_icons/keyframe-align-horizontal.svg b/src/_icons/keyframe-align-horizontal.svg new file mode 100644 index 000000000..4fd13a532 --- /dev/null +++ b/src/_icons/keyframe-align-horizontal.svg @@ -0,0 +1,10 @@ +--- +tags: [animation, shape] +unicode: "f583" +version: "1.108" +--- + + + + + diff --git a/src/_icons/keyframe-align-vertical.svg b/src/_icons/keyframe-align-vertical.svg new file mode 100644 index 000000000..c2bd68e72 --- /dev/null +++ b/src/_icons/keyframe-align-vertical.svg @@ -0,0 +1,10 @@ +--- +tags: [animation, shape] +unicode: "f584" +version: "1.108" +--- + + + + + diff --git a/src/_icons/keyframe.svg b/src/_icons/keyframe.svg new file mode 100644 index 000000000..b7b9aa72f --- /dev/null +++ b/src/_icons/keyframe.svg @@ -0,0 +1,8 @@ +--- +tags: [animation, shape, design, align] +unicode: "f576" +version: "1.107" +--- + + + diff --git a/src/_icons/keyframes.svg b/src/_icons/keyframes.svg new file mode 100644 index 000000000..613b09acb --- /dev/null +++ b/src/_icons/keyframes.svg @@ -0,0 +1,10 @@ +--- +tags: [animation, shape, design, align] +unicode: "f585" +version: "1.108" +--- + + + + + diff --git a/src/_icons/lambda.svg b/src/_icons/lambda.svg new file mode 100644 index 000000000..e7df4b3cd --- /dev/null +++ b/src/_icons/lambda.svg @@ -0,0 +1,9 @@ +--- +tags: [letter, alphabet, greek, math ] +unicode: "f541" +version: "1.104" +--- + + + + diff --git a/src/_icons/lamp-2.svg b/src/_icons/lamp-2.svg index 7104cb82f..05b8b7a9a 100644 --- a/src/_icons/lamp-2.svg +++ b/src/_icons/lamp-2.svg @@ -8,5 +8,5 @@ unicode: "f09e" - + diff --git a/src/_icons/language-off.svg b/src/_icons/language-off.svg index 0bff688b8..86c79c1b3 100644 --- a/src/_icons/language-off.svg +++ b/src/_icons/language-off.svg @@ -7,7 +7,7 @@ unicode: "f14e" - + diff --git a/src/_icons/language.svg b/src/_icons/language.svg index 254689e47..94c7d2c9c 100644 --- a/src/_icons/language.svg +++ b/src/_icons/language.svg @@ -7,7 +7,7 @@ unicode: "ebbe" - + diff --git a/src/_icons/lasso-off.svg b/src/_icons/lasso-off.svg index cdc5c2542..e7b7e7dc4 100644 --- a/src/_icons/lasso-off.svg +++ b/src/_icons/lasso-off.svg @@ -6,7 +6,7 @@ unicode: "f14f" --- - + diff --git a/src/_icons/lasso-polygon.svg b/src/_icons/lasso-polygon.svg new file mode 100644 index 000000000..b5ea0dc3d --- /dev/null +++ b/src/_icons/lasso-polygon.svg @@ -0,0 +1,11 @@ +--- +tags: [geometry, adobe, tool, shape] +category: Design +unicode: "f388" +version: "1.91" +--- + + + + + diff --git a/src/_icons/lasso.svg b/src/_icons/lasso.svg index 9cd96fd78..25a77f325 100644 --- a/src/_icons/lasso.svg +++ b/src/_icons/lasso.svg @@ -6,6 +6,6 @@ unicode: "efac" --- - + diff --git a/src/_icons/layers-difference.svg b/src/_icons/layers-difference.svg index eb9ef6707..c21334123 100644 --- a/src/_icons/layers-difference.svg +++ b/src/_icons/layers-difference.svg @@ -6,8 +6,8 @@ unicode: "eac8" --- - - - - + + + + diff --git a/src/_icons/layers-intersect-2.svg b/src/_icons/layers-intersect-2.svg index da2780232..2e3733653 100644 --- a/src/_icons/layers-intersect-2.svg +++ b/src/_icons/layers-intersect-2.svg @@ -5,7 +5,7 @@ version: "1.52" unicode: "eff8" --- - - + + diff --git a/src/_icons/layers-intersect.svg b/src/_icons/layers-intersect.svg index 0e644d3f1..15463ac55 100644 --- a/src/_icons/layers-intersect.svg +++ b/src/_icons/layers-intersect.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eac9" --- - - + + diff --git a/src/_icons/layers-linked.svg b/src/_icons/layers-linked.svg index f70d095ff..2cadc3230 100644 --- a/src/_icons/layers-linked.svg +++ b/src/_icons/layers-linked.svg @@ -6,5 +6,5 @@ unicode: "eea1" --- - + diff --git a/src/_icons/layers-subtract.svg b/src/_icons/layers-subtract.svg index c15e9179b..d14ab4549 100644 --- a/src/_icons/layers-subtract.svg +++ b/src/_icons/layers-subtract.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eaca" --- - + diff --git a/src/_icons/layout-2.svg b/src/_icons/layout-2.svg index 13b9df6c9..927d5edf9 100644 --- a/src/_icons/layout-2.svg +++ b/src/_icons/layout-2.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eacc" --- - - - - + + + + diff --git a/src/_icons/layout-align-bottom.svg b/src/_icons/layout-align-bottom.svg index 5bb9e9a26..96de82f1b 100644 --- a/src/_icons/layout-align-bottom.svg +++ b/src/_icons/layout-align-bottom.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eacd" --- - - + + diff --git a/src/_icons/layout-align-center.svg b/src/_icons/layout-align-center.svg index 7c4c2b20c..09be1c11d 100644 --- a/src/_icons/layout-align-center.svg +++ b/src/_icons/layout-align-center.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eace" --- - - - + + + diff --git a/src/_icons/layout-align-left.svg b/src/_icons/layout-align-left.svg index aa4e1ad01..a43d26f13 100644 --- a/src/_icons/layout-align-left.svg +++ b/src/_icons/layout-align-left.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eacf" --- - - + + diff --git a/src/_icons/layout-align-middle.svg b/src/_icons/layout-align-middle.svg index fefba7963..6f4e22e8c 100644 --- a/src/_icons/layout-align-middle.svg +++ b/src/_icons/layout-align-middle.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ead0" --- - - - + + + diff --git a/src/_icons/layout-align-right.svg b/src/_icons/layout-align-right.svg index b98c3bcb6..39ad24279 100644 --- a/src/_icons/layout-align-right.svg +++ b/src/_icons/layout-align-right.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ead1" --- - - + + diff --git a/src/_icons/layout-align-top.svg b/src/_icons/layout-align-top.svg index 643dc9d37..dff1063de 100644 --- a/src/_icons/layout-align-top.svg +++ b/src/_icons/layout-align-top.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ead2" --- - - + + diff --git a/src/_icons/layout-board-split.svg b/src/_icons/layout-board-split.svg index 1f29df66e..85ac1deb6 100644 --- a/src/_icons/layout-board-split.svg +++ b/src/_icons/layout-board-split.svg @@ -5,7 +5,7 @@ version: "1.47" unicode: "ef94" --- - + diff --git a/src/_icons/layout-board.svg b/src/_icons/layout-board.svg index dd6ce722c..f49c2297d 100644 --- a/src/_icons/layout-board.svg +++ b/src/_icons/layout-board.svg @@ -5,7 +5,7 @@ version: "1.47" unicode: "ef95" --- - + diff --git a/src/_icons/layout-bottombar.svg b/src/_icons/layout-bottombar.svg index b917dcfb4..de973f30b 100644 --- a/src/_icons/layout-bottombar.svg +++ b/src/_icons/layout-bottombar.svg @@ -5,6 +5,6 @@ version: "1.1" unicode: "ead3" --- - - + + diff --git a/src/_icons/layout-cards.svg b/src/_icons/layout-cards.svg index 19d380a09..938c242d5 100644 --- a/src/_icons/layout-cards.svg +++ b/src/_icons/layout-cards.svg @@ -5,6 +5,6 @@ version: "1.8" unicode: "ec13" --- - - + + diff --git a/src/_icons/layout-collage.svg b/src/_icons/layout-collage.svg new file mode 100644 index 000000000..71fc522b1 --- /dev/null +++ b/src/_icons/layout-collage.svg @@ -0,0 +1,11 @@ +--- +tags: [grid, dashboard, image, interface, editing] +category: Design +unicode: "f389" +version: "1.91" +--- + + + + + diff --git a/src/_icons/layout-columns.svg b/src/_icons/layout-columns.svg index e7b285a95..30fe1da4e 100644 --- a/src/_icons/layout-columns.svg +++ b/src/_icons/layout-columns.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ead4" --- - - + + diff --git a/src/_icons/layout-distribute-horizontal.svg b/src/_icons/layout-distribute-horizontal.svg index 1959851b9..87ea2892c 100644 --- a/src/_icons/layout-distribute-horizontal.svg +++ b/src/_icons/layout-distribute-horizontal.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ead5" --- - - - + + + diff --git a/src/_icons/layout-distribute-vertical.svg b/src/_icons/layout-distribute-vertical.svg index ccd2a4122..692be1a91 100644 --- a/src/_icons/layout-distribute-vertical.svg +++ b/src/_icons/layout-distribute-vertical.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "ead6" --- - - - + + + diff --git a/src/_icons/layout-grid-add.svg b/src/_icons/layout-grid-add.svg index 300b548d5..920e4c0ac 100644 --- a/src/_icons/layout-grid-add.svg +++ b/src/_icons/layout-grid-add.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "edb9" --- - - - + + + diff --git a/src/_icons/layout-grid.svg b/src/_icons/layout-grid.svg index 8f42170e0..05d9d84d8 100644 --- a/src/_icons/layout-grid.svg +++ b/src/_icons/layout-grid.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "edba" --- - - - - + + + + diff --git a/src/_icons/layout-kanban.svg b/src/_icons/layout-kanban.svg index e00d9b439..ce8430894 100644 --- a/src/_icons/layout-kanban.svg +++ b/src/_icons/layout-kanban.svg @@ -5,8 +5,8 @@ version: "1.11" unicode: "ec3f" --- - - - - + + + + diff --git a/src/_icons/layout-list.svg b/src/_icons/layout-list.svg index 347e5c21e..06d8461b4 100644 --- a/src/_icons/layout-list.svg +++ b/src/_icons/layout-list.svg @@ -5,6 +5,6 @@ version: "1.8" unicode: "ec14" --- - - + + diff --git a/src/_icons/layout-navbar.svg b/src/_icons/layout-navbar.svg index f66051151..6331e1d3e 100644 --- a/src/_icons/layout-navbar.svg +++ b/src/_icons/layout-navbar.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ead7" --- - - + + diff --git a/src/_icons/layout-off.svg b/src/_icons/layout-off.svg index b2f641f63..57398a199 100644 --- a/src/_icons/layout-off.svg +++ b/src/_icons/layout-off.svg @@ -6,7 +6,7 @@ unicode: "f151" --- - - + + diff --git a/src/_icons/layout-rows.svg b/src/_icons/layout-rows.svg index 6d76c45b3..1cebf21da 100644 --- a/src/_icons/layout-rows.svg +++ b/src/_icons/layout-rows.svg @@ -5,6 +5,6 @@ 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..710b272e5 100644 --- a/src/_icons/layout-sidebar-left-collapse.svg +++ b/src/_icons/layout-sidebar-left-collapse.svg @@ -5,7 +5,7 @@ category: Design unicode: "f004" --- - + diff --git a/src/_icons/layout-sidebar-left-expand.svg b/src/_icons/layout-sidebar-left-expand.svg index 9e028a9a1..1e8ad7db3 100644 --- a/src/_icons/layout-sidebar-left-expand.svg +++ b/src/_icons/layout-sidebar-left-expand.svg @@ -5,7 +5,7 @@ category: Design unicode: "f005" --- - + diff --git a/src/_icons/layout-sidebar-right-collapse.svg b/src/_icons/layout-sidebar-right-collapse.svg index 709368ff2..b72d0fad2 100644 --- a/src/_icons/layout-sidebar-right-collapse.svg +++ b/src/_icons/layout-sidebar-right-collapse.svg @@ -5,7 +5,7 @@ category: Design unicode: "f006" --- - + diff --git a/src/_icons/layout-sidebar-right-expand.svg b/src/_icons/layout-sidebar-right-expand.svg index c6d789caa..d445f9f48 100644 --- a/src/_icons/layout-sidebar-right-expand.svg +++ b/src/_icons/layout-sidebar-right-expand.svg @@ -5,7 +5,7 @@ category: Design unicode: "f007" --- - + diff --git a/src/_icons/layout-sidebar-right.svg b/src/_icons/layout-sidebar-right.svg index 864f7ea15..cd620af4f 100644 --- a/src/_icons/layout-sidebar-right.svg +++ b/src/_icons/layout-sidebar-right.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "ead9" --- - - + + diff --git a/src/_icons/layout-sidebar.svg b/src/_icons/layout-sidebar.svg index dd243ffbd..0e4180694 100644 --- a/src/_icons/layout-sidebar.svg +++ b/src/_icons/layout-sidebar.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eada" --- - - + + diff --git a/src/_icons/layout.svg b/src/_icons/layout.svg index a9c8071ac..96f8fe361 100644 --- a/src/_icons/layout.svg +++ b/src/_icons/layout.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eadb" --- - - - + + + diff --git a/src/_icons/leaf-off.svg b/src/_icons/leaf-off.svg index 119f0547c..68c8c74d9 100644 --- a/src/_icons/leaf-off.svg +++ b/src/_icons/leaf-off.svg @@ -1,11 +1,11 @@ --- tags: [nature, plant, tree, autumn, fall, greenery, flower, forest, garden] category: Nature -version: "1.66" -unicode: "f152" +unicode: "f400" +version: "1.94" --- - - + + diff --git a/src/_icons/lego-off.svg b/src/_icons/lego-off.svg new file mode 100644 index 000000000..0e9eff5d1 --- /dev/null +++ b/src/_icons/lego-off.svg @@ -0,0 +1,11 @@ +--- +tags: [toy, boy, face, play] +unicode: "f401" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/lego.svg b/src/_icons/lego.svg index a27a3263e..763f0f895 100644 --- a/src/_icons/lego.svg +++ b/src/_icons/lego.svg @@ -4,8 +4,8 @@ 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/letter-a.svg b/src/_icons/letter-a.svg index 8767d9bd9..7783c28b1 100644 --- a/src/_icons/letter-a.svg +++ b/src/_icons/letter-a.svg @@ -6,5 +6,5 @@ unicode: "ec50" --- - + diff --git a/src/_icons/letter-b.svg b/src/_icons/letter-b.svg index 5fc0dcdcb..019145f9f 100644 --- a/src/_icons/letter-b.svg +++ b/src/_icons/letter-b.svg @@ -6,5 +6,5 @@ unicode: "ec51" --- - + diff --git a/src/_icons/letter-case-lower.svg b/src/_icons/letter-case-lower.svg index 97b27bef4..46b91ffe3 100644 --- a/src/_icons/letter-case-lower.svg +++ b/src/_icons/letter-case-lower.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "eea2" --- - + - + diff --git a/src/_icons/letter-case-toggle.svg b/src/_icons/letter-case-toggle.svg index 1ab625a27..158059b4f 100644 --- a/src/_icons/letter-case-toggle.svg +++ b/src/_icons/letter-case-toggle.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "eea3" --- - + diff --git a/src/_icons/letter-case.svg b/src/_icons/letter-case.svg index 32b674512..295679da6 100644 --- a/src/_icons/letter-case.svg +++ b/src/_icons/letter-case.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "eea5" --- - + diff --git a/src/_icons/letter-e.svg b/src/_icons/letter-e.svg index 0560f3b84..7de5a1f8a 100644 --- a/src/_icons/letter-e.svg +++ b/src/_icons/letter-e.svg @@ -6,5 +6,5 @@ unicode: "ec54" --- - + diff --git a/src/_icons/letter-f.svg b/src/_icons/letter-f.svg index 426d51378..836c74b8f 100644 --- a/src/_icons/letter-f.svg +++ b/src/_icons/letter-f.svg @@ -6,5 +6,5 @@ unicode: "ec55" --- - + diff --git a/src/_icons/letter-h.svg b/src/_icons/letter-h.svg index e0094a468..77b3379c6 100644 --- a/src/_icons/letter-h.svg +++ b/src/_icons/letter-h.svg @@ -5,7 +5,7 @@ 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..f08e970fc 100644 --- a/src/_icons/letter-k.svg +++ b/src/_icons/letter-k.svg @@ -5,7 +5,7 @@ version: "1.12" unicode: "ec5a" --- - + - + diff --git a/src/_icons/letter-q.svg b/src/_icons/letter-q.svg index 15133c533..edc6fb163 100644 --- a/src/_icons/letter-q.svg +++ b/src/_icons/letter-q.svg @@ -6,5 +6,5 @@ unicode: "ec60" --- - + diff --git a/src/_icons/letter-r.svg b/src/_icons/letter-r.svg index 155356bbd..937a159e5 100644 --- a/src/_icons/letter-r.svg +++ b/src/_icons/letter-r.svg @@ -6,5 +6,5 @@ unicode: "ec61" --- - + diff --git a/src/_icons/letter-t.svg b/src/_icons/letter-t.svg index 39c6f5b66..1ca0efe11 100644 --- a/src/_icons/letter-t.svg +++ b/src/_icons/letter-t.svg @@ -5,6 +5,6 @@ version: "1.12" unicode: "ec63" --- - - + + diff --git a/src/_icons/letter-x.svg b/src/_icons/letter-x.svg index 9a4fb98f2..3edbd9946 100644 --- a/src/_icons/letter-x.svg +++ b/src/_icons/letter-x.svg @@ -5,6 +5,6 @@ version: "1.12" unicode: "ec67" --- - - + + diff --git a/src/_icons/letter-y.svg b/src/_icons/letter-y.svg index a2fc6e13d..b74841cd7 100644 --- a/src/_icons/letter-y.svg +++ b/src/_icons/letter-y.svg @@ -6,5 +6,5 @@ unicode: "ec68" --- - + diff --git a/src/_icons/license.svg b/src/_icons/license.svg index 2e983ab5a..62b9462e7 100644 --- a/src/_icons/license.svg +++ b/src/_icons/license.svg @@ -5,6 +5,6 @@ unicode: "ebc0" --- - - + + diff --git a/src/_icons/lifebuoy.svg b/src/_icons/lifebuoy.svg index 6e1ce466c..e1456fd77 100644 --- a/src/_icons/lifebuoy.svg +++ b/src/_icons/lifebuoy.svg @@ -4,10 +4,10 @@ version: "1.0" unicode: "eadd" --- - - - - - - + + + + + + diff --git a/src/_icons/line-height.svg b/src/_icons/line-height.svg index cdd61b635..f6b589c1c 100644 --- a/src/_icons/line-height.svg +++ b/src/_icons/line-height.svg @@ -5,10 +5,10 @@ version: "1.3" unicode: "eb94" --- - - - - - - + + + + + + diff --git a/src/_icons/line.svg b/src/_icons/line.svg index 3b2e2f718..717951bcb 100644 --- a/src/_icons/line.svg +++ b/src/_icons/line.svg @@ -5,7 +5,7 @@ version: "1.11" unicode: "ec40" --- - - - + + + diff --git a/src/_icons/link-off.svg b/src/_icons/link-off.svg new file mode 100644 index 000000000..47e2f3754 --- /dev/null +++ b/src/_icons/link-off.svg @@ -0,0 +1,12 @@ +--- +tags: [chain, url, connection, address] +category: Text +unicode: "f402" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/list-check.svg b/src/_icons/list-check.svg index 7830aa57c..d05fc492d 100644 --- a/src/_icons/list-check.svg +++ b/src/_icons/list-check.svg @@ -8,7 +8,7 @@ unicode: "eb6a" - - - + + + diff --git a/src/_icons/list-details.svg b/src/_icons/list-details.svg index 57b5ab4fd..a2b86ecd0 100644 --- a/src/_icons/list-details.svg +++ b/src/_icons/list-details.svg @@ -9,6 +9,6 @@ unicode: "ef40" - - + + diff --git a/src/_icons/list-search.svg b/src/_icons/list-search.svg index 2259f8132..b85b53af8 100644 --- a/src/_icons/list-search.svg +++ b/src/_icons/list-search.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "eea9" --- - + diff --git a/src/_icons/list.svg b/src/_icons/list.svg index 0429927bc..f6a23faed 100644 --- a/src/_icons/list.svg +++ b/src/_icons/list.svg @@ -5,10 +5,10 @@ version: "1.2" unicode: "eb6b" --- - - - - - - + + + + + + diff --git a/src/_icons/live-photo-off.svg b/src/_icons/live-photo-off.svg new file mode 100644 index 000000000..3ea0971f6 --- /dev/null +++ b/src/_icons/live-photo-off.svg @@ -0,0 +1,25 @@ +--- +tags: [capture, photo, movement, sound, memory, image, camera] +category: Photography +unicode: "f403" +version: "1.94" +--- + + + + + + + + + + + + + + + + + + + diff --git a/src/_icons/live-photo.svg b/src/_icons/live-photo.svg index e83f43718..d52e6de12 100644 --- a/src/_icons/live-photo.svg +++ b/src/_icons/live-photo.svg @@ -5,20 +5,20 @@ version: "1.1" unicode: "eadf" --- - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/src/_icons/live-view.svg b/src/_icons/live-view.svg index 5b9a6848b..c56380e91 100644 --- a/src/_icons/live-view.svg +++ b/src/_icons/live-view.svg @@ -9,6 +9,6 @@ unicode: "ec6b" - + diff --git a/src/_icons/loader-3.svg b/src/_icons/loader-3.svg new file mode 100644 index 000000000..f9bd13de1 --- /dev/null +++ b/src/_icons/loader-3.svg @@ -0,0 +1,9 @@ +--- +tags: [process, download, upload] +version: "1.102" +unicode: "f513" +--- + + + + diff --git a/src/_icons/loader-quarter.svg b/src/_icons/loader-quarter.svg index 742ffc1ec..6804c5a67 100644 --- a/src/_icons/loader-quarter.svg +++ b/src/_icons/loader-quarter.svg @@ -5,7 +5,7 @@ version: "1.17" unicode: "eca2" --- - - - + + + diff --git a/src/_icons/loader.svg b/src/_icons/loader.svg index 9daff637f..a84af3c90 100644 --- a/src/_icons/loader.svg +++ b/src/_icons/loader.svg @@ -5,12 +5,12 @@ version: "1.17" unicode: "eca3" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/location-broken.svg b/src/_icons/location-broken.svg index de525ef0f..ca9b0cc8e 100644 --- a/src/_icons/location-broken.svg +++ b/src/_icons/location-broken.svg @@ -1,4 +1,5 @@ --- +tags: [delete, map, navigation, pin] category: Map 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..4af4fd073 --- /dev/null +++ b/src/_icons/location-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f67f" +--- + + + diff --git a/src/_icons/lock-access-off.svg b/src/_icons/lock-access-off.svg new file mode 100644 index 000000000..364a55931 --- /dev/null +++ b/src/_icons/lock-access-off.svg @@ -0,0 +1,14 @@ +--- +tags: [block, limited, restricted, unavailable, confidential] +unicode: "f404" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/lock-access.svg b/src/_icons/lock-access.svg index af7a7dbf4..174afa2a1 100644 --- a/src/_icons/lock-access.svg +++ b/src/_icons/lock-access.svg @@ -8,6 +8,6 @@ unicode: "eeaa" - + diff --git a/src/_icons/lock-off.svg b/src/_icons/lock-off.svg index 651def8c4..8b031cea8 100644 --- a/src/_icons/lock-off.svg +++ b/src/_icons/lock-off.svg @@ -1,12 +1,12 @@ --- -category: System tags: [security, password, secure] +category: System version: "1.25" unicode: "ed1e" --- - + - + diff --git a/src/_icons/lock-open-off.svg b/src/_icons/lock-open-off.svg index 1ff8aaac9..83089acd8 100644 --- a/src/_icons/lock-open-off.svg +++ b/src/_icons/lock-open-off.svg @@ -6,7 +6,7 @@ unicode: "f156" --- - + diff --git a/src/_icons/lock-open.svg b/src/_icons/lock-open.svg index 3da76fffa..c7a490942 100644 --- a/src/_icons/lock-open.svg +++ b/src/_icons/lock-open.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eae1" --- - - + + diff --git a/src/_icons/lock-square-rounded.svg b/src/_icons/lock-square-rounded.svg new file mode 100644 index 000000000..5ee7b8e04 --- /dev/null +++ b/src/_icons/lock-square-rounded.svg @@ -0,0 +1,9 @@ +--- +unicode: "f636" +version: "1.117" +--- + + + + + diff --git a/src/_icons/lock-square.svg b/src/_icons/lock-square.svg index dda6f1d78..016908550 100644 --- a/src/_icons/lock-square.svg +++ b/src/_icons/lock-square.svg @@ -4,7 +4,7 @@ version: "1.43" unicode: "ef51" --- - + - + diff --git a/src/_icons/lock.svg b/src/_icons/lock.svg index 7834a602c..64152307e 100644 --- a/src/_icons/lock.svg +++ b/src/_icons/lock.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eae2" --- - - + + diff --git a/src/_icons/logic-nand.svg b/src/_icons/logic-nand.svg index 7650554fe..070cb1ce4 100644 --- a/src/_icons/logic-nand.svg +++ b/src/_icons/logic-nand.svg @@ -9,5 +9,5 @@ unicode: "f242" - + diff --git a/src/_icons/logic-nor.svg b/src/_icons/logic-nor.svg index e2cffbc5c..1de4d1d85 100644 --- a/src/_icons/logic-nor.svg +++ b/src/_icons/logic-nor.svg @@ -9,5 +9,5 @@ unicode: "f243" - + diff --git a/src/_icons/logic-not.svg b/src/_icons/logic-not.svg index b328b1381..3944bf433 100644 --- a/src/_icons/logic-not.svg +++ b/src/_icons/logic-not.svg @@ -9,5 +9,5 @@ unicode: "f244" - + diff --git a/src/_icons/logic-xnor.svg b/src/_icons/logic-xnor.svg index c7fe1db70..1ecadc9d4 100644 --- a/src/_icons/logic-xnor.svg +++ b/src/_icons/logic-xnor.svg @@ -10,5 +10,5 @@ unicode: "f246" - + diff --git a/src/_icons/lollipop.svg b/src/_icons/lollipop.svg index b716e24a6..a37dbf498 100644 --- a/src/_icons/lollipop.svg +++ b/src/_icons/lollipop.svg @@ -4,7 +4,7 @@ version: "1.50" unicode: "efcc" --- - + diff --git a/src/_icons/luggage.svg b/src/_icons/luggage.svg index 8d7afebf1..fe7c652df 100644 --- a/src/_icons/luggage.svg +++ b/src/_icons/luggage.svg @@ -4,7 +4,7 @@ version: "1.48" unicode: "efad" --- - + diff --git a/src/_icons/lungs-off.svg b/src/_icons/lungs-off.svg new file mode 100644 index 000000000..00be00e3f --- /dev/null +++ b/src/_icons/lungs-off.svg @@ -0,0 +1,13 @@ +--- +tags: [anatomy, human, medical, respiratory, breathe, organ, human] +category: Health +unicode: "f405" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/macro-off.svg b/src/_icons/macro-off.svg new file mode 100644 index 000000000..d83317264 --- /dev/null +++ b/src/_icons/macro-off.svg @@ -0,0 +1,14 @@ +--- +tags: [video, photography, photo, camera] +category: Photography +unicode: "f406" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/magnet-off.svg b/src/_icons/magnet-off.svg index 802a79851..d5d580e2d 100644 --- a/src/_icons/magnet-off.svg +++ b/src/_icons/magnet-off.svg @@ -4,7 +4,7 @@ version: "1.66" unicode: "f159" --- - + diff --git a/src/_icons/magnet.svg b/src/_icons/magnet.svg index c1623b59f..3880c179b 100644 --- a/src/_icons/magnet.svg +++ b/src/_icons/magnet.svg @@ -5,6 +5,6 @@ unicode: "eae3" --- - - + + diff --git a/src/_icons/mail-opened.svg b/src/_icons/mail-opened.svg index f4253f038..70c704e9e 100644 --- a/src/_icons/mail-opened.svg +++ b/src/_icons/mail-opened.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eae4" --- - + - - + + diff --git a/src/_icons/mail.svg b/src/_icons/mail.svg index 78dc2305a..e751bfcdd 100644 --- a/src/_icons/mail.svg +++ b/src/_icons/mail.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eae5" --- - - + + diff --git a/src/_icons/man.svg b/src/_icons/man.svg index f49c99525..62ae130db 100644 --- a/src/_icons/man.svg +++ b/src/_icons/man.svg @@ -4,6 +4,10 @@ version: "1.0" unicode: "eae6" --- - - + + + + + + diff --git a/src/_icons/manual-gearbox.svg b/src/_icons/manual-gearbox.svg index 5ffa45781..eef0ab478 100644 --- a/src/_icons/manual-gearbox.svg +++ b/src/_icons/manual-gearbox.svg @@ -4,12 +4,12 @@ version: "1.33" unicode: "ed7b" --- - - - - - - - + + + + + + + diff --git a/src/_icons/map-2.svg b/src/_icons/map-2.svg index ebea1c474..ec869c000 100644 --- a/src/_icons/map-2.svg +++ b/src/_icons/map-2.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eae7" --- - + - - - + + + diff --git a/src/_icons/map-pin-filled.svg b/src/_icons/map-pin-filled.svg new file mode 100644 index 000000000..59ac2fac6 --- /dev/null +++ b/src/_icons/map-pin-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f680" +--- + + + diff --git a/src/_icons/map-pin-off.svg b/src/_icons/map-pin-off.svg index acd355886..f28f46d45 100644 --- a/src/_icons/map-pin-off.svg +++ b/src/_icons/map-pin-off.svg @@ -1,11 +1,11 @@ --- -category: Map tags: [navigation, location, travel, pin, position, marker] +category: Map version: "1.22" unicode: "ecf3" --- - + diff --git a/src/_icons/map-pin.svg b/src/_icons/map-pin.svg index df55c4528..125e44498 100644 --- a/src/_icons/map-pin.svg +++ b/src/_icons/map-pin.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eae8" --- - + diff --git a/src/_icons/map-pins.svg b/src/_icons/map-pins.svg index c2f7118e5..b4cc74522 100644 --- a/src/_icons/map-pins.svg +++ b/src/_icons/map-pins.svg @@ -6,7 +6,7 @@ unicode: "ed5e" --- - + - + diff --git a/src/_icons/map-search.svg b/src/_icons/map-search.svg index ccf61803c..72bdf841f 100644 --- a/src/_icons/map-search.svg +++ b/src/_icons/map-search.svg @@ -7,6 +7,6 @@ unicode: "ef82" - + diff --git a/src/_icons/map.svg b/src/_icons/map.svg index 2776b74c4..458976e3d 100644 --- a/src/_icons/map.svg +++ b/src/_icons/map.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eae9" --- - - - + + + diff --git a/src/_icons/markdown-off.svg b/src/_icons/markdown-off.svg new file mode 100644 index 000000000..49a389b67 --- /dev/null +++ b/src/_icons/markdown-off.svg @@ -0,0 +1,13 @@ +--- +tags: [price, valuation, cost, exchange] +category: Text +unicode: "f407" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/markdown.svg b/src/_icons/markdown.svg index 0f852dafb..75416e315 100644 --- a/src/_icons/markdown.svg +++ b/src/_icons/markdown.svg @@ -5,7 +5,7 @@ version: "1.11" unicode: "ec41" --- - + diff --git a/src/_icons/mars.svg b/src/_icons/mars.svg index 3209cff6e..902c1581a 100644 --- a/src/_icons/mars.svg +++ b/src/_icons/mars.svg @@ -5,8 +5,8 @@ version: "1.14" unicode: "ec80" --- - - - - + + + + diff --git a/src/_icons/mask-off.svg b/src/_icons/mask-off.svg index bd9c269e6..e48e01987 100644 --- a/src/_icons/mask-off.svg +++ b/src/_icons/mask-off.svg @@ -1,6 +1,6 @@ --- -category: Design tags: [edit, layer, mask, tool, design] +category: Design version: "1.39" unicode: "eeaf" --- diff --git a/src/_icons/mask.svg b/src/_icons/mask.svg index 07821ffff..0d42c36d7 100644 --- a/src/_icons/mask.svg +++ b/src/_icons/mask.svg @@ -5,6 +5,6 @@ version: "1.39" unicode: "eeb0" --- - - + + diff --git a/src/_icons/masks-theater-off.svg b/src/_icons/masks-theater-off.svg new file mode 100644 index 000000000..894727d09 --- /dev/null +++ b/src/_icons/masks-theater-off.svg @@ -0,0 +1,14 @@ +--- +tags: [cinema, comedy, acting, face, art] +unicode: "f408" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/massage.svg b/src/_icons/massage.svg index 157c973c9..32aa249ae 100644 --- a/src/_icons/massage.svg +++ b/src/_icons/massage.svg @@ -5,8 +5,8 @@ category: Health unicode: "eeb1" --- - - + + diff --git a/src/_icons/matchstick.svg b/src/_icons/matchstick.svg new file mode 100644 index 000000000..7f5221be1 --- /dev/null +++ b/src/_icons/matchstick.svg @@ -0,0 +1,10 @@ +--- +tags: [fire, flame, burn, spark] +unicode: "f577" +version: "1.107" +--- + + + + + diff --git a/src/_icons/math-1-divide-2.svg b/src/_icons/math-1-divide-2.svg new file mode 100644 index 000000000..a94036831 --- /dev/null +++ b/src/_icons/math-1-divide-2.svg @@ -0,0 +1,11 @@ +--- +tags: [calculations, half, mathematic ] +category: Math +unicode: "f4e2" +version: "1.100" +--- + + + + + diff --git a/src/_icons/math-1-divide-3.svg b/src/_icons/math-1-divide-3.svg new file mode 100644 index 000000000..03983672e --- /dev/null +++ b/src/_icons/math-1-divide-3.svg @@ -0,0 +1,11 @@ +--- +tags: [calculations, mathematic, quarter, ] +category: Math +unicode: "f4e3" +version: "1.100" +--- + + + + + diff --git a/src/_icons/math-avg.svg b/src/_icons/math-avg.svg index 896996708..4b36ed4d7 100644 --- a/src/_icons/math-avg.svg +++ b/src/_icons/math-avg.svg @@ -6,5 +6,5 @@ unicode: "f0f4" --- - + diff --git a/src/_icons/math-equal-greater.svg b/src/_icons/math-equal-greater.svg new file mode 100644 index 000000000..4e1f1a2fa --- /dev/null +++ b/src/_icons/math-equal-greater.svg @@ -0,0 +1,10 @@ +--- +tags: [mathematic, than, more, equation, sign] +category: Math +unicode: "f4e4" +version: "1.100" +--- + + + + diff --git a/src/_icons/math-equal-lower.svg b/src/_icons/math-equal-lower.svg new file mode 100644 index 000000000..45595416a --- /dev/null +++ b/src/_icons/math-equal-lower.svg @@ -0,0 +1,10 @@ +--- +tags: [mathematic, less, than, equation, sign] +category: Math +unicode: "f4e5" +version: "1.100" +--- + + + + diff --git a/src/_icons/math-function-y.svg b/src/_icons/math-function-y.svg new file mode 100644 index 000000000..afbcb083f --- /dev/null +++ b/src/_icons/math-function-y.svg @@ -0,0 +1,12 @@ +--- +tags: [mathematic, sign, x, expression] +category: Math +unicode: "f4e6" +version: "1.100" +--- + + + + + + diff --git a/src/_icons/math-function.svg b/src/_icons/math-function.svg index 8f8f3a2ad..b25726bb0 100644 --- a/src/_icons/math-function.svg +++ b/src/_icons/math-function.svg @@ -1,12 +1,12 @@ --- category: Math -tags: sdfsfg +tags: [linear, statyscics, graph] version: "1.39" unicode: "eeb2" --- - - - - + + + + diff --git a/src/_icons/math-greater.svg b/src/_icons/math-greater.svg new file mode 100644 index 000000000..db3140f48 --- /dev/null +++ b/src/_icons/math-greater.svg @@ -0,0 +1,9 @@ +--- +tags: [mathematic, sign, expression, more ] +category: Math +unicode: "f4e7" +version: "1.100" +--- + + + diff --git a/src/_icons/math-integral-x.svg b/src/_icons/math-integral-x.svg new file mode 100644 index 000000000..d76ec3171 --- /dev/null +++ b/src/_icons/math-integral-x.svg @@ -0,0 +1,11 @@ +--- +tags: [mathematic, sign, y, expression] +category: Math +unicode: "f4e8" +version: "1.100" +--- + + + + + diff --git a/src/_icons/math-integral.svg b/src/_icons/math-integral.svg new file mode 100644 index 000000000..61a52122a --- /dev/null +++ b/src/_icons/math-integral.svg @@ -0,0 +1,9 @@ +--- +tags: [mathematic, sign, expression] +category: Math +unicode: "f4e9" +version: "1.100" +--- + + + diff --git a/src/_icons/math-integrals.svg b/src/_icons/math-integrals.svg new file mode 100644 index 000000000..30adbf94b --- /dev/null +++ b/src/_icons/math-integrals.svg @@ -0,0 +1,10 @@ +--- +tags: [mathematic, sign, expression] +category: Math +unicode: "f4ea" +version: "1.100" +--- + + + + diff --git a/src/_icons/math-lower.svg b/src/_icons/math-lower.svg new file mode 100644 index 000000000..057d78913 --- /dev/null +++ b/src/_icons/math-lower.svg @@ -0,0 +1,9 @@ +--- +tags: [mathematic, sign, expressionm, less] +category: Math +unicode: "f4eb" +version: "1.100" +--- + + + diff --git a/src/_icons/math-max.svg b/src/_icons/math-max.svg index 29035f6d4..9068ac0e5 100644 --- a/src/_icons/math-max.svg +++ b/src/_icons/math-max.svg @@ -5,6 +5,6 @@ version: "1.64" unicode: "f0f5" --- - + diff --git a/src/_icons/math-min.svg b/src/_icons/math-min.svg index baea45931..da6c81a37 100644 --- a/src/_icons/math-min.svg +++ b/src/_icons/math-min.svg @@ -5,6 +5,7 @@ version: "1.64" unicode: "f0f6" --- - - + + + diff --git a/src/_icons/math-not.svg b/src/_icons/math-not.svg new file mode 100644 index 000000000..0b9fc52d1 --- /dev/null +++ b/src/_icons/math-not.svg @@ -0,0 +1,9 @@ +--- +tags: [mathematic, sign, expression] +category: Math +unicode: "f4ec" +version: "1.100" +--- + + + diff --git a/src/_icons/math-off.svg b/src/_icons/math-off.svg new file mode 100644 index 000000000..69f00cef9 --- /dev/null +++ b/src/_icons/math-off.svg @@ -0,0 +1,13 @@ +--- +tags: [subject, count, plus, minus, times] +category: Math +unicode: "f409" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/math-pi-divide-2.svg b/src/_icons/math-pi-divide-2.svg new file mode 100644 index 000000000..aa763af3c --- /dev/null +++ b/src/_icons/math-pi-divide-2.svg @@ -0,0 +1,13 @@ +--- +tags: [mathematic, sign, expression] +category: Math +unicode: "f4ed" +version: "1.100" +--- + + + + + + + diff --git a/src/_icons/math-pi.svg b/src/_icons/math-pi.svg new file mode 100644 index 000000000..e1b05aeef --- /dev/null +++ b/src/_icons/math-pi.svg @@ -0,0 +1,11 @@ +--- +tags: [mathematic, sign, expression] +category: Math +unicode: "f4ee" +version: "1.100" +--- + + + + + diff --git a/src/_icons/math-symbols.svg b/src/_icons/math-symbols.svg index 53dba2aed..8d6baa8fb 100644 --- a/src/_icons/math-symbols.svg +++ b/src/_icons/math-symbols.svg @@ -5,13 +5,13 @@ version: "1.39" unicode: "eeb3" --- - - - - - - - - - + + + + + + + + + diff --git a/src/_icons/math-x-divide-2.svg b/src/_icons/math-x-divide-2.svg new file mode 100644 index 000000000..f53a7dbb7 --- /dev/null +++ b/src/_icons/math-x-divide-2.svg @@ -0,0 +1,12 @@ +--- +tags: [mathematic, expression, equation] +category: Math +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 new file mode 100644 index 000000000..d671c6359 --- /dev/null +++ b/src/_icons/math-x-divide-y-2.svg @@ -0,0 +1,13 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f0" +version: "1.100" +--- + + + + + + + diff --git a/src/_icons/math-x-divide-y.svg b/src/_icons/math-x-divide-y.svg new file mode 100644 index 000000000..aacf8a195 --- /dev/null +++ b/src/_icons/math-x-divide-y.svg @@ -0,0 +1,13 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f1" +version: "1.100" +--- + + + + + + + diff --git a/src/_icons/math-x-minus-x.svg b/src/_icons/math-x-minus-x.svg new file mode 100644 index 000000000..91920ee0e --- /dev/null +++ b/src/_icons/math-x-minus-x.svg @@ -0,0 +1,13 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f2" +version: "1.100" +--- + + + + + + + diff --git a/src/_icons/math-x-minus-y.svg b/src/_icons/math-x-minus-y.svg new file mode 100644 index 000000000..90e66277e --- /dev/null +++ b/src/_icons/math-x-minus-y.svg @@ -0,0 +1,13 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f3" +version: "1.100" +--- + + + + + + + diff --git a/src/_icons/math-x-plus-x.svg b/src/_icons/math-x-plus-x.svg new file mode 100644 index 000000000..d41c35d43 --- /dev/null +++ b/src/_icons/math-x-plus-x.svg @@ -0,0 +1,14 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f4" +version: "1.100" +--- + + + + + + + + diff --git a/src/_icons/math-x-plus-y.svg b/src/_icons/math-x-plus-y.svg new file mode 100644 index 000000000..9f7a769b1 --- /dev/null +++ b/src/_icons/math-x-plus-y.svg @@ -0,0 +1,14 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f5" +version: "1.100" +--- + + + + + + + + diff --git a/src/_icons/math-xy.svg b/src/_icons/math-xy.svg new file mode 100644 index 000000000..11d753726 --- /dev/null +++ b/src/_icons/math-xy.svg @@ -0,0 +1,12 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f6" +version: "1.100" +--- + + + + + + diff --git a/src/_icons/math-y-minus-y.svg b/src/_icons/math-y-minus-y.svg new file mode 100644 index 000000000..3731fb8e6 --- /dev/null +++ b/src/_icons/math-y-minus-y.svg @@ -0,0 +1,13 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f7" +version: "1.100" +--- + + + + + + + diff --git a/src/_icons/math-y-plus-y.svg b/src/_icons/math-y-plus-y.svg new file mode 100644 index 000000000..ca74eac3b --- /dev/null +++ b/src/_icons/math-y-plus-y.svg @@ -0,0 +1,14 @@ +--- +tags: [mathematic, expression, equation] +category: Math +unicode: "f4f8" +version: "1.100" +--- + + + + + + + + diff --git a/src/_icons/math.svg b/src/_icons/math.svg index 39514c303..47e935507 100644 --- a/src/_icons/math.svg +++ b/src/_icons/math.svg @@ -5,6 +5,7 @@ version: "1.7" unicode: "ebeb" --- - - + + + diff --git a/src/_icons/meat-off.svg b/src/_icons/meat-off.svg new file mode 100644 index 000000000..25bce0754 --- /dev/null +++ b/src/_icons/meat-off.svg @@ -0,0 +1,15 @@ +--- +tags: [food, beef, steak, chicken, sasuage, dinner] +category: Food +unicode: "f40a" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/meat.svg b/src/_icons/meat.svg index 682dd5dbd..f33d69366 100644 --- a/src/_icons/meat.svg +++ b/src/_icons/meat.svg @@ -6,7 +6,7 @@ unicode: "ef12" --- - + diff --git a/src/_icons/medical-cross-filled.svg b/src/_icons/medical-cross-filled.svg new file mode 100644 index 000000000..6f6e31a69 --- /dev/null +++ b/src/_icons/medical-cross-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f681" +--- + + + diff --git a/src/_icons/meeple.svg b/src/_icons/meeple.svg new file mode 100644 index 000000000..396ae9106 --- /dev/null +++ b/src/_icons/meeple.svg @@ -0,0 +1,9 @@ +--- +tags: [pawn, board, game, wood ] +version: "1.102" +unicode: "f514" +category: Sport +--- + + + diff --git a/src/_icons/menorah.svg b/src/_icons/menorah.svg new file mode 100644 index 000000000..f023a318d --- /dev/null +++ b/src/_icons/menorah.svg @@ -0,0 +1,12 @@ +--- +tags: [judaism, religion, cultures, jewish] +category: Symbols +unicode: "f58c" +version: "1.109" +--- + + + + + + diff --git a/src/_icons/menu-2.svg b/src/_icons/menu-2.svg index b74df17c5..868605589 100644 --- a/src/_icons/menu-2.svg +++ b/src/_icons/menu-2.svg @@ -5,7 +5,7 @@ version: "1.11" unicode: "ec42" --- - - - + + + diff --git a/src/_icons/menu-order.svg b/src/_icons/menu-order.svg new file mode 100644 index 000000000..f2377ffb8 --- /dev/null +++ b/src/_icons/menu-order.svg @@ -0,0 +1,11 @@ +--- +category: System +unicode: "f5f5" +version: "1.113" +--- + + + + + + diff --git a/src/_icons/menu.svg b/src/_icons/menu.svg index f08dc29e5..d0acf32a0 100644 --- a/src/_icons/menu.svg +++ b/src/_icons/menu.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eaeb" --- - - + + diff --git a/src/_icons/message-2-off.svg b/src/_icons/message-2-off.svg new file mode 100644 index 000000000..a98a1d267 --- /dev/null +++ b/src/_icons/message-2-off.svg @@ -0,0 +1,12 @@ +--- +tags: [comment, chat, reply] +category: Communication +unicode: "f40b" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/message-2.svg b/src/_icons/message-2.svg index 864f09059..9a257e7c2 100644 --- a/src/_icons/message-2.svg +++ b/src/_icons/message-2.svg @@ -1,11 +1,11 @@ --- category: Communication -tags: [comment, chat, reply] +tags: [comment, chat, reply, faq] version: "1.0" unicode: "eaec" --- - - + + diff --git a/src/_icons/message-chatbot.svg b/src/_icons/message-chatbot.svg new file mode 100644 index 000000000..c5eaacb81 --- /dev/null +++ b/src/_icons/message-chatbot.svg @@ -0,0 +1,12 @@ +--- +tags: [automatic, robot, assistant, support] +category: Communication +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..aa5e3bbc6 --- /dev/null +++ b/src/_icons/message-circle-2-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f682" +--- + + + diff --git a/src/_icons/message-circle-off.svg b/src/_icons/message-circle-off.svg index 5cc849d4f..dfd895c07 100644 --- a/src/_icons/message-circle-off.svg +++ b/src/_icons/message-circle-off.svg @@ -1,10 +1,10 @@ --- -category: Communication tags: [comment, chat, reply] +category: Communication version: "1.28" unicode: "ed40" --- - + diff --git a/src/_icons/message-circle.svg b/src/_icons/message-circle.svg index 5a2b6f991..1fe59a6b5 100644 --- a/src/_icons/message-circle.svg +++ b/src/_icons/message-circle.svg @@ -6,7 +6,7 @@ unicode: "eaed" --- - - - + + + diff --git a/src/_icons/message-dots.svg b/src/_icons/message-dots.svg index 24939f6b1..20251ec28 100644 --- a/src/_icons/message-dots.svg +++ b/src/_icons/message-dots.svg @@ -6,7 +6,7 @@ unicode: "eaee" --- - - - + + + diff --git a/src/_icons/message-off.svg b/src/_icons/message-off.svg index 6b5988168..9a68e40c5 100644 --- a/src/_icons/message-off.svg +++ b/src/_icons/message-off.svg @@ -1,10 +1,10 @@ --- +tags: [comment, chat, reply, communication, conversation] category: Communication -tags: [comment, chat, reply] version: "1.28" unicode: "ed41" --- - + diff --git a/src/_icons/message-plus.svg b/src/_icons/message-plus.svg index ccb0431f0..f0231daaa 100644 --- a/src/_icons/message-plus.svg +++ b/src/_icons/message-plus.svg @@ -6,6 +6,6 @@ unicode: "ec9a" --- - - + + diff --git a/src/_icons/message-report.svg b/src/_icons/message-report.svg index 036d68c29..adbcf268e 100644 --- a/src/_icons/message-report.svg +++ b/src/_icons/message-report.svg @@ -6,6 +6,6 @@ unicode: "ec9b" --- - - + + diff --git a/src/_icons/message.svg b/src/_icons/message.svg index 91ea333a4..349dd9f24 100644 --- a/src/_icons/message.svg +++ b/src/_icons/message.svg @@ -1,11 +1,11 @@ --- category: Communication -tags: [comment, chat, reply, communication, conversation] +tags: [comment, chat, reply, communication, conversation, faq] version: "1.0" unicode: "eaef" --- - - + + diff --git a/src/_icons/messages-off.svg b/src/_icons/messages-off.svg index fe010520e..addb5205b 100644 --- a/src/_icons/messages-off.svg +++ b/src/_icons/messages-off.svg @@ -1,11 +1,11 @@ --- -category: Communication tags: [chat, reply, comment, conversation, communication] +category: Communication version: "1.28" unicode: "ed42" --- - + diff --git a/src/_icons/messages.svg b/src/_icons/messages.svg index ed7e41c6e..32d1bb36d 100644 --- a/src/_icons/messages.svg +++ b/src/_icons/messages.svg @@ -1,6 +1,6 @@ --- category: Communication -tags: [chat, reply, comment, conversation, communication] +tags: [chat, reply, comment, conversation, communication, faq] version: "1.2" unicode: "eb6c" --- diff --git a/src/_icons/meteor-off.svg b/src/_icons/meteor-off.svg new file mode 100644 index 000000000..980cff4e7 --- /dev/null +++ b/src/_icons/meteor-off.svg @@ -0,0 +1,10 @@ +--- +tags: [space, comet, astronomy, galaxy, cosmos] +unicode: "f40c" +version: "1.94" +--- + + + + + diff --git a/src/_icons/meteor.svg b/src/_icons/meteor.svg index 146cd5330..9aafd15af 100644 --- a/src/_icons/meteor.svg +++ b/src/_icons/meteor.svg @@ -5,5 +5,5 @@ unicode: "f1fd" --- - + diff --git a/src/_icons/mickey-filled.svg b/src/_icons/mickey-filled.svg new file mode 100644 index 000000000..82390fca7 --- /dev/null +++ b/src/_icons/mickey-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f683" +--- + + + diff --git a/src/_icons/mickey.svg b/src/_icons/mickey.svg index 8755a991c..8a3b25890 100644 --- a/src/_icons/mickey.svg +++ b/src/_icons/mickey.svg @@ -1,9 +1,10 @@ --- +tags: [fable, cartoon, mouse, kids] version: "1.79" unicode: "f2a3" --- - + diff --git a/src/_icons/microphone-2-off.svg b/src/_icons/microphone-2-off.svg new file mode 100644 index 000000000..4a08c6ffd --- /dev/null +++ b/src/_icons/microphone-2-off.svg @@ -0,0 +1,11 @@ +--- +tags: [record, sound, listen, sing] +category: Media +unicode: "f40d" +version: "1.94" +--- + + + + + diff --git a/src/_icons/microphone-2.svg b/src/_icons/microphone-2.svg index f5a79c082..4c2fa282e 100644 --- a/src/_icons/microphone-2.svg +++ b/src/_icons/microphone-2.svg @@ -5,6 +5,6 @@ version: "1.41" unicode: "ef2c" --- - - + + diff --git a/src/_icons/microphone-off.svg b/src/_icons/microphone-off.svg index fcdda8d89..5dcaa61c6 100644 --- a/src/_icons/microphone-off.svg +++ b/src/_icons/microphone-off.svg @@ -1,13 +1,13 @@ --- +tags: [record, sound, listen] category: Media -tags: [record, sound, listen, blocked, mute] version: "1.24" unicode: "ed16" --- - + - - - + + + diff --git a/src/_icons/microphone.svg b/src/_icons/microphone.svg index d14cc9895..e7a451255 100644 --- a/src/_icons/microphone.svg +++ b/src/_icons/microphone.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaf0" --- - + - - + + diff --git a/src/_icons/microscope-off.svg b/src/_icons/microscope-off.svg new file mode 100644 index 000000000..a3b8e123e --- /dev/null +++ b/src/_icons/microscope-off.svg @@ -0,0 +1,16 @@ +--- +tags: [school, education, learning, lab, experimental, chemistry, biology, medical, bacteria, technology] +category: Health +unicode: "f40e" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/microwave.svg b/src/_icons/microwave.svg index 6678d5505..033677454 100644 --- a/src/_icons/microwave.svg +++ b/src/_icons/microwave.svg @@ -4,7 +4,7 @@ version: "1.74" unicode: "f248" --- - + diff --git a/src/_icons/military-award.svg b/src/_icons/military-award.svg index a6f9e1538..1fb228b61 100644 --- a/src/_icons/military-award.svg +++ b/src/_icons/military-award.svg @@ -4,7 +4,7 @@ version: "1.50" unicode: "f079" --- - - - + + + diff --git a/src/_icons/milk-off.svg b/src/_icons/milk-off.svg new file mode 100644 index 000000000..5e6b7c113 --- /dev/null +++ b/src/_icons/milk-off.svg @@ -0,0 +1,12 @@ +--- +tags: [food, drink, cow, healthy, breakfast, bottle, coffee] +category: Food +unicode: "f40f" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/milk.svg b/src/_icons/milk.svg index 1ca607c07..3438e4341 100644 --- a/src/_icons/milk.svg +++ b/src/_icons/milk.svg @@ -7,6 +7,6 @@ unicode: "ef13" - + diff --git a/src/_icons/milkshake.svg b/src/_icons/milkshake.svg new file mode 100644 index 000000000..cc80f94d6 --- /dev/null +++ b/src/_icons/milkshake.svg @@ -0,0 +1,12 @@ +--- +tags: [drink, sweet, food, cocktail, cream ] +category: Food +unicode: "f4c8" +version: "1.98" +--- + + + + + + 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 new file mode 100644 index 000000000..0b480130b --- /dev/null +++ b/src/_icons/mist-off.svg @@ -0,0 +1,15 @@ +--- +tags: [weather, visibility] +category: Weather +unicode: "f410" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/moneybag.svg b/src/_icons/moneybag.svg new file mode 100644 index 000000000..2697c5c22 --- /dev/null +++ b/src/_icons/moneybag.svg @@ -0,0 +1,9 @@ +--- +tags: [finance, cash, dollar, currency, bank] +unicode: "f506" +version: "1.101" +--- + + + + diff --git a/src/_icons/mood-angry.svg b/src/_icons/mood-angry.svg new file mode 100644 index 000000000..b1e85dd7e --- /dev/null +++ b/src/_icons/mood-angry.svg @@ -0,0 +1,12 @@ +--- +tags: [mad, feeling, face, nervous] +category: Mood +version: "1.83" +unicode: "f2de" +--- + + + + + + diff --git a/src/_icons/mood-annoyed-2.svg b/src/_icons/mood-annoyed-2.svg new file mode 100644 index 000000000..83afe974b --- /dev/null +++ b/src/_icons/mood-annoyed-2.svg @@ -0,0 +1,12 @@ +--- +tags: [appalled, agitated, upset, angry, face ] +category: Mood +version: "1.83" +unicode: "f2df" +--- + + + + + + diff --git a/src/_icons/mood-annoyed.svg b/src/_icons/mood-annoyed.svg new file mode 100644 index 000000000..6bc15383a --- /dev/null +++ b/src/_icons/mood-annoyed.svg @@ -0,0 +1,12 @@ +--- +tags: [appalled, agitated, upset, angry, face ] +category: Mood +version: "1.83" +unicode: "f2e0" +--- + + + + + + diff --git a/src/_icons/mood-boy.svg b/src/_icons/mood-boy.svg index 1bd6c4241..00c0c2487 100644 --- a/src/_icons/mood-boy.svg +++ b/src/_icons/mood-boy.svg @@ -9,6 +9,6 @@ unicode: "ed2d" - - + + diff --git a/src/_icons/mood-confuzed.svg b/src/_icons/mood-confuzed.svg index a56aeaa9f..85613800d 100644 --- a/src/_icons/mood-confuzed.svg +++ b/src/_icons/mood-confuzed.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaf3" --- - - - + + + diff --git a/src/_icons/mood-crazy-happy.svg b/src/_icons/mood-crazy-happy.svg index b3ecdede0..e89753e25 100644 --- a/src/_icons/mood-crazy-happy.svg +++ b/src/_icons/mood-crazy-happy.svg @@ -5,10 +5,10 @@ version: "1.34" unicode: "ed90" --- - - + + - + diff --git a/src/_icons/mood-cry.svg b/src/_icons/mood-cry.svg index fee9f1886..f2b99f6cd 100644 --- a/src/_icons/mood-cry.svg +++ b/src/_icons/mood-cry.svg @@ -5,8 +5,8 @@ version: "1.18" unicode: "ecbb" --- - - + + diff --git a/src/_icons/mood-empty.svg b/src/_icons/mood-empty.svg index b3cc4185b..02f778880 100644 --- a/src/_icons/mood-empty.svg +++ b/src/_icons/mood-empty.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eeb5" --- - - - - + + + + diff --git a/src/_icons/mood-happy.svg b/src/_icons/mood-happy.svg index 4be0fbf46..3da48a907 100644 --- a/src/_icons/mood-happy.svg +++ b/src/_icons/mood-happy.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaf4" --- - - - - + + + + diff --git a/src/_icons/mood-kid.svg b/src/_icons/mood-kid.svg index 54371b734..c53f7f065 100644 --- a/src/_icons/mood-kid.svg +++ b/src/_icons/mood-kid.svg @@ -5,9 +5,9 @@ version: "1.8" unicode: "ec03" --- - - - + + + diff --git a/src/_icons/mood-look-left.svg b/src/_icons/mood-look-left.svg index 92efc0c47..e6fff777c 100644 --- a/src/_icons/mood-look-left.svg +++ b/src/_icons/mood-look-left.svg @@ -1,10 +1,11 @@ --- +tags: [west, face, direction] category: Mood version: "1.81" unicode: "f2c5" --- - + diff --git a/src/_icons/mood-look-right.svg b/src/_icons/mood-look-right.svg index 35e6a70fa..5bbdee0d3 100644 --- a/src/_icons/mood-look-right.svg +++ b/src/_icons/mood-look-right.svg @@ -1,10 +1,11 @@ --- +tags: [east, face, direction] category: Mood version: "1.81" unicode: "f2c6" --- - + diff --git a/src/_icons/mood-nerd.svg b/src/_icons/mood-nerd.svg new file mode 100644 index 000000000..8e0b325c4 --- /dev/null +++ b/src/_icons/mood-nerd.svg @@ -0,0 +1,15 @@ +--- +tags: [geek, face, bore] +category: Mood +version: "1.83" +unicode: "f2e1" +--- + + + + + + + + + diff --git a/src/_icons/mood-nervous.svg b/src/_icons/mood-nervous.svg index fa3490acf..0a0c45651 100644 --- a/src/_icons/mood-nervous.svg +++ b/src/_icons/mood-nervous.svg @@ -5,7 +5,7 @@ version: "1.47" unicode: "ef96" --- - + diff --git a/src/_icons/mood-neutral.svg b/src/_icons/mood-neutral.svg index d0c29ca79..0cfc5cd83 100644 --- a/src/_icons/mood-neutral.svg +++ b/src/_icons/mood-neutral.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eaf5" --- - - - + + + diff --git a/src/_icons/mood-sad-2.svg b/src/_icons/mood-sad-2.svg new file mode 100644 index 000000000..3e63864d7 --- /dev/null +++ b/src/_icons/mood-sad-2.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, mad] +category: Mood +version: "1.83" +unicode: "f2e2" +--- + + + + + + diff --git a/src/_icons/mood-sad-dizzy.svg b/src/_icons/mood-sad-dizzy.svg new file mode 100644 index 000000000..628a3d47f --- /dev/null +++ b/src/_icons/mood-sad-dizzy.svg @@ -0,0 +1,14 @@ +--- +tags: [face, emoji, emotion, mad, displeased] +category: Mood +version: "1.83" +unicode: "f2e3" +--- + + + + + + + + diff --git a/src/_icons/mood-sad-squint.svg b/src/_icons/mood-sad-squint.svg new file mode 100644 index 000000000..80f0cf153 --- /dev/null +++ b/src/_icons/mood-sad-squint.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, mad] +category: Mood +version: "1.83" +unicode: "f2e4" +--- + + + + + + diff --git a/src/_icons/mood-sad.svg b/src/_icons/mood-sad.svg index 5b0913784..8d6645167 100644 --- a/src/_icons/mood-sad.svg +++ b/src/_icons/mood-sad.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaf6" --- - - - + + + diff --git a/src/_icons/mood-sick.svg b/src/_icons/mood-sick.svg new file mode 100644 index 000000000..143b5b646 --- /dev/null +++ b/src/_icons/mood-sick.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, suffering, unhealthy] +category: Mood +version: "1.83" +unicode: "f2e5" +--- + + + + + + diff --git a/src/_icons/mood-silence.svg b/src/_icons/mood-silence.svg new file mode 100644 index 000000000..9773265e4 --- /dev/null +++ b/src/_icons/mood-silence.svg @@ -0,0 +1,15 @@ +--- +tags: [face, emoji, emotion, quiet] +category: Mood +version: "1.83" +unicode: "f2e6" +--- + + + + + + + + + diff --git a/src/_icons/mood-sing.svg b/src/_icons/mood-sing.svg index 2a2c61e60..0e69ab74e 100644 --- a/src/_icons/mood-sing.svg +++ b/src/_icons/mood-sing.svg @@ -1,11 +1,12 @@ --- +tags: [face, emoji, emotion, song, melody] category: Mood version: "1.81" unicode: "f2c7" --- - + - + diff --git a/src/_icons/mood-smile-beam.svg b/src/_icons/mood-smile-beam.svg new file mode 100644 index 000000000..23efeda38 --- /dev/null +++ b/src/_icons/mood-smile-beam.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, happy, smiley] +category: Mood +version: "1.83" +unicode: "f2e7" +--- + + + + + + diff --git a/src/_icons/mood-smile-dizzy.svg b/src/_icons/mood-smile-dizzy.svg new file mode 100644 index 000000000..4b62142e3 --- /dev/null +++ b/src/_icons/mood-smile-dizzy.svg @@ -0,0 +1,14 @@ +--- +tags: [face, emoji, emotion, happy, smiley] +category: Mood +version: "1.83" +unicode: "f2e8" +--- + + + + + + + + diff --git a/src/_icons/mood-smile.svg b/src/_icons/mood-smile.svg index be5e9c69b..be693dd98 100644 --- a/src/_icons/mood-smile.svg +++ b/src/_icons/mood-smile.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eaf7" --- - - - + + + diff --git a/src/_icons/mood-suprised.svg b/src/_icons/mood-suprised.svg index e0158d8a8..145a04c6c 100644 --- a/src/_icons/mood-suprised.svg +++ b/src/_icons/mood-suprised.svg @@ -5,8 +5,8 @@ version: "1.8" unicode: "ec04" --- - - - - + + + + diff --git a/src/_icons/mood-tongue-wink-2.svg b/src/_icons/mood-tongue-wink-2.svg new file mode 100644 index 000000000..6b1689228 --- /dev/null +++ b/src/_icons/mood-tongue-wink-2.svg @@ -0,0 +1,13 @@ +--- +tags: [face, emoji, emotion, happy, joke] +category: Mood +version: "1.83" +unicode: "f2e9" +--- + + + + + + + diff --git a/src/_icons/mood-tongue-wink.svg b/src/_icons/mood-tongue-wink.svg new file mode 100644 index 000000000..17e5eafeb --- /dev/null +++ b/src/_icons/mood-tongue-wink.svg @@ -0,0 +1,14 @@ +--- +tags: [face, emoji, emotion, happy, joke] +category: Mood +version: "1.83" +unicode: "f2ea" +--- + + + + + + + + diff --git a/src/_icons/mood-tongue.svg b/src/_icons/mood-tongue.svg index 88d94c3c2..50da44fae 100644 --- a/src/_icons/mood-tongue.svg +++ b/src/_icons/mood-tongue.svg @@ -5,8 +5,8 @@ version: "1.3" unicode: "eb95" --- - - - + + + diff --git a/src/_icons/mood-unamused.svg b/src/_icons/mood-unamused.svg new file mode 100644 index 000000000..679d3c32f --- /dev/null +++ b/src/_icons/mood-unamused.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, unfunny, unhappy, unsmilling] +category: Mood +version: "1.83" +unicode: "f2eb" +--- + + + + + + diff --git a/src/_icons/mood-wink-2.svg b/src/_icons/mood-wink-2.svg new file mode 100644 index 000000000..5fb35e282 --- /dev/null +++ b/src/_icons/mood-wink-2.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, smile, funny, happy] +category: Mood +version: "1.83" +unicode: "f2ec" +--- + + + + + + diff --git a/src/_icons/mood-wink.svg b/src/_icons/mood-wink.svg new file mode 100644 index 000000000..44e56a759 --- /dev/null +++ b/src/_icons/mood-wink.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, smile, funny, happy] +category: Mood +version: "1.83" +unicode: "f2ed" +--- + + + + + + diff --git a/src/_icons/mood-wrrr.svg b/src/_icons/mood-wrrr.svg new file mode 100644 index 000000000..b19238f28 --- /dev/null +++ b/src/_icons/mood-wrrr.svg @@ -0,0 +1,12 @@ +--- +tags: [face, emoji, emotion, disgusted] +category: Mood +version: "1.83" +unicode: "f2ee" +--- + + + + + + diff --git a/src/_icons/mood-xd.svg b/src/_icons/mood-xd.svg new file mode 100644 index 000000000..4cf5c61a9 --- /dev/null +++ b/src/_icons/mood-xd.svg @@ -0,0 +1,13 @@ +--- +tags: [face, emoji, emotion, funny, happy, smiley, joke] +category: Mood +version: "1.83" +unicode: "f2ef" +--- + + + + + + + diff --git a/src/_icons/moon-2.svg b/src/_icons/moon-2.svg index d6bd4b402..9afb3b2f9 100644 --- a/src/_icons/moon-2.svg +++ b/src/_icons/moon-2.svg @@ -6,5 +6,5 @@ unicode: "ece6" --- - + diff --git a/src/_icons/moon-filled.svg b/src/_icons/moon-filled.svg new file mode 100644 index 000000000..24f30f66c --- /dev/null +++ b/src/_icons/moon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f684" +--- + + + diff --git a/src/_icons/moped.svg b/src/_icons/moped.svg index 35203042b..5cacd3b1f 100644 --- a/src/_icons/moped.svg +++ b/src/_icons/moped.svg @@ -5,7 +5,7 @@ version: "1.18" unicode: "ecbc" --- - + - + diff --git a/src/_icons/motorbike.svg b/src/_icons/motorbike.svg index 35c66ea07..a4926bc28 100644 --- a/src/_icons/motorbike.svg +++ b/src/_icons/motorbike.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "eeb6" --- - - + + diff --git a/src/_icons/mountain-off.svg b/src/_icons/mountain-off.svg new file mode 100644 index 000000000..ea0d0a41b --- /dev/null +++ b/src/_icons/mountain-off.svg @@ -0,0 +1,10 @@ +--- +tags: [alps, camping, mount everest, trekking] +unicode: "f411" +version: "1.94" +--- + + + + + diff --git a/src/_icons/mouse-2.svg b/src/_icons/mouse-2.svg index 21872db81..22d8d1be7 100644 --- a/src/_icons/mouse-2.svg +++ b/src/_icons/mouse-2.svg @@ -5,7 +5,7 @@ version: "1.68" unicode: "f1d7" --- - + diff --git a/src/_icons/mouse-off.svg b/src/_icons/mouse-off.svg index 7b68cde7c..1b47848cd 100644 --- a/src/_icons/mouse-off.svg +++ b/src/_icons/mouse-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f163" --- - + diff --git a/src/_icons/mouse.svg b/src/_icons/mouse.svg index 35c77aa72..63c2cbcda 100644 --- a/src/_icons/mouse.svg +++ b/src/_icons/mouse.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eaf9" --- - - + + diff --git a/src/_icons/moustache.svg b/src/_icons/moustache.svg new file mode 100644 index 000000000..be8d5f22f --- /dev/null +++ b/src/_icons/moustache.svg @@ -0,0 +1,9 @@ +--- +tags: [man, face, beard, male] +unicode: "f4c9" +version: "1.98" +--- + + + + diff --git a/src/_icons/movie.svg b/src/_icons/movie.svg index 1177aea86..4752eeeb9 100644 --- a/src/_icons/movie.svg +++ b/src/_icons/movie.svg @@ -5,12 +5,12 @@ version: "1.0" unicode: "eafa" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/mushroom-off.svg b/src/_icons/mushroom-off.svg new file mode 100644 index 000000000..d2a90e44a --- /dev/null +++ b/src/_icons/mushroom-off.svg @@ -0,0 +1,11 @@ +--- +tags: [food, vegetable, cooking, fungus, mushrooming] +category: Food +unicode: "f412" +version: "1.94" +--- + + + + + diff --git a/src/_icons/music-off.svg b/src/_icons/music-off.svg index 010aaeb72..e74c14d6d 100644 --- a/src/_icons/music-off.svg +++ b/src/_icons/music-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f166" --- - + diff --git a/src/_icons/music.svg b/src/_icons/music.svg index 569573221..49fd5c986 100644 --- a/src/_icons/music.svg +++ b/src/_icons/music.svg @@ -5,8 +5,8 @@ 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..001b02e6c --- /dev/null +++ b/src/_icons/navigation-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f685" +--- + + + diff --git a/src/_icons/navigation-off.svg b/src/_icons/navigation-off.svg new file mode 100644 index 000000000..e22ec7e26 --- /dev/null +++ b/src/_icons/navigation-off.svg @@ -0,0 +1,10 @@ +--- +tags: [map, location, direction, pin, gps] +category: Map +unicode: "f413" +version: "1.94" +--- + + + + diff --git a/src/_icons/navigation.svg b/src/_icons/navigation.svg index 6bb89fb88..7aaed260b 100644 --- a/src/_icons/navigation.svg +++ b/src/_icons/navigation.svg @@ -1,4 +1,5 @@ --- +tags: [map, location, direction, pin, gps] category: Map version: "1.81" unicode: "f2c8" diff --git a/src/_icons/needle-thread.svg b/src/_icons/needle-thread.svg new file mode 100644 index 000000000..b847b7b66 --- /dev/null +++ b/src/_icons/needle-thread.svg @@ -0,0 +1,12 @@ +--- +tags: [sewing, tailoring, craft, tailor ] +unicode: "f507" +version: "1.101" +--- + + + + + + + diff --git a/src/_icons/needle.svg b/src/_icons/needle.svg new file mode 100644 index 000000000..92629fe58 --- /dev/null +++ b/src/_icons/needle.svg @@ -0,0 +1,9 @@ +--- +tags: [sewing, tailoring, craft, tailor ] +unicode: "f508" +version: "1.101" +--- + + + + diff --git a/src/_icons/network-off.svg b/src/_icons/network-off.svg new file mode 100644 index 000000000..0981811d2 --- /dev/null +++ b/src/_icons/network-off.svg @@ -0,0 +1,16 @@ +--- +tags: [connection, internet, communication, connect, web, signal] +unicode: "f414" +version: "1.94" +--- + + + + + + + + + + + diff --git a/src/_icons/network.svg b/src/_icons/network.svg index c89d669a3..2556dea45 100644 --- a/src/_icons/network.svg +++ b/src/_icons/network.svg @@ -4,12 +4,12 @@ version: "1.61" unicode: "f09f" --- - + - + diff --git a/src/_icons/new-section.svg b/src/_icons/new-section.svg index 9aecac94e..a0428f826 100644 --- a/src/_icons/new-section.svg +++ b/src/_icons/new-section.svg @@ -4,7 +4,7 @@ version: "1.5" unicode: "ebc1" --- - - + + diff --git a/src/_icons/news-off.svg b/src/_icons/news-off.svg index d31417852..725d08fe6 100644 --- a/src/_icons/news-off.svg +++ b/src/_icons/news-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f167" --- - + diff --git a/src/_icons/news.svg b/src/_icons/news.svg index 6f4d81678..eba13e519 100644 --- a/src/_icons/news.svg +++ b/src/_icons/news.svg @@ -6,7 +6,7 @@ unicode: "eafd" --- - - - + + + diff --git a/src/_icons/nfc.svg b/src/_icons/nfc.svg index cbd4d192a..7a2bed06b 100644 --- a/src/_icons/nfc.svg +++ b/src/_icons/nfc.svg @@ -7,5 +7,5 @@ unicode: "eeb7" - + diff --git a/src/_icons/no-copyright.svg b/src/_icons/no-copyright.svg index 97dba8fda..69b91493c 100644 --- a/src/_icons/no-copyright.svg +++ b/src/_icons/no-copyright.svg @@ -4,7 +4,7 @@ version: "1.49" unicode: "efb9" --- - + diff --git a/src/_icons/no-creative-commons.svg b/src/_icons/no-creative-commons.svg index 143ba7c8b..1f20a68f6 100644 --- a/src/_icons/no-creative-commons.svg +++ b/src/_icons/no-creative-commons.svg @@ -4,7 +4,7 @@ version: "1.49" unicode: "efba" --- - + diff --git a/src/_icons/no-derivatives.svg b/src/_icons/no-derivatives.svg index c9a8d592e..32aa18897 100644 --- a/src/_icons/no-derivatives.svg +++ b/src/_icons/no-derivatives.svg @@ -4,7 +4,7 @@ version: "1.49" unicode: "efbb" --- - + diff --git a/src/_icons/note-off.svg b/src/_icons/note-off.svg index 175ee3d50..42aa75483 100644 --- a/src/_icons/note-off.svg +++ b/src/_icons/note-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f169" --- - + diff --git a/src/_icons/note.svg b/src/_icons/note.svg index 831ea2f76..9a067a774 100644 --- a/src/_icons/note.svg +++ b/src/_icons/note.svg @@ -5,6 +5,6 @@ version: "1.2" unicode: "eb6d" --- - + diff --git a/src/_icons/notebook-off.svg b/src/_icons/notebook-off.svg new file mode 100644 index 000000000..517637ea9 --- /dev/null +++ b/src/_icons/notebook-off.svg @@ -0,0 +1,11 @@ +--- +tags: [study, learn, diary, write, journal, page, paper, jot down] +category: Document +unicode: "f415" +version: "1.94" +--- + + + + + diff --git a/src/_icons/notebook.svg b/src/_icons/notebook.svg index d7c386861..1ef926985 100644 --- a/src/_icons/notebook.svg +++ b/src/_icons/notebook.svg @@ -6,6 +6,6 @@ unicode: "eb96" --- - - + + diff --git a/src/_icons/notes.svg b/src/_icons/notes.svg index b5c4a80a4..8d23b55ce 100644 --- a/src/_icons/notes.svg +++ b/src/_icons/notes.svg @@ -5,8 +5,8 @@ version: "1.2" unicode: "eb6e" --- - - - - + + + + diff --git a/src/_icons/notification-off.svg b/src/_icons/notification-off.svg index fd6649a81..3038d90be 100644 --- a/src/_icons/notification-off.svg +++ b/src/_icons/notification-off.svg @@ -6,6 +6,6 @@ unicode: "f16b" --- - + diff --git a/src/_icons/notification.svg b/src/_icons/notification.svg index 28494342c..cf6218022 100644 --- a/src/_icons/notification.svg +++ b/src/_icons/notification.svg @@ -6,5 +6,5 @@ unicode: "eafe" --- - + diff --git a/src/_icons/number-8.svg b/src/_icons/number-8.svg index ec8d141ce..59db044d6 100644 --- a/src/_icons/number-8.svg +++ b/src/_icons/number-8.svg @@ -5,6 +5,6 @@ version: "1.38" unicode: "edf8" --- - - + + diff --git a/src/_icons/number.svg b/src/_icons/number.svg index e1d07bd23..38de337d2 100644 --- a/src/_icons/number.svg +++ b/src/_icons/number.svg @@ -6,5 +6,5 @@ unicode: "f1fe" - + diff --git a/src/_icons/numbers.svg b/src/_icons/numbers.svg index 0179744ca..d57f3a891 100644 --- a/src/_icons/numbers.svg +++ b/src/_icons/numbers.svg @@ -5,7 +5,7 @@ unicode: "f015" --- - + diff --git a/src/_icons/octagon-filled.svg b/src/_icons/octagon-filled.svg new file mode 100644 index 000000000..55829804d --- /dev/null +++ b/src/_icons/octagon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f686" +--- + + + diff --git a/src/_icons/octagon-off.svg b/src/_icons/octagon-off.svg index 4255848b8..7cae5f160 100644 --- a/src/_icons/octagon-off.svg +++ b/src/_icons/octagon-off.svg @@ -1,10 +1,10 @@ --- +tags: [shape, geometric, math, 2d, building, government] category: Shapes -tags: [shape, eight, angle, crossed] version: "1.39" unicode: "eeb8" --- - + diff --git a/src/_icons/octagon.svg b/src/_icons/octagon.svg index 29cb022dd..2d53fc2a7 100644 --- a/src/_icons/octagon.svg +++ b/src/_icons/octagon.svg @@ -1,6 +1,6 @@ --- category: Shapes -tags: [shape, geometric, math, 2D, building, government] +tags: [shape, geometric, math, 2d, building, government] version: "1.18" unicode: "ecbd" --- diff --git a/src/_icons/old.svg b/src/_icons/old.svg index bf9621632..b48a7dfe9 100644 --- a/src/_icons/old.svg +++ b/src/_icons/old.svg @@ -7,7 +7,7 @@ unicode: "eeb9" - + diff --git a/src/_icons/olympics-off.svg b/src/_icons/olympics-off.svg new file mode 100644 index 000000000..5ed85d09d --- /dev/null +++ b/src/_icons/olympics-off.svg @@ -0,0 +1,14 @@ +--- +tags: [game, play, sport, sportsman, champion, win, medal, sporting, event, competition, athlete] +category: Sport +unicode: "f416" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/olympics.svg b/src/_icons/olympics.svg index 480000f21..dc9a7be2a 100644 --- a/src/_icons/olympics.svg +++ b/src/_icons/olympics.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eeba" --- - - - - - + + + + + diff --git a/src/_icons/om.svg b/src/_icons/om.svg new file mode 100644 index 000000000..ad4533a7e --- /dev/null +++ b/src/_icons/om.svg @@ -0,0 +1,13 @@ +--- +tags: [hinduism, religion, hindu, symbol] +category: Symbols +unicode: "f58d" +version: "1.109" +--- + + + + + + + diff --git a/src/_icons/outbound.svg b/src/_icons/outbound.svg index f70730eeb..99e3f952e 100644 --- a/src/_icons/outbound.svg +++ b/src/_icons/outbound.svg @@ -4,7 +4,7 @@ version: "1.74" unicode: "f249" --- - + diff --git a/src/_icons/outlet.svg b/src/_icons/outlet.svg index 9c6c9fef4..016679600 100644 --- a/src/_icons/outlet.svg +++ b/src/_icons/outlet.svg @@ -4,7 +4,7 @@ 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..122870046 --- /dev/null +++ b/src/_icons/oval-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..06d0246c4 --- /dev/null +++ b/src/_icons/oval-vertical-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f688" +--- + + + diff --git a/src/_icons/oval-vertical.svg b/src/_icons/oval-vertical.svg index cec4ddfd8..11e5d5819 100644 --- a/src/_icons/oval-vertical.svg +++ b/src/_icons/oval-vertical.svg @@ -5,5 +5,5 @@ version: "1.55" unicode: "f02d" --- - + diff --git a/src/_icons/oval.svg b/src/_icons/oval.svg index 69c4312b5..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/package.svg b/src/_icons/package.svg index 4f7490950..410478cf7 100644 --- a/src/_icons/package.svg +++ b/src/_icons/package.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eaff" --- - - - - - + + + + + diff --git a/src/_icons/packages.svg b/src/_icons/packages.svg index 483a63f51..34ea19d8d 100644 --- a/src/_icons/packages.svg +++ b/src/_icons/packages.svg @@ -1,12 +1,16 @@ --- +tags: [delivery, boxes, storage] version: "1.81" unicode: "f2c9" --- - - - - - - + + + + + + + + + diff --git a/src/_icons/paint-off.svg b/src/_icons/paint-off.svg index 03aac53b9..a2cd8723b 100644 --- a/src/_icons/paint-off.svg +++ b/src/_icons/paint-off.svg @@ -7,6 +7,6 @@ unicode: "f16d" - + diff --git a/src/_icons/paint.svg b/src/_icons/paint.svg index 8bbf1f50d..a2d5936f3 100644 --- a/src/_icons/paint.svg +++ b/src/_icons/paint.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eb00" --- - + - + diff --git a/src/_icons/palette-off.svg b/src/_icons/palette-off.svg index c655c25f5..62715f103 100644 --- a/src/_icons/palette-off.svg +++ b/src/_icons/palette-off.svg @@ -5,9 +5,10 @@ version: "1.66" unicode: "f16e" --- - - - - + + + + + diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg index 6ac39d8ed..c9f8aceb8 100644 --- a/src/_icons/palette.svg +++ b/src/_icons/palette.svg @@ -5,8 +5,8 @@ version: "1.1" unicode: "eb01" --- - - - - + + + + diff --git a/src/_icons/panorama-horizontal-off.svg b/src/_icons/panorama-horizontal-off.svg new file mode 100644 index 000000000..a1fc44ac0 --- /dev/null +++ b/src/_icons/panorama-horizontal-off.svg @@ -0,0 +1,10 @@ +--- +tags: [photo, picture, panoramic] +category: Photography +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 new file mode 100644 index 000000000..bf663b700 --- /dev/null +++ b/src/_icons/panorama-vertical-off.svg @@ -0,0 +1,10 @@ +--- +tags: [photo, picture, panoramic] +category: Photography +unicode: "f418" +version: "1.94" +--- + + + + diff --git a/src/_icons/paper-bag.svg b/src/_icons/paper-bag.svg index 2d8b1343b..9da8e19ec 100644 --- a/src/_icons/paper-bag.svg +++ b/src/_icons/paper-bag.svg @@ -6,7 +6,7 @@ unicode: "f02f" --- - + diff --git a/src/_icons/parachute-off.svg b/src/_icons/parachute-off.svg index 16ef0a9c2..51e70c550 100644 --- a/src/_icons/parachute-off.svg +++ b/src/_icons/parachute-off.svg @@ -8,6 +8,6 @@ unicode: "f170" - + diff --git a/src/_icons/parking.svg b/src/_icons/parking.svg index 21180694b..ba8e05eea 100644 --- a/src/_icons/parking.svg +++ b/src/_icons/parking.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eb03" --- - + diff --git a/src/_icons/password.svg b/src/_icons/password.svg new file mode 100644 index 000000000..e348c5b3d --- /dev/null +++ b/src/_icons/password.svg @@ -0,0 +1,16 @@ +--- +tags: [lock, secure, privacy, locked, login] +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..e8f86edf8 --- /dev/null +++ b/src/_icons/paw-filled.svg @@ -0,0 +1,12 @@ +--- +category: Filled +version: "2.0" +unicode: "f689" +--- + + + + + + + diff --git a/src/_icons/paw-off.svg b/src/_icons/paw-off.svg new file mode 100644 index 000000000..967a70463 --- /dev/null +++ b/src/_icons/paw-off.svg @@ -0,0 +1,13 @@ +--- +tags: [animal, dog, cat, foot, pets] +unicode: "f419" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/paw.svg b/src/_icons/paw.svg index 9dfc5a5e6..7c37b76f4 100644 --- a/src/_icons/paw.svg +++ b/src/_icons/paw.svg @@ -4,9 +4,9 @@ version: "1.52" unicode: "eff9" --- - + - + diff --git a/src/_icons/peace.svg b/src/_icons/peace.svg index 5cc97d183..1cd637945 100644 --- a/src/_icons/peace.svg +++ b/src/_icons/peace.svg @@ -5,8 +5,8 @@ version: "1.18" unicode: "ecbe" --- - - - - + + + + diff --git a/src/_icons/pencil-off.svg b/src/_icons/pencil-off.svg index d7e564ffd..dc32e69fd 100644 --- a/src/_icons/pencil-off.svg +++ b/src/_icons/pencil-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f173" --- - + diff --git a/src/_icons/pencil.svg b/src/_icons/pencil.svg index e49042d95..cb61f394a 100644 --- a/src/_icons/pencil.svg +++ b/src/_icons/pencil.svg @@ -6,5 +6,5 @@ unicode: "eb04" --- - + diff --git a/src/_icons/pennant-2-filled.svg b/src/_icons/pennant-2-filled.svg new file mode 100644 index 000000000..ffc258100 --- /dev/null +++ b/src/_icons/pennant-2-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f68a" +--- + + + + + diff --git a/src/_icons/pennant-filled.svg b/src/_icons/pennant-filled.svg new file mode 100644 index 000000000..204c07598 --- /dev/null +++ b/src/_icons/pennant-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f68b" +--- + + + + + diff --git a/src/_icons/pennant.svg b/src/_icons/pennant.svg index d2c52de16..e17a25af6 100644 --- a/src/_icons/pennant.svg +++ b/src/_icons/pennant.svg @@ -5,7 +5,7 @@ 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..42d0d857b --- /dev/null +++ b/src/_icons/pentagon-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f68c" +--- + + + diff --git a/src/_icons/pentagon-off.svg b/src/_icons/pentagon-off.svg new file mode 100644 index 000000000..35d60ba8d --- /dev/null +++ b/src/_icons/pentagon-off.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, figure, math, graphic, geometry, form] +category: Shapes +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 new file mode 100644 index 000000000..914e65004 --- /dev/null +++ b/src/_icons/pentagram.svg @@ -0,0 +1,9 @@ +--- +tags: [evil, scary, satanism, halloween] +unicode: "f586" +version: "1.108" +--- + + + + diff --git a/src/_icons/percentage.svg b/src/_icons/percentage.svg index d6568616a..794750a2e 100644 --- a/src/_icons/percentage.svg +++ b/src/_icons/percentage.svg @@ -5,7 +5,7 @@ version: "1.22" unicode: "ecf4" --- - - - + + + diff --git a/src/_icons/perfume.svg b/src/_icons/perfume.svg new file mode 100644 index 000000000..19bdfdc55 --- /dev/null +++ b/src/_icons/perfume.svg @@ -0,0 +1,12 @@ +--- +tags: [spray, smell, cosmetics, beauty, scent] +unicode: "f509" +version: "1.101" +--- + + + + + + + diff --git a/src/_icons/phone-calling.svg b/src/_icons/phone-calling.svg index 52aadf565..4aacda798 100644 --- a/src/_icons/phone-calling.svg +++ b/src/_icons/phone-calling.svg @@ -6,7 +6,7 @@ unicode: "ec43" --- - - - + + + diff --git a/src/_icons/phone-incoming.svg b/src/_icons/phone-incoming.svg index ce118b528..acf569840 100644 --- a/src/_icons/phone-incoming.svg +++ b/src/_icons/phone-incoming.svg @@ -6,6 +6,6 @@ unicode: "eb06" --- - - + + diff --git a/src/_icons/phone-off.svg b/src/_icons/phone-off.svg index cce5d3a70..292626f1f 100644 --- a/src/_icons/phone-off.svg +++ b/src/_icons/phone-off.svg @@ -1,10 +1,10 @@ --- -category: Devices tags: [call, mobile, conversation, landline, answer, number] +category: Devices version: "1.22" unicode: "ecf5" --- - + diff --git a/src/_icons/phone-outgoing.svg b/src/_icons/phone-outgoing.svg index d25156c13..d40194dcd 100644 --- a/src/_icons/phone-outgoing.svg +++ b/src/_icons/phone-outgoing.svg @@ -6,6 +6,6 @@ unicode: "eb07" --- - - + + diff --git a/src/_icons/phone-pause.svg b/src/_icons/phone-pause.svg index f5f7a8222..9ee833b3b 100644 --- a/src/_icons/phone-pause.svg +++ b/src/_icons/phone-pause.svg @@ -6,6 +6,6 @@ unicode: "eb08" --- - - + + diff --git a/src/_icons/photo-cancel.svg b/src/_icons/photo-cancel.svg new file mode 100644 index 000000000..ed7617f3c --- /dev/null +++ b/src/_icons/photo-cancel.svg @@ -0,0 +1,14 @@ +--- +tags: [delete, gallery, image] +category: Media +unicode: "f35d" +version: "1.89" +--- + + + + + + + + diff --git a/src/_icons/photo-check.svg b/src/_icons/photo-check.svg new file mode 100644 index 000000000..0d780ff5d --- /dev/null +++ b/src/_icons/photo-check.svg @@ -0,0 +1,13 @@ +--- +tags: [success, complete, image, gallery] +category: Media +unicode: "f35e" +version: "1.89" +--- + + + + + + + diff --git a/src/_icons/photo-down.svg b/src/_icons/photo-down.svg new file mode 100644 index 000000000..d6ca23b93 --- /dev/null +++ b/src/_icons/photo-down.svg @@ -0,0 +1,14 @@ +--- +tags: [image, gallery, download, arrow, south] +category: Media +unicode: "f35f" +version: "1.89" +--- + + + + + + + + diff --git a/src/_icons/photo-edit.svg b/src/_icons/photo-edit.svg new file mode 100644 index 000000000..98d245b91 --- /dev/null +++ b/src/_icons/photo-edit.svg @@ -0,0 +1,13 @@ +--- +tags: [image, gallery, tool, create] +category: Media +unicode: "f360" +version: "1.89" +--- + + + + + + + diff --git a/src/_icons/photo-heart.svg b/src/_icons/photo-heart.svg new file mode 100644 index 000000000..1bc923019 --- /dev/null +++ b/src/_icons/photo-heart.svg @@ -0,0 +1,12 @@ +--- +tags: [image, gallery, love, romance, wedding] +category: Media +unicode: "f361" +version: "1.89" +--- + + + + + + diff --git a/src/_icons/photo-minus.svg b/src/_icons/photo-minus.svg new file mode 100644 index 000000000..388373457 --- /dev/null +++ b/src/_icons/photo-minus.svg @@ -0,0 +1,13 @@ +--- +tags: [image, gallery, delete, remove] +category: Media +unicode: "f362" +version: "1.89" +--- + + + + + + + diff --git a/src/_icons/photo-off.svg b/src/_icons/photo-off.svg index f8c783d57..7aac2d0c2 100644 --- a/src/_icons/photo-off.svg +++ b/src/_icons/photo-off.svg @@ -1,12 +1,12 @@ --- -category: Media tags: [image, picture, landscape, camera] +category: Media version: "1.22" unicode: "ecf6" --- - - + + diff --git a/src/_icons/photo-plus.svg b/src/_icons/photo-plus.svg new file mode 100644 index 000000000..88a2ed79b --- /dev/null +++ b/src/_icons/photo-plus.svg @@ -0,0 +1,14 @@ +--- +tags: [image, gallery, add, new] +category: Media +unicode: "f363" +version: "1.89" +--- + + + + + + + + diff --git a/src/_icons/photo-search.svg b/src/_icons/photo-search.svg new file mode 100644 index 000000000..009c3c3b9 --- /dev/null +++ b/src/_icons/photo-search.svg @@ -0,0 +1,13 @@ +--- +tags: [image, gallery, find, zoom] +category: Media +unicode: "f364" +version: "1.89" +--- + + + + + + + diff --git a/src/_icons/photo-shield.svg b/src/_icons/photo-shield.svg new file mode 100644 index 000000000..d08c5ef7b --- /dev/null +++ b/src/_icons/photo-shield.svg @@ -0,0 +1,12 @@ +--- +tags: [image, gallery, safety, secure] +category: Media +unicode: "f365" +version: "1.89" +--- + + + + + + diff --git a/src/_icons/photo-star.svg b/src/_icons/photo-star.svg new file mode 100644 index 000000000..f30c4c675 --- /dev/null +++ b/src/_icons/photo-star.svg @@ -0,0 +1,12 @@ +--- +tags: [image, gallery, favourite, best] +category: Media +unicode: "f366" +version: "1.89" +--- + + + + + + diff --git a/src/_icons/photo-up.svg b/src/_icons/photo-up.svg new file mode 100644 index 000000000..76148eed0 --- /dev/null +++ b/src/_icons/photo-up.svg @@ -0,0 +1,14 @@ +--- +tags: [image, gallery, load, send, arrow, north] +category: Media +unicode: "f38b" +version: "1.91" +--- + + + + + + + + diff --git a/src/_icons/photo-x.svg b/src/_icons/photo-x.svg new file mode 100644 index 000000000..3787e40e3 --- /dev/null +++ b/src/_icons/photo-x.svg @@ -0,0 +1,13 @@ +--- +tags: [image, gallery, delete, remove] +category: Media +unicode: "f367" +version: "1.89" +--- + + + + + + + diff --git a/src/_icons/photo.svg b/src/_icons/photo.svg index 36f8302af..c7038d51d 100644 --- a/src/_icons/photo.svg +++ b/src/_icons/photo.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eb0a" --- - - + + diff --git a/src/_icons/physotherapist.svg b/src/_icons/physotherapist.svg index 6d3251d96..f05a8918e 100644 --- a/src/_icons/physotherapist.svg +++ b/src/_icons/physotherapist.svg @@ -6,8 +6,8 @@ unicode: "eebe" --- - - + + diff --git a/src/_icons/picture-in-picture-off.svg b/src/_icons/picture-in-picture-off.svg index 102ea2e7d..ee36b1557 100644 --- a/src/_icons/picture-in-picture-off.svg +++ b/src/_icons/picture-in-picture-off.svg @@ -1,12 +1,12 @@ --- -category: Media tags: [size, photo, elements, adjust, image] +category: Media 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..fb572df4b 100644 --- a/src/_icons/picture-in-picture-on.svg +++ b/src/_icons/picture-in-picture-on.svg @@ -6,7 +6,7 @@ unicode: "ed44" --- - - + + diff --git a/src/_icons/picture-in-picture-top.svg b/src/_icons/picture-in-picture-top.svg index d35460287..001e334c3 100644 --- a/src/_icons/picture-in-picture-top.svg +++ b/src/_icons/picture-in-picture-top.svg @@ -5,5 +5,5 @@ unicode: "efe4" --- - + diff --git a/src/_icons/picture-in-picture.svg b/src/_icons/picture-in-picture.svg index 6fdee3dfc..d0f7eec5b 100644 --- a/src/_icons/picture-in-picture.svg +++ b/src/_icons/picture-in-picture.svg @@ -6,5 +6,5 @@ unicode: "ed35" --- - + diff --git a/src/_icons/pig-money.svg b/src/_icons/pig-money.svg new file mode 100644 index 000000000..8d38d625d --- /dev/null +++ b/src/_icons/pig-money.svg @@ -0,0 +1,11 @@ +--- +tags: [coin, finance, saving, bank] +category: Animals +unicode: "f38c" +version: "1.91" +--- + + + + + diff --git a/src/_icons/pig-off.svg b/src/_icons/pig-off.svg index 822bdb78f..506e63d00 100644 --- a/src/_icons/pig-off.svg +++ b/src/_icons/pig-off.svg @@ -6,6 +6,6 @@ unicode: "f177" --- - + diff --git a/src/_icons/pig.svg b/src/_icons/pig.svg index 3b35901df..58bf35f24 100644 --- a/src/_icons/pig.svg +++ b/src/_icons/pig.svg @@ -6,5 +6,5 @@ unicode: "ef52" --- - + diff --git a/src/_icons/pilcrow.svg b/src/_icons/pilcrow.svg new file mode 100644 index 000000000..9d64ab1fb --- /dev/null +++ b/src/_icons/pilcrow.svg @@ -0,0 +1,10 @@ +--- +category: Text +unicode: "f5f6" +version: "1.113" +--- + + + + + diff --git a/src/_icons/pill-off.svg b/src/_icons/pill-off.svg index 9df25390b..2d71a1117 100644 --- a/src/_icons/pill-off.svg +++ b/src/_icons/pill-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f178" --- - + diff --git a/src/_icons/pill.svg b/src/_icons/pill.svg index 9400092ad..9081c1451 100644 --- a/src/_icons/pill.svg +++ b/src/_icons/pill.svg @@ -6,5 +6,5 @@ unicode: "ec44" --- - + diff --git a/src/_icons/pills.svg b/src/_icons/pills.svg index 8b311e9d8..91c24676c 100644 --- a/src/_icons/pills.svg +++ b/src/_icons/pills.svg @@ -5,8 +5,8 @@ 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..f7bf1b7f1 --- /dev/null +++ b/src/_icons/pin-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f68d" +--- + + + + + diff --git a/src/_icons/pin.svg b/src/_icons/pin.svg index fe55ea5b8..4d0f07f36 100644 --- a/src/_icons/pin.svg +++ b/src/_icons/pin.svg @@ -6,6 +6,6 @@ unicode: "ec9c" --- - - + + diff --git a/src/_icons/ping-pong.svg b/src/_icons/ping-pong.svg new file mode 100644 index 000000000..a8fdb3ee8 --- /dev/null +++ b/src/_icons/ping-pong.svg @@ -0,0 +1,11 @@ +--- +tags: [table, tennis, ball, sport, racket] +category: Sport +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..7234840bf --- /dev/null +++ b/src/_icons/pinned-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f68e" +--- + + + + + diff --git a/src/_icons/pinned-off.svg b/src/_icons/pinned-off.svg index f8fa8e1b0..36c75e518 100644 --- a/src/_icons/pinned-off.svg +++ b/src/_icons/pinned-off.svg @@ -1,12 +1,12 @@ --- +tags: [board, attach, nail, pointed, corkboard, favourite, noticeboard] category: Map -tags: [removed, attach, corkboard, unfasten, noticeboard] version: "1.31" unicode: "ed5f" --- - + - - + + diff --git a/src/_icons/pinned.svg b/src/_icons/pinned.svg index c7fd2cc3b..24d56d3a8 100644 --- a/src/_icons/pinned.svg +++ b/src/_icons/pinned.svg @@ -6,6 +6,6 @@ unicode: "ed60" --- - - + + diff --git a/src/_icons/pizza-off.svg b/src/_icons/pizza-off.svg index 309526416..e2172729d 100644 --- a/src/_icons/pizza-off.svg +++ b/src/_icons/pizza-off.svg @@ -6,7 +6,7 @@ unicode: "f179" --- - + diff --git a/src/_icons/placeholder.svg b/src/_icons/placeholder.svg new file mode 100644 index 000000000..7c2ccb36c --- /dev/null +++ b/src/_icons/placeholder.svg @@ -0,0 +1,9 @@ +--- +unicode: "f626" +version: "1.116" +--- + + + + + diff --git a/src/_icons/plane-arrival.svg b/src/_icons/plane-arrival.svg index 5e5f0892f..52d866ca9 100644 --- a/src/_icons/plane-arrival.svg +++ b/src/_icons/plane-arrival.svg @@ -5,6 +5,6 @@ version: "1.3" unicode: "eb99" --- - - + + diff --git a/src/_icons/plane-departure.svg b/src/_icons/plane-departure.svg index 2ab63e0fe..a2f615044 100644 --- a/src/_icons/plane-departure.svg +++ b/src/_icons/plane-departure.svg @@ -5,6 +5,6 @@ version: "1.3" unicode: "eb9a" --- - - + + diff --git a/src/_icons/planet.svg b/src/_icons/planet.svg index c3d7c241c..696bcd682 100644 --- a/src/_icons/planet.svg +++ b/src/_icons/planet.svg @@ -6,5 +6,5 @@ unicode: "ec08" --- - + diff --git a/src/_icons/plant-2-off.svg b/src/_icons/plant-2-off.svg index fda5ae7a6..09f1e9ee4 100644 --- a/src/_icons/plant-2-off.svg +++ b/src/_icons/plant-2-off.svg @@ -8,7 +8,7 @@ unicode: "f17c" - + diff --git a/src/_icons/plant-off.svg b/src/_icons/plant-off.svg index c5fd0c710..279a43584 100644 --- a/src/_icons/plant-off.svg +++ b/src/_icons/plant-off.svg @@ -6,8 +6,8 @@ unicode: "f17d" --- - - + + diff --git a/src/_icons/plant.svg b/src/_icons/plant.svg index 5601dc882..6fa2979e9 100644 --- a/src/_icons/plant.svg +++ b/src/_icons/plant.svg @@ -8,5 +8,5 @@ unicode: "ed50" - + diff --git a/src/_icons/play-card.svg b/src/_icons/play-card.svg index c0dacdb9b..d7a01075b 100644 --- a/src/_icons/play-card.svg +++ b/src/_icons/play-card.svg @@ -4,8 +4,8 @@ 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..5256590fc --- /dev/null +++ b/src/_icons/player-eject-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f68f" +--- + + + + diff --git a/src/_icons/player-eject.svg b/src/_icons/player-eject.svg index bf4f56285..8c93c4d3a 100644 --- a/src/_icons/player-eject.svg +++ b/src/_icons/player-eject.svg @@ -6,5 +6,5 @@ unicode: "efbc" --- - + diff --git a/src/_icons/player-pause-filled.svg b/src/_icons/player-pause-filled.svg new file mode 100644 index 000000000..de4ce13de --- /dev/null +++ b/src/_icons/player-pause-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f690" +--- + + + + diff --git a/src/_icons/player-pause.svg b/src/_icons/player-pause.svg index 8cdbac6fc..ab01d45df 100644 --- a/src/_icons/player-pause.svg +++ b/src/_icons/player-pause.svg @@ -5,6 +5,6 @@ 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..f3175c9f3 --- /dev/null +++ b/src/_icons/player-play-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..ce8c0287f --- /dev/null +++ b/src/_icons/player-record-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..6a99b44d9 --- /dev/null +++ b/src/_icons/player-skip-back-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f693" +--- + + + + diff --git a/src/_icons/player-skip-back.svg b/src/_icons/player-skip-back.svg index ec0c657a2..5d332676a 100644 --- a/src/_icons/player-skip-back.svg +++ b/src/_icons/player-skip-back.svg @@ -6,5 +6,5 @@ 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..ac56f4bf2 --- /dev/null +++ b/src/_icons/player-skip-forward-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f694" +--- + + + + diff --git a/src/_icons/player-skip-forward.svg b/src/_icons/player-skip-forward.svg index c816906fa..31c0c1a78 100644 --- a/src/_icons/player-skip-forward.svg +++ b/src/_icons/player-skip-forward.svg @@ -6,5 +6,5 @@ unicode: "ed49" --- - + diff --git a/src/_icons/player-stop-filled.svg b/src/_icons/player-stop-filled.svg new file mode 100644 index 000000000..2edae94b3 --- /dev/null +++ b/src/_icons/player-stop-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..c47847a0e --- /dev/null +++ b/src/_icons/player-track-next-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f696" +--- + + + + diff --git a/src/_icons/player-track-prev-filled.svg b/src/_icons/player-track-prev-filled.svg new file mode 100644 index 000000000..8208d0406 --- /dev/null +++ b/src/_icons/player-track-prev-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f697" +--- + + + + diff --git a/src/_icons/playlist.svg b/src/_icons/playlist.svg index 3b430507a..ec665f23b 100644 --- a/src/_icons/playlist.svg +++ b/src/_icons/playlist.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eec0" --- - + - + diff --git a/src/_icons/playstation-circle.svg b/src/_icons/playstation-circle.svg index 45e411a4e..ecb29dcd8 100644 --- a/src/_icons/playstation-circle.svg +++ b/src/_icons/playstation-circle.svg @@ -1,9 +1,10 @@ --- +tags: [controller, console, shape, joystick] category: Devices version: "1.80" unicode: "f2ad" --- - + diff --git a/src/_icons/playstation-square.svg b/src/_icons/playstation-square.svg index 4c9cd90db..06625bfbe 100644 --- a/src/_icons/playstation-square.svg +++ b/src/_icons/playstation-square.svg @@ -1,9 +1,10 @@ --- +tags: [controller, console, shape, joystick] category: Devices version: "1.80" unicode: "f2ae" --- - + diff --git a/src/_icons/playstation-triangle.svg b/src/_icons/playstation-triangle.svg index 91fb47f63..6fb3880aa 100644 --- a/src/_icons/playstation-triangle.svg +++ b/src/_icons/playstation-triangle.svg @@ -1,4 +1,5 @@ --- +tags: [controller, console, shape, joystick] category: Devices version: "1.80" unicode: "f2af" diff --git a/src/_icons/playstation-x.svg b/src/_icons/playstation-x.svg index fd256625a..fd90696a9 100644 --- a/src/_icons/playstation-x.svg +++ b/src/_icons/playstation-x.svg @@ -1,4 +1,5 @@ --- +tags: [controller, console, shape, joystick] category: Devices version: "1.80" unicode: "f2b0" diff --git a/src/_icons/plug-off.svg b/src/_icons/plug-off.svg index 9a4d3936f..41e856b30 100644 --- a/src/_icons/plug-off.svg +++ b/src/_icons/plug-off.svg @@ -1,5 +1,5 @@ --- -tags: [electricity, charger, socket, connection, discharge, end charging, charge off] +tags: [electricity, charger, socket, connection] category: Devices version: "1.66" unicode: "f180" diff --git a/src/_icons/plus.svg b/src/_icons/plus.svg index 281f8a3fa..8cd0be9cc 100644 --- a/src/_icons/plus.svg +++ b/src/_icons/plus.svg @@ -1,10 +1,10 @@ --- category: Math -tags: [add, create, new] +tags: [add, create, new, "+"] version: "1.0" unicode: "eb0b" --- - - + + diff --git a/src/_icons/png.svg b/src/_icons/png.svg new file mode 100644 index 000000000..8f9b0f780 --- /dev/null +++ b/src/_icons/png.svg @@ -0,0 +1,10 @@ +--- +tags: [file, format, type, document ] +version: "1.93" +unicode: "f3ad" +--- + + + + + diff --git a/src/_icons/podium-off.svg b/src/_icons/podium-off.svg new file mode 100644 index 000000000..8169b0ddf --- /dev/null +++ b/src/_icons/podium-off.svg @@ -0,0 +1,13 @@ +--- +tags: [speach, microphone, conference, politics, audience, presentation] +unicode: "f41b" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/point-filled.svg b/src/_icons/point-filled.svg new file mode 100644 index 000000000..1b833b712 --- /dev/null +++ b/src/_icons/point-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f698" +--- + + + 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/pointer.svg b/src/_icons/pointer.svg index 2c060934b..59af26c63 100644 --- a/src/_icons/pointer.svg +++ b/src/_icons/pointer.svg @@ -5,6 +5,5 @@ version: "1.76" unicode: "f265" --- - - + diff --git a/src/_icons/pokeball-off.svg b/src/_icons/pokeball-off.svg new file mode 100644 index 000000000..ac4df3336 --- /dev/null +++ b/src/_icons/pokeball-off.svg @@ -0,0 +1,12 @@ +--- +tags: [pokemon, go, catch, game, play] +category: Map +unicode: "f41c" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/pokeball.svg b/src/_icons/pokeball.svg index 7be705487..862a50aed 100644 --- a/src/_icons/pokeball.svg +++ b/src/_icons/pokeball.svg @@ -5,7 +5,8 @@ version: "1.39" unicode: "eec1" --- - - - + + + + diff --git a/src/_icons/poker-chip.svg b/src/_icons/poker-chip.svg new file mode 100644 index 000000000..59e62f1ac --- /dev/null +++ b/src/_icons/poker-chip.svg @@ -0,0 +1,17 @@ +--- +tags: [casino, game, money, gambling] +version: "1.102" +unicode: "f515" +--- + + + + + + + + + + + + diff --git a/src/_icons/polaroid.svg b/src/_icons/polaroid.svg index ce3f09fd6..e7c4ffa1c 100644 --- a/src/_icons/polaroid.svg +++ b/src/_icons/polaroid.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eec2" --- - - + + - + diff --git a/src/_icons/polygon-off.svg b/src/_icons/polygon-off.svg index f248d673e..da0c25246 100644 --- a/src/_icons/polygon-off.svg +++ b/src/_icons/polygon-off.svg @@ -5,10 +5,10 @@ version: "1.66" unicode: "f182" --- - - - - + + + + diff --git a/src/_icons/polygon.svg b/src/_icons/polygon.svg index 6d6c2a1d5..33b52dd82 100644 --- a/src/_icons/polygon.svg +++ b/src/_icons/polygon.svg @@ -5,10 +5,10 @@ version: "1.50" unicode: "efd0" --- - - - - + + + + diff --git a/src/_icons/poo.svg b/src/_icons/poo.svg index f2a4a72fc..6b376e5d4 100644 --- a/src/_icons/poo.svg +++ b/src/_icons/poo.svg @@ -7,5 +7,5 @@ unicode: "f258" - + diff --git a/src/_icons/pool-off.svg b/src/_icons/pool-off.svg new file mode 100644 index 000000000..6c575ce59 --- /dev/null +++ b/src/_icons/pool-off.svg @@ -0,0 +1,15 @@ +--- +tags: [swim, water, swimmer, holiday, swimming, vacation, relax, sport] +category: Sport +unicode: "f41d" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/pool.svg b/src/_icons/pool.svg index 145c3ba54..4a959b201 100644 --- a/src/_icons/pool.svg +++ b/src/_icons/pool.svg @@ -9,6 +9,6 @@ unicode: "ed91" - - + + diff --git a/src/_icons/power.svg b/src/_icons/power.svg index c00c2236a..6f8a8cf5f 100644 --- a/src/_icons/power.svg +++ b/src/_icons/power.svg @@ -6,5 +6,5 @@ unicode: "eb0d" --- - + diff --git a/src/_icons/pray.svg b/src/_icons/pray.svg index 5343ed869..5ef34c16d 100644 --- a/src/_icons/pray.svg +++ b/src/_icons/pray.svg @@ -4,6 +4,6 @@ version: "1.18" unicode: "ecbf" --- - + diff --git a/src/_icons/premium-rights.svg b/src/_icons/premium-rights.svg index 35bafc36f..207f25ce0 100644 --- a/src/_icons/premium-rights.svg +++ b/src/_icons/premium-rights.svg @@ -4,7 +4,7 @@ version: "1.49" unicode: "efbd" --- - + diff --git a/src/_icons/presentation.svg b/src/_icons/presentation.svg index 91d602e38..1b23eb4fe 100644 --- a/src/_icons/presentation.svg +++ b/src/_icons/presentation.svg @@ -5,9 +5,9 @@ version: "1.2" unicode: "eb70" --- - + - - + + diff --git a/src/_icons/printer.svg b/src/_icons/printer.svg index ad5cd9f93..ec2af1940 100644 --- a/src/_icons/printer.svg +++ b/src/_icons/printer.svg @@ -7,5 +7,5 @@ unicode: "eb0e" - + diff --git a/src/_icons/prompt.svg b/src/_icons/prompt.svg index 84eed5fba..e4fc77d0b 100644 --- a/src/_icons/prompt.svg +++ b/src/_icons/prompt.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eb0f" --- - - + + diff --git a/src/_icons/propeller-off.svg b/src/_icons/propeller-off.svg index ec37e747a..6f1cc7b1b 100644 --- a/src/_icons/propeller-off.svg +++ b/src/_icons/propeller-off.svg @@ -5,8 +5,8 @@ unicode: "f185" --- - + - + diff --git a/src/_icons/propeller.svg b/src/_icons/propeller.svg index 3ac625fd1..249a41100 100644 --- a/src/_icons/propeller.svg +++ b/src/_icons/propeller.svg @@ -4,8 +4,8 @@ version: "1.39" unicode: "eec4" --- - + - - + + diff --git a/src/_icons/pumpkin-scary.svg b/src/_icons/pumpkin-scary.svg new file mode 100644 index 000000000..6c663e10e --- /dev/null +++ b/src/_icons/pumpkin-scary.svg @@ -0,0 +1,12 @@ +--- +tags: [halloween, horror, spooky, costume, decoration] +unicode: "f587" +version: "1.108" +--- + + + + + + + diff --git a/src/_icons/puzzle-2.svg b/src/_icons/puzzle-2.svg index 1598bcc54..853f1d72f 100644 --- a/src/_icons/puzzle-2.svg +++ b/src/_icons/puzzle-2.svg @@ -4,7 +4,7 @@ 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..7e36aa37c --- /dev/null +++ b/src/_icons/puzzle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f699" +--- + + + diff --git a/src/_icons/qrcode-off.svg b/src/_icons/qrcode-off.svg new file mode 100644 index 000000000..1579b9c73 --- /dev/null +++ b/src/_icons/qrcode-off.svg @@ -0,0 +1,18 @@ +--- +tags: [scan, data] +category: Devices +unicode: "f41e" +version: "1.94" +--- + + + + + + + + + + + + diff --git a/src/_icons/qrcode.svg b/src/_icons/qrcode.svg index d02caff41..549f7a90b 100644 --- a/src/_icons/qrcode.svg +++ b/src/_icons/qrcode.svg @@ -5,16 +5,16 @@ version: "1.0" unicode: "eb11" --- - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/_icons/question-circle.svg b/src/_icons/question-circle.svg new file mode 100644 index 000000000..1dacb87ca --- /dev/null +++ b/src/_icons/question-circle.svg @@ -0,0 +1,9 @@ +--- +unicode: "f637" +version: "1.117" +--- + + + + + diff --git a/src/_icons/question-mark.svg b/src/_icons/question-mark.svg index 30114c16c..2d5e05d98 100644 --- a/src/_icons/question-mark.svg +++ b/src/_icons/question-mark.svg @@ -1,9 +1,9 @@ --- -tags: [sign, symbol, ask, sentence, word, letters] +tags: [sign, symbol, ask, sentence, word, letters, "?"] version: "1.16" unicode: "ec9d" --- - + diff --git a/src/_icons/radar-2.svg b/src/_icons/radar-2.svg index 739173292..8f2e98b28 100644 --- a/src/_icons/radar-2.svg +++ b/src/_icons/radar-2.svg @@ -5,7 +5,7 @@ version: "1.54" unicode: "f016" --- - + diff --git a/src/_icons/radar-off.svg b/src/_icons/radar-off.svg new file mode 100644 index 000000000..4d8bbc2fe --- /dev/null +++ b/src/_icons/radar-off.svg @@ -0,0 +1,12 @@ +--- +tags: [location, navigation, gps, find, signal, technology, submarine] +category: Map +unicode: "f41f" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/radar.svg b/src/_icons/radar.svg index 3f47b6b08..4f8c33b9f 100644 --- a/src/_icons/radar.svg +++ b/src/_icons/radar.svg @@ -6,6 +6,6 @@ unicode: "f017" --- - - + + diff --git a/src/_icons/radio-off.svg b/src/_icons/radio-off.svg new file mode 100644 index 000000000..82d6acda4 --- /dev/null +++ b/src/_icons/radio-off.svg @@ -0,0 +1,13 @@ +--- +tags: [music, news, sound, broadcost, communication, station] +category: Media +unicode: "f420" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/radioactive-off.svg b/src/_icons/radioactive-off.svg index 48b114078..e9b553534 100644 --- a/src/_icons/radioactive-off.svg +++ b/src/_icons/radioactive-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f189" --- - + diff --git a/src/_icons/rainbow-off.svg b/src/_icons/rainbow-off.svg index 68863c419..1db38b1c0 100644 --- a/src/_icons/rainbow-off.svg +++ b/src/_icons/rainbow-off.svg @@ -5,8 +5,8 @@ version: "1.66" unicode: "f18a" --- - - + + diff --git a/src/_icons/rating-12-plus.svg b/src/_icons/rating-12-plus.svg index 9c053902c..32b367cf1 100644 --- a/src/_icons/rating-12-plus.svg +++ b/src/_icons/rating-12-plus.svg @@ -5,7 +5,7 @@ category: Symbols unicode: "f266" --- - + diff --git a/src/_icons/rating-14-plus.svg b/src/_icons/rating-14-plus.svg index 7f5d8e0bb..03e551f39 100644 --- a/src/_icons/rating-14-plus.svg +++ b/src/_icons/rating-14-plus.svg @@ -5,7 +5,7 @@ category: Symbols unicode: "f267" --- - + diff --git a/src/_icons/rating-16-plus.svg b/src/_icons/rating-16-plus.svg index 59279392f..18f4682ae 100644 --- a/src/_icons/rating-16-plus.svg +++ b/src/_icons/rating-16-plus.svg @@ -5,8 +5,8 @@ category: Symbols unicode: "f268" --- - - + + diff --git a/src/_icons/rating-18-plus.svg b/src/_icons/rating-18-plus.svg index e2310b593..436f3bd07 100644 --- a/src/_icons/rating-18-plus.svg +++ b/src/_icons/rating-18-plus.svg @@ -5,9 +5,9 @@ category: Symbols unicode: "f269" --- - - - + + + diff --git a/src/_icons/rating-21-plus.svg b/src/_icons/rating-21-plus.svg index 14f188e0f..19fee7859 100644 --- a/src/_icons/rating-21-plus.svg +++ b/src/_icons/rating-21-plus.svg @@ -5,7 +5,7 @@ category: Symbols unicode: "f26a" --- - + diff --git a/src/_icons/razor-electric.svg b/src/_icons/razor-electric.svg new file mode 100644 index 000000000..b746942a8 --- /dev/null +++ b/src/_icons/razor-electric.svg @@ -0,0 +1,13 @@ +--- +tags: [shaver, barber, grooming, beard, moustache] +unicode: "f4b4" +version: "1.97" +--- + + + + + + + + diff --git a/src/_icons/razor.svg b/src/_icons/razor.svg new file mode 100644 index 000000000..bfd7827fd --- /dev/null +++ b/src/_icons/razor.svg @@ -0,0 +1,10 @@ +--- +tags: [shaver, barber, grooming, beard, moustache] +unicode: "f4b5" +version: "1.97" +--- + + + + + diff --git a/src/_icons/receipt-off.svg b/src/_icons/receipt-off.svg index 4b6685cc1..c55d6f4a4 100644 --- a/src/_icons/receipt-off.svg +++ b/src/_icons/receipt-off.svg @@ -1,14 +1,14 @@ --- +tags: [bill, restaurant, shop, price, pay, money, total, tax] category: Document -tags: [bill, restaurant, shop, price, pay, money, total, tax, free] version: "1.38" unicode: "edfb" --- - - - - - + + + + + diff --git a/src/_icons/receipt-tax.svg b/src/_icons/receipt-tax.svg index ccb5aaf93..aec46ad80 100644 --- a/src/_icons/receipt-tax.svg +++ b/src/_icons/receipt-tax.svg @@ -5,7 +5,7 @@ version: "1.5" unicode: "edbd" --- - + diff --git a/src/_icons/record-mail-off.svg b/src/_icons/record-mail-off.svg index dea1311e4..30345885c 100644 --- a/src/_icons/record-mail-off.svg +++ b/src/_icons/record-mail-off.svg @@ -4,7 +4,7 @@ version: "1.66" unicode: "f18b" --- - + diff --git a/src/_icons/record-mail.svg b/src/_icons/record-mail.svg index 989842459..d164fc8f2 100644 --- a/src/_icons/record-mail.svg +++ b/src/_icons/record-mail.svg @@ -4,7 +4,7 @@ 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..0a29c60a3 --- /dev/null +++ b/src/_icons/rectangle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..5c3d0d37a --- /dev/null +++ b/src/_icons/rectangle-vertical-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..56090553a 100644 --- a/src/_icons/recycle-off.svg +++ b/src/_icons/recycle-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f18c" --- - + diff --git a/src/_icons/recycle.svg b/src/_icons/recycle.svg index 6c8266807..119afc001 100644 --- a/src/_icons/recycle.svg +++ b/src/_icons/recycle.svg @@ -5,7 +5,10 @@ version: "1.3" unicode: "eb9b" --- - - - + + + + + + diff --git a/src/_icons/refresh-alert.svg b/src/_icons/refresh-alert.svg index 70e897694..a6e639dee 100644 --- a/src/_icons/refresh-alert.svg +++ b/src/_icons/refresh-alert.svg @@ -7,6 +7,6 @@ unicode: "ed57" - - + + diff --git a/src/_icons/refresh-dot.svg b/src/_icons/refresh-dot.svg index a36a8568d..38b2a5ea9 100644 --- a/src/_icons/refresh-dot.svg +++ b/src/_icons/refresh-dot.svg @@ -6,5 +6,5 @@ unicode: "efbf" - + diff --git a/src/_icons/regex-off.svg b/src/_icons/regex-off.svg new file mode 100644 index 000000000..cc7ff980e --- /dev/null +++ b/src/_icons/regex-off.svg @@ -0,0 +1,16 @@ +--- +tags: [regular, expression, code, replace, programming, coding, variables] +category: Text +unicode: "f421" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/regex.svg b/src/_icons/regex.svg new file mode 100644 index 000000000..c5e86d5df --- /dev/null +++ b/src/_icons/regex.svg @@ -0,0 +1,15 @@ +--- +tags: [regular, expression, code, replace, programming, coding, variables] +category: Text +version: "1.85" +unicode: "f31f" +--- + + + + + + + + + diff --git a/src/_icons/registered.svg b/src/_icons/registered.svg index 2ee7d3596..242baa329 100644 --- a/src/_icons/registered.svg +++ b/src/_icons/registered.svg @@ -4,7 +4,7 @@ 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..189594f3e 100644 --- a/src/_icons/relation-many-to-many.svg +++ b/src/_icons/relation-many-to-many.svg @@ -5,9 +5,9 @@ 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..886f71ba6 100644 --- a/src/_icons/relation-one-to-many.svg +++ b/src/_icons/relation-one-to-many.svg @@ -5,9 +5,9 @@ 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..da49ee4fa 100644 --- a/src/_icons/relation-one-to-one.svg +++ b/src/_icons/relation-one-to-one.svg @@ -5,9 +5,9 @@ version: "1.33" unicode: "ed81" --- - + - - + + diff --git a/src/_icons/reload.svg b/src/_icons/reload.svg new file mode 100644 index 000000000..22126fad4 --- /dev/null +++ b/src/_icons/reload.svg @@ -0,0 +1,10 @@ +--- +tags: [refresh, repeat, update, sync, loading ] +category: Arrows +version: "1.93" +unicode: "f3ae" +--- + + + + diff --git a/src/_icons/replace-filled.svg b/src/_icons/replace-filled.svg new file mode 100644 index 000000000..c9d9115ed --- /dev/null +++ b/src/_icons/replace-filled.svg @@ -0,0 +1,11 @@ +--- +category: Filled +version: "2.0" +unicode: "f69c" +--- + + + + + + diff --git a/src/_icons/replace-off.svg b/src/_icons/replace-off.svg new file mode 100644 index 000000000..e64179347 --- /dev/null +++ b/src/_icons/replace-off.svg @@ -0,0 +1,12 @@ +--- +tags: [change, place, position, move, exchange] +unicode: "f422" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/replace.svg b/src/_icons/replace.svg index 08fe41cb0..88c494670 100644 --- a/src/_icons/replace.svg +++ b/src/_icons/replace.svg @@ -4,8 +4,8 @@ version: "1.5" unicode: "ebc7" --- - - + + diff --git a/src/_icons/report-analytics.svg b/src/_icons/report-analytics.svg index 933319c7c..01a39e782 100644 --- a/src/_icons/report-analytics.svg +++ b/src/_icons/report-analytics.svg @@ -6,7 +6,7 @@ unicode: "eecb" --- - + diff --git a/src/_icons/report-medical.svg b/src/_icons/report-medical.svg index 57942c54b..ad4e0a0d8 100644 --- a/src/_icons/report-medical.svg +++ b/src/_icons/report-medical.svg @@ -6,7 +6,7 @@ unicode: "eecc" --- - - - + + + diff --git a/src/_icons/report-money.svg b/src/_icons/report-money.svg index 9832d16cb..1bc0e700d 100644 --- a/src/_icons/report-money.svg +++ b/src/_icons/report-money.svg @@ -6,7 +6,7 @@ unicode: "eecd" --- - + diff --git a/src/_icons/report-off.svg b/src/_icons/report-off.svg index 103434ce2..84e68de0d 100644 --- a/src/_icons/report-off.svg +++ b/src/_icons/report-off.svg @@ -5,7 +5,7 @@ version: "1.66" unicode: "f18f" --- - + diff --git a/src/_icons/report-search.svg b/src/_icons/report-search.svg index 388288093..7da2dff7e 100644 --- a/src/_icons/report-search.svg +++ b/src/_icons/report-search.svg @@ -7,9 +7,9 @@ unicode: "ef84" - + - + diff --git a/src/_icons/report.svg b/src/_icons/report.svg index 2e69f29f4..c0a595d9b 100644 --- a/src/_icons/report.svg +++ b/src/_icons/report.svg @@ -8,8 +8,8 @@ unicode: "eece" - - + + diff --git a/src/_icons/ribbon-health.svg b/src/_icons/ribbon-health.svg new file mode 100644 index 000000000..2f0e6bae5 --- /dev/null +++ b/src/_icons/ribbon-health.svg @@ -0,0 +1,9 @@ +--- +tags: [medical, care, heatlh, medic, healthcare] +category: Symbols +unicode: "f58e" +version: "1.109" +--- + + + diff --git a/src/_icons/robot-off.svg b/src/_icons/robot-off.svg index 9b70c1bc5..072f08bb4 100644 --- a/src/_icons/robot-off.svg +++ b/src/_icons/robot-off.svg @@ -6,7 +6,7 @@ unicode: "f192" - + diff --git a/src/_icons/rocket-off.svg b/src/_icons/rocket-off.svg index 7b7c52fc2..39a988f32 100644 --- a/src/_icons/rocket-off.svg +++ b/src/_icons/rocket-off.svg @@ -5,8 +5,8 @@ version: "1.66" unicode: "f193" --- - + - + diff --git a/src/_icons/rocket.svg b/src/_icons/rocket.svg index b87463b5b..701c88b2c 100644 --- a/src/_icons/rocket.svg +++ b/src/_icons/rocket.svg @@ -7,5 +7,5 @@ unicode: "ec45" - + diff --git a/src/_icons/roller-skating.svg b/src/_icons/roller-skating.svg index 4865a4abc..ffe05f272 100644 --- a/src/_icons/roller-skating.svg +++ b/src/_icons/roller-skating.svg @@ -5,7 +5,7 @@ version: "1.50" unicode: "efd1" --- - - - + + + diff --git a/src/_icons/rollercoaster-off.svg b/src/_icons/rollercoaster-off.svg new file mode 100644 index 000000000..dcfa8e3a0 --- /dev/null +++ b/src/_icons/rollercoaster-off.svg @@ -0,0 +1,16 @@ +--- +tags: [adrenaline, height, speed, funfair, fun, attraction, extreme] +category: Vehicles +unicode: "f423" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/rosette-filled.svg b/src/_icons/rosette-filled.svg new file mode 100644 index 000000000..18eeb3894 --- /dev/null +++ b/src/_icons/rosette-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f69d" +--- + + + diff --git a/src/_icons/rosette-number-0.svg b/src/_icons/rosette-number-0.svg new file mode 100644 index 000000000..871411f9e --- /dev/null +++ b/src/_icons/rosette-number-0.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f58f" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-1.svg b/src/_icons/rosette-number-1.svg new file mode 100644 index 000000000..2d67e758c --- /dev/null +++ b/src/_icons/rosette-number-1.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f590" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-2.svg b/src/_icons/rosette-number-2.svg new file mode 100644 index 000000000..db39152b4 --- /dev/null +++ b/src/_icons/rosette-number-2.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f591" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-3.svg b/src/_icons/rosette-number-3.svg new file mode 100644 index 000000000..16d7aabe6 --- /dev/null +++ b/src/_icons/rosette-number-3.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f592" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-4.svg b/src/_icons/rosette-number-4.svg new file mode 100644 index 000000000..e342afb48 --- /dev/null +++ b/src/_icons/rosette-number-4.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f593" +version: "1.109" +--- + + + + + diff --git a/src/_icons/rosette-number-5.svg b/src/_icons/rosette-number-5.svg new file mode 100644 index 000000000..8d2d0df9b --- /dev/null +++ b/src/_icons/rosette-number-5.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f594" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-6.svg b/src/_icons/rosette-number-6.svg new file mode 100644 index 000000000..b1f25273b --- /dev/null +++ b/src/_icons/rosette-number-6.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f595" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-7.svg b/src/_icons/rosette-number-7.svg new file mode 100644 index 000000000..7387636b6 --- /dev/null +++ b/src/_icons/rosette-number-7.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f596" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-8.svg b/src/_icons/rosette-number-8.svg new file mode 100644 index 000000000..ad6704d77 --- /dev/null +++ b/src/_icons/rosette-number-8.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f597" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette-number-9.svg b/src/_icons/rosette-number-9.svg new file mode 100644 index 000000000..578cdea8a --- /dev/null +++ b/src/_icons/rosette-number-9.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f598" +version: "1.109" +--- + + + + diff --git a/src/_icons/rosette.svg b/src/_icons/rosette.svg new file mode 100644 index 000000000..c69c04c95 --- /dev/null +++ b/src/_icons/rosette.svg @@ -0,0 +1,9 @@ +--- +tags: [shape, badge, star, medal] +category: Shapes +unicode: "f599" +version: "1.109" +--- + + + diff --git a/src/_icons/rotate-2.svg b/src/_icons/rotate-2.svg index 0a38821f2..d4de0dd9e 100644 --- a/src/_icons/rotate-2.svg +++ b/src/_icons/rotate-2.svg @@ -6,9 +6,9 @@ unicode: "ebb4" --- - - - - - + + + + + diff --git a/src/_icons/rotate-clockwise-2.svg b/src/_icons/rotate-clockwise-2.svg index ba38a1c0e..af3eb33c5 100644 --- a/src/_icons/rotate-clockwise-2.svg +++ b/src/_icons/rotate-clockwise-2.svg @@ -6,9 +6,9 @@ unicode: "ebb5" --- - - - - - + + + + + diff --git a/src/_icons/rotate-dot.svg b/src/_icons/rotate-dot.svg index 5df60756d..3796399ac 100644 --- a/src/_icons/rotate-dot.svg +++ b/src/_icons/rotate-dot.svg @@ -6,5 +6,5 @@ unicode: "efe5" --- - + diff --git a/src/_icons/rotate-rectangle.svg b/src/_icons/rotate-rectangle.svg index 164255e4e..5bf0172a7 100644 --- a/src/_icons/rotate-rectangle.svg +++ b/src/_icons/rotate-rectangle.svg @@ -5,5 +5,6 @@ version: "1.8" unicode: "ec15" --- - + + diff --git a/src/_icons/route-2.svg b/src/_icons/route-2.svg new file mode 100644 index 000000000..806b26e17 --- /dev/null +++ b/src/_icons/route-2.svg @@ -0,0 +1,12 @@ +--- +tags: [path, navigation, map] +unicode: "f4b6" +version: "1.97" +--- + + + + + + + diff --git a/src/_icons/route-off.svg b/src/_icons/route-off.svg index 5580f126a..6f11d6399 100644 --- a/src/_icons/route-off.svg +++ b/src/_icons/route-off.svg @@ -5,8 +5,8 @@ version: "1.66" unicode: "f194" --- - - + + diff --git a/src/_icons/route.svg b/src/_icons/route.svg index ea2ef38df..275d16e87 100644 --- a/src/_icons/route.svg +++ b/src/_icons/route.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eb17" --- - - + + diff --git a/src/_icons/router-off.svg b/src/_icons/router-off.svg new file mode 100644 index 000000000..3341fc432 --- /dev/null +++ b/src/_icons/router-off.svg @@ -0,0 +1,14 @@ +--- +tags: [wifi, device, wireless, signal, station, cast] +category: Devices +unicode: "f424" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/router.svg b/src/_icons/router.svg index 092c280b4..27e0ea4c0 100644 --- a/src/_icons/router.svg +++ b/src/_icons/router.svg @@ -5,10 +5,10 @@ version: "1.0" unicode: "eb18" --- - - - - + + + + diff --git a/src/_icons/row-insert-bottom.svg b/src/_icons/row-insert-bottom.svg index 4c6c675a6..3bea649e3 100644 --- a/src/_icons/row-insert-bottom.svg +++ b/src/_icons/row-insert-bottom.svg @@ -6,6 +6,6 @@ unicode: "eed0" --- - - + + diff --git a/src/_icons/row-insert-top.svg b/src/_icons/row-insert-top.svg index 37fb8f8da..fac10dc7e 100644 --- a/src/_icons/row-insert-top.svg +++ b/src/_icons/row-insert-top.svg @@ -7,5 +7,5 @@ unicode: "eed1" - + diff --git a/src/_icons/rss.svg b/src/_icons/rss.svg index 4db059cff..0f7e8644d 100644 --- a/src/_icons/rss.svg +++ b/src/_icons/rss.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "eb19" --- - + diff --git a/src/_icons/rubber-stamp-off.svg b/src/_icons/rubber-stamp-off.svg new file mode 100644 index 000000000..5e23d30d5 --- /dev/null +++ b/src/_icons/rubber-stamp-off.svg @@ -0,0 +1,12 @@ +--- +tags: [rubber, stamp, seal, letter, mail, document, signature] +category: Document +unicode: "f5aa" +version: "1.110" +--- + + + + + + diff --git a/src/_icons/rubber-stamp.svg b/src/_icons/rubber-stamp.svg new file mode 100644 index 000000000..299ed5ade --- /dev/null +++ b/src/_icons/rubber-stamp.svg @@ -0,0 +1,10 @@ +--- +tags: [rubber, stamp, seal, letter, mail, document, signature] +category: Document +unicode: "f5ab" +version: "1.110" +--- + + + + \ No newline at end of file diff --git a/src/_icons/ruler-off.svg b/src/_icons/ruler-off.svg index 88f7fa7a4..df99d9e74 100644 --- a/src/_icons/ruler-off.svg +++ b/src/_icons/ruler-off.svg @@ -4,7 +4,7 @@ version: "1.66" unicode: "f196" --- - + diff --git a/src/_icons/ruler.svg b/src/_icons/ruler.svg index 03f955583..f3d92dab4 100644 --- a/src/_icons/ruler.svg +++ b/src/_icons/ruler.svg @@ -5,10 +5,10 @@ unicode: "eb1a" --- - - - - - - + + + + + + diff --git a/src/_icons/run.svg b/src/_icons/run.svg index 4b38c2a8b..bfa274bc3 100644 --- a/src/_icons/run.svg +++ b/src/_icons/run.svg @@ -5,7 +5,7 @@ version: "1.14" unicode: "ec82" --- - + diff --git a/src/_icons/s-turn-down.svg b/src/_icons/s-turn-down.svg new file mode 100644 index 000000000..a688bae3e --- /dev/null +++ b/src/_icons/s-turn-down.svg @@ -0,0 +1,11 @@ +--- +tags: [arrow, direction, bottom, south] +category: Arrows +version: "1.102" +unicode: "f516" +--- + + + + + diff --git a/src/_icons/s-turn-left.svg b/src/_icons/s-turn-left.svg new file mode 100644 index 000000000..a3fc1216d --- /dev/null +++ b/src/_icons/s-turn-left.svg @@ -0,0 +1,11 @@ +--- +tags: [arrow, direction, west] +category: Arrows +version: "1.102" +unicode: "f517" +--- + + + + + diff --git a/src/_icons/s-turn-right.svg b/src/_icons/s-turn-right.svg new file mode 100644 index 000000000..59d72b3b3 --- /dev/null +++ b/src/_icons/s-turn-right.svg @@ -0,0 +1,11 @@ +--- +tags: [arrow, direction, east] +category: Arrows +version: "1.102" +unicode: "f518" +--- + + + + + diff --git a/src/_icons/s-turn-up.svg b/src/_icons/s-turn-up.svg new file mode 100644 index 000000000..a533a1e85 --- /dev/null +++ b/src/_icons/s-turn-up.svg @@ -0,0 +1,11 @@ +--- +tags: [arrow, direction, top, north] +category: Arrows +version: "1.102" +unicode: "f519" +--- + + + + + diff --git a/src/_icons/sailboat-2.svg b/src/_icons/sailboat-2.svg new file mode 100644 index 000000000..2faa2b703 --- /dev/null +++ b/src/_icons/sailboat-2.svg @@ -0,0 +1,12 @@ +--- +category: Vehicles +unicode: "f5f7" +version: "1.113" +--- + + + + + + + diff --git a/src/_icons/sailboat-off.svg b/src/_icons/sailboat-off.svg new file mode 100644 index 000000000..3687f377d --- /dev/null +++ b/src/_icons/sailboat-off.svg @@ -0,0 +1,13 @@ +--- +tags: [sailor, journey, sea, lake, ocean, river] +category: Vehicles +unicode: "f425" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/sailboat.svg b/src/_icons/sailboat.svg index 1e1ea3695..91cc653ee 100644 --- a/src/_icons/sailboat.svg +++ b/src/_icons/sailboat.svg @@ -8,5 +8,5 @@ unicode: "ec83" - + diff --git a/src/_icons/salad.svg b/src/_icons/salad.svg new file mode 100644 index 000000000..53a1fb21b --- /dev/null +++ b/src/_icons/salad.svg @@ -0,0 +1,13 @@ +--- +tags: [food, vegetable, vegan, healthy] +category: Food +unicode: "f50a" +version: "1.101" +--- + + + + + + + diff --git a/src/_icons/satellite.svg b/src/_icons/satellite.svg index 4a1d850ad..1dd32c659 100644 --- a/src/_icons/satellite.svg +++ b/src/_icons/satellite.svg @@ -8,7 +8,7 @@ unicode: "eed3" - + diff --git a/src/_icons/scale-off.svg b/src/_icons/scale-off.svg index 84eb276e3..9677fc004 100644 --- a/src/_icons/scale-off.svg +++ b/src/_icons/scale-off.svg @@ -8,6 +8,6 @@ unicode: "f198" - + diff --git a/src/_icons/scale-outline-off.svg b/src/_icons/scale-outline-off.svg index bffffb5ad..8c46aeea7 100644 --- a/src/_icons/scale-outline-off.svg +++ b/src/_icons/scale-outline-off.svg @@ -5,6 +5,6 @@ unicode: "f199" --- - + diff --git a/src/_icons/scale-outline.svg b/src/_icons/scale-outline.svg index a39b245fe..78d58f93d 100644 --- a/src/_icons/scale-outline.svg +++ b/src/_icons/scale-outline.svg @@ -4,6 +4,6 @@ version: "1.43" unicode: "ef53" --- - - + + diff --git a/src/_icons/scale.svg b/src/_icons/scale.svg index 329609dad..5d4dc589c 100644 --- a/src/_icons/scale.svg +++ b/src/_icons/scale.svg @@ -4,9 +4,9 @@ version: "1.1" unicode: "ebc2" --- - + - + diff --git a/src/_icons/scan.svg b/src/_icons/scan.svg index a30ea4f15..ed374cbaa 100644 --- a/src/_icons/scan.svg +++ b/src/_icons/scan.svg @@ -8,5 +8,5 @@ unicode: "ebc8" - + diff --git a/src/_icons/schema-off.svg b/src/_icons/schema-off.svg new file mode 100644 index 000000000..3844c72a2 --- /dev/null +++ b/src/_icons/schema-off.svg @@ -0,0 +1,16 @@ +--- +tags: [graph, data, infography] +category: Database +unicode: "f426" +version: "1.94" +--- + + + + + + + + + + diff --git a/src/_icons/school-bell.svg b/src/_icons/school-bell.svg new file mode 100644 index 000000000..4dfcdc502 --- /dev/null +++ b/src/_icons/school-bell.svg @@ -0,0 +1,9 @@ +--- +unicode: "f64a" +version: "1.118" +--- + + + + + diff --git a/src/_icons/scissors-off.svg b/src/_icons/scissors-off.svg index 10554ab51..91d644b3f 100644 --- a/src/_icons/scissors-off.svg +++ b/src/_icons/scissors-off.svg @@ -6,7 +6,7 @@ unicode: "f19b" --- - + diff --git a/src/_icons/scissors.svg b/src/_icons/scissors.svg index 3739538a5..aa7d127f7 100644 --- a/src/_icons/scissors.svg +++ b/src/_icons/scissors.svg @@ -5,8 +5,8 @@ version: "1.1" unicode: "eb1b" --- - - - - + + + + diff --git a/src/_icons/scooter-electric.svg b/src/_icons/scooter-electric.svg index 5008ca4a7..368ab6ffc 100644 --- a/src/_icons/scooter-electric.svg +++ b/src/_icons/scooter-electric.svg @@ -5,8 +5,8 @@ version: "1.12" unicode: "ecc1" --- - - + + diff --git a/src/_icons/scooter.svg b/src/_icons/scooter.svg index 34e2ef2ce..492b77f47 100644 --- a/src/_icons/scooter.svg +++ b/src/_icons/scooter.svg @@ -5,7 +5,7 @@ version: "1.12" unicode: "ec6c" --- - - + + diff --git a/src/_icons/screen-share-off.svg b/src/_icons/screen-share-off.svg index b71ba59ec..6ebb4a4fb 100644 --- a/src/_icons/screen-share-off.svg +++ b/src/_icons/screen-share-off.svg @@ -1,13 +1,13 @@ --- -category: Devices tags: [monitor, stream, tv, mirroring, cast, online] +category: Devices version: "1.24" unicode: "ed17" --- - - - + + + diff --git a/src/_icons/screen-share.svg b/src/_icons/screen-share.svg index 861ca3afa..32b11d4c5 100644 --- a/src/_icons/screen-share.svg +++ b/src/_icons/screen-share.svg @@ -6,9 +6,9 @@ unicode: "ed18" --- - - - + + + diff --git a/src/_icons/scribble-off.svg b/src/_icons/scribble-off.svg new file mode 100644 index 000000000..633ba55d4 --- /dev/null +++ b/src/_icons/scribble-off.svg @@ -0,0 +1,9 @@ +--- +tags: [kid, doodle, draw, drawing] +unicode: "f427" +version: "1.94" +--- + + + + diff --git a/src/_icons/script-minus.svg b/src/_icons/script-minus.svg index 9f395741f..c7de6af82 100644 --- a/src/_icons/script-minus.svg +++ b/src/_icons/script-minus.svg @@ -1,4 +1,5 @@ --- +tags: [code, programming, coding, remove, delete] category: Document version: "1.82" unicode: "f2d7" diff --git a/src/_icons/script-plus.svg b/src/_icons/script-plus.svg index eb2541291..456a35f97 100644 --- a/src/_icons/script-plus.svg +++ b/src/_icons/script-plus.svg @@ -1,4 +1,5 @@ --- +tags: [code, programming, coding, add, new] category: Document version: "1.82" unicode: "f2d8" diff --git a/src/_icons/script-x.svg b/src/_icons/script-x.svg index d0004dbe6..824b5b308 100644 --- a/src/_icons/script-x.svg +++ b/src/_icons/script-x.svg @@ -1,4 +1,5 @@ --- +tags: [code, programming, coding, remove, delete] category: Document version: "1.82" unicode: "f2d9" diff --git a/src/_icons/script.svg b/src/_icons/script.svg index 84bbc959f..95ff77a92 100644 --- a/src/_icons/script.svg +++ b/src/_icons/script.svg @@ -1,4 +1,5 @@ --- +tags: [code, programming, coding, document, development] category: Document version: "1.82" unicode: "f2da" diff --git a/src/_icons/scuba-mask-off.svg b/src/_icons/scuba-mask-off.svg new file mode 100644 index 000000000..6357c462f --- /dev/null +++ b/src/_icons/scuba-mask-off.svg @@ -0,0 +1,11 @@ +--- +tags: [dive, diving, water, holiday, underwater, snorkeling, equipment] +category: Sport +unicode: "f428" +version: "1.94" +--- + + + + + diff --git a/src/_icons/sdk.svg b/src/_icons/sdk.svg new file mode 100644 index 000000000..9758b866f --- /dev/null +++ b/src/_icons/sdk.svg @@ -0,0 +1,12 @@ +--- +tags: [development, programming, programmer, web, app] +version: "1.93" +unicode: "f3af" +--- + + + + + + + diff --git a/src/_icons/search.svg b/src/_icons/search.svg index 571530708..c8b880e2d 100644 --- a/src/_icons/search.svg +++ b/src/_icons/search.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eb1c" --- - - + + diff --git a/src/_icons/section-sign.svg b/src/_icons/section-sign.svg index c6ff9d5a9..306dad55c 100644 --- a/src/_icons/section-sign.svg +++ b/src/_icons/section-sign.svg @@ -4,7 +4,7 @@ version: "1.54" unicode: "f019" --- - - - + + + diff --git a/src/_icons/section.svg b/src/_icons/section.svg index b90f507f9..d2ec6626d 100644 --- a/src/_icons/section.svg +++ b/src/_icons/section.svg @@ -15,5 +15,5 @@ unicode: "eed5" - + diff --git a/src/_icons/seeding.svg b/src/_icons/seeding.svg index 076cbfa6e..ec614cfe5 100644 --- a/src/_icons/seeding.svg +++ b/src/_icons/seeding.svg @@ -7,5 +7,5 @@ unicode: "ed51" - + diff --git a/src/_icons/select.svg b/src/_icons/select.svg index 05450df6b..aa18b9cbe 100644 --- a/src/_icons/select.svg +++ b/src/_icons/select.svg @@ -4,6 +4,6 @@ version: "1.16" unicode: "ec9e" --- - + diff --git a/src/_icons/selector.svg b/src/_icons/selector.svg index 4161ec27b..029bd93cb 100644 --- a/src/_icons/selector.svg +++ b/src/_icons/selector.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eb1d" --- - - + + diff --git a/src/_icons/send-off.svg b/src/_icons/send-off.svg new file mode 100644 index 000000000..1af9aced5 --- /dev/null +++ b/src/_icons/send-off.svg @@ -0,0 +1,11 @@ +--- +tags: [message, mail, email, gmail, paper, airplane, aeroplane] +category: Communication +unicode: "f429" +version: "1.94" +--- + + + + + diff --git a/src/_icons/send.svg b/src/_icons/send.svg index 2a75aa247..375323dc9 100644 --- a/src/_icons/send.svg +++ b/src/_icons/send.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eb1e" --- - + diff --git a/src/_icons/seo.svg b/src/_icons/seo.svg index 6f7e2f005..9c4328347 100644 --- a/src/_icons/seo.svg +++ b/src/_icons/seo.svg @@ -7,5 +7,5 @@ unicode: "f26b" - + diff --git a/src/_icons/separator-horizontal.svg b/src/_icons/separator-horizontal.svg index 634eec66f..da115acad 100644 --- a/src/_icons/separator-horizontal.svg +++ b/src/_icons/separator-horizontal.svg @@ -5,7 +5,7 @@ version: "1.13" unicode: "ec79" --- - - - + + + diff --git a/src/_icons/separator-vertical.svg b/src/_icons/separator-vertical.svg index 7afb20064..f186d3b33 100644 --- a/src/_icons/separator-vertical.svg +++ b/src/_icons/separator-vertical.svg @@ -5,7 +5,7 @@ version: "1.13" unicode: "ec7a" --- - - - + + + diff --git a/src/_icons/separator.svg b/src/_icons/separator.svg index 912a6c0d5..299006fdd 100644 --- a/src/_icons/separator.svg +++ b/src/_icons/separator.svg @@ -5,7 +5,7 @@ version: "1.6" unicode: "ebda" --- - - - + + + diff --git a/src/_icons/server-2.svg b/src/_icons/server-2.svg index b8f5b4d20..dd1537ac4 100644 --- a/src/_icons/server-2.svg +++ b/src/_icons/server-2.svg @@ -5,10 +5,10 @@ version: "1.59" unicode: "f07c" --- - - - - + + + + diff --git a/src/_icons/server-bolt.svg b/src/_icons/server-bolt.svg new file mode 100644 index 000000000..570346ea6 --- /dev/null +++ b/src/_icons/server-bolt.svg @@ -0,0 +1,13 @@ +--- +tags: [data, database, storage, lighting, power, energy ] +category: Devices +version: "1.85" +unicode: "f320" +--- + + + + + + + diff --git a/src/_icons/server-cog.svg b/src/_icons/server-cog.svg new file mode 100644 index 000000000..6834fb35e --- /dev/null +++ b/src/_icons/server-cog.svg @@ -0,0 +1,19 @@ +--- +tags: [settings, storage, data, database] +category: Devices +version: "1.85" +unicode: "f321" +--- + + + + + + + + + + + + + diff --git a/src/_icons/server.svg b/src/_icons/server.svg index 36accf7ab..e57053ffc 100644 --- a/src/_icons/server.svg +++ b/src/_icons/server.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eb1f" --- - - - - + + + + diff --git a/src/_icons/settings-2.svg b/src/_icons/settings-2.svg new file mode 100644 index 000000000..17b338516 --- /dev/null +++ b/src/_icons/settings-2.svg @@ -0,0 +1,9 @@ +--- +tags: [cog, edit, gear, preferences, tools] +unicode: "f5ac" +version: "1.110" +--- + + + + diff --git a/src/_icons/settings-filled.svg b/src/_icons/settings-filled.svg new file mode 100644 index 000000000..72cadb805 --- /dev/null +++ b/src/_icons/settings-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f69e" +--- + + + diff --git a/src/_icons/settings.svg b/src/_icons/settings.svg index 0c703f232..74b6c4be4 100644 --- a/src/_icons/settings.svg +++ b/src/_icons/settings.svg @@ -6,5 +6,5 @@ unicode: "eb20" --- - + diff --git a/src/_icons/shadow-off.svg b/src/_icons/shadow-off.svg index d78272ab7..cc4a5f70f 100644 --- a/src/_icons/shadow-off.svg +++ b/src/_icons/shadow-off.svg @@ -1,6 +1,6 @@ --- +tags: [dark, sun, area, covered, dim, light, css, effect] category: Photography -tags: [dark, sun, area, light, css, effect, clear] version: "1.39" unicode: "eed7" --- diff --git a/src/_icons/shadow.svg b/src/_icons/shadow.svg index 513bb3f71..7f54bac49 100644 --- a/src/_icons/shadow.svg +++ b/src/_icons/shadow.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "eed8" --- - + diff --git a/src/_icons/shape-2.svg b/src/_icons/shape-2.svg index 7bb41e1a8..4cc17693d 100644 --- a/src/_icons/shape-2.svg +++ b/src/_icons/shape-2.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eed9" --- - - - - + + + + diff --git a/src/_icons/shape-3.svg b/src/_icons/shape-3.svg index ec3344f66..c9656a963 100644 --- a/src/_icons/shape-3.svg +++ b/src/_icons/shape-3.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eeda" --- - - - - + + + + diff --git a/src/_icons/shape-off.svg b/src/_icons/shape-off.svg index 994813ea6..1fce4b4ef 100644 --- a/src/_icons/shape-off.svg +++ b/src/_icons/shape-off.svg @@ -6,8 +6,8 @@ unicode: "f1a0" --- - - + + diff --git a/src/_icons/shape.svg b/src/_icons/shape.svg index 1ad69f3cb..f2fa0a56b 100644 --- a/src/_icons/shape.svg +++ b/src/_icons/shape.svg @@ -5,12 +5,12 @@ version: "1.3" unicode: "eb9c" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/share-off.svg b/src/_icons/share-off.svg index 39e0be9a2..8f27e19c1 100644 --- a/src/_icons/share-off.svg +++ b/src/_icons/share-off.svg @@ -4,8 +4,8 @@ version: "1.66" unicode: "f1a1" --- - - + + diff --git a/src/_icons/share.svg b/src/_icons/share.svg index 43afe3a34..5b4f5edbe 100644 --- a/src/_icons/share.svg +++ b/src/_icons/share.svg @@ -4,9 +4,9 @@ version: "1.0" unicode: "eb21" --- - - - - - + + + + + diff --git a/src/_icons/shield-filled.svg b/src/_icons/shield-filled.svg new file mode 100644 index 000000000..0352fe1c6 --- /dev/null +++ b/src/_icons/shield-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f69f" +--- + + + diff --git a/src/_icons/shield-half-filled.svg b/src/_icons/shield-half-filled.svg new file mode 100644 index 000000000..27c11c18d --- /dev/null +++ b/src/_icons/shield-half-filled.svg @@ -0,0 +1,15 @@ +--- +tags: [safe, security, secure, safety, protect, protection] +category: System +unicode: "f357" +version: "1.88" +--- + + + + + + + + + diff --git a/src/_icons/shield-half.svg b/src/_icons/shield-half.svg new file mode 100644 index 000000000..2152f1c80 --- /dev/null +++ b/src/_icons/shield-half.svg @@ -0,0 +1,10 @@ +--- +tags: [safe, security, secure, safety, protect, protection] +category: System +unicode: "f358" +version: "1.88" +--- + + + + diff --git a/src/_icons/shield-lock.svg b/src/_icons/shield-lock.svg index 955ee4e23..f62dcca68 100644 --- a/src/_icons/shield-lock.svg +++ b/src/_icons/shield-lock.svg @@ -6,6 +6,6 @@ unicode: "ed58" --- - - + + diff --git a/src/_icons/shield-off.svg b/src/_icons/shield-off.svg index ef563c008..305430a48 100644 --- a/src/_icons/shield-off.svg +++ b/src/_icons/shield-off.svg @@ -1,10 +1,10 @@ --- +tags: [safety, protect, protection] category: System -tags: [unprotected, protection, cancel, no] version: "1.22" unicode: "ecf8" --- - + diff --git a/src/_icons/ship-off.svg b/src/_icons/ship-off.svg new file mode 100644 index 000000000..a7e1f322e --- /dev/null +++ b/src/_icons/ship-off.svg @@ -0,0 +1,12 @@ +--- +tags: [sail, sail across, ocean, river, lake, sea, sailor, journey, transit, manufactures, containers ] +category: Vehicles +unicode: "f42a" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/shirt-filled.svg b/src/_icons/shirt-filled.svg new file mode 100644 index 000000000..4eb023ee3 --- /dev/null +++ b/src/_icons/shirt-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a0" +--- + + + diff --git a/src/_icons/shopping-bag.svg b/src/_icons/shopping-bag.svg new file mode 100644 index 000000000..3e119ce76 --- /dev/null +++ b/src/_icons/shopping-bag.svg @@ -0,0 +1,9 @@ +--- +category: E-commerce +unicode: "f5f8" +version: "1.113" +--- + + + + diff --git a/src/_icons/shopping-cart-discount.svg b/src/_icons/shopping-cart-discount.svg index 52f72b19e..9fec4b7b0 100644 --- a/src/_icons/shopping-cart-discount.svg +++ b/src/_icons/shopping-cart-discount.svg @@ -5,11 +5,11 @@ version: "1.39" unicode: "eedb" --- - - + + - - + + diff --git a/src/_icons/shopping-cart-off.svg b/src/_icons/shopping-cart-off.svg index 53cf50e4c..2b6fcfffb 100644 --- a/src/_icons/shopping-cart-off.svg +++ b/src/_icons/shopping-cart-off.svg @@ -1,11 +1,11 @@ --- -category: E-commerce tags: [shop, store, buy, purchase, product, bag, trolley, supermarket, grocery] +category: E-commerce version: "1.39" unicode: "eedc" --- - + diff --git a/src/_icons/shopping-cart-plus.svg b/src/_icons/shopping-cart-plus.svg index d62bc113c..f8db0bc63 100644 --- a/src/_icons/shopping-cart-plus.svg +++ b/src/_icons/shopping-cart-plus.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eedd" --- - - + + - + diff --git a/src/_icons/shopping-cart-x.svg b/src/_icons/shopping-cart-x.svg index 01560f290..8361a66cd 100644 --- a/src/_icons/shopping-cart-x.svg +++ b/src/_icons/shopping-cart-x.svg @@ -5,10 +5,10 @@ version: "1.39" unicode: "eede" --- - - + + - + diff --git a/src/_icons/shopping-cart.svg b/src/_icons/shopping-cart.svg index 75a133741..95c465923 100644 --- a/src/_icons/shopping-cart.svg +++ b/src/_icons/shopping-cart.svg @@ -5,8 +5,8 @@ version: "1.1" unicode: "eb25" --- - - + + diff --git a/src/_icons/shredder.svg b/src/_icons/shredder.svg index 659ba8e87..02f3685e7 100644 --- a/src/_icons/shredder.svg +++ b/src/_icons/shredder.svg @@ -5,6 +5,6 @@ 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..ec0bae72a --- /dev/null +++ b/src/_icons/sign-left-filled.svg @@ -0,0 +1,11 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a1" +--- + + + + + + diff --git a/src/_icons/sign-right-filled.svg b/src/_icons/sign-right-filled.svg new file mode 100644 index 000000000..662081abf --- /dev/null +++ b/src/_icons/sign-right-filled.svg @@ -0,0 +1,11 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a2" +--- + + + + + + diff --git a/src/_icons/sitemap-off.svg b/src/_icons/sitemap-off.svg index d1060acee..b53de20b6 100644 --- a/src/_icons/sitemap-off.svg +++ b/src/_icons/sitemap-off.svg @@ -4,7 +4,7 @@ version: "1.67" unicode: "f1a6" --- - + diff --git a/src/_icons/sitemap.svg b/src/_icons/sitemap.svg index 508705f49..52bc8cf70 100644 --- a/src/_icons/sitemap.svg +++ b/src/_icons/sitemap.svg @@ -4,9 +4,9 @@ version: "1.3" unicode: "eb9d" --- - - - + + + - + diff --git a/src/_icons/skateboard-off.svg b/src/_icons/skateboard-off.svg new file mode 100644 index 000000000..df5809245 --- /dev/null +++ b/src/_icons/skateboard-off.svg @@ -0,0 +1,12 @@ +--- +tags: [toy, vehicle, electrical ] +category: Vehicles +unicode: "f42b" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/skateboard.svg b/src/_icons/skateboard.svg index c0ed55443..45dcb5cc1 100644 --- a/src/_icons/skateboard.svg +++ b/src/_icons/skateboard.svg @@ -5,7 +5,7 @@ version: "1.18" unicode: "ecc2" --- - - + + diff --git a/src/_icons/skull.svg b/src/_icons/skull.svg index 9cfa4fd81..9ce7d1aa6 100644 --- a/src/_icons/skull.svg +++ b/src/_icons/skull.svg @@ -4,9 +4,9 @@ version: "1.78" unicode: "f292" --- - + - - + + diff --git a/src/_icons/slash.svg b/src/_icons/slash.svg new file mode 100644 index 000000000..65ab2515f --- /dev/null +++ b/src/_icons/slash.svg @@ -0,0 +1,9 @@ +--- +tags: [sign, divide, dash ] +category: Math +unicode: "f4f9" +version: "1.100" +--- + + + diff --git a/src/_icons/slashes.svg b/src/_icons/slashes.svg new file mode 100644 index 000000000..851c24bd0 --- /dev/null +++ b/src/_icons/slashes.svg @@ -0,0 +1,9 @@ +--- +tags: [sign, key, button, dash, divide] +unicode: "f588" +version: "1.108" +--- + + + + diff --git a/src/_icons/slideshow.svg b/src/_icons/slideshow.svg index f8cfcd3fd..b5f982094 100644 --- a/src/_icons/slideshow.svg +++ b/src/_icons/slideshow.svg @@ -5,11 +5,11 @@ version: "1.5" unicode: "ebc9" --- - - + + - - - + + + diff --git a/src/_icons/smart-home-off.svg b/src/_icons/smart-home-off.svg index 535ed1f9a..96935dd97 100644 --- a/src/_icons/smart-home-off.svg +++ b/src/_icons/smart-home-off.svg @@ -1,5 +1,5 @@ --- -tags: [apple, devices, connection, link, WiFi, bluetooth] +tags: [apple, devices, connection, link, wifi, bluetooth ] category: Buildings version: "1.67" unicode: "f1a7" diff --git a/src/_icons/smart-home.svg b/src/_icons/smart-home.svg index be21ba716..3f2c0c592 100644 --- a/src/_icons/smart-home.svg +++ b/src/_icons/smart-home.svg @@ -1,6 +1,6 @@ --- category: Buildings -tags: [apple, devices, connection, link, WiFi, bluetooth ] +tags: [apple, devices, connection, link, wifi, bluetooth ] version: "1.20" unicode: "ecde" --- diff --git a/src/_icons/smoking-no.svg b/src/_icons/smoking-no.svg index 5ea8beee1..9273cc2e6 100644 --- a/src/_icons/smoking-no.svg +++ b/src/_icons/smoking-no.svg @@ -5,8 +5,8 @@ category: Health unicode: "ecc3" --- - + - + diff --git a/src/_icons/smoking.svg b/src/_icons/smoking.svg index db0b356a6..aa5d440fb 100644 --- a/src/_icons/smoking.svg +++ b/src/_icons/smoking.svg @@ -5,7 +5,7 @@ category: Health unicode: "ecc4" --- - - + + diff --git a/src/_icons/snowflake.svg b/src/_icons/snowflake.svg index 3f9abad1a..fcc825ee4 100644 --- a/src/_icons/snowflake.svg +++ b/src/_icons/snowflake.svg @@ -5,10 +5,16 @@ version: "1.8" unicode: "ec0b" --- - - - - - - + + + + + + + + + + + + diff --git a/src/_icons/soccer-field.svg b/src/_icons/soccer-field.svg index e7f77f4e5..09f34a52f 100644 --- a/src/_icons/soccer-field.svg +++ b/src/_icons/soccer-field.svg @@ -5,9 +5,9 @@ version: "1.34" unicode: "ed92" --- - + - - + + diff --git a/src/_icons/social-off.svg b/src/_icons/social-off.svg index 66849cbb0..21cf64a31 100644 --- a/src/_icons/social-off.svg +++ b/src/_icons/social-off.svg @@ -4,10 +4,10 @@ version: "1.67" unicode: "f1a9" --- - - + + - + diff --git a/src/_icons/social.svg b/src/_icons/social.svg index 8593c4d1f..9d71f49a7 100644 --- a/src/_icons/social.svg +++ b/src/_icons/social.svg @@ -4,11 +4,11 @@ version: "1.7" unicode: "ebec" --- - - - - - - - + + + + + + + diff --git a/src/_icons/sofa-off.svg b/src/_icons/sofa-off.svg new file mode 100644 index 000000000..1b573623e --- /dev/null +++ b/src/_icons/sofa-off.svg @@ -0,0 +1,11 @@ +--- +tags: [chair, seat, home, furniture, couch] +unicode: "f42c" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/sort-0-9.svg b/src/_icons/sort-0-9.svg new file mode 100644 index 000000000..95b58ee90 --- /dev/null +++ b/src/_icons/sort-0-9.svg @@ -0,0 +1,11 @@ +--- +tags: [numbers, one, two, three, four, five, numerical] +category: Text +version: "1.105" +unicode: "f54d" +--- + + + + + diff --git a/src/_icons/sort-9-0.svg b/src/_icons/sort-9-0.svg new file mode 100644 index 000000000..9a3493c28 --- /dev/null +++ b/src/_icons/sort-9-0.svg @@ -0,0 +1,11 @@ +--- +tags: [numbers, one, two, three, four, five, numerical] +category: Text +version: "1.105" +unicode: "f54e" +--- + + + + + diff --git a/src/_icons/sort-a-z.svg b/src/_icons/sort-a-z.svg new file mode 100644 index 000000000..6ef71e6e1 --- /dev/null +++ b/src/_icons/sort-a-z.svg @@ -0,0 +1,12 @@ +--- +tags: [alphabet, letters, alphabetical] +category: Text +version: "1.105" +unicode: "f54f" +--- + + + + + + diff --git a/src/_icons/sort-ascending-2.svg b/src/_icons/sort-ascending-2.svg index 8d453e254..916b9d935 100644 --- a/src/_icons/sort-ascending-2.svg +++ b/src/_icons/sort-ascending-2.svg @@ -6,7 +6,7 @@ unicode: "eee2" --- - - + + diff --git a/src/_icons/sort-ascending-numbers.svg b/src/_icons/sort-ascending-numbers.svg index 33b4981e2..f9085ef0c 100644 --- a/src/_icons/sort-ascending-numbers.svg +++ b/src/_icons/sort-ascending-numbers.svg @@ -8,6 +8,6 @@ unicode: "ef19" - + diff --git a/src/_icons/sort-ascending.svg b/src/_icons/sort-ascending.svg index 8613ac2fb..98eb31ed6 100644 --- a/src/_icons/sort-ascending.svg +++ b/src/_icons/sort-ascending.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eb26" --- - - - - - + + + + + diff --git a/src/_icons/sort-descending-2.svg b/src/_icons/sort-descending-2.svg index 3a2296aff..f95ccc530 100644 --- a/src/_icons/sort-descending-2.svg +++ b/src/_icons/sort-descending-2.svg @@ -5,8 +5,8 @@ version: "1.39" unicode: "eee3" --- - - + + diff --git a/src/_icons/sort-descending-numbers.svg b/src/_icons/sort-descending-numbers.svg index 1fd6b702f..bba941ed1 100644 --- a/src/_icons/sort-descending-numbers.svg +++ b/src/_icons/sort-descending-numbers.svg @@ -8,6 +8,6 @@ unicode: "ef1b" - + diff --git a/src/_icons/sort-descending.svg b/src/_icons/sort-descending.svg index 291852411..0846087ad 100644 --- a/src/_icons/sort-descending.svg +++ b/src/_icons/sort-descending.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eb27" --- - - - - - + + + + + diff --git a/src/_icons/sort-z-a.svg b/src/_icons/sort-z-a.svg new file mode 100644 index 000000000..6fbfd013f --- /dev/null +++ b/src/_icons/sort-z-a.svg @@ -0,0 +1,12 @@ +--- +tags: [alphabet, letters, alphabetical] +category: Text +version: "1.105" +unicode: "f550" +--- + + + + + + diff --git a/src/_icons/soup-off.svg b/src/_icons/soup-off.svg new file mode 100644 index 000000000..4e259a26c --- /dev/null +++ b/src/_icons/soup-off.svg @@ -0,0 +1,13 @@ +--- +tags: [food, cooking, restaurant, bowl, hot, kitchen] +category: Food +unicode: "f42d" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/soup.svg b/src/_icons/soup.svg index 22490a7f3..c8a326c7f 100644 --- a/src/_icons/soup.svg +++ b/src/_icons/soup.svg @@ -5,9 +5,8 @@ version: "1.41" unicode: "ef2e" --- - - - - - + + + + diff --git a/src/_icons/source-code.svg b/src/_icons/source-code.svg new file mode 100644 index 000000000..48f167f0c --- /dev/null +++ b/src/_icons/source-code.svg @@ -0,0 +1,10 @@ +--- +tags: [programming, coding, html, development ] +unicode: "f4a2" +version: "1.96" +--- + + + + + diff --git a/src/_icons/spade-filled.svg b/src/_icons/spade-filled.svg new file mode 100644 index 000000000..d7f0a3afb --- /dev/null +++ b/src/_icons/spade-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a3" +--- + + + diff --git a/src/_icons/sparkles.svg b/src/_icons/sparkles.svg new file mode 100644 index 000000000..9dec69ca5 --- /dev/null +++ b/src/_icons/sparkles.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/speedboat.svg b/src/_icons/speedboat.svg index d7afd0652..da0bc4a48 100644 --- a/src/_icons/speedboat.svg +++ b/src/_icons/speedboat.svg @@ -6,6 +6,6 @@ unicode: "ed93" --- - + diff --git a/src/_icons/spider.svg b/src/_icons/spider.svg index 278704f4a..12706cb91 100644 --- a/src/_icons/spider.svg +++ b/src/_icons/spider.svg @@ -11,6 +11,6 @@ unicode: "f293" - - + + diff --git a/src/_icons/spiral-off.svg b/src/_icons/spiral-off.svg new file mode 100644 index 000000000..0b5ee00e7 --- /dev/null +++ b/src/_icons/spiral-off.svg @@ -0,0 +1,9 @@ +--- +tags: [hypnosis, rotation, growth] +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..99d34f2c7 100644 --- a/src/_icons/sport-billard.svg +++ b/src/_icons/sport-billard.svg @@ -5,7 +5,7 @@ category: Sport unicode: "eee4" --- - - - + + + diff --git a/src/_icons/spray.svg b/src/_icons/spray.svg new file mode 100644 index 000000000..0ccb42fc6 --- /dev/null +++ b/src/_icons/spray.svg @@ -0,0 +1,16 @@ +--- +tags: [paint, clean, hygiene, graffiti] +unicode: "f50b" +version: "1.101" +--- + + + + + + + + + + + diff --git a/src/_icons/spy-off.svg b/src/_icons/spy-off.svg new file mode 100644 index 000000000..bb00db328 --- /dev/null +++ b/src/_icons/spy-off.svg @@ -0,0 +1,13 @@ +--- +tags: [security, incognito, privacy, browser, web] +unicode: "f42f" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/spy.svg b/src/_icons/spy.svg index f2016d401..c9225c6af 100644 --- a/src/_icons/spy.svg +++ b/src/_icons/spy.svg @@ -6,7 +6,7 @@ unicode: "f227" - - + + diff --git a/src/_icons/square-0.svg b/src/_icons/square-0.svg deleted file mode 100644 index 0d27a454b..000000000 --- a/src/_icons/square-0.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eee5" ---- - - - - diff --git a/src/_icons/square-1.svg b/src/_icons/square-1.svg deleted file mode 100644 index 0ae8c57a0..000000000 --- a/src/_icons/square-1.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [one, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eee6" ---- - - - - diff --git a/src/_icons/square-2.svg b/src/_icons/square-2.svg deleted file mode 100644 index 42711bea7..000000000 --- a/src/_icons/square-2.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -category: Shapes -tags: [two, zero, number, digit, quantity, amount, order, maths, sum, total] -version: "1.39" -unicode: "eee7" ---- - - - - diff --git a/src/_icons/square-3.svg b/src/_icons/square-3.svg deleted file mode 100644 index 684d58bae..000000000 --- a/src/_icons/square-3.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [three, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eee8" ---- - - - - - diff --git a/src/_icons/square-4.svg b/src/_icons/square-4.svg deleted file mode 100644 index 04b0bc7ca..000000000 --- a/src/_icons/square-4.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [four, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eee9" ---- - - - - diff --git a/src/_icons/square-5.svg b/src/_icons/square-5.svg deleted file mode 100644 index b02b27cee..000000000 --- a/src/_icons/square-5.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [five, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eeea" ---- - - - - diff --git a/src/_icons/square-6.svg b/src/_icons/square-6.svg deleted file mode 100644 index 2db0a20d4..000000000 --- a/src/_icons/square-6.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [six, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eeeb" ---- - - - - - diff --git a/src/_icons/square-7.svg b/src/_icons/square-7.svg deleted file mode 100644 index baf5647b7..000000000 --- a/src/_icons/square-7.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [seven, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eeec" ---- - - - - diff --git a/src/_icons/square-8.svg b/src/_icons/square-8.svg deleted file mode 100644 index 0abb170d5..000000000 --- a/src/_icons/square-8.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [eight, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eeed" ---- - - - - - diff --git a/src/_icons/square-9.svg b/src/_icons/square-9.svg deleted file mode 100644 index e66a2d87b..000000000 --- a/src/_icons/square-9.svg +++ /dev/null @@ -1,11 +0,0 @@ ---- -tags: [nine, zero, number, digit, quantity, amount, order, maths, sum, total] -category: Numbers -version: "1.39" -unicode: "eeee" ---- - - - - - diff --git a/src/_icons/square-arrow-down.svg b/src/_icons/square-arrow-down.svg new file mode 100644 index 000000000..6d8f3968c --- /dev/null +++ b/src/_icons/square-arrow-down.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, shape, bottom, south] +category: Arrows +unicode: "f4b7" +version: "1.97" +--- + + + + + diff --git a/src/_icons/square-arrow-left.svg b/src/_icons/square-arrow-left.svg new file mode 100644 index 000000000..83e5b5fc0 --- /dev/null +++ b/src/_icons/square-arrow-left.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, shape, west ] +category: Arrows +unicode: "f4b8" +version: "1.97" +--- + + + + + diff --git a/src/_icons/square-arrow-right.svg b/src/_icons/square-arrow-right.svg new file mode 100644 index 000000000..b29f69383 --- /dev/null +++ b/src/_icons/square-arrow-right.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, shape, east ] +category: Arrows +unicode: "f4b9" +version: "1.97" +--- + + + + + diff --git a/src/_icons/square-arrow-up.svg b/src/_icons/square-arrow-up.svg new file mode 100644 index 000000000..45cf1fb58 --- /dev/null +++ b/src/_icons/square-arrow-up.svg @@ -0,0 +1,11 @@ +--- +tags: [direction, shape, north, top] +category: Arrows +unicode: "f4ba" +version: "1.97" +--- + + + + + diff --git a/src/_icons/square-asterisk.svg b/src/_icons/square-asterisk.svg index 0b0de597d..6b7904511 100644 --- a/src/_icons/square-asterisk.svg +++ b/src/_icons/square-asterisk.svg @@ -4,7 +4,7 @@ version: "1.54" unicode: "f01a" --- - + diff --git a/src/_icons/square-check.svg b/src/_icons/square-check.svg index 78e330002..2a3a45464 100644 --- a/src/_icons/square-check.svg +++ b/src/_icons/square-check.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eb28" --- - + diff --git a/src/_icons/square-chevron-down.svg b/src/_icons/square-chevron-down.svg new file mode 100644 index 000000000..76256705d --- /dev/null +++ b/src/_icons/square-chevron-down.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f627" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-chevron-left.svg b/src/_icons/square-chevron-left.svg new file mode 100644 index 000000000..c3939f6e7 --- /dev/null +++ b/src/_icons/square-chevron-left.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f628" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-chevron-right.svg b/src/_icons/square-chevron-right.svg new file mode 100644 index 000000000..1839c4a98 --- /dev/null +++ b/src/_icons/square-chevron-right.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f629" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-chevron-up.svg b/src/_icons/square-chevron-up.svg new file mode 100644 index 000000000..adcea7fb4 --- /dev/null +++ b/src/_icons/square-chevron-up.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f62a" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-chevrons-down.svg b/src/_icons/square-chevrons-down.svg new file mode 100644 index 000000000..774d3c7c6 --- /dev/null +++ b/src/_icons/square-chevrons-down.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f64b" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-chevrons-left.svg b/src/_icons/square-chevrons-left.svg new file mode 100644 index 000000000..283d10efe --- /dev/null +++ b/src/_icons/square-chevrons-left.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f64c" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-chevrons-right.svg b/src/_icons/square-chevrons-right.svg new file mode 100644 index 000000000..092d6afce --- /dev/null +++ b/src/_icons/square-chevrons-right.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f64d" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-chevrons-up.svg b/src/_icons/square-chevrons-up.svg new file mode 100644 index 000000000..c40f05741 --- /dev/null +++ b/src/_icons/square-chevrons-up.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f64e" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-dot.svg b/src/_icons/square-dot.svg index 3b3e32ce2..af78ebe90 100644 --- a/src/_icons/square-dot.svg +++ b/src/_icons/square-dot.svg @@ -4,6 +4,6 @@ version: "1.30" unicode: "ed59" --- - - + + diff --git a/src/_icons/square-f0.svg b/src/_icons/square-f0.svg new file mode 100644 index 000000000..30a426584 --- /dev/null +++ b/src/_icons/square-f0.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f526" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f1.svg b/src/_icons/square-f1.svg new file mode 100644 index 000000000..6f5f5e04a --- /dev/null +++ b/src/_icons/square-f1.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f527" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f2.svg b/src/_icons/square-f2.svg new file mode 100644 index 000000000..48ddb797b --- /dev/null +++ b/src/_icons/square-f2.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f528" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f3.svg b/src/_icons/square-f3.svg new file mode 100644 index 000000000..bb5378a01 --- /dev/null +++ b/src/_icons/square-f3.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f529" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f4.svg b/src/_icons/square-f4.svg new file mode 100644 index 000000000..7cea42166 --- /dev/null +++ b/src/_icons/square-f4.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f52a" +version: "1.103" +--- + + + + + + + diff --git a/src/_icons/square-f5.svg b/src/_icons/square-f5.svg new file mode 100644 index 000000000..3e52daf5f --- /dev/null +++ b/src/_icons/square-f5.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f52b" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f6.svg b/src/_icons/square-f6.svg new file mode 100644 index 000000000..d862c8e23 --- /dev/null +++ b/src/_icons/square-f6.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f52c" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f7.svg b/src/_icons/square-f7.svg new file mode 100644 index 000000000..4abca13e3 --- /dev/null +++ b/src/_icons/square-f7.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f52d" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f8.svg b/src/_icons/square-f8.svg new file mode 100644 index 000000000..4664938b3 --- /dev/null +++ b/src/_icons/square-f8.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f52e" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-f9.svg b/src/_icons/square-f9.svg new file mode 100644 index 000000000..4fe0c4bfc --- /dev/null +++ b/src/_icons/square-f9.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, keyboard, button, key, hotkey,] +unicode: "f52f" +version: "1.103" +--- + + + + + + diff --git a/src/_icons/square-forbid-2.svg b/src/_icons/square-forbid-2.svg index 7d0c2be4a..894f8d587 100644 --- a/src/_icons/square-forbid-2.svg +++ b/src/_icons/square-forbid-2.svg @@ -4,6 +4,6 @@ version: "1.30" unicode: "ed5a" --- - - + + diff --git a/src/_icons/square-forbid.svg b/src/_icons/square-forbid.svg index 1f30b5da6..947c792af 100644 --- a/src/_icons/square-forbid.svg +++ b/src/_icons/square-forbid.svg @@ -4,6 +4,6 @@ version: "1.30" unicode: "ed5b" --- - - + + diff --git a/src/_icons/square-half.svg b/src/_icons/square-half.svg index 436597d82..14b5f9ad7 100644 --- a/src/_icons/square-half.svg +++ b/src/_icons/square-half.svg @@ -6,7 +6,7 @@ unicode: "effb" --- - + diff --git a/src/_icons/square-key.svg b/src/_icons/square-key.svg new file mode 100644 index 000000000..63f7d37ba --- /dev/null +++ b/src/_icons/square-key.svg @@ -0,0 +1,10 @@ +--- +unicode: "f638" +version: "1.117" +--- + + + + + + diff --git a/src/_icons/square-letter-a.svg b/src/_icons/square-letter-a.svg new file mode 100644 index 000000000..111866fa3 --- /dev/null +++ b/src/_icons/square-letter-a.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f47c" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-b.svg b/src/_icons/square-letter-b.svg new file mode 100644 index 000000000..4d7eb7bec --- /dev/null +++ b/src/_icons/square-letter-b.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f47d" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-c.svg b/src/_icons/square-letter-c.svg new file mode 100644 index 000000000..e005e42b6 --- /dev/null +++ b/src/_icons/square-letter-c.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f47e" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-d.svg b/src/_icons/square-letter-d.svg new file mode 100644 index 000000000..9fba27f16 --- /dev/null +++ b/src/_icons/square-letter-d.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f47f" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-e.svg b/src/_icons/square-letter-e.svg new file mode 100644 index 000000000..8e68322c1 --- /dev/null +++ b/src/_icons/square-letter-e.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f480" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-f.svg b/src/_icons/square-letter-f.svg new file mode 100644 index 000000000..568454fca --- /dev/null +++ b/src/_icons/square-letter-f.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f481" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-g.svg b/src/_icons/square-letter-g.svg new file mode 100644 index 000000000..6e6eb502c --- /dev/null +++ b/src/_icons/square-letter-g.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f482" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-h.svg b/src/_icons/square-letter-h.svg new file mode 100644 index 000000000..2d760e4f7 --- /dev/null +++ b/src/_icons/square-letter-h.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f483" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-i.svg b/src/_icons/square-letter-i.svg new file mode 100644 index 000000000..005576d11 --- /dev/null +++ b/src/_icons/square-letter-i.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f484" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-j.svg b/src/_icons/square-letter-j.svg new file mode 100644 index 000000000..b0badfbe7 --- /dev/null +++ b/src/_icons/square-letter-j.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f485" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-k.svg b/src/_icons/square-letter-k.svg new file mode 100644 index 000000000..8b2fa1c21 --- /dev/null +++ b/src/_icons/square-letter-k.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f486" +version: "1.95" +--- + + + + + + diff --git a/src/_icons/square-letter-l.svg b/src/_icons/square-letter-l.svg new file mode 100644 index 000000000..540e81f1b --- /dev/null +++ b/src/_icons/square-letter-l.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f487" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-m.svg b/src/_icons/square-letter-m.svg new file mode 100644 index 000000000..9d5fd9984 --- /dev/null +++ b/src/_icons/square-letter-m.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f488" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-n.svg b/src/_icons/square-letter-n.svg new file mode 100644 index 000000000..ed8109a3a --- /dev/null +++ b/src/_icons/square-letter-n.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f489" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-o.svg b/src/_icons/square-letter-o.svg new file mode 100644 index 000000000..52e091a58 --- /dev/null +++ b/src/_icons/square-letter-o.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f48a" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-p.svg b/src/_icons/square-letter-p.svg new file mode 100644 index 000000000..16addadf2 --- /dev/null +++ b/src/_icons/square-letter-p.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f48b" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-q.svg b/src/_icons/square-letter-q.svg new file mode 100644 index 000000000..81f33865c --- /dev/null +++ b/src/_icons/square-letter-q.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f48c" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-r.svg b/src/_icons/square-letter-r.svg new file mode 100644 index 000000000..27605f6d7 --- /dev/null +++ b/src/_icons/square-letter-r.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f48d" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-s.svg b/src/_icons/square-letter-s.svg new file mode 100644 index 000000000..82cd24a5e --- /dev/null +++ b/src/_icons/square-letter-s.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f48e" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-t.svg b/src/_icons/square-letter-t.svg new file mode 100644 index 000000000..04f2b43c5 --- /dev/null +++ b/src/_icons/square-letter-t.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f48f" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-u.svg b/src/_icons/square-letter-u.svg new file mode 100644 index 000000000..ece0ecb13 --- /dev/null +++ b/src/_icons/square-letter-u.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f490" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-v.svg b/src/_icons/square-letter-v.svg new file mode 100644 index 000000000..a0f59fef9 --- /dev/null +++ b/src/_icons/square-letter-v.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f4bb" +version: "1.97" +--- + + + + diff --git a/src/_icons/square-letter-w.svg b/src/_icons/square-letter-w.svg new file mode 100644 index 000000000..61d751cfc --- /dev/null +++ b/src/_icons/square-letter-w.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f491" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-letter-x.svg b/src/_icons/square-letter-x.svg new file mode 100644 index 000000000..1ffdfd5a3 --- /dev/null +++ b/src/_icons/square-letter-x.svg @@ -0,0 +1,11 @@ +--- +tags: [cancel, close, delete, remove, times, clear, "no"] +version: "1.0" +category: Letters +unicode: "f4bc" +--- + + + + + diff --git a/src/_icons/square-letter-y.svg b/src/_icons/square-letter-y.svg new file mode 100644 index 000000000..8be01fff9 --- /dev/null +++ b/src/_icons/square-letter-y.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f492" +version: "1.95" +--- + + + + + diff --git a/src/_icons/square-letter-z.svg b/src/_icons/square-letter-z.svg new file mode 100644 index 000000000..74f20314d --- /dev/null +++ b/src/_icons/square-letter-z.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f493" +version: "1.95" +--- + + + + diff --git a/src/_icons/square-minus.svg b/src/_icons/square-minus.svg index 985f464c0..c68586b51 100644 --- a/src/_icons/square-minus.svg +++ b/src/_icons/square-minus.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eb29" --- - - + + diff --git a/src/_icons/square-number-0.svg b/src/_icons/square-number-0.svg new file mode 100644 index 000000000..f46ecbad4 --- /dev/null +++ b/src/_icons/square-number-0.svg @@ -0,0 +1,10 @@ +--- +tags: [zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eee5" +--- + + + + diff --git a/src/_icons/square-number-1.svg b/src/_icons/square-number-1.svg new file mode 100644 index 000000000..ad4c951a8 --- /dev/null +++ b/src/_icons/square-number-1.svg @@ -0,0 +1,10 @@ +--- +tags: [one, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eee6" +--- + + + + diff --git a/src/_icons/square-number-2.svg b/src/_icons/square-number-2.svg new file mode 100644 index 000000000..1336b29e2 --- /dev/null +++ b/src/_icons/square-number-2.svg @@ -0,0 +1,10 @@ +--- +category: Numbers +tags: [two, zero, number, digit, quantity, amount, order, maths, sum, total] +version: "1.39" +unicode: "eee7" +--- + + + + diff --git a/src/_icons/square-number-3.svg b/src/_icons/square-number-3.svg new file mode 100644 index 000000000..26b376360 --- /dev/null +++ b/src/_icons/square-number-3.svg @@ -0,0 +1,10 @@ +--- +tags: [three, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eee8" +--- + + + + diff --git a/src/_icons/square-number-4.svg b/src/_icons/square-number-4.svg new file mode 100644 index 000000000..dd69a51ac --- /dev/null +++ b/src/_icons/square-number-4.svg @@ -0,0 +1,11 @@ +--- +tags: [four, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eee9" +--- + + + + + diff --git a/src/_icons/square-number-5.svg b/src/_icons/square-number-5.svg new file mode 100644 index 000000000..6a5e624ba --- /dev/null +++ b/src/_icons/square-number-5.svg @@ -0,0 +1,10 @@ +--- +tags: [five, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eeea" +--- + + + + diff --git a/src/_icons/square-number-6.svg b/src/_icons/square-number-6.svg new file mode 100644 index 000000000..db44aa717 --- /dev/null +++ b/src/_icons/square-number-6.svg @@ -0,0 +1,10 @@ +--- +tags: [six, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eeeb" +--- + + + + diff --git a/src/_icons/square-number-7.svg b/src/_icons/square-number-7.svg new file mode 100644 index 000000000..811377a30 --- /dev/null +++ b/src/_icons/square-number-7.svg @@ -0,0 +1,10 @@ +--- +tags: [seven, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eeec" +--- + + + + diff --git a/src/_icons/square-number-8.svg b/src/_icons/square-number-8.svg new file mode 100644 index 000000000..ba07c8544 --- /dev/null +++ b/src/_icons/square-number-8.svg @@ -0,0 +1,10 @@ +--- +tags: [eight, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eeed" +--- + + + + diff --git a/src/_icons/square-number-9.svg b/src/_icons/square-number-9.svg new file mode 100644 index 000000000..ead474613 --- /dev/null +++ b/src/_icons/square-number-9.svg @@ -0,0 +1,10 @@ +--- +tags: [nine, zero, number, digit, quantity, amount, order, maths, sum, total] +category: Numbers +version: "1.39" +unicode: "eeee" +--- + + + + diff --git a/src/_icons/square-off.svg b/src/_icons/square-off.svg index 05070d34c..c9c74ebc1 100644 --- a/src/_icons/square-off.svg +++ b/src/_icons/square-off.svg @@ -1,10 +1,10 @@ --- +tags: [checkbox] category: Shapes -tags: [box, disabled, block] version: "1.39" unicode: "eeef" --- - + diff --git a/src/_icons/square-plus.svg b/src/_icons/square-plus.svg index 657550750..c56fa9e16 100644 --- a/src/_icons/square-plus.svg +++ b/src/_icons/square-plus.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "eb2a" --- - - - + + + diff --git a/src/_icons/square-rotated-filled.svg b/src/_icons/square-rotated-filled.svg new file mode 100644 index 000000000..f9a0a4a00 --- /dev/null +++ b/src/_icons/square-rotated-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a4" +--- + + + diff --git a/src/_icons/square-rotated-off.svg b/src/_icons/square-rotated-off.svg index a2f9a2f50..577b671fa 100644 --- a/src/_icons/square-rotated-off.svg +++ b/src/_icons/square-rotated-off.svg @@ -1,10 +1,10 @@ --- +tags: [shape, sign, geometry, geometric, quadrilateral, rhombus] category: Shapes -tags: [box, disabled, block] version: "1.39" unicode: "eef2" --- - + diff --git a/src/_icons/square-rounded-arrow-down.svg b/src/_icons/square-rounded-arrow-down.svg new file mode 100644 index 000000000..fb953fdb9 --- /dev/null +++ b/src/_icons/square-rounded-arrow-down.svg @@ -0,0 +1,9 @@ +--- +unicode: "f639" +version: "1.117" +--- + + + + + diff --git a/src/_icons/square-rounded-arrow-left.svg b/src/_icons/square-rounded-arrow-left.svg new file mode 100644 index 000000000..dce299372 --- /dev/null +++ b/src/_icons/square-rounded-arrow-left.svg @@ -0,0 +1,9 @@ +--- +unicode: "f63a" +version: "1.117" +--- + + + + + diff --git a/src/_icons/square-rounded-arrow-right.svg b/src/_icons/square-rounded-arrow-right.svg new file mode 100644 index 000000000..162e01f48 --- /dev/null +++ b/src/_icons/square-rounded-arrow-right.svg @@ -0,0 +1,9 @@ +--- +unicode: "f63b" +version: "1.117" +--- + + + + + diff --git a/src/_icons/square-rounded-arrow-up.svg b/src/_icons/square-rounded-arrow-up.svg new file mode 100644 index 000000000..f1a22cb60 --- /dev/null +++ b/src/_icons/square-rounded-arrow-up.svg @@ -0,0 +1,9 @@ +--- +unicode: "f63c" +version: "1.117" +--- + + + + + diff --git a/src/_icons/square-rounded-check.svg b/src/_icons/square-rounded-check.svg new file mode 100644 index 000000000..e40c9ed32 --- /dev/null +++ b/src/_icons/square-rounded-check.svg @@ -0,0 +1,8 @@ +--- +unicode: "f63d" +version: "1.117" +--- + + + + diff --git a/src/_icons/square-rounded-chevron-down.svg b/src/_icons/square-rounded-chevron-down.svg new file mode 100644 index 000000000..fb2efeec8 --- /dev/null +++ b/src/_icons/square-rounded-chevron-down.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f62b" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-rounded-chevron-left.svg b/src/_icons/square-rounded-chevron-left.svg new file mode 100644 index 000000000..afe5481e4 --- /dev/null +++ b/src/_icons/square-rounded-chevron-left.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f62c" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-rounded-chevron-right.svg b/src/_icons/square-rounded-chevron-right.svg new file mode 100644 index 000000000..5bcc02ddd --- /dev/null +++ b/src/_icons/square-rounded-chevron-right.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f62d" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-rounded-chevron-up.svg b/src/_icons/square-rounded-chevron-up.svg new file mode 100644 index 000000000..334e48db4 --- /dev/null +++ b/src/_icons/square-rounded-chevron-up.svg @@ -0,0 +1,9 @@ +--- +category: Arrows +unicode: "f62e" +version: "1.116" +--- + + + + diff --git a/src/_icons/square-rounded-chevrons-down.svg b/src/_icons/square-rounded-chevrons-down.svg new file mode 100644 index 000000000..5ec69b5bd --- /dev/null +++ b/src/_icons/square-rounded-chevrons-down.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f64f" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-rounded-chevrons-left.svg b/src/_icons/square-rounded-chevrons-left.svg new file mode 100644 index 000000000..c9b80aadd --- /dev/null +++ b/src/_icons/square-rounded-chevrons-left.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f650" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-rounded-chevrons-right.svg b/src/_icons/square-rounded-chevrons-right.svg new file mode 100644 index 000000000..19ed13d05 --- /dev/null +++ b/src/_icons/square-rounded-chevrons-right.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +unicode: "f651" +version: "1.118" +--- + + + + + diff --git a/src/_icons/square-rounded-chevrons-up.svg b/src/_icons/square-rounded-chevrons-up.svg new file mode 100644 index 000000000..9634e944c --- /dev/null +++ b/src/_icons/square-rounded-chevrons-up.svg @@ -0,0 +1,10 @@ +--- +category: Arrows +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..871c6ae06 --- /dev/null +++ b/src/_icons/square-rounded-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a5" +--- + + + diff --git a/src/_icons/square-rounded-letter-a.svg b/src/_icons/square-rounded-letter-a.svg new file mode 100644 index 000000000..c24eed9a3 --- /dev/null +++ b/src/_icons/square-rounded-letter-a.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5ae" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-b.svg b/src/_icons/square-rounded-letter-b.svg new file mode 100644 index 000000000..94830c6bc --- /dev/null +++ b/src/_icons/square-rounded-letter-b.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5af" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-c.svg b/src/_icons/square-rounded-letter-c.svg new file mode 100644 index 000000000..ed70dd16d --- /dev/null +++ b/src/_icons/square-rounded-letter-c.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b0" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-d.svg b/src/_icons/square-rounded-letter-d.svg new file mode 100644 index 000000000..41f71fccd --- /dev/null +++ b/src/_icons/square-rounded-letter-d.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b1" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-e.svg b/src/_icons/square-rounded-letter-e.svg new file mode 100644 index 000000000..8862a112f --- /dev/null +++ b/src/_icons/square-rounded-letter-e.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b2" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-f.svg b/src/_icons/square-rounded-letter-f.svg new file mode 100644 index 000000000..76da3fa71 --- /dev/null +++ b/src/_icons/square-rounded-letter-f.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b3" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-g.svg b/src/_icons/square-rounded-letter-g.svg new file mode 100644 index 000000000..6de48df72 --- /dev/null +++ b/src/_icons/square-rounded-letter-g.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b4" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-h.svg b/src/_icons/square-rounded-letter-h.svg new file mode 100644 index 000000000..6a7d7a408 --- /dev/null +++ b/src/_icons/square-rounded-letter-h.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b5" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-i.svg b/src/_icons/square-rounded-letter-i.svg new file mode 100644 index 000000000..b8c029e3f --- /dev/null +++ b/src/_icons/square-rounded-letter-i.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b6" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-j.svg b/src/_icons/square-rounded-letter-j.svg new file mode 100644 index 000000000..13e38e4a0 --- /dev/null +++ b/src/_icons/square-rounded-letter-j.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b7" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-k.svg b/src/_icons/square-rounded-letter-k.svg new file mode 100644 index 000000000..ca705375b --- /dev/null +++ b/src/_icons/square-rounded-letter-k.svg @@ -0,0 +1,12 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b8" +version: "1.111" +--- + + + + + + diff --git a/src/_icons/square-rounded-letter-l.svg b/src/_icons/square-rounded-letter-l.svg new file mode 100644 index 000000000..8fa91685a --- /dev/null +++ b/src/_icons/square-rounded-letter-l.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5b9" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-m.svg b/src/_icons/square-rounded-letter-m.svg new file mode 100644 index 000000000..6c5b85dbf --- /dev/null +++ b/src/_icons/square-rounded-letter-m.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5ba" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-n.svg b/src/_icons/square-rounded-letter-n.svg new file mode 100644 index 000000000..a7d9ac2c9 --- /dev/null +++ b/src/_icons/square-rounded-letter-n.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5bb" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-o.svg b/src/_icons/square-rounded-letter-o.svg new file mode 100644 index 000000000..bec6aa0ae --- /dev/null +++ b/src/_icons/square-rounded-letter-o.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5bc" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-p.svg b/src/_icons/square-rounded-letter-p.svg new file mode 100644 index 000000000..882b74e21 --- /dev/null +++ b/src/_icons/square-rounded-letter-p.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5bd" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-q.svg b/src/_icons/square-rounded-letter-q.svg new file mode 100644 index 000000000..532bcfa04 --- /dev/null +++ b/src/_icons/square-rounded-letter-q.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5be" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-r.svg b/src/_icons/square-rounded-letter-r.svg new file mode 100644 index 000000000..caeb0219b --- /dev/null +++ b/src/_icons/square-rounded-letter-r.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5bf" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-s.svg b/src/_icons/square-rounded-letter-s.svg new file mode 100644 index 000000000..48f1272b2 --- /dev/null +++ b/src/_icons/square-rounded-letter-s.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c0" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-t.svg b/src/_icons/square-rounded-letter-t.svg new file mode 100644 index 000000000..19cfb49cf --- /dev/null +++ b/src/_icons/square-rounded-letter-t.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c1" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-u.svg b/src/_icons/square-rounded-letter-u.svg new file mode 100644 index 000000000..3e0533655 --- /dev/null +++ b/src/_icons/square-rounded-letter-u.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c2" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-v.svg b/src/_icons/square-rounded-letter-v.svg new file mode 100644 index 000000000..d01425125 --- /dev/null +++ b/src/_icons/square-rounded-letter-v.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c3" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-w.svg b/src/_icons/square-rounded-letter-w.svg new file mode 100644 index 000000000..1dcf04547 --- /dev/null +++ b/src/_icons/square-rounded-letter-w.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c4" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-letter-x.svg b/src/_icons/square-rounded-letter-x.svg new file mode 100644 index 000000000..2181670ce --- /dev/null +++ b/src/_icons/square-rounded-letter-x.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c5" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-y.svg b/src/_icons/square-rounded-letter-y.svg new file mode 100644 index 000000000..84854cf7e --- /dev/null +++ b/src/_icons/square-rounded-letter-y.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c6" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-letter-z.svg b/src/_icons/square-rounded-letter-z.svg new file mode 100644 index 000000000..0340f25ac --- /dev/null +++ b/src/_icons/square-rounded-letter-z.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, alphabet, sign, latin] +category: Letters +unicode: "f5c7" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-minus.svg b/src/_icons/square-rounded-minus.svg new file mode 100644 index 000000000..5c24ff500 --- /dev/null +++ b/src/_icons/square-rounded-minus.svg @@ -0,0 +1,8 @@ +--- +unicode: "f63e" +version: "1.117" +--- + + + + diff --git a/src/_icons/square-rounded-number-0.svg b/src/_icons/square-rounded-number-0.svg new file mode 100644 index 000000000..ce24fb745 --- /dev/null +++ b/src/_icons/square-rounded-number-0.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5c8" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-1.svg b/src/_icons/square-rounded-number-1.svg new file mode 100644 index 000000000..4f0457a7b --- /dev/null +++ b/src/_icons/square-rounded-number-1.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5c9" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-2.svg b/src/_icons/square-rounded-number-2.svg new file mode 100644 index 000000000..a220146a7 --- /dev/null +++ b/src/_icons/square-rounded-number-2.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5ca" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-3.svg b/src/_icons/square-rounded-number-3.svg new file mode 100644 index 000000000..5352c32e2 --- /dev/null +++ b/src/_icons/square-rounded-number-3.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5cb" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-4.svg b/src/_icons/square-rounded-number-4.svg new file mode 100644 index 000000000..fe81817a6 --- /dev/null +++ b/src/_icons/square-rounded-number-4.svg @@ -0,0 +1,11 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5cc" +version: "1.111" +--- + + + + + diff --git a/src/_icons/square-rounded-number-5.svg b/src/_icons/square-rounded-number-5.svg new file mode 100644 index 000000000..93a8b4cb7 --- /dev/null +++ b/src/_icons/square-rounded-number-5.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5cd" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-6.svg b/src/_icons/square-rounded-number-6.svg new file mode 100644 index 000000000..56aba99dc --- /dev/null +++ b/src/_icons/square-rounded-number-6.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5ce" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-7.svg b/src/_icons/square-rounded-number-7.svg new file mode 100644 index 000000000..83851bfd1 --- /dev/null +++ b/src/_icons/square-rounded-number-7.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5cf" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-8.svg b/src/_icons/square-rounded-number-8.svg new file mode 100644 index 000000000..7d6cb8e25 --- /dev/null +++ b/src/_icons/square-rounded-number-8.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5d0" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-number-9.svg b/src/_icons/square-rounded-number-9.svg new file mode 100644 index 000000000..1400f5de3 --- /dev/null +++ b/src/_icons/square-rounded-number-9.svg @@ -0,0 +1,10 @@ +--- +tags: [shape, number, digit] +category: Numbers +unicode: "f5d1" +version: "1.111" +--- + + + + diff --git a/src/_icons/square-rounded-plus.svg b/src/_icons/square-rounded-plus.svg new file mode 100644 index 000000000..faa12b9a2 --- /dev/null +++ b/src/_icons/square-rounded-plus.svg @@ -0,0 +1,9 @@ +--- +unicode: "f63f" +version: "1.117" +--- + + + + + diff --git a/src/_icons/square-rounded-x.svg b/src/_icons/square-rounded-x.svg new file mode 100644 index 000000000..e4ad3af1f --- /dev/null +++ b/src/_icons/square-rounded-x.svg @@ -0,0 +1,8 @@ +--- +unicode: "f640" +version: "1.117" +--- + + + + diff --git a/src/_icons/square-rounded.svg b/src/_icons/square-rounded.svg new file mode 100644 index 000000000..1a1947e6c --- /dev/null +++ b/src/_icons/square-rounded.svg @@ -0,0 +1,9 @@ +--- +tags: [shape, box, figure, geometry] +category: Shapes +unicode: "f59a" +version: "1.109" +--- + + + diff --git a/src/_icons/square-toggle-horizontal.svg b/src/_icons/square-toggle-horizontal.svg index 7b67cb71d..349e58552 100644 --- a/src/_icons/square-toggle-horizontal.svg +++ b/src/_icons/square-toggle-horizontal.svg @@ -9,5 +9,5 @@ unicode: "eef3" - + diff --git a/src/_icons/square-toggle.svg b/src/_icons/square-toggle.svg index a3d051e77..e4976695e 100644 --- a/src/_icons/square-toggle.svg +++ b/src/_icons/square-toggle.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eef4" --- - + - + diff --git a/src/_icons/square-x.svg b/src/_icons/square-x.svg index 0f5660cd6..f3a064ef7 100644 --- a/src/_icons/square-x.svg +++ b/src/_icons/square-x.svg @@ -4,6 +4,6 @@ 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..d47bce907 100644 --- a/src/_icons/squares-diagonal.svg +++ b/src/_icons/squares-diagonal.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "eef5" --- - + diff --git a/src/_icons/squares-filled.svg b/src/_icons/squares-filled.svg index d7894ce2e..0b67cd5e3 100644 --- a/src/_icons/squares-filled.svg +++ b/src/_icons/squares-filled.svg @@ -5,9 +5,9 @@ version: "1.39" unicode: "eef6" --- - + - + diff --git a/src/_icons/stack-2.svg b/src/_icons/stack-2.svg index dca0f43a7..1e468cf3a 100644 --- a/src/_icons/stack-2.svg +++ b/src/_icons/stack-2.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "eef7" --- - - - + + + diff --git a/src/_icons/stack-pop.svg b/src/_icons/stack-pop.svg index fa2e24441..6f0a258a1 100644 --- a/src/_icons/stack-pop.svg +++ b/src/_icons/stack-pop.svg @@ -5,7 +5,7 @@ version: "1.73" unicode: "f234" --- - + diff --git a/src/_icons/star-filled.svg b/src/_icons/star-filled.svg new file mode 100644 index 000000000..d1317f270 --- /dev/null +++ b/src/_icons/star-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..182f39be5 --- /dev/null +++ b/src/_icons/star-half-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a7" +--- + + + diff --git a/src/_icons/star-off.svg b/src/_icons/star-off.svg index c9ea38729..747b275ae 100644 --- a/src/_icons/star-off.svg +++ b/src/_icons/star-off.svg @@ -1,10 +1,10 @@ --- -category: System tags: [favorite, like, mark, bookmark, grade] +category: System 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..a751c8b1f --- /dev/null +++ b/src/_icons/stars-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a8" +--- + + + + + diff --git a/src/_icons/stars-off.svg b/src/_icons/stars-off.svg new file mode 100644 index 000000000..c2ff065cd --- /dev/null +++ b/src/_icons/stars-off.svg @@ -0,0 +1,12 @@ +--- +tags: [favorite, like, mark, grade, bookmark, grade, space, universe, extraterrestrial, galaxy] +category: System +unicode: "f430" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/status-change.svg b/src/_icons/status-change.svg new file mode 100644 index 000000000..42262155e --- /dev/null +++ b/src/_icons/status-change.svg @@ -0,0 +1,11 @@ +--- +tags: [available, unavailable, switch ] +version: "1.93" +unicode: "f3b0" +--- + + + + + + diff --git a/src/_icons/steam.svg b/src/_icons/steam.svg index 354d96c60..dcdb65b14 100644 --- a/src/_icons/steam.svg +++ b/src/_icons/steam.svg @@ -4,10 +4,10 @@ version: "1.74" unicode: "f24b" --- - - - - + + + + diff --git a/src/_icons/steering-wheel-off.svg b/src/_icons/steering-wheel-off.svg new file mode 100644 index 000000000..c28905d3a --- /dev/null +++ b/src/_icons/steering-wheel-off.svg @@ -0,0 +1,14 @@ +--- +tags: [drive, vehicle, direction, turn, holding, racing] +category: Vehicles +unicode: "f431" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/steering-wheel.svg b/src/_icons/steering-wheel.svg index 87a3ced9a..4f7c51fcf 100644 --- a/src/_icons/steering-wheel.svg +++ b/src/_icons/steering-wheel.svg @@ -5,9 +5,9 @@ version: "1.13" unicode: "ec7b" --- - - - - - + + + + + diff --git a/src/_icons/step-into.svg b/src/_icons/step-into.svg index 2319fa257..1530e126e 100644 --- a/src/_icons/step-into.svg +++ b/src/_icons/step-into.svg @@ -5,8 +5,8 @@ version: "1.20" unicode: "ece0" --- - - - - + + + + diff --git a/src/_icons/step-out.svg b/src/_icons/step-out.svg index 0973f18b6..7d59a91e6 100644 --- a/src/_icons/step-out.svg +++ b/src/_icons/step-out.svg @@ -5,8 +5,8 @@ version: "1.20" unicode: "ece1" --- - - - - + + + + diff --git a/src/_icons/stereo-glasses.svg b/src/_icons/stereo-glasses.svg new file mode 100644 index 000000000..d05de4893 --- /dev/null +++ b/src/_icons/stereo-glasses.svg @@ -0,0 +1,12 @@ +--- +tags: [cinema, 3d, eyewear, film, movie] +unicode: "f4cb" +version: "1.98" +--- + + + + + + + diff --git a/src/_icons/stethoscope-off.svg b/src/_icons/stethoscope-off.svg new file mode 100644 index 000000000..816e8c0ac --- /dev/null +++ b/src/_icons/stethoscope-off.svg @@ -0,0 +1,13 @@ +--- +tags: [doctor, medical, physician, test, examination, health, illness, sickness, scrutiny, test, hospital] +category: Health +unicode: "f432" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/stethoscope.svg b/src/_icons/stethoscope.svg index a2e322aaa..06fbb75e6 100644 --- a/src/_icons/stethoscope.svg +++ b/src/_icons/stethoscope.svg @@ -7,7 +7,7 @@ unicode: "edbe" - - - + + + diff --git a/src/_icons/storm-off.svg b/src/_icons/storm-off.svg new file mode 100644 index 000000000..e0b6edbb2 --- /dev/null +++ b/src/_icons/storm-off.svg @@ -0,0 +1,12 @@ +--- +tags: [weather, cloud, lighting, rain, wind, tornado] +unicode: "f433" +version: "1.94" +--- + + + + + + + diff --git a/src/_icons/storm.svg b/src/_icons/storm.svg index 7fb2ab8a4..4c731b840 100644 --- a/src/_icons/storm.svg +++ b/src/_icons/storm.svg @@ -4,8 +4,8 @@ version: "1.74" unicode: "f24c" --- - - + + diff --git a/src/_icons/stretching.svg b/src/_icons/stretching.svg index 4d15cc1c8..aeb8c7f40 100644 --- a/src/_icons/stretching.svg +++ b/src/_icons/stretching.svg @@ -1,10 +1,11 @@ --- +tags: [exercise, yoga, workout, fitness, gym, body] category: Sport version: "1.82" unicode: "f2db" --- - + diff --git a/src/_icons/strikethrough.svg b/src/_icons/strikethrough.svg index 67f9b75c3..4c7ba7657 100644 --- a/src/_icons/strikethrough.svg +++ b/src/_icons/strikethrough.svg @@ -5,6 +5,6 @@ version: "1.3" unicode: "eb9e" --- - + diff --git a/src/_icons/subtask.svg b/src/_icons/subtask.svg index 0d68ac140..09eb7cdbc 100644 --- a/src/_icons/subtask.svg +++ b/src/_icons/subtask.svg @@ -4,9 +4,9 @@ version: "1.16" unicode: "ec9f" --- - - + + - - + + diff --git a/src/_icons/sun-filled.svg b/src/_icons/sun-filled.svg new file mode 100644 index 000000000..225613bbc --- /dev/null +++ b/src/_icons/sun-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f6a9" +--- + + + + diff --git a/src/_icons/sun-low.svg b/src/_icons/sun-low.svg index e9ec239fc..a5de84261 100644 --- a/src/_icons/sun-low.svg +++ b/src/_icons/sun-low.svg @@ -5,7 +5,7 @@ version: "1.73" unicode: "f237" --- - + diff --git a/src/_icons/sun-moon.svg b/src/_icons/sun-moon.svg new file mode 100644 index 000000000..803fcd0cf --- /dev/null +++ b/src/_icons/sun-moon.svg @@ -0,0 +1,14 @@ +--- +tags: [weather, day, night, hot, cold] +category: Weather +unicode: "f4a3" +version: "1.96" +--- + + + + + + + + diff --git a/src/_icons/sun-off.svg b/src/_icons/sun-off.svg index 293cdfe35..4d27415e3 100644 --- a/src/_icons/sun-off.svg +++ b/src/_icons/sun-off.svg @@ -1,11 +1,11 @@ --- +tags: [weather, light, mode, brightness] category: Weather -tags: [dark, darkmode, summer, light, brightness] version: "1.31" unicode: "ed63" --- - + diff --git a/src/_icons/sun-wind.svg b/src/_icons/sun-wind.svg index 2fe0308d4..3ef521918 100644 --- a/src/_icons/sun-wind.svg +++ b/src/_icons/sun-wind.svg @@ -5,7 +5,7 @@ version: "1.73" unicode: "f238" --- - + @@ -13,5 +13,5 @@ unicode: "f238" - + diff --git a/src/_icons/sun.svg b/src/_icons/sun.svg index b87352d17..ec5dfaf55 100644 --- a/src/_icons/sun.svg +++ b/src/_icons/sun.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eb30" --- - + diff --git a/src/_icons/sunrise.svg b/src/_icons/sunrise.svg index a47d37823..81b911af1 100644 --- a/src/_icons/sunrise.svg +++ b/src/_icons/sunrise.svg @@ -6,6 +6,6 @@ unicode: "ef1c" --- - + diff --git a/src/_icons/sunset.svg b/src/_icons/sunset.svg index e5df4aa76..9bc3974a1 100644 --- a/src/_icons/sunset.svg +++ b/src/_icons/sunset.svg @@ -6,6 +6,6 @@ unicode: "ec31" --- - + diff --git a/src/_icons/swimming.svg b/src/_icons/swimming.svg index 31ee643f4..69630ff46 100644 --- a/src/_icons/swimming.svg +++ b/src/_icons/swimming.svg @@ -5,7 +5,7 @@ version: "1.14" unicode: "ec92" --- - + diff --git a/src/_icons/swipe.svg b/src/_icons/swipe.svg new file mode 100644 index 000000000..9de0671a6 --- /dev/null +++ b/src/_icons/swipe.svg @@ -0,0 +1,9 @@ +--- +tags: [right, left, gesture, scroll] +version: "1.105" +unicode: "f551" +--- + + + + diff --git a/src/_icons/switch-horizontal.svg b/src/_icons/switch-horizontal.svg index 34c5d91cf..6cf15b0a8 100644 --- a/src/_icons/switch-horizontal.svg +++ b/src/_icons/switch-horizontal.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eb31" --- - - - - + + + + diff --git a/src/_icons/switch-vertical.svg b/src/_icons/switch-vertical.svg index adb4361fa..5086902db 100644 --- a/src/_icons/switch-vertical.svg +++ b/src/_icons/switch-vertical.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eb32" --- - - - - + + + + diff --git a/src/_icons/switch.svg b/src/_icons/switch.svg index f70e90953..ee7fab8d9 100644 --- a/src/_icons/switch.svg +++ b/src/_icons/switch.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eb33" --- - - - - - + + + + + diff --git a/src/_icons/sword-off.svg b/src/_icons/sword-off.svg index 6165bebea..6a2c7df5f 100644 --- a/src/_icons/sword-off.svg +++ b/src/_icons/sword-off.svg @@ -1,10 +1,10 @@ --- tags: [weapon, knight, blade, war, minecraft, warrior] -version: "1.67" -unicode: "f1ac" +unicode: "f434" +version: "1.94" --- - + diff --git a/src/_icons/table-alias.svg b/src/_icons/table-alias.svg index 9da386ca3..f471976e4 100644 --- a/src/_icons/table-alias.svg +++ b/src/_icons/table-alias.svg @@ -6,7 +6,7 @@ unicode: "f25b" --- - + diff --git a/src/_icons/table-off.svg b/src/_icons/table-off.svg index 3d13ab2af..c08a8e312 100644 --- a/src/_icons/table-off.svg +++ b/src/_icons/table-off.svg @@ -1,6 +1,6 @@ --- -category: Database tags: [spreadsheet, layout, grid, arrange, row, column] +category: Database version: "1.39" unicode: "eefa" --- @@ -8,5 +8,5 @@ unicode: "eefa" - + diff --git a/src/_icons/table-options.svg b/src/_icons/table-options.svg index 212e4d33a..eb990bb41 100644 --- a/src/_icons/table-options.svg +++ b/src/_icons/table-options.svg @@ -8,7 +8,7 @@ unicode: "f25c" - + diff --git a/src/_icons/table.svg b/src/_icons/table.svg index dbefca5da..9d2ff3585 100644 --- a/src/_icons/table.svg +++ b/src/_icons/table.svg @@ -5,7 +5,7 @@ version: "1.3" unicode: "eba1" --- - - - + + + diff --git a/src/_icons/tag-off.svg b/src/_icons/tag-off.svg index 732f9927e..72a2193fa 100644 --- a/src/_icons/tag-off.svg +++ b/src/_icons/tag-off.svg @@ -1,11 +1,11 @@ --- -tags: [label, price, shopping, promotion] +tags: [label, price] category: E-commerce version: "1.49" unicode: "efc0" --- - + diff --git a/src/_icons/tags-off.svg b/src/_icons/tags-off.svg index f01cf5fb7..6332d5f86 100644 --- a/src/_icons/tags-off.svg +++ b/src/_icons/tags-off.svg @@ -6,7 +6,7 @@ unicode: "efc1" --- - + 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..1be7f97e0 100644 --- a/src/_icons/tallymark-2.svg +++ b/src/_icons/tallymark-2.svg @@ -5,6 +5,6 @@ version: "1.11" unicode: "ec47" --- - - + + diff --git a/src/_icons/tallymark-3.svg b/src/_icons/tallymark-3.svg index 4735b2083..dd7021277 100644 --- a/src/_icons/tallymark-3.svg +++ b/src/_icons/tallymark-3.svg @@ -5,7 +5,7 @@ version: "1.11" unicode: "ec48" --- - - - + + + diff --git a/src/_icons/tallymark-4.svg b/src/_icons/tallymark-4.svg index 53ada9458..8a1a51089 100644 --- a/src/_icons/tallymark-4.svg +++ b/src/_icons/tallymark-4.svg @@ -5,8 +5,8 @@ version: "1.11" unicode: "ec49" --- - - - - + + + + diff --git a/src/_icons/tallymarks.svg b/src/_icons/tallymarks.svg index 9af771389..5338a1df7 100644 --- a/src/_icons/tallymarks.svg +++ b/src/_icons/tallymarks.svg @@ -5,9 +5,9 @@ version: "1.11" unicode: "ec4a" --- - - - - - + + + + + diff --git a/src/_icons/tank.svg b/src/_icons/tank.svg index 8831ab82c..ecd207d9b 100644 --- a/src/_icons/tank.svg +++ b/src/_icons/tank.svg @@ -5,7 +5,7 @@ version: "1.34" unicode: "ed95" --- - + - + diff --git a/src/_icons/target-arrow.svg b/src/_icons/target-arrow.svg new file mode 100644 index 000000000..3723bc6b2 --- /dev/null +++ b/src/_icons/target-arrow.svg @@ -0,0 +1,13 @@ +--- +tags: [goal, aim, archery, archer] +version: "1.102" +unicode: "f51a" +category: Sport +--- + + + + + + + diff --git a/src/_icons/target.svg b/src/_icons/target.svg index d85c9b161..35244375e 100644 --- a/src/_icons/target.svg +++ b/src/_icons/target.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eb35" --- - - - + + + diff --git a/src/_icons/teapot.svg b/src/_icons/teapot.svg new file mode 100644 index 000000000..3545a73e4 --- /dev/null +++ b/src/_icons/teapot.svg @@ -0,0 +1,10 @@ +--- +tags: [kettle, kitchen, hot, coffee, kitchenware] +version: "1.105" +unicode: "f552" +--- + + + + + diff --git a/src/_icons/telescope-off.svg b/src/_icons/telescope-off.svg index f7a9f7717..f87104c18 100644 --- a/src/_icons/telescope-off.svg +++ b/src/_icons/telescope-off.svg @@ -4,9 +4,9 @@ version: "1.67" unicode: "f1ae" --- - - + + - + diff --git a/src/_icons/temperature-celsius.svg b/src/_icons/temperature-celsius.svg index 6ded35ebc..c87ad1524 100644 --- a/src/_icons/temperature-celsius.svg +++ b/src/_icons/temperature-celsius.svg @@ -5,6 +5,6 @@ version: "1.1" unicode: "eb36" --- - + diff --git a/src/_icons/temperature-fahrenheit.svg b/src/_icons/temperature-fahrenheit.svg index e40e97901..c03ef11cd 100644 --- a/src/_icons/temperature-fahrenheit.svg +++ b/src/_icons/temperature-fahrenheit.svg @@ -5,7 +5,7 @@ version: "1.1" unicode: "eb37" --- - - + + diff --git a/src/_icons/temperature-minus.svg b/src/_icons/temperature-minus.svg index 3b17466a0..a21d0203f 100644 --- a/src/_icons/temperature-minus.svg +++ b/src/_icons/temperature-minus.svg @@ -6,6 +6,6 @@ unicode: "ebed" --- - - + + diff --git a/src/_icons/temperature-plus.svg b/src/_icons/temperature-plus.svg index 30d8827d5..d04079e07 100644 --- a/src/_icons/temperature-plus.svg +++ b/src/_icons/temperature-plus.svg @@ -6,7 +6,7 @@ unicode: "ebee" --- - - - + + + diff --git a/src/_icons/temperature.svg b/src/_icons/temperature.svg index 1482d2a3b..80601590f 100644 --- a/src/_icons/temperature.svg +++ b/src/_icons/temperature.svg @@ -6,5 +6,5 @@ unicode: "eb38" --- - + diff --git a/src/_icons/template-off.svg b/src/_icons/template-off.svg index f49f2ef84..dd836bd1b 100644 --- a/src/_icons/template-off.svg +++ b/src/_icons/template-off.svg @@ -6,7 +6,7 @@ unicode: "f1b0" --- - + diff --git a/src/_icons/template.svg b/src/_icons/template.svg index 2436c4694..da45265c3 100644 --- a/src/_icons/template.svg +++ b/src/_icons/template.svg @@ -5,9 +5,9 @@ version: "1.1" unicode: "eb39" --- - - - - - + + + + + diff --git a/src/_icons/tent-off.svg b/src/_icons/tent-off.svg new file mode 100644 index 000000000..20f504f6a --- /dev/null +++ b/src/_icons/tent-off.svg @@ -0,0 +1,10 @@ +--- +tags: [camping, holiday, vacation, outdoor, survival, travel, adventure] +category: Map +unicode: "f435" +version: "1.94" +--- + + + + diff --git a/src/_icons/terminal-2.svg b/src/_icons/terminal-2.svg index 31044aca3..6c62cb5d4 100644 --- a/src/_icons/terminal-2.svg +++ b/src/_icons/terminal-2.svg @@ -5,6 +5,6 @@ unicode: "ebef" --- - - + + diff --git a/src/_icons/terminal.svg b/src/_icons/terminal.svg index 3b463ce30..2e2677c85 100644 --- a/src/_icons/terminal.svg +++ b/src/_icons/terminal.svg @@ -5,5 +5,5 @@ unicode: "ebdc" --- - + diff --git a/src/_icons/test-pipe-off.svg b/src/_icons/test-pipe-off.svg index a1086f7ca..1cee0055e 100644 --- a/src/_icons/test-pipe-off.svg +++ b/src/_icons/test-pipe-off.svg @@ -4,7 +4,7 @@ version: "1.67" unicode: "f1b1" --- - + diff --git a/src/_icons/tex.svg b/src/_icons/tex.svg new file mode 100644 index 000000000..b13ef7cc1 --- /dev/null +++ b/src/_icons/tex.svg @@ -0,0 +1,14 @@ +--- +tags: [file, document, type, format ] +category: Text +unicode: "f4e0" +version: "1.99" +--- + + + + + + + + diff --git a/src/_icons/text-caption.svg b/src/_icons/text-caption.svg new file mode 100644 index 000000000..d67c0425b --- /dev/null +++ b/src/_icons/text-caption.svg @@ -0,0 +1,11 @@ +--- +tags: [document, file, lettering, image, picture] +category: Text +unicode: "f4a4" +version: "1.96" +--- + + + + + diff --git a/src/_icons/text-color.svg b/src/_icons/text-color.svg index bb32b5f9b..b91c79046 100644 --- a/src/_icons/text-color.svg +++ b/src/_icons/text-color.svg @@ -1,4 +1,5 @@ --- +tags: [format, document, file, edit] category: Text version: "1.82" unicode: "f2dc" diff --git a/src/_icons/text-orientation.svg b/src/_icons/text-orientation.svg index d97d6ef53..73effea51 100644 --- a/src/_icons/text-orientation.svg +++ b/src/_icons/text-orientation.svg @@ -1,4 +1,5 @@ --- +tags: [aglinment, file, document, edit, right] category: Text version: "1.79" unicode: "f2a4" diff --git a/src/_icons/text-plus.svg b/src/_icons/text-plus.svg index 086caadfd..8af0cc7c9 100644 --- a/src/_icons/text-plus.svg +++ b/src/_icons/text-plus.svg @@ -1,4 +1,5 @@ --- +tags: [add, new, document, file, edit] category: Text version: "1.79" unicode: "f2a5" diff --git a/src/_icons/text-resize.svg b/src/_icons/text-resize.svg index 2a72b6d18..409b4355f 100644 --- a/src/_icons/text-resize.svg +++ b/src/_icons/text-resize.svg @@ -5,10 +5,10 @@ version: "1.46" unicode: "ef87" --- - - - - + + + + diff --git a/src/_icons/text-size.svg b/src/_icons/text-size.svg index 2a0453492..889063d74 100644 --- a/src/_icons/text-size.svg +++ b/src/_icons/text-size.svg @@ -1,4 +1,5 @@ --- +tags: [font, edit, document, type, letter] category: Text version: "1.80" unicode: "f2b1" diff --git a/src/_icons/text-spellcheck.svg b/src/_icons/text-spellcheck.svg index 578668b98..946001f85 100644 --- a/src/_icons/text-spellcheck.svg +++ b/src/_icons/text-spellcheck.svg @@ -1,4 +1,5 @@ --- +tags: [grammar, spelling, ortography] category: Text version: "1.79" unicode: "f2a6" diff --git a/src/_icons/text-wrap-disabled.svg b/src/_icons/text-wrap-disabled.svg index 938babf4e..926a72a0e 100644 --- a/src/_icons/text-wrap-disabled.svg +++ b/src/_icons/text-wrap-disabled.svg @@ -5,7 +5,7 @@ version: "1.17" unicode: "eca7" --- - - + + diff --git a/src/_icons/text-wrap.svg b/src/_icons/text-wrap.svg index 6e9aa52ea..a13eb077d 100644 --- a/src/_icons/text-wrap.svg +++ b/src/_icons/text-wrap.svg @@ -5,7 +5,7 @@ version: "1.6" unicode: "ebdd" --- - - + + diff --git a/src/_icons/texture.svg b/src/_icons/texture.svg new file mode 100644 index 000000000..9ff1c2d13 --- /dev/null +++ b/src/_icons/texture.svg @@ -0,0 +1,14 @@ +--- +tags: [pattern, abstract, decoration, background, fashion] +version: "1.102" +unicode: "f51b" +--- + + + + + + + + + diff --git a/src/_icons/thumb-down-filled.svg b/src/_icons/thumb-down-filled.svg new file mode 100644 index 000000000..268e3f9ce --- /dev/null +++ b/src/_icons/thumb-down-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6aa" +--- + + + diff --git a/src/_icons/thumb-down-off.svg b/src/_icons/thumb-down-off.svg new file mode 100644 index 000000000..c47e3716f --- /dev/null +++ b/src/_icons/thumb-down-off.svg @@ -0,0 +1,10 @@ +--- +tags: [dislike, bad, emotion] +category: System +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..ef8dea351 --- /dev/null +++ b/src/_icons/thumb-up-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6ab" +--- + + + diff --git a/src/_icons/thumb-up-off.svg b/src/_icons/thumb-up-off.svg new file mode 100644 index 000000000..aa4bab836 --- /dev/null +++ b/src/_icons/thumb-up-off.svg @@ -0,0 +1,10 @@ +--- +tags: [like, emotion, good, love] +category: System +unicode: "f437" +version: "1.94" +--- + + + + diff --git a/src/_icons/tic-tac.svg b/src/_icons/tic-tac.svg new file mode 100644 index 000000000..ec86473a0 --- /dev/null +++ b/src/_icons/tic-tac.svg @@ -0,0 +1,16 @@ +--- +tags: [toe, game, strategy, cross, circle ] +version: "1.102" +unicode: "f51c" +category: Sport +--- + + + + + + + + + + diff --git a/src/_icons/ticket.svg b/src/_icons/ticket.svg index 6578b68f4..906c562dc 100644 --- a/src/_icons/ticket.svg +++ b/src/_icons/ticket.svg @@ -4,8 +4,8 @@ version: "1.0" unicode: "eb3d" --- - - - + + + diff --git a/src/_icons/tilde.svg b/src/_icons/tilde.svg new file mode 100644 index 000000000..e7f4171be --- /dev/null +++ b/src/_icons/tilde.svg @@ -0,0 +1,8 @@ +--- +tags: [key, sign, about, rounding, math] +unicode: "f4a5" +version: "1.96" +--- + + + diff --git a/src/_icons/tilt-shift.svg b/src/_icons/tilt-shift.svg index f6b68e540..252fc60b6 100644 --- a/src/_icons/tilt-shift.svg +++ b/src/_icons/tilt-shift.svg @@ -13,5 +13,5 @@ unicode: "eefe" - + diff --git a/src/_icons/timeline-event-exclamation.svg b/src/_icons/timeline-event-exclamation.svg new file mode 100644 index 000000000..5726dcefe --- /dev/null +++ b/src/_icons/timeline-event-exclamation.svg @@ -0,0 +1,12 @@ +--- +unicode: "f662" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/timeline-event-minus.svg b/src/_icons/timeline-event-minus.svg new file mode 100644 index 000000000..622d26510 --- /dev/null +++ b/src/_icons/timeline-event-minus.svg @@ -0,0 +1,11 @@ +--- +unicode: "f663" +version: "1.119" +--- + + + + + + + diff --git a/src/_icons/timeline-event-plus.svg b/src/_icons/timeline-event-plus.svg new file mode 100644 index 000000000..2e205fcbf --- /dev/null +++ b/src/_icons/timeline-event-plus.svg @@ -0,0 +1,12 @@ +--- +unicode: "f664" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/timeline-event-text.svg b/src/_icons/timeline-event-text.svg new file mode 100644 index 000000000..72df2b52e --- /dev/null +++ b/src/_icons/timeline-event-text.svg @@ -0,0 +1,12 @@ +--- +unicode: "f665" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/timeline-event-x.svg b/src/_icons/timeline-event-x.svg new file mode 100644 index 000000000..e0389ccd0 --- /dev/null +++ b/src/_icons/timeline-event-x.svg @@ -0,0 +1,12 @@ +--- +unicode: "f666" +version: "1.119" +--- + + + + + + + + diff --git a/src/_icons/timeline-event.svg b/src/_icons/timeline-event.svg new file mode 100644 index 000000000..9e2c81321 --- /dev/null +++ b/src/_icons/timeline-event.svg @@ -0,0 +1,11 @@ +--- +tags: [process, plan, planning, diagram, chart, roadmap] +version: "1.105" +unicode: "f553" +--- + + + + + + diff --git a/src/_icons/timeline.svg b/src/_icons/timeline.svg index 5b5d3189b..66ef8ecb0 100644 --- a/src/_icons/timeline.svg +++ b/src/_icons/timeline.svg @@ -5,8 +5,8 @@ unicode: "f031" --- - - - - + + + + diff --git a/src/_icons/tir.svg b/src/_icons/tir.svg index a87831ef4..f284e4e3a 100644 --- a/src/_icons/tir.svg +++ b/src/_icons/tir.svg @@ -5,9 +5,9 @@ version: "1.7" unicode: "ebf0" --- - - + + - + diff --git a/src/_icons/toggle-left.svg b/src/_icons/toggle-left.svg index 368ce55d0..3c35e8730 100644 --- a/src/_icons/toggle-left.svg +++ b/src/_icons/toggle-left.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eb3e" --- - - + + diff --git a/src/_icons/toggle-right.svg b/src/_icons/toggle-right.svg index 0bc13047c..75fa1c656 100644 --- a/src/_icons/toggle-right.svg +++ b/src/_icons/toggle-right.svg @@ -5,6 +5,6 @@ version: "1.0" unicode: "eb3f" --- - - + + diff --git a/src/_icons/toilet-paper-off.svg b/src/_icons/toilet-paper-off.svg index 721a60596..2bfc7aff0 100644 --- a/src/_icons/toilet-paper-off.svg +++ b/src/_icons/toilet-paper-off.svg @@ -4,7 +4,7 @@ version: "1.67" unicode: "f1b4" --- - + diff --git a/src/_icons/toilet-paper.svg b/src/_icons/toilet-paper.svg index 816fa9e5b..f572ac3e9 100644 --- a/src/_icons/toilet-paper.svg +++ b/src/_icons/toilet-paper.svg @@ -4,7 +4,7 @@ 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..c4d9e2592 100644 --- a/src/_icons/tools-kitchen-2-off.svg +++ b/src/_icons/tools-kitchen-2-off.svg @@ -5,7 +5,7 @@ version: "1.67" unicode: "f1b5" --- - + diff --git a/src/_icons/tools-kitchen.svg b/src/_icons/tools-kitchen.svg index 2c04e5ec6..21250d33b 100644 --- a/src/_icons/tools-kitchen.svg +++ b/src/_icons/tools-kitchen.svg @@ -9,5 +9,5 @@ unicode: "ed64" - + diff --git a/src/_icons/tools-off.svg b/src/_icons/tools-off.svg index 09cb1efb9..a76ab913d 100644 --- a/src/_icons/tools-off.svg +++ b/src/_icons/tools-off.svg @@ -7,7 +7,7 @@ unicode: "f1b7" - + diff --git a/src/_icons/tools.svg b/src/_icons/tools.svg index 2599c8405..5c53bed1e 100644 --- a/src/_icons/tools.svg +++ b/src/_icons/tools.svg @@ -6,9 +6,9 @@ unicode: "ebca" --- - - - - - + + + + + diff --git a/src/_icons/tooltip.svg b/src/_icons/tooltip.svg index 846e8294b..211e03261 100644 --- a/src/_icons/tooltip.svg +++ b/src/_icons/tooltip.svg @@ -1,9 +1,10 @@ --- +tags: [info, help, information, advise] category: System version: "1.82" unicode: "f2dd" --- - + diff --git a/src/_icons/topology-bus.svg b/src/_icons/topology-bus.svg new file mode 100644 index 000000000..d0604cb6c --- /dev/null +++ b/src/_icons/topology-bus.svg @@ -0,0 +1,14 @@ +--- +category: Computers +unicode: "f5d9" +version: "1.112" +--- + + + + + + + + + diff --git a/src/_icons/topology-complex.svg b/src/_icons/topology-complex.svg new file mode 100644 index 000000000..96a5136f3 --- /dev/null +++ b/src/_icons/topology-complex.svg @@ -0,0 +1,17 @@ +--- +category: Computers +unicode: "f5da" +version: "1.112" +--- + + + + + + + + + + + + diff --git a/src/_icons/topology-full-hierarchy.svg b/src/_icons/topology-full-hierarchy.svg new file mode 100644 index 000000000..519719655 --- /dev/null +++ b/src/_icons/topology-full-hierarchy.svg @@ -0,0 +1,20 @@ +--- +category: Computers +unicode: "f5db" +version: "1.112" +--- + + + + + + + + + + + + + + + diff --git a/src/_icons/topology-full.svg b/src/_icons/topology-full.svg new file mode 100644 index 000000000..af4926b31 --- /dev/null +++ b/src/_icons/topology-full.svg @@ -0,0 +1,17 @@ +--- +category: Computers +unicode: "f5dc" +version: "1.112" +--- + + + + + + + + + + + + diff --git a/src/_icons/topology-ring-2.svg b/src/_icons/topology-ring-2.svg new file mode 100644 index 000000000..5769c7215 --- /dev/null +++ b/src/_icons/topology-ring-2.svg @@ -0,0 +1,13 @@ +--- +category: Computers +unicode: "f5dd" +version: "1.112" +--- + + + + + + + + diff --git a/src/_icons/topology-ring-3.svg b/src/_icons/topology-ring-3.svg new file mode 100644 index 000000000..39768bd6a --- /dev/null +++ b/src/_icons/topology-ring-3.svg @@ -0,0 +1,15 @@ +--- +category: Computers +unicode: "f5de" +version: "1.112" +--- + + + + + + + + + + diff --git a/src/_icons/topology-ring.svg b/src/_icons/topology-ring.svg new file mode 100644 index 000000000..116247fe6 --- /dev/null +++ b/src/_icons/topology-ring.svg @@ -0,0 +1,15 @@ +--- +category: Computers +unicode: "f5df" +version: "1.112" +--- + + + + + + + + + + diff --git a/src/_icons/topology-star-2.svg b/src/_icons/topology-star-2.svg new file mode 100644 index 000000000..edead9fa6 --- /dev/null +++ b/src/_icons/topology-star-2.svg @@ -0,0 +1,16 @@ +--- +category: Computers +unicode: "f5e0" +version: "1.112" +--- + + + + + + + + + + + diff --git a/src/_icons/topology-star-3.svg b/src/_icons/topology-star-3.svg new file mode 100644 index 000000000..42245c406 --- /dev/null +++ b/src/_icons/topology-star-3.svg @@ -0,0 +1,20 @@ +--- +category: Computers +unicode: "f5e1" +version: "1.112" +--- + + + + + + + + + + + + + + + diff --git a/src/_icons/topology-star-ring-2.svg b/src/_icons/topology-star-ring-2.svg new file mode 100644 index 000000000..7d78e400b --- /dev/null +++ b/src/_icons/topology-star-ring-2.svg @@ -0,0 +1,20 @@ +--- +category: Computers +unicode: "f5e2" +version: "1.112" +--- + + + + + + + + + + + + + + + diff --git a/src/_icons/topology-star-ring-3.svg b/src/_icons/topology-star-ring-3.svg new file mode 100644 index 000000000..51595cd78 --- /dev/null +++ b/src/_icons/topology-star-ring-3.svg @@ -0,0 +1,26 @@ +--- +category: Computers +unicode: "f5e3" +version: "1.112" +--- + + + + + + + + + + + + + + + + + + + + + diff --git a/src/_icons/topology-star-ring.svg b/src/_icons/topology-star-ring.svg new file mode 100644 index 000000000..bfd4e4853 --- /dev/null +++ b/src/_icons/topology-star-ring.svg @@ -0,0 +1,20 @@ +--- +category: Computers +unicode: "f5e4" +version: "1.112" +--- + + + + + + + + + + + + + + + diff --git a/src/_icons/topology-star.svg b/src/_icons/topology-star.svg new file mode 100644 index 000000000..4c3511de7 --- /dev/null +++ b/src/_icons/topology-star.svg @@ -0,0 +1,16 @@ +--- +category: Computers +unicode: "f5e5" +version: "1.112" +--- + + + + + + + + + + + diff --git a/src/_icons/torii.svg b/src/_icons/torii.svg new file mode 100644 index 000000000..cf696e815 --- /dev/null +++ b/src/_icons/torii.svg @@ -0,0 +1,13 @@ +--- +tags: [japan, gate, asia, building, monument] +category: Symbols +unicode: "f59b" +version: "1.109" +--- + + + + + + + diff --git a/src/_icons/tornado.svg b/src/_icons/tornado.svg index 89aaa3b9c..1ae6c76e8 100644 --- a/src/_icons/tornado.svg +++ b/src/_icons/tornado.svg @@ -5,9 +5,9 @@ version: "1.20" unicode: "ece2" --- - - - - - + + + + + diff --git a/src/_icons/tournament.svg b/src/_icons/tournament.svg index 0fd9e3e67..50afe370d 100644 --- a/src/_icons/tournament.svg +++ b/src/_icons/tournament.svg @@ -2,10 +2,14 @@ tags: [competition, competitor, sport, game, play, champion] version: "1.19" unicode: "ecd0" +category: Sport --- - - - - + + + + + + + diff --git a/src/_icons/tower-off.svg b/src/_icons/tower-off.svg index 3479076af..80a560054 100644 --- a/src/_icons/tower-off.svg +++ b/src/_icons/tower-off.svg @@ -1,4 +1,5 @@ --- +tags: [building, castle, fortress, palace] category: Buildings version: "1.81" unicode: "f2ca" diff --git a/src/_icons/tower.svg b/src/_icons/tower.svg index 2f2698d32..8cbb9abb7 100644 --- a/src/_icons/tower.svg +++ b/src/_icons/tower.svg @@ -1,4 +1,5 @@ --- +tags: [building, castle, fortress, palace] category: Buildings version: "1.81" unicode: "f2cb" diff --git a/src/_icons/tractor.svg b/src/_icons/tractor.svg index 09721cd29..194f68759 100644 --- a/src/_icons/tractor.svg +++ b/src/_icons/tractor.svg @@ -5,10 +5,10 @@ version: "1.8" unicode: "ec0d" --- - - - - + + + + diff --git a/src/_icons/traffic-cone.svg b/src/_icons/traffic-cone.svg index aa6f60914..edc9f8c10 100644 --- a/src/_icons/traffic-cone.svg +++ b/src/_icons/traffic-cone.svg @@ -5,8 +5,8 @@ version: "1.8" unicode: "ec0f" --- - - - + + + diff --git a/src/_icons/traffic-lights-off.svg b/src/_icons/traffic-lights-off.svg index 4eb1ecda4..d858f1a08 100644 --- a/src/_icons/traffic-lights-off.svg +++ b/src/_icons/traffic-lights-off.svg @@ -8,6 +8,6 @@ unicode: "f1b9" - + diff --git a/src/_icons/traffic-lights.svg b/src/_icons/traffic-lights.svg index 3c8c3cfd7..24bfc01bb 100644 --- a/src/_icons/traffic-lights.svg +++ b/src/_icons/traffic-lights.svg @@ -5,8 +5,8 @@ version: "1.27" unicode: "ed39" --- - - - - + + + + diff --git a/src/_icons/train.svg b/src/_icons/train.svg index 29c6f9c77..79496337c 100644 --- a/src/_icons/train.svg +++ b/src/_icons/train.svg @@ -8,8 +8,8 @@ unicode: "ed96" - - - - + + + + diff --git a/src/_icons/transform-filled.svg b/src/_icons/transform-filled.svg new file mode 100644 index 000000000..e8ff21cc8 --- /dev/null +++ b/src/_icons/transform-filled.svg @@ -0,0 +1,13 @@ +--- +category: Filled +version: "2.0" +unicode: "f6ac" +--- + + + + + + + + diff --git a/src/_icons/transform.svg b/src/_icons/transform.svg new file mode 100644 index 000000000..198996d21 --- /dev/null +++ b/src/_icons/transform.svg @@ -0,0 +1,13 @@ +--- +tags: [change, convert, adaptation, direction] +unicode: "f38e" +version: "1.91" +--- + + + + + + + + diff --git a/src/_icons/transition-bottom.svg b/src/_icons/transition-bottom.svg index 93f0f810f..1727c4a2a 100644 --- a/src/_icons/transition-bottom.svg +++ b/src/_icons/transition-bottom.svg @@ -1,11 +1,12 @@ --- +tags: [direction, south, down, moving] category: Arrows version: "1.80" unicode: "f2b2" --- - + diff --git a/src/_icons/transition-left.svg b/src/_icons/transition-left.svg index b5f63ba5e..cc72710fb 100644 --- a/src/_icons/transition-left.svg +++ b/src/_icons/transition-left.svg @@ -1,4 +1,5 @@ --- +tags: [direction, west, moving] category: Arrows version: "1.80" unicode: "f2b3" diff --git a/src/_icons/transition-right.svg b/src/_icons/transition-right.svg index 8748af324..e01f2eb37 100644 --- a/src/_icons/transition-right.svg +++ b/src/_icons/transition-right.svg @@ -1,4 +1,5 @@ --- +tags: [direction, east, moving] category: Arrows version: "1.80" unicode: "f2b4" diff --git a/src/_icons/transition-top.svg b/src/_icons/transition-top.svg index 06a8d1297..f7dd6410f 100644 --- a/src/_icons/transition-top.svg +++ b/src/_icons/transition-top.svg @@ -1,4 +1,5 @@ --- +tags: [direction, north, up, moving] category: Arrows version: "1.80" unicode: "f2b5" diff --git a/src/_icons/trash-off.svg b/src/_icons/trash-off.svg index 425429490..0efbeb61f 100644 --- a/src/_icons/trash-off.svg +++ b/src/_icons/trash-off.svg @@ -1,15 +1,15 @@ --- +tags: [garbage, delete, remove, bin, ash-bin, uninstall, dustbin] category: System -tags: [bin, litter, recycle, remove, delete, throw, away, waste] version: "1.31" unicode: "ed65" --- - + - - + + - + diff --git a/src/_icons/trash.svg b/src/_icons/trash.svg index a82cb03e9..c3b90178f 100644 --- a/src/_icons/trash.svg +++ b/src/_icons/trash.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eb41" --- - - - + + + diff --git a/src/_icons/tree.svg b/src/_icons/tree.svg index b7ee06228..2bb5afc48 100644 --- a/src/_icons/tree.svg +++ b/src/_icons/tree.svg @@ -8,5 +8,5 @@ unicode: "ef01" - + diff --git a/src/_icons/trees.svg b/src/_icons/trees.svg index 226d68fdf..aa6fa9a7d 100644 --- a/src/_icons/trees.svg +++ b/src/_icons/trees.svg @@ -6,9 +6,9 @@ unicode: "ec10" --- - + - + diff --git a/src/_icons/trekking.svg b/src/_icons/trekking.svg new file mode 100644 index 000000000..77272e972 --- /dev/null +++ b/src/_icons/trekking.svg @@ -0,0 +1,14 @@ +--- +tags: [adventure, travel, walking, hiking, activity] +category: Sport +unicode: "f5ad" +version: "1.110" +--- + + + + + + + + diff --git a/src/_icons/trending-down-2.svg b/src/_icons/trending-down-2.svg index 30f1951b4..ec10ed6f1 100644 --- a/src/_icons/trending-down-2.svg +++ b/src/_icons/trending-down-2.svg @@ -1,6 +1,6 @@ --- category: Arrows -tags: [arrow, decrease, fall] +tags: [arrow, decrease, fall, progress] version: "1.35" unicode: "edc1" --- diff --git a/src/_icons/trending-down-3.svg b/src/_icons/trending-down-3.svg index 1a37028f1..b93bdcdfa 100644 --- a/src/_icons/trending-down-3.svg +++ b/src/_icons/trending-down-3.svg @@ -1,5 +1,5 @@ --- -tags: [arrow, decrease, fall] +tags: [arrow, decrease, fall, progress] category: Arrows version: "1.35" unicode: "edc2" diff --git a/src/_icons/trending-down.svg b/src/_icons/trending-down.svg index 4a03d2376..f14389978 100644 --- a/src/_icons/trending-down.svg +++ b/src/_icons/trending-down.svg @@ -1,10 +1,10 @@ --- -tags: [arrow, decrease, fall] +tags: [arrow, decrease, fall, progress] category: Arrows version: "1.0" unicode: "eb42" --- - - + + diff --git a/src/_icons/trending-up-2.svg b/src/_icons/trending-up-2.svg index cde6f20c6..f2f42f5a9 100644 --- a/src/_icons/trending-up-2.svg +++ b/src/_icons/trending-up-2.svg @@ -1,6 +1,6 @@ --- category: Arrows -tags: [arrow, grow, increase] +tags: [arrow, grow, increase, progress] version: "1.35" unicode: "edc3" --- diff --git a/src/_icons/trending-up-3.svg b/src/_icons/trending-up-3.svg index 1dde96d2b..2e4666e66 100644 --- a/src/_icons/trending-up-3.svg +++ b/src/_icons/trending-up-3.svg @@ -1,5 +1,5 @@ --- -tags: [arrow, grow, increase] +tags: [arrow, grow, increase, progress] category: Arrows version: "1.35" unicode: "edc4" diff --git a/src/_icons/trending-up.svg b/src/_icons/trending-up.svg index fe836da3f..7019f63a0 100644 --- a/src/_icons/trending-up.svg +++ b/src/_icons/trending-up.svg @@ -1,10 +1,10 @@ --- -tags: [arrow, grow, increase] +tags: [arrow, grow, increase, progress] category: Arrows 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..c356f0b72 --- /dev/null +++ b/src/_icons/triangle-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.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..b40a330b4 --- /dev/null +++ b/src/_icons/triangle-inverted-filled.svg @@ -0,0 +1,8 @@ +--- +category: Filled +version: "2.0" +unicode: "f6ae" +--- + + + diff --git a/src/_icons/triangle-off.svg b/src/_icons/triangle-off.svg index 105ed410e..4a69de96f 100644 --- a/src/_icons/triangle-off.svg +++ b/src/_icons/triangle-off.svg @@ -1,6 +1,6 @@ --- +tags: [delta] category: Shapes -tags: [shape, crossed, angle] version: "1.39" unicode: "ef02" --- diff --git a/src/_icons/triangle-square-circle.svg b/src/_icons/triangle-square-circle.svg index 35ebb47ad..b0ff109b0 100644 --- a/src/_icons/triangle-square-circle.svg +++ b/src/_icons/triangle-square-circle.svg @@ -6,6 +6,6 @@ unicode: "ece8" --- - - + + diff --git a/src/_icons/triangles.svg b/src/_icons/triangles.svg index a1bbf2eb5..034804ac6 100644 --- a/src/_icons/triangles.svg +++ b/src/_icons/triangles.svg @@ -6,5 +6,5 @@ unicode: "f0a5" --- - + diff --git a/src/_icons/trolley.svg b/src/_icons/trolley.svg new file mode 100644 index 000000000..31fe9b385 --- /dev/null +++ b/src/_icons/trolley.svg @@ -0,0 +1,13 @@ +--- +tags: [shopping, market, shop, delivery ] +category: Vehicles +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..c687290b1 --- /dev/null +++ b/src/_icons/trophy-filled.svg @@ -0,0 +1,13 @@ +--- +category: Filled +version: "2.0" +unicode: "f6af" +--- + + + + + + + + diff --git a/src/_icons/trophy-off.svg b/src/_icons/trophy-off.svg new file mode 100644 index 000000000..fbfd2fa17 --- /dev/null +++ b/src/_icons/trophy-off.svg @@ -0,0 +1,14 @@ +--- +tags: [success, win, prize, winner] +unicode: "f438" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/trophy.svg b/src/_icons/trophy.svg index 9c4b9eedc..9e2edafb8 100644 --- a/src/_icons/trophy.svg +++ b/src/_icons/trophy.svg @@ -4,10 +4,10 @@ version: "1.0" unicode: "eb45" --- - - - + + + - - + + diff --git a/src/_icons/trowel.svg b/src/_icons/trowel.svg new file mode 100644 index 000000000..3c23a1a62 --- /dev/null +++ b/src/_icons/trowel.svg @@ -0,0 +1,10 @@ +--- +tags: [tool, garden, equipment, mason, cement] +unicode: "f368" +version: "1.89" +--- + + + + + diff --git a/src/_icons/truck-delivery.svg b/src/_icons/truck-delivery.svg index 44a158830..9068f1b3c 100644 --- a/src/_icons/truck-delivery.svg +++ b/src/_icons/truck-delivery.svg @@ -5,8 +5,8 @@ version: "1.11" unicode: "ec4b" --- - - + + - + diff --git a/src/_icons/truck-loading.svg b/src/_icons/truck-loading.svg index c5447b582..2b91cd602 100644 --- a/src/_icons/truck-loading.svg +++ b/src/_icons/truck-loading.svg @@ -6,7 +6,7 @@ unicode: "f1da" --- - - - + + + diff --git a/src/_icons/truck-off.svg b/src/_icons/truck-off.svg index e6b9fe4f8..03bb4c9bf 100644 --- a/src/_icons/truck-off.svg +++ b/src/_icons/truck-off.svg @@ -1,12 +1,12 @@ --- +tags: [transport, vahicle, van, lorry, cargo, delivery] category: Vehicles -tags: [order, purchase, online, shop, store, e-commerce, lorry] version: "1.39" unicode: "ef03" --- - + - + diff --git a/src/_icons/truck-return.svg b/src/_icons/truck-return.svg index d8a6a2504..29b280411 100644 --- a/src/_icons/truck-return.svg +++ b/src/_icons/truck-return.svg @@ -5,9 +5,9 @@ version: "1.11" unicode: "ec4c" --- - - + + - + diff --git a/src/_icons/truck.svg b/src/_icons/truck.svg index 9833e9c7e..56ae13a7b 100644 --- a/src/_icons/truck.svg +++ b/src/_icons/truck.svg @@ -5,7 +5,7 @@ version: "1.5" unicode: "ebc4" --- - - + + diff --git a/src/_icons/txt.svg b/src/_icons/txt.svg new file mode 100644 index 000000000..deac2730f --- /dev/null +++ b/src/_icons/txt.svg @@ -0,0 +1,13 @@ +--- +tags: [file, format, type, document ] +version: "1.93" +unicode: "f3b1" +--- + + + + + + + + diff --git a/src/_icons/typography.svg b/src/_icons/typography.svg index 830f808d9..b6fd6dba4 100644 --- a/src/_icons/typography.svg +++ b/src/_icons/typography.svg @@ -5,9 +5,9 @@ version: "1.5" unicode: "ebc5" --- - - - - - + + + + + diff --git a/src/_icons/uf-off.svg b/src/_icons/uf-off.svg deleted file mode 100644 index 553a7fed5..000000000 --- a/src/_icons/uf-off.svg +++ /dev/null @@ -1,15 +0,0 @@ ---- -tags: [alien, space, astronomy, spaceship, galaxy] -version: "1.76" -unicode: "f26e" ---- - - - - - - - - - - diff --git a/src/_icons/ufo-off.svg b/src/_icons/ufo-off.svg new file mode 100644 index 000000000..95afabc4e --- /dev/null +++ b/src/_icons/ufo-off.svg @@ -0,0 +1,15 @@ +--- +tags: [alien, space, astronomy, spaceship, galaxy] +version: "1.76" +unicode: "f26e" +--- + + + + + + + + + + diff --git a/src/_icons/umbrella-filled.svg b/src/_icons/umbrella-filled.svg new file mode 100644 index 000000000..313ef01d7 --- /dev/null +++ b/src/_icons/umbrella-filled.svg @@ -0,0 +1,9 @@ +--- +category: Filled +version: "2.0" +unicode: "f6b0" +--- + + + + diff --git a/src/_icons/umbrella-off.svg b/src/_icons/umbrella-off.svg index e4c7b177e..66bcc2279 100644 --- a/src/_icons/umbrella-off.svg +++ b/src/_icons/umbrella-off.svg @@ -4,7 +4,7 @@ version: "1.67" unicode: "f1bb" --- - + diff --git a/src/_icons/unlink.svg b/src/_icons/unlink.svg index cfa253ccb..f753f8809 100644 --- a/src/_icons/unlink.svg +++ b/src/_icons/unlink.svg @@ -7,8 +7,8 @@ unicode: "eb46" - - - - + + + + diff --git a/src/_icons/upload.svg b/src/_icons/upload.svg index 7db0ae18b..b8300c547 100644 --- a/src/_icons/upload.svg +++ b/src/_icons/upload.svg @@ -6,6 +6,6 @@ unicode: "eb47" --- - - + + diff --git a/src/_icons/urgent.svg b/src/_icons/urgent.svg index 128605a77..50e307ed2 100644 --- a/src/_icons/urgent.svg +++ b/src/_icons/urgent.svg @@ -6,5 +6,5 @@ unicode: "eb48" - + diff --git a/src/_icons/usb.svg b/src/_icons/usb.svg index db86b1314..83957fdb4 100644 --- a/src/_icons/usb.svg +++ b/src/_icons/usb.svg @@ -4,11 +4,11 @@ version: "1.53" unicode: "f00c" --- - + - + diff --git a/src/_icons/user-check.svg b/src/_icons/user-check.svg index 3f3a63ef0..4aba4e41f 100644 --- a/src/_icons/user-check.svg +++ b/src/_icons/user-check.svg @@ -1,10 +1,10 @@ --- -tags: [tick, person, account] +tags: [tick, person, account, role] version: "1.0" unicode: "eb49" --- - + diff --git a/src/_icons/user-circle.svg b/src/_icons/user-circle.svg index 668b6d19e..6d4ea9e44 100644 --- a/src/_icons/user-circle.svg +++ b/src/_icons/user-circle.svg @@ -1,10 +1,10 @@ --- -tags: [account, avatar, profile, Facebook] +tags: [account, avatar, profile, role] version: "1.44" unicode: "ef68" --- - - + + diff --git a/src/_icons/user-exclamation.svg b/src/_icons/user-exclamation.svg index 9b0ec63be..332182eaf 100644 --- a/src/_icons/user-exclamation.svg +++ b/src/_icons/user-exclamation.svg @@ -4,8 +4,8 @@ version: "1.8" unicode: "ec12" --- - + - - + + diff --git a/src/_icons/user-minus.svg b/src/_icons/user-minus.svg index eb1a3fd0e..b87d9df82 100644 --- a/src/_icons/user-minus.svg +++ b/src/_icons/user-minus.svg @@ -1,10 +1,10 @@ --- -tags: [remove, cancel, person, account, unsubscribe] +tags: [remove, cancel, person, account, unsubscribe, role] version: "1.0" unicode: "eb4a" --- - + - + diff --git a/src/_icons/user-off.svg b/src/_icons/user-off.svg index 65429928b..5042220ac 100644 --- a/src/_icons/user-off.svg +++ b/src/_icons/user-off.svg @@ -6,5 +6,5 @@ unicode: "ecf9" - + diff --git a/src/_icons/user-plus.svg b/src/_icons/user-plus.svg index 92ac3c8d6..ec2aae98f 100644 --- a/src/_icons/user-plus.svg +++ b/src/_icons/user-plus.svg @@ -1,10 +1,10 @@ --- -tags: [add, create, new, person, people, follow, subscribe] +tags: [add, create, new, person, people, follow, subscribe, role] version: "1.0" unicode: "eb4b" --- - + diff --git a/src/_icons/user-search.svg b/src/_icons/user-search.svg index 36e4de779..32a7f932c 100644 --- a/src/_icons/user-search.svg +++ b/src/_icons/user-search.svg @@ -4,8 +4,8 @@ version: "1.46" unicode: "ef89" --- - + - + diff --git a/src/_icons/user-x.svg b/src/_icons/user-x.svg index 387d85b92..0fc479a3a 100644 --- a/src/_icons/user-x.svg +++ b/src/_icons/user-x.svg @@ -4,7 +4,7 @@ version: "1.0" unicode: "eb4c" --- - + diff --git a/src/_icons/user.svg b/src/_icons/user.svg index 30068e21c..9809f51ff 100644 --- a/src/_icons/user.svg +++ b/src/_icons/user.svg @@ -4,6 +4,6 @@ version: "1.0" unicode: "eb4d" --- - + diff --git a/src/_icons/users.svg b/src/_icons/users.svg index 5c9f88dfc..c75cbd08a 100644 --- a/src/_icons/users.svg +++ b/src/_icons/users.svg @@ -4,7 +4,7 @@ version: "1.7" unicode: "ebf2" --- - + diff --git a/src/_icons/uv-index.svg b/src/_icons/uv-index.svg new file mode 100644 index 000000000..665f380c8 --- /dev/null +++ b/src/_icons/uv-index.svg @@ -0,0 +1,12 @@ +--- +tags: [sun, ultraviolet, radiation] +category: Weather +version: "1.93" +unicode: "f3b2" +--- + + + + + + diff --git a/src/_icons/ux-circle.svg b/src/_icons/ux-circle.svg new file mode 100644 index 000000000..60735eb56 --- /dev/null +++ b/src/_icons/ux-circle.svg @@ -0,0 +1,12 @@ +--- +tags: [user, experience] +category: Design +unicode: "f369" +version: "1.89" +--- + + + + + + diff --git a/src/_icons/vaccine-bottle-off.svg b/src/_icons/vaccine-bottle-off.svg new file mode 100644 index 000000000..4e767326c --- /dev/null +++ b/src/_icons/vaccine-bottle-off.svg @@ -0,0 +1,14 @@ +--- +tags: [medical, medicine, pharmacy, covid, virus, drug] +category: Health +unicode: "f439" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/vaccine-bottle.svg b/src/_icons/vaccine-bottle.svg index c712051ae..89308d482 100644 --- a/src/_icons/vaccine-bottle.svg +++ b/src/_icons/vaccine-bottle.svg @@ -5,7 +5,7 @@ version: "1.44" unicode: "ef69" --- - + diff --git a/src/_icons/vacuum-cleaner.svg b/src/_icons/vacuum-cleaner.svg new file mode 100644 index 000000000..8cf3bfe4b --- /dev/null +++ b/src/_icons/vacuum-cleaner.svg @@ -0,0 +1,9 @@ +--- +unicode: "f5e6" +version: "1.112" +--- + + + + + diff --git a/src/_icons/variable-minus.svg b/src/_icons/variable-minus.svg new file mode 100644 index 000000000..af69b15a4 --- /dev/null +++ b/src/_icons/variable-minus.svg @@ -0,0 +1,12 @@ +--- +tags: [off, delete, maths, mathematics, science, calculate, function] +category: Math +unicode: "f36a" +version: "1.89" +--- + + + + + + diff --git a/src/_icons/variable-plus.svg b/src/_icons/variable-plus.svg new file mode 100644 index 000000000..de66e828b --- /dev/null +++ b/src/_icons/variable-plus.svg @@ -0,0 +1,12 @@ +--- +tags: [add, new, maths, mathematics, science, calculate, function] +category: Math +unicode: "f36b" +version: "1.89" +--- + + + + + + diff --git a/src/_icons/vector-bezier-2.svg b/src/_icons/vector-bezier-2.svg index 88aa17409..3676a67cb 100644 --- a/src/_icons/vector-bezier-2.svg +++ b/src/_icons/vector-bezier-2.svg @@ -5,11 +5,11 @@ version: "1.27" unicode: "f1a3" --- - - - - - - + + + + + + diff --git a/src/_icons/vector-bezier-arc.svg b/src/_icons/vector-bezier-arc.svg new file mode 100644 index 000000000..f4e84a44d --- /dev/null +++ b/src/_icons/vector-bezier-arc.svg @@ -0,0 +1,15 @@ +--- +tags: [curve, drafting, reshape, shape] +category: Design +unicode: "f4cd" +version: "1.98" +--- + + + + + + + + + diff --git a/src/_icons/vector-bezier-circle.svg b/src/_icons/vector-bezier-circle.svg new file mode 100644 index 000000000..454af53ae --- /dev/null +++ b/src/_icons/vector-bezier-circle.svg @@ -0,0 +1,16 @@ +--- +tags: [curve, drafting, reshape, shape] +category: Design +unicode: "f4ce" +version: "1.98" +--- + + + + + + + + + + diff --git a/src/_icons/vector-bezier.svg b/src/_icons/vector-bezier.svg index d21506909..46df7fec0 100644 --- a/src/_icons/vector-bezier.svg +++ b/src/_icons/vector-bezier.svg @@ -5,13 +5,13 @@ version: "1.27" unicode: "ef1d" --- - - - + + + - - - - + + + + diff --git a/src/_icons/vector-off.svg b/src/_icons/vector-off.svg index ff9ed7961..2d8d0963e 100644 --- a/src/_icons/vector-off.svg +++ b/src/_icons/vector-off.svg @@ -1,14 +1,14 @@ --- -tags: [curve, parametric, design, vector graphics, placement] +tags: [curve, parametric, design, vector graphics, placement ] category: Design version: "1.67" unicode: "f1be" --- - - - - + + + + diff --git a/src/_icons/vector-spline.svg b/src/_icons/vector-spline.svg new file mode 100644 index 000000000..9445b315d --- /dev/null +++ b/src/_icons/vector-spline.svg @@ -0,0 +1,11 @@ +--- +tags: [math, line, curve, geometry] +category: Design +unicode: "f565" +version: "1.106" +--- + + + + + diff --git a/src/_icons/vector-triangle-off.svg b/src/_icons/vector-triangle-off.svg index 2a71b0c1d..25e0f4d22 100644 --- a/src/_icons/vector-triangle-off.svg +++ b/src/_icons/vector-triangle-off.svg @@ -1,13 +1,13 @@ --- -tags: [curve, parametric, design, vector graphics, placement] +tags: [curve, parametric, design, vector graphics, placement ] category: Design version: "1.67" unicode: "f1bf" --- - - + + diff --git a/src/_icons/vector-triangle.svg b/src/_icons/vector-triangle.svg index 89639996b..d8bf75882 100644 --- a/src/_icons/vector-triangle.svg +++ b/src/_icons/vector-triangle.svg @@ -5,10 +5,10 @@ version: "1.17" unicode: "eca8" --- - - - - - - + + + + + + diff --git a/src/_icons/vector.svg b/src/_icons/vector.svg index 9f421f37a..2674193fc 100644 --- a/src/_icons/vector.svg +++ b/src/_icons/vector.svg @@ -5,12 +5,12 @@ version: "1.17" unicode: "eca9" --- - - - - - - - - + + + + + + + + diff --git a/src/_icons/venus.svg b/src/_icons/venus.svg index 0dc6aba6a..ad735f687 100644 --- a/src/_icons/venus.svg +++ b/src/_icons/venus.svg @@ -5,7 +5,7 @@ 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..4802bc540 --- /dev/null +++ b/src/_icons/versions-filled.svg @@ -0,0 +1,10 @@ +--- +category: Filled +version: "2.0" +unicode: "f6b1" +--- + + + + + diff --git a/src/_icons/versions.svg b/src/_icons/versions.svg index d9f54b587..d5f2d9173 100644 --- a/src/_icons/versions.svg +++ b/src/_icons/versions.svg @@ -4,7 +4,7 @@ version: "1.29" unicode: "ed52" --- - - - + + + diff --git a/src/_icons/video-minus.svg b/src/_icons/video-minus.svg index 8383732f8..60f46f36a 100644 --- a/src/_icons/video-minus.svg +++ b/src/_icons/video-minus.svg @@ -6,6 +6,6 @@ unicode: "ed1f" --- - - + + diff --git a/src/_icons/video-off.svg b/src/_icons/video-off.svg index 83c08def4..2bf91180e 100644 --- a/src/_icons/video-off.svg +++ b/src/_icons/video-off.svg @@ -1,11 +1,11 @@ --- +tags: [film, shoot, recording, taping, camera] category: Media -tags: [film, shoot, recording, taping, camera, end, complete ] version: "1.25" unicode: "ed20" --- - + diff --git a/src/_icons/video-plus.svg b/src/_icons/video-plus.svg index ed0c3553f..6ae03d214 100644 --- a/src/_icons/video-plus.svg +++ b/src/_icons/video-plus.svg @@ -6,7 +6,7 @@ unicode: "ed21" --- - - - + + + diff --git a/src/_icons/video.svg b/src/_icons/video.svg index 84a635e81..628a96a35 100644 --- a/src/_icons/video.svg +++ b/src/_icons/video.svg @@ -6,5 +6,5 @@ unicode: "ed22" --- - + diff --git a/src/_icons/view-360-off.svg b/src/_icons/view-360-off.svg index 0236e9fa1..04c9558b2 100644 --- a/src/_icons/view-360-off.svg +++ b/src/_icons/view-360-off.svg @@ -4,7 +4,7 @@ version: "1.67" unicode: "f1c1" --- - + diff --git a/src/_icons/view-360.svg b/src/_icons/view-360.svg index 38d20d112..c5b350256 100644 --- a/src/_icons/view-360.svg +++ b/src/_icons/view-360.svg @@ -4,7 +4,7 @@ version: "1.33" unicode: "ed84" --- - - - + + + diff --git a/src/_icons/viewfinder.svg b/src/_icons/viewfinder.svg index fc722d949..64b815e2b 100644 --- a/src/_icons/viewfinder.svg +++ b/src/_icons/viewfinder.svg @@ -5,10 +5,10 @@ version: "1.0" unicode: "eb4e" --- - - - - - - + + + + + + diff --git a/src/_icons/vinyl.svg b/src/_icons/vinyl.svg index ca6046b62..ac75f45a1 100644 --- a/src/_icons/vinyl.svg +++ b/src/_icons/vinyl.svg @@ -5,8 +5,8 @@ category: Devices unicode: "f00d" --- - - - + + + diff --git a/src/_icons/vip-off.svg b/src/_icons/vip-off.svg new file mode 100644 index 000000000..207d7301a --- /dev/null +++ b/src/_icons/vip-off.svg @@ -0,0 +1,13 @@ +--- +tags: [premium, exclusive, staff, expensive] +unicode: "f43a" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/vip.svg b/src/_icons/vip.svg new file mode 100644 index 000000000..2ae75f02a --- /dev/null +++ b/src/_icons/vip.svg @@ -0,0 +1,12 @@ +--- +tags: [premium, exclusive, staff, expensive] +version: "1.93" +unicode: "f3b3" +--- + + + + + + + diff --git a/src/_icons/virus-off.svg b/src/_icons/virus-off.svg index be6688b76..2d6966c04 100644 --- a/src/_icons/virus-off.svg +++ b/src/_icons/virus-off.svg @@ -1,18 +1,25 @@ --- +tags: [infection, illness, cell, infectious, health] category: Health -tags: [covid, coronavirus, biology, infection, infected, cell, viral, infectious, disease] version: "1.31" unicode: "ed66" --- - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/virus-search.svg b/src/_icons/virus-search.svg index caf4a35a4..0bef26d80 100644 --- a/src/_icons/virus-search.svg +++ b/src/_icons/virus-search.svg @@ -6,13 +6,20 @@ unicode: "ed67" --- - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/src/_icons/virus.svg b/src/_icons/virus.svg index e1e1fe813..06cc0eda8 100644 --- a/src/_icons/virus.svg +++ b/src/_icons/virus.svg @@ -5,13 +5,21 @@ version: "1.2" unicode: "eb74" --- - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/_icons/vocabulary-off.svg b/src/_icons/vocabulary-off.svg new file mode 100644 index 000000000..af01b7b87 --- /dev/null +++ b/src/_icons/vocabulary-off.svg @@ -0,0 +1,14 @@ +--- +tags: [language, traffic, text, book, study, dictionary] +category: Text +unicode: "f43b" +version: "1.94" +--- + + + + + + + + diff --git a/src/_icons/volume-off.svg b/src/_icons/volume-off.svg index 6105c7fae..4497b6314 100644 --- a/src/_icons/volume-off.svg +++ b/src/_icons/volume-off.svg @@ -5,8 +5,8 @@ version: "1.67" unicode: "f1c3" --- - - + + diff --git a/src/_icons/walk.svg b/src/_icons/walk.svg index 98bb7c3d7..029abce7b 100644 --- a/src/_icons/walk.svg +++ b/src/_icons/walk.svg @@ -5,8 +5,8 @@ version: "1.14" unicode: "ec87" --- - - + + diff --git a/src/_icons/wall-off.svg b/src/_icons/wall-off.svg new file mode 100644 index 000000000..003e2ddf0 --- /dev/null +++ b/src/_icons/wall-off.svg @@ -0,0 +1,16 @@ +--- +tags: [brick, security, firewall, building, renovation, consturction] +unicode: "f43c" +version: "1.94" +--- + + + + + + + + + + + diff --git a/src/_icons/wall.svg b/src/_icons/wall.svg index 199f6a69b..c0b88d82f 100644 --- a/src/_icons/wall.svg +++ b/src/_icons/wall.svg @@ -4,7 +4,7 @@ version: "1.45" unicode: "ef7a" --- - + diff --git a/src/_icons/wallpaper-off.svg b/src/_icons/wallpaper-off.svg index 1b72c9cdf..b97fe796c 100644 --- a/src/_icons/wallpaper-off.svg +++ b/src/_icons/wallpaper-off.svg @@ -4,8 +4,8 @@ version: "1.67" unicode: "f1c5" --- - - + + diff --git a/src/_icons/wallpaper.svg b/src/_icons/wallpaper.svg index 8aea4a506..8a808bb44 100644 --- a/src/_icons/wallpaper.svg +++ b/src/_icons/wallpaper.svg @@ -5,6 +5,6 @@ unicode: "ef56" --- - + diff --git a/src/_icons/wand.svg b/src/_icons/wand.svg index ee29c532a..a54c89b49 100644 --- a/src/_icons/wand.svg +++ b/src/_icons/wand.svg @@ -4,8 +4,8 @@ version: "1.5" unicode: "ebcb" --- - - + + diff --git a/src/_icons/wash-dry-1.svg b/src/_icons/wash-dry-1.svg new file mode 100644 index 000000000..bf61c3fb4 --- /dev/null +++ b/src/_icons/wash-dry-1.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f2fa" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-dry-2.svg b/src/_icons/wash-dry-2.svg new file mode 100644 index 000000000..2738f2280 --- /dev/null +++ b/src/_icons/wash-dry-2.svg @@ -0,0 +1,12 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f2fb" +version: "1.84" +--- + + + + + + diff --git a/src/_icons/wash-dry-3.svg b/src/_icons/wash-dry-3.svg new file mode 100644 index 000000000..945221539 --- /dev/null +++ b/src/_icons/wash-dry-3.svg @@ -0,0 +1,13 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f2fc" +version: "1.84" +--- + + + + + + + diff --git a/src/_icons/wash-dry-a.svg b/src/_icons/wash-dry-a.svg new file mode 100644 index 000000000..048b2ae5c --- /dev/null +++ b/src/_icons/wash-dry-a.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f2fd" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-dry-dip.svg b/src/_icons/wash-dry-dip.svg new file mode 100644 index 000000000..ab911f199 --- /dev/null +++ b/src/_icons/wash-dry-dip.svg @@ -0,0 +1,12 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f2fe" +version: "1.84" +--- + + + + + + diff --git a/src/_icons/wash-dry-f.svg b/src/_icons/wash-dry-f.svg new file mode 100644 index 000000000..035294aa2 --- /dev/null +++ b/src/_icons/wash-dry-f.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f2ff" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-dry-hang.svg b/src/_icons/wash-dry-hang.svg new file mode 100644 index 000000000..c7ac88af6 --- /dev/null +++ b/src/_icons/wash-dry-hang.svg @@ -0,0 +1,10 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f300" +version: "1.84" +--- + + + + diff --git a/src/_icons/wash-dry-off.svg b/src/_icons/wash-dry-off.svg new file mode 100644 index 000000000..f85930610 --- /dev/null +++ b/src/_icons/wash-dry-off.svg @@ -0,0 +1,10 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f301" +version: "1.84" +--- + + + + diff --git a/src/_icons/wash-dry-p.svg b/src/_icons/wash-dry-p.svg new file mode 100644 index 000000000..a850f3918 --- /dev/null +++ b/src/_icons/wash-dry-p.svg @@ -0,0 +1,10 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f302" +version: "1.84" +--- + + + + diff --git a/src/_icons/wash-dry-shade.svg b/src/_icons/wash-dry-shade.svg new file mode 100644 index 000000000..3abaa1860 --- /dev/null +++ b/src/_icons/wash-dry-shade.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f303" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-dry-w.svg b/src/_icons/wash-dry-w.svg new file mode 100644 index 000000000..5d8c9b23f --- /dev/null +++ b/src/_icons/wash-dry-w.svg @@ -0,0 +1,10 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +version: "1.85" +unicode: "f322" +--- + + + + diff --git a/src/_icons/wash-dry.svg b/src/_icons/wash-dry.svg new file mode 100644 index 000000000..b0aeebcb0 --- /dev/null +++ b/src/_icons/wash-dry.svg @@ -0,0 +1,9 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f304" +version: "1.84" +--- + + + diff --git a/src/_icons/wash-dryclean-off.svg b/src/_icons/wash-dryclean-off.svg new file mode 100644 index 000000000..a42bad508 --- /dev/null +++ b/src/_icons/wash-dryclean-off.svg @@ -0,0 +1,10 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +version: "1.85" +unicode: "f323" +--- + + + + diff --git a/src/_icons/wash-dryclean.svg b/src/_icons/wash-dryclean.svg new file mode 100644 index 000000000..a8443bf0d --- /dev/null +++ b/src/_icons/wash-dryclean.svg @@ -0,0 +1,9 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f305" +version: "1.84" +--- + + + diff --git a/src/_icons/wash-gentle.svg b/src/_icons/wash-gentle.svg new file mode 100644 index 000000000..11996b8f8 --- /dev/null +++ b/src/_icons/wash-gentle.svg @@ -0,0 +1,12 @@ +--- +tags: [laundry, clean, clear, clothes, machine, delicate] +category: Laundry +unicode: "f306" +version: "1.84" +--- + + + + + + diff --git a/src/_icons/wash-machine.svg b/src/_icons/wash-machine.svg index 27bffc5b2..1fa4e8797 100644 --- a/src/_icons/wash-machine.svg +++ b/src/_icons/wash-machine.svg @@ -5,8 +5,8 @@ version: "1.75" unicode: "f25e" --- - - + + diff --git a/src/_icons/wash-off.svg b/src/_icons/wash-off.svg new file mode 100644 index 000000000..9e2c67871 --- /dev/null +++ b/src/_icons/wash-off.svg @@ -0,0 +1,11 @@ +--- +tags: [clean, cleaning, hygiene, laundry, clothes] +category: Laundry +unicode: "f307" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-press.svg b/src/_icons/wash-press.svg new file mode 100644 index 000000000..ca0c376ab --- /dev/null +++ b/src/_icons/wash-press.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes, machine, permanent] +category: Laundry +unicode: "f308" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-temperature-1.svg b/src/_icons/wash-temperature-1.svg new file mode 100644 index 000000000..afdac4865 --- /dev/null +++ b/src/_icons/wash-temperature-1.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes, low, cold] +category: Laundry +unicode: "f309" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash-temperature-2.svg b/src/_icons/wash-temperature-2.svg new file mode 100644 index 000000000..2932c29cd --- /dev/null +++ b/src/_icons/wash-temperature-2.svg @@ -0,0 +1,12 @@ +--- +tags: [laundry, clean, clear, clothes, low, cold] +category: Laundry +unicode: "f30a" +version: "1.84" +--- + + + + + + diff --git a/src/_icons/wash-temperature-3.svg b/src/_icons/wash-temperature-3.svg new file mode 100644 index 000000000..a99655345 --- /dev/null +++ b/src/_icons/wash-temperature-3.svg @@ -0,0 +1,13 @@ +--- +tags: [laundry, clean, clear, clothes, medium] +category: Laundry +unicode: "f30b" +version: "1.84" +--- + + + + + + + diff --git a/src/_icons/wash-temperature-4.svg b/src/_icons/wash-temperature-4.svg new file mode 100644 index 000000000..7f615de82 --- /dev/null +++ b/src/_icons/wash-temperature-4.svg @@ -0,0 +1,14 @@ +--- +tags: [laundry, clean, clear, clothes, high, hot] +category: Laundry +unicode: "f30c" +version: "1.84" +--- + + + + + + + + diff --git a/src/_icons/wash-temperature-5.svg b/src/_icons/wash-temperature-5.svg new file mode 100644 index 000000000..bb96f6335 --- /dev/null +++ b/src/_icons/wash-temperature-5.svg @@ -0,0 +1,15 @@ +--- +tags: [laundry, clean, clear, clothes, high, hot] +category: Laundry +unicode: "f30d" +version: "1.84" +--- + + + + + + + + + diff --git a/src/_icons/wash-temperature-6.svg b/src/_icons/wash-temperature-6.svg new file mode 100644 index 000000000..b025e431a --- /dev/null +++ b/src/_icons/wash-temperature-6.svg @@ -0,0 +1,16 @@ +--- +tags: [laundry, clean, clear, clothes, high, hot] +category: Laundry +unicode: "f30e" +version: "1.84" +--- + + + + + + + + + + diff --git a/src/_icons/wash-tumble-dry.svg b/src/_icons/wash-tumble-dry.svg new file mode 100644 index 000000000..919eb0817 --- /dev/null +++ b/src/_icons/wash-tumble-dry.svg @@ -0,0 +1,10 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f30f" +version: "1.84" +--- + + + + diff --git a/src/_icons/wash-tumble-off.svg b/src/_icons/wash-tumble-off.svg new file mode 100644 index 000000000..e7d55fced --- /dev/null +++ b/src/_icons/wash-tumble-off.svg @@ -0,0 +1,11 @@ +--- +tags: [laundry, clean, clear, clothes] +category: Laundry +unicode: "f310" +version: "1.84" +--- + + + + + diff --git a/src/_icons/wash.svg b/src/_icons/wash.svg new file mode 100644 index 000000000..cd36bb317 --- /dev/null +++ b/src/_icons/wash.svg @@ -0,0 +1,10 @@ +--- +tags: [clean, cleaning, hygiene, laundry, clothes] +category: Laundry +unicode: "f311" +version: "1.84" +--- + + + + diff --git a/src/_icons/webhook-off.svg b/src/_icons/webhook-off.svg new file mode 100644 index 000000000..ca456999c --- /dev/null +++ b/src/_icons/webhook-off.svg @@ -0,0 +1,11 @@ +--- +tags: [communication, interaction, comunity, browser] +unicode: "f43d" +version: "1.94" +--- + + + + + + diff --git a/src/_icons/weight.svg b/src/_icons/weight.svg new file mode 100644 index 000000000..1e5f9242f --- /dev/null +++ b/src/_icons/weight.svg @@ -0,0 +1,9 @@ +--- +tags: [gym, fitness, balance, exercise, sport] +unicode: "f589" +version: "1.108" +--- + + + + diff --git a/src/_icons/wheelchair-off.svg b/src/_icons/wheelchair-off.svg new file mode 100644 index 000000000..52bd98bfa --- /dev/null +++ b/src/_icons/wheelchair-off.svg @@ -0,0 +1,15 @@ +--- +tags: [disabled, disability, patient, medical, handicapped] +category: Vehicles +unicode: "f43e" +version: "1.94" +--- + + + + + + + + + diff --git a/src/_icons/wheelchair.svg b/src/_icons/wheelchair.svg index 8dfbc4825..28323ef30 100644 --- a/src/_icons/wheelchair.svg +++ b/src/_icons/wheelchair.svg @@ -5,8 +5,8 @@ version: "1.68" unicode: "f1db" --- - - + + diff --git a/src/_icons/whirl.svg b/src/_icons/whirl.svg new file mode 100644 index 000000000..83279ec53 --- /dev/null +++ b/src/_icons/whirl.svg @@ -0,0 +1,12 @@ +--- +tags: [cosmos, galaxy, space, spin, spiral, hypnosis] +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..c4066efb7 100644 --- a/src/_icons/wifi-1.svg +++ b/src/_icons/wifi-1.svg @@ -5,6 +5,6 @@ version: "1.3" unicode: "eba4" --- - + diff --git a/src/_icons/wifi-2.svg b/src/_icons/wifi-2.svg index c04a2a560..71e55c6d6 100644 --- a/src/_icons/wifi-2.svg +++ b/src/_icons/wifi-2.svg @@ -5,7 +5,7 @@ version: "1.3" unicode: "eba5" --- - + diff --git a/src/_icons/wifi-off.svg b/src/_icons/wifi-off.svg index 7a90c79c0..8955c7730 100644 --- a/src/_icons/wifi-off.svg +++ b/src/_icons/wifi-off.svg @@ -1,13 +1,13 @@ --- -category: Devices tags: [online, connection, signal, wireless] +category: Devices version: "1.22" unicode: "ecfa" --- - + - + diff --git a/src/_icons/wifi.svg b/src/_icons/wifi.svg index a3e045345..7f514c38f 100644 --- a/src/_icons/wifi.svg +++ b/src/_icons/wifi.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eb52" --- - + diff --git a/src/_icons/windmill-filled.svg b/src/_icons/windmill-filled.svg new file mode 100644 index 000000000..763eef495 --- /dev/null +++ b/src/_icons/windmill-filled.svg @@ -0,0 +1,11 @@ +--- +category: Filled +version: "2.0" +unicode: "f6b2" +--- + + + + + + diff --git a/src/_icons/window-maximize.svg b/src/_icons/window-maximize.svg index 618eb1714..e7e6e4d97 100644 --- a/src/_icons/window-maximize.svg +++ b/src/_icons/window-maximize.svg @@ -5,7 +5,7 @@ version: "1.69" unicode: "f1f1" --- - + diff --git a/src/_icons/window-minimize.svg b/src/_icons/window-minimize.svg index 194c86ca8..db6b0096f 100644 --- a/src/_icons/window-minimize.svg +++ b/src/_icons/window-minimize.svg @@ -5,7 +5,7 @@ version: "1.69" unicode: "f1f2" --- - + diff --git a/src/_icons/window.svg b/src/_icons/window.svg index e1d2d6d7f..c328afced 100644 --- a/src/_icons/window.svg +++ b/src/_icons/window.svg @@ -5,6 +5,6 @@ unicode: "ef06" --- - - + + diff --git a/src/_icons/wiper-wash.svg b/src/_icons/wiper-wash.svg index d3ab2743a..949664f02 100644 --- a/src/_icons/wiper-wash.svg +++ b/src/_icons/wiper-wash.svg @@ -5,9 +5,9 @@ version: "1.17" unicode: "ecaa" --- - + - + diff --git a/src/_icons/wiper.svg b/src/_icons/wiper.svg index 42b1bb2cb..207ee831a 100644 --- a/src/_icons/wiper.svg +++ b/src/_icons/wiper.svg @@ -5,7 +5,7 @@ version: "1.17" unicode: "ecab" --- - + - + diff --git a/src/_icons/woman.svg b/src/_icons/woman.svg index e3f1e4a99..4da5c62fb 100644 --- a/src/_icons/woman.svg +++ b/src/_icons/woman.svg @@ -4,6 +4,10 @@ version: "1.0" unicode: "eb53" --- - - + + + + + + diff --git a/src/_icons/wood.svg b/src/_icons/wood.svg new file mode 100644 index 000000000..a00e61505 --- /dev/null +++ b/src/_icons/wood.svg @@ -0,0 +1,11 @@ +--- +tags: [tree, forest, natural, timber, log] +unicode: "f359" +version: "1.88" +--- + + + + + + diff --git a/src/_icons/world-latitude.svg b/src/_icons/world-latitude.svg index 64823d866..e43390ead 100644 --- a/src/_icons/world-latitude.svg +++ b/src/_icons/world-latitude.svg @@ -5,8 +5,8 @@ version: "1.26" unicode: "ed2e" --- - - - - + + + + diff --git a/src/_icons/world-longitude.svg b/src/_icons/world-longitude.svg index 58a4e1d70..30a9c1d0b 100644 --- a/src/_icons/world-longitude.svg +++ b/src/_icons/world-longitude.svg @@ -5,8 +5,8 @@ version: "1.26" unicode: "ed2f" --- - + - + diff --git a/src/_icons/world-off.svg b/src/_icons/world-off.svg index ec40c9f49..afc5d9499 100644 --- a/src/_icons/world-off.svg +++ b/src/_icons/world-off.svg @@ -8,6 +8,6 @@ unicode: "f1ca" - + diff --git a/src/_icons/world-www.svg b/src/_icons/world-www.svg new file mode 100644 index 000000000..813f6a94c --- /dev/null +++ b/src/_icons/world-www.svg @@ -0,0 +1,17 @@ +--- +tags: [internet, online, web, website, browser] +category: Map +unicode: "f38f" +version: "1.91" +--- + + + + + + + + + + + diff --git a/src/_icons/world.svg b/src/_icons/world.svg index deedf3c21..f5f971062 100644 --- a/src/_icons/world.svg +++ b/src/_icons/world.svg @@ -5,9 +5,9 @@ version: "1.0" unicode: "eb54" --- - - - + + + diff --git a/src/_icons/wrecking-ball.svg b/src/_icons/wrecking-ball.svg index f7367feb8..3c3e80164 100644 --- a/src/_icons/wrecking-ball.svg +++ b/src/_icons/wrecking-ball.svg @@ -5,11 +5,11 @@ version: "1.34" unicode: "ed97" --- - - - - - + + + + + diff --git a/src/_icons/x.svg b/src/_icons/x.svg index 10f91d2fb..d71a1bea3 100644 --- a/src/_icons/x.svg +++ b/src/_icons/x.svg @@ -1,9 +1,9 @@ --- -tags: [cancel, remove, delete, empty] +tags: [cancel, remove, delete, empty, close] version: "1.0" unicode: "eb55" --- - - + + diff --git a/src/_icons/xbox-a.svg b/src/_icons/xbox-a.svg index 03fac6714..35c775788 100644 --- a/src/_icons/xbox-a.svg +++ b/src/_icons/xbox-a.svg @@ -1,4 +1,5 @@ --- +tags: [controller, joystick, button] category: Devices version: "1.80" unicode: "f2b6" diff --git a/src/_icons/xbox-b.svg b/src/_icons/xbox-b.svg index 661b945a9..0d24d9283 100644 --- a/src/_icons/xbox-b.svg +++ b/src/_icons/xbox-b.svg @@ -1,4 +1,5 @@ --- +tags: [controller, joystick, button] category: Devices version: "1.80" unicode: "f2b7" diff --git a/src/_icons/xbox-x.svg b/src/_icons/xbox-x.svg index 7ce94ac1e..8f42de9e9 100644 --- a/src/_icons/xbox-x.svg +++ b/src/_icons/xbox-x.svg @@ -1,4 +1,5 @@ --- +tags: [controller, joystick, button] category: Devices version: "1.80" unicode: "f2b8" diff --git a/src/_icons/xbox-y.svg b/src/_icons/xbox-y.svg index bbad872be..b6798ead1 100644 --- a/src/_icons/xbox-y.svg +++ b/src/_icons/xbox-y.svg @@ -1,4 +1,5 @@ --- +tags: [controller, joystick, button] category: Devices version: "1.80" unicode: "f2b9" diff --git a/src/_icons/yin-yang.svg b/src/_icons/yin-yang.svg index f188503e2..49f3137a4 100644 --- a/src/_icons/yin-yang.svg +++ b/src/_icons/yin-yang.svg @@ -5,7 +5,7 @@ version: "1.10" unicode: "ec35" --- - + diff --git a/src/_icons/yoga.svg b/src/_icons/yoga.svg index 3069692cc..c2e066adc 100644 --- a/src/_icons/yoga.svg +++ b/src/_icons/yoga.svg @@ -2,9 +2,10 @@ tags: [pose, sport, meditation, fitness] version: "1.54" unicode: "f01f" +category: Sport --- - + diff --git a/src/_icons/zeppelin-off.svg b/src/_icons/zeppelin-off.svg new file mode 100644 index 000000000..55ef0dd8e --- /dev/null +++ b/src/_icons/zeppelin-off.svg @@ -0,0 +1,11 @@ +--- +tags: [airship, transport, ballon, flying, travel] +category: Vehicles +unicode: "f43f" +version: "1.94" +--- + + + + + diff --git a/src/_icons/zip.svg b/src/_icons/zip.svg new file mode 100644 index 000000000..7192e24af --- /dev/null +++ b/src/_icons/zip.svg @@ -0,0 +1,10 @@ +--- +tags: [file, document, folder, compress, archive] +version: "1.93" +unicode: "f3b4" +--- + + + + + diff --git a/src/_icons/zodiac-aries.svg b/src/_icons/zodiac-aries.svg index ff05fca7e..4e6d43681 100644 --- a/src/_icons/zodiac-aries.svg +++ b/src/_icons/zodiac-aries.svg @@ -7,5 +7,5 @@ unicode: "ecad" - + diff --git a/src/_icons/zodiac-cancer.svg b/src/_icons/zodiac-cancer.svg index 28f065cc8..f78b619ff 100644 --- a/src/_icons/zodiac-cancer.svg +++ b/src/_icons/zodiac-cancer.svg @@ -5,8 +5,8 @@ version: "1.17" unicode: "ecae" --- - - + + diff --git a/src/_icons/zodiac-capricorn.svg b/src/_icons/zodiac-capricorn.svg index 57294698c..c22b4c4dc 100644 --- a/src/_icons/zodiac-capricorn.svg +++ b/src/_icons/zodiac-capricorn.svg @@ -7,5 +7,5 @@ unicode: "ecaf" - + diff --git a/src/_icons/zodiac-gemini.svg b/src/_icons/zodiac-gemini.svg index 994f8ca9f..347d9cbe6 100644 --- a/src/_icons/zodiac-gemini.svg +++ b/src/_icons/zodiac-gemini.svg @@ -7,6 +7,6 @@ unicode: "ecb0" - - + + diff --git a/src/_icons/zodiac-leo.svg b/src/_icons/zodiac-leo.svg index 57222462a..8d84831c0 100644 --- a/src/_icons/zodiac-leo.svg +++ b/src/_icons/zodiac-leo.svg @@ -6,8 +6,8 @@ unicode: "ecb1" --- - - + + diff --git a/src/_icons/zodiac-libra.svg b/src/_icons/zodiac-libra.svg index 5928d1bb5..211e74c18 100644 --- a/src/_icons/zodiac-libra.svg +++ b/src/_icons/zodiac-libra.svg @@ -5,6 +5,6 @@ version: "1.17" unicode: "ecb2" --- - + diff --git a/src/_icons/zodiac-pisces.svg b/src/_icons/zodiac-pisces.svg index 1ad557629..cff0fabff 100644 --- a/src/_icons/zodiac-pisces.svg +++ b/src/_icons/zodiac-pisces.svg @@ -7,5 +7,5 @@ unicode: "ecb3" - + diff --git a/src/_icons/zodiac-sagittarius.svg b/src/_icons/zodiac-sagittarius.svg index 723c6995b..63b109ebb 100644 --- a/src/_icons/zodiac-sagittarius.svg +++ b/src/_icons/zodiac-sagittarius.svg @@ -5,7 +5,7 @@ version: "1.17" unicode: "ecb4" --- - + - + diff --git a/src/_icons/zodiac-taurus.svg b/src/_icons/zodiac-taurus.svg index 39591933b..d2bdda751 100644 --- a/src/_icons/zodiac-taurus.svg +++ b/src/_icons/zodiac-taurus.svg @@ -6,5 +6,5 @@ unicode: "ecb6" --- - + diff --git a/src/_icons/zoom-cancel.svg b/src/_icons/zoom-cancel.svg index 14eb06acd..40fc89926 100644 --- a/src/_icons/zoom-cancel.svg +++ b/src/_icons/zoom-cancel.svg @@ -5,8 +5,8 @@ version: "1.11" unicode: "ec4d" --- - - - - + + + + diff --git a/src/_icons/zoom-check.svg b/src/_icons/zoom-check.svg index 9c2f7795c..03ceb5426 100644 --- a/src/_icons/zoom-check.svg +++ b/src/_icons/zoom-check.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ef09" --- - + diff --git a/src/_icons/zoom-code.svg b/src/_icons/zoom-code.svg index 619f7c107..6193464f9 100644 --- a/src/_icons/zoom-code.svg +++ b/src/_icons/zoom-code.svg @@ -5,7 +5,7 @@ version: "1.59" unicode: "f07f" --- - + diff --git a/src/_icons/zoom-exclamation.svg b/src/_icons/zoom-exclamation.svg index 7bda2b6dc..7cb560cd2 100644 --- a/src/_icons/zoom-exclamation.svg +++ b/src/_icons/zoom-exclamation.svg @@ -5,7 +5,7 @@ version: "1.59" unicode: "f080" --- - + diff --git a/src/_icons/zoom-in-area.svg b/src/_icons/zoom-in-area.svg index 3da601bd5..233866083 100644 --- a/src/_icons/zoom-in-area.svg +++ b/src/_icons/zoom-in-area.svg @@ -7,7 +7,7 @@ unicode: "f1dc" - + diff --git a/src/_icons/zoom-in.svg b/src/_icons/zoom-in.svg index ddf3503bb..a51315cf0 100644 --- a/src/_icons/zoom-in.svg +++ b/src/_icons/zoom-in.svg @@ -5,8 +5,8 @@ version: "1.0" unicode: "eb56" --- - - - - + + + + diff --git a/src/_icons/zoom-money.svg b/src/_icons/zoom-money.svg index 42dec919e..b2cb07372 100644 --- a/src/_icons/zoom-money.svg +++ b/src/_icons/zoom-money.svg @@ -5,7 +5,7 @@ version: "1.39" unicode: "ef0a" --- - + diff --git a/src/_icons/zoom-out-area.svg b/src/_icons/zoom-out-area.svg index 8cb91ae23..12af65eee 100644 --- a/src/_icons/zoom-out-area.svg +++ b/src/_icons/zoom-out-area.svg @@ -6,7 +6,7 @@ unicode: "f1dd" --- - + diff --git a/src/_icons/zoom-out.svg b/src/_icons/zoom-out.svg index b98a91327..d6b40cbec 100644 --- a/src/_icons/zoom-out.svg +++ b/src/_icons/zoom-out.svg @@ -5,7 +5,7 @@ version: "1.0" unicode: "eb57" --- - - - + + + diff --git a/src/_icons/zoom-pan.svg b/src/_icons/zoom-pan.svg index ada193d7d..8d27a7978 100644 --- a/src/_icons/zoom-pan.svg +++ b/src/_icons/zoom-pan.svg @@ -5,7 +5,7 @@ version: "1.68" unicode: "f1de" --- - + diff --git a/src/_icons/zoom-question.svg b/src/_icons/zoom-question.svg index 5c358c1f1..c7c271cb1 100644 --- a/src/_icons/zoom-question.svg +++ b/src/_icons/zoom-question.svg @@ -1,12 +1,12 @@ --- -tags: [ask, help, support, cue] +tags: [ask, help, support, cue, "?"] category: Map version: "1.37" unicode: "edeb" --- - + - + diff --git a/src/_icons/zoom-replace.svg b/src/_icons/zoom-replace.svg index c13014966..6968e2057 100644 --- a/src/_icons/zoom-replace.svg +++ b/src/_icons/zoom-replace.svg @@ -1,12 +1,13 @@ --- +tags: [find, change, switch, swap] category: Map version: "1.79" unicode: "f2a7" --- - + - + diff --git a/src/_icons/zzz-off.svg b/src/_icons/zzz-off.svg new file mode 100644 index 000000000..9e14a5fbe --- /dev/null +++ b/src/_icons/zzz-off.svg @@ -0,0 +1,10 @@ +--- +tags: [sleep, sleeping, bed, dream, snooze, rest] +unicode: "f440" +version: "1.94" +--- + + + + + diff --git a/src/_plugins/jekyll-filters.rb b/src/_plugins/jekyll-filters.rb new file mode 100644 index 000000000..ba13eb603 --- /dev/null +++ b/src/_plugins/jekyll-filters.rb @@ -0,0 +1,9 @@ +module Jekyll + module CustomFilters + def sort_has_tags(array, key = "tags") + array.sort_by { |v| v[key].length } + end + end +end + +Liquid::Template.register_filter(Jekyll::CustomFilters) diff --git a/src/editor.html b/src/editor.html index 1cc1cc5af..ba2ddf7a2 100644 --- a/src/editor.html +++ b/src/editor.html @@ -75,7 +75,7 @@ layout: default
- {% include_cached toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough,emphasis,baseline|align-left,align-center,align-right,align-justified,line-height|list,list-check,list-numbers|h-1,h-2,h-3,h-4,h-5,h-6,link,photo,table|sort-ascending,sort-descending,sort-ascending-letters,sort-ascending-numbers|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings,typography,letters-case,clear-formatting|parentheses,brackets,braces,terminal|bike,run,swimming,walk,pray,fall,karate|heart,spade,diamonds,clubs|repeat,repeat-once,switch,player-record,player-play,player-pause,player-stop,power,player-skip-forward,player-skip-back,player-track-next,player-track-prev,player-eject' %} + {% include_cached toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough,emphasis,baseline|align-left,align-center,align-right,align-justified,line-height|list,list-check,list-numbers|h-1,h-2,h-3,h-4,h-5,h-6,link,photo,table,regex|sort-ascending,sort-descending,sort-ascending-letters,sort-ascending-numbers|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings,typography,letters-case,clear-formatting|parentheses,brackets,braces,terminal|bike,run,swimming,walk,pray,fall,karate|heart,spade,diamonds,clubs|repeat,repeat-once,switch,player-record,player-play,player-pause,player-stop,power,player-skip-forward,player-skip-back,player-track-next,player-track-prev,player-eject' %}
{% assign new-icons = icons | where: "version", null %} diff --git a/src/index.html b/src/index.html index 5e409a7a3..974f9e1f6 100644 --- a/src/index.html +++ b/src/index.html @@ -14,16 +14,30 @@ layout: default + {% if jekyll.environment != "development" %}
{% for icon in site.icons %} {% assign name = icon.slug %}
- {% include_cached icon.html name=name stroke=1.25 %} + {% include_cached icon.html name=name stroke=1.5 %}
{% endfor %}
+
+
+
+ {% for icon in site.icons %} + {% assign name = icon.slug %} +
+ {% include_cached icon.html name=name stroke=1 %} +
+ {% endfor %} +
+
+
+ {% endif %} diff --git a/src/style.scss b/src/style.scss index 4886546df..6f32ef6de 100644 --- a/src/style.scss +++ b/src/style.scss @@ -318,14 +318,14 @@ Components width: 1.25rem; height: 1.25rem; position: absolute; - top: ($btn-form-height - 1.25rem) / 2; - right: ($btn-form-height - 1.25rem) / 2; + top: ($btn-form-height - 1.25rem) * .5; + right: ($btn-form-height - 1.25rem) * .5; stroke-width: 1.75; } &.icon-left { .icon { - left: ($btn-form-height - 1.25rem) / 2; + left: ($btn-form-height - 1.25rem) * .5; right: auto; } diff --git a/src/tags.html b/src/tags.html index aa71db322..431c2a887 100644 --- a/src/tags.html +++ b/src/tags.html @@ -6,7 +6,8 @@ layout: default
{% assign i = 0 %} - {% for icon in site.icons %} + {% assign icons = site.icons | sort_has_tags %} + {% for icon in icons %} diff --git a/src/tags.json b/src/tags.json index 3e698f20c..25b6e1cbd 100644 --- a/src/tags.json +++ b/src/tags.json @@ -1,7 +1,8 @@ --- --- -{ {% for icon in site.icons %} -{% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags %} "{{ icon.slug }}": { +{% assign common-tags = 'icon,stroke,outline' | split: ',' %}{ {% for icon in site.icons %} +{% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags | concat: common-tags %} "{{ icon.slug }}": { + "name": "{{ icon.slug }}", "category": "{{ icon.category }}", "tags": ["{{ tags | join: '", "' }}"], "version": "{{ icon.version }}", diff --git a/tabler-sprite-nostroke.svg b/tabler-sprite-nostroke.svg deleted file mode 100644 index f8d0d926c..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 8d333c1bc..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 1364ccdf8..44d30fc93 100644 --- a/tags.json +++ b/tags.json @@ -1,13393 +1,22429 @@ { - "2fa": { + "123": { + "name": "123", "category": "", - "tags": ["2fa", "login", "password", "verification", "code", "two-step"], + "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" }, - "3d-cube-sphere": { + "360-view": { + "name": "360-view", "category": "", - "tags": ["3d", "cube", "sphere", "printing", "vector", "shape"], + "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"], + "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"], + "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"], + "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"], + "tags": ["a", "b", "test", "visual", "user", "icon", "stroke", "outline"], "version": "1.11", "unicode": "ec36" }, - "abacus": { + "abacus-off": { + "name": "abacus-off", "category": "Math", - "tags": ["abacus", "abacus", "math", "counting", "adding up"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["ad", "2", "advert", "advertisement", "marketing", "commercial", "traffic", "icon", "stroke", "outline"], "version": "1.41", "unicode": "ef1f" }, - "ad": { + "ad-off": { + "name": "ad-off", "category": "Design", - "tags": ["ad", "advert", "advertisement", "marketing", "commercial", "traffic"], + "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": { + "address-book-off": { + "name": "address-book-off", "category": "", - "tags": ["address", "book", "contact", "contacts", "phonebook", "profile", "resources"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["affiliate", "network", "connection", "collaboration", "people", "connect", "organization", "networking", "icon", "stroke", "outline"], "version": "1.39", "unicode": "edff" }, - "alarm-off": { + "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": ["alarm", "off", "time", "watch", "clock", "ring"], + "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": { + "alarm-plus": { + "name": "alarm-plus", "category": "", - "tags": ["alarm", "time", "watch", "clock", "ring"], + "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": { + "album-off": { + "name": "album-off", "category": "", - "tags": ["album", "photos", "photography", "gallery", "music", "image"], + "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"], + "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"], + "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"], + "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"], + "tags": ["alien", "universe", "extraterrestrial", "ufo", "space", "galaxy", "planet", "icon", "stroke", "outline"], "version": "1.7", "unicode": "ebde" }, - "align-center": { + "align-box-bottom-center": { + "name": "align-box-bottom-center", "category": "Text", - "tags": ["align", "center", "text", "alignment", "position"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["anchor", "hold", "ship", "harbor", "docks", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb76" }, "angle": { + "name": "angle", "category": "Design", - "tags": ["angle", "geometry", "math", "degrees"], + "tags": ["angle", "geometry", "math", "degrees", "icon", "stroke", "outline"], "version": "1.41", "unicode": "ef20" }, "ankh": { + "name": "ankh", "category": "Symbols", - "tags": ["ankh", "egypt", "religion", "cultures", "community"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["antenna", "bars", "off", "signal", "wireless", "wi-fi", "quality", "icon", "stroke", "outline"], "version": "1.62", "unicode": "f0aa" }, - "antenna": { + "antenna-off": { + "name": "antenna-off", "category": "", - "tags": ["antenna", "reach", "tv", "network", "connetion", "signal", "communication"], + "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": { + "aperture-off": { + "name": "aperture-off", "category": "Photography", - "tags": ["aperture", "hole", "opening", "vent"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["archive", "box", "index", "records", "old", "collect", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea0b" }, - "armchair-2": { + "armchair-2-off": { + "name": "armchair-2-off", "category": "", - "tags": ["armchair", "2", "seat", "chair", "sofa", "home", "furniture"], + "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": { + "armchair-off": { + "name": "armchair-off", "category": "", - "tags": ["armchair", "seat", "chair", "sofa", "home", "furniture"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrow", "back", "pointer", "return", "revert", "reverse", "undo", "left", "icon", "stroke", "outline"], "version": "1.1", "unicode": "ea0c" }, - "arrow-bar-down": { + "arrow-badge-down": { + "name": "arrow-badge-down", "category": "Arrows", - "tags": ["arrow", "bar", "down", "drag", "move"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrow", "big", "up", "lines", "direction", "north", "icon", "stroke", "outline"], "version": "1.52", "unicode": "efef" }, - "arrow-bottom-bar": { + "arrow-bounce": { + "name": "arrow-bounce", "category": "Arrows", - "tags": ["arrow", "bottom", "bar", "drag", "move"], - "version": "1.35", - "unicode": "ed98" - }, - "arrow-bottom-circle": { - "category": "Arrows", - "tags": ["arrow", "bottom", "circle", "drag", "move"], - "version": "1.35", - "unicode": "ed99" - }, - "arrow-bottom-square": { - "category": "Arrows", - "tags": ["arrow", "bottom", "square", "drag", "move"], - "version": "1.35", - "unicode": "ed9a" - }, - "arrow-bottom-tail": { - "category": "Arrows", - "tags": ["arrow", "bottom", "tail", "drag", "move"], - "version": "1.35", - "unicode": "ed9b" + "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"], + "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"], + "tags": ["arrow", "curve", "right", "direction", "north", "icon", "stroke", "outline"], "version": "1.57", "unicode": "f049" }, - "arrow-down-circle": { + "arrow-down-bar": { + "name": "arrow-down-bar", "category": "Arrows", - "tags": ["arrow", "down", "circle", "proceed", "swipe", "below", "bottom"], + "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"], + "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"], + "tags": ["arrow", "down", "left", "corner", "bottom", "point", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea13" }, - "arrow-down-right-circle": { + "arrow-down-rhombus": { + "name": "arrow-down-rhombus", "category": "Arrows", - "tags": ["arrow", "down", "right", "circle", "corner", "bottom", "point"], + "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"], + "tags": ["arrow", "down", "right", "corner", "bottom", "point", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea15" }, - "arrow-down": { + "arrow-down-square": { + "name": "arrow-down-square", "category": "Arrows", - "tags": ["arrow", "down", "proceed", "swipe", "below", "bottom"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrow", "guide", "direction", "west", "bend", "navigation", "icon", "stroke", "outline"], "version": "1.73", "unicode": "f22a" }, - "arrow-left-bar": { + "arrow-iteration": { + "name": "arrow-iteration", "category": "Arrows", - "tags": ["arrow", "left", "bar", "drag", "move"], + "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"], + "tags": ["arrow", "left", "circle", "drag", "move", "icon", "stroke", "outline"], "version": "1.35", "unicode": "ea18" }, - "arrow-left-right": { + "arrow-left-rhombus": { + "name": "arrow-left-rhombus", "category": "Arrows", - "tags": ["arrow", "left", "right", "direction", "west", "east"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrow", "right", "circle", "drag", "move", "icon", "stroke", "outline"], "version": "1.35", "unicode": "ea1e" }, - "arrow-right-square": { + "arrow-right-rhombus": { + "name": "arrow-right-rhombus", "category": "Arrows", - "tags": ["arrow", "right", "square", "direction", "east"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrow", "sharp", "turn", "right", "direction", "south", "down", "icon", "stroke", "outline"], "version": "1.57", "unicode": "f05b" }, - "arrow-top-bar": { + "arrow-up-bar": { + "name": "arrow-up-bar", "category": "Arrows", - "tags": ["arrow", "top", "bar", "direction", "north"], + "tags": ["arrow", "up", "bar", "direction", "north", "icon", "stroke", "outline"], "version": "1.35", "unicode": "eda4" }, - "arrow-top-circle": { - "category": "Arrows", - "tags": ["arrow", "top", "circle", "direction", "north"], - "version": "1.35", - "unicode": "eda5" - }, - "arrow-top-square": { - "category": "Arrows", - "tags": ["arrow", "top", "square", "direction", "north"], - "version": "1.35", - "unicode": "eda6" - }, - "arrow-top-tail": { - "category": "Arrows", - "tags": ["arrow", "top", "tail", "direction", "north"], - "version": "1.35", - "unicode": "eda7" - }, "arrow-up-circle": { + "name": "arrow-up-circle", "category": "Arrows", - "tags": ["arrow", "up", "circle", "top", "point"], + "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"], + "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"], + "tags": ["arrow", "up", "left", "top", "corner", "point", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea22" }, - "arrow-up-right-circle": { + "arrow-up-rhombus": { + "name": "arrow-up-rhombus", "category": "Arrows", - "tags": ["arrow", "up", "right", "circle", "top", "corner", "point"], + "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"], + "tags": ["arrow", "up", "right", "top", "corner", "point", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea24" }, - "arrow-up": { + "arrow-up-square": { + "name": "arrow-up-square", "category": "Arrows", - "tags": ["arrow", "up", "top", "point"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrow", "wave", "right", "up", "direction", "north", "icon", "stroke", "outline"], "version": "1.35", "unicode": "edab" }, - "arrows-cross": { + "arrow-zig-zag": { + "name": "arrow-zig-zag", "category": "Arrows", - "tags": ["arrows", "cross", "direction", "north", "south"], + "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"], + "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"], + "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"], + "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"], + "tags": ["arrows", "diagonal", "zoom", "corners", "stretch", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea27" }, "arrows-diff": { + "name": "arrows-diff", "category": "Arrows", - "tags": ["arrows", "diff"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["artboard", "graphics", "drawing", "design", "art", "canvas", "icon", "stroke", "outline"], "version": "1.1", "unicode": "ea2a" }, - "article": { + "article-off": { + "name": "article-off", "category": "", - "tags": ["article", "news", "newspaper", "media", "blog"], + "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"], + "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"], + "tags": ["aspect", "ratio", "size", "dimension", "width", "height", "orientation", "icon", "stroke", "outline"], "version": "1.27", "unicode": "ed30" }, - "assembly": { + "assembly-off": { + "name": "assembly-off", "category": "", - "tags": ["assembly", "assembly", "engineering", "manufacturing", "production", "robotics"], + "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"], + "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"], + "tags": ["asterisk", "simple", "star", "password", "security", "icon", "stroke", "outline"], "version": "1.51", "unicode": "efd4" }, "asterisk": { + "name": "asterisk", "category": "Text", - "tags": ["asterisk", "star", "password", "security"], + "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", "@"], + "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", "@"], + "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"], + "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"], + "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"], + "tags": ["atom", "unit", "element", "part", "electrons", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb79" }, - "augmented-reality": { + "augmented-reality-2": { + "name": "augmented-reality-2", "category": "", - "tags": ["augmented", "reality", "technology", "dimensional", "geometry"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["axis", "y", "math", "geometry", "icon", "stroke", "outline"], "version": "1.43", "unicode": "ef46" }, - "baby-carriage": { + "baby-bottle": { + "name": "baby-bottle", "category": "", - "tags": ["baby", "carriage", "child", "infant", "cradle", "pram"], + "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"], + "tags": ["backhoe", "rear", "equipment", "digger", "excavation", "tractor", "loader", "construction", "site", "excavator", "icon", "stroke", "outline"], "version": "1.34", "unicode": "ed86" }, - "backpack": { + "backpack-off": { + "name": "backpack-off", "category": "", - "tags": ["backpack", "education", "school", "learning", "adventure", "travel"], + "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"], + "tags": ["backspace", "delete", "remove", "eliminate", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea2d" }, - "badge-off": { + "badge-3d": { + "name": "badge-3d", "category": "", - "tags": ["badge", "off", "army", "badge", "military", "rank", "soldier", "war"], + "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", + "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": { + "badge-sd": { + "name": "badge-sd", "category": "", - "tags": ["badge", "army", "badge", "military", "rank", "soldier", "war"], + "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"], + "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"], + "tags": ["badges", "army", "badge", "military", "rank", "soldier", "war", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efc3" }, - "ball-american-football": { + "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", "sport", "game", "sportsman", "play", "match", "pitch"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["ballon", "off", "party", "birthday", "decoration", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f0fd" }, "ballon": { + "name": "ballon", "category": "", - "tags": ["ballon", "party", "birthday", "decoration"], + "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"], + "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"], + "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"], + "tags": ["ban", "no", "reject", "restriction", "prohibited", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea2e" }, - "bandage": { + "bandage-off": { + "name": "bandage-off", "category": "Health", - "tags": ["bandage", "patch", "wound", "cut", "pain"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f668" + }, "battery-off": { + "name": "battery-off", "category": "Devices", - "tags": ["battery", "off", "energy", "power", "electricity"], + "tags": ["battery", "off", "energy", "power", "electricity", "icon", "stroke", "outline"], "version": "1.25", "unicode": "ed1c" }, "battery": { + "name": "battery", "category": "Devices", - "tags": ["battery", "energy", "power", "electricity"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f669" + }, "bell-minus": { + "name": "bell-minus", "category": "System", - "tags": ["bell", "minus", "notification", "alarm", "alert", "remove", "ring"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["bell", "alarm", "sound", "notification", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea35" }, - "bible": { + "beta": { + "name": "beta", "category": "", - "tags": ["bible", "religion", "holy", "christian", "miracle", "church"], + "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"], + "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"], + "tags": ["bike", "cycling", "bicycle", "sport", "wheel", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea36" }, - "binary": { + "binary-off": { + "name": "binary-off", "category": "", - "tags": ["binary", "binary"], + "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"], + "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"], + "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"], + "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"], + "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", "conection", "connect"], + "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"], + "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"], + "tags": ["bluetooth", "wireless", "connection", "connect", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea37" }, - "blur": { + "blur-off": { + "name": "blur-off", "category": "Design", - "tags": ["blur", "edit", "photo", "photography", "tool"], + "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"], + "tags": ["bold", "off", "font", "style", "boldface", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0ba" }, "bold": { + "name": "bold", "category": "Text", - "tags": ["bold", "font", "style", "boldface"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["border", "vertical", "table", "side", "line", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea44" }, - "bottle": { + "bottle-off": { + "name": "bottle-off", "category": "Food", - "tags": ["bottle", "water", "drink", "beer", "energy", "wine"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["box", "margin", "css", "cascading", "style", "section", "space", "text", "content", "outside", "container", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee0b" }, - "box-model-2": { + "box-model-2-off": { + "name": "box-model-2-off", "category": "Design", - "tags": ["box", "model", "2", "css", "cascading", "style", "section", "element", "square", "website", "container"], + "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": { + "box-model-off": { + "name": "box-model-off", "category": "Design", - "tags": ["box", "model", "css", "cascading", "style", "section", "element", "square", "website", "container"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["box", "padding", "css", "cascading", "style", "section", "space", "text", "content", "website", "container", "inside", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee18" }, - "box": { + "box-seam": { + "name": "box-seam", "category": "", - "tags": ["box", "cube", "app", "application", "package", "container"], + "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"], + "tags": ["braces", "off", "punctuation", "additional", "information", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0bf" }, "braces": { + "name": "braces", "category": "Math", - "tags": ["braces", "punctuation", "additional", "information"], + "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"], + "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"], + "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"], + "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"], + "tags": ["brackets", "off", "punctuation", "additional", "information", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0c0" }, "brackets": { + "name": "brackets", "category": "Math", - "tags": ["brackets", "punctuation", "additional", "information"], + "tags": ["brackets", "punctuation", "additional", "information", "icon", "stroke", "outline"], "version": "1.6", "unicode": "ebcd" }, - "brand-adobe": { + "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", "adobe", "photoshop", "illustrator", "inDesign"], + "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-airbnb": { + "brand-adonis-js": { + "name": "brand-adonis-js", "category": "Brand", - "tags": ["brand", "airbnb", "flat", "apartment", "holiday", "vacation", "city", "break", "book"], + "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"], + "tags": ["brand", "airtable", "creation of", "sharing", "database", "interface", "icon", "stroke", "outline"], "version": "1.45", "unicode": "ef6a" }, - "brand-amazon": { + "brand-algolia": { + "name": "brand-algolia", "category": "Brand", - "tags": ["brand", "amazon", "shopping", "online", "media", "shop", "ecommerce"], + "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-amongus": { + "brand-amd": { + "name": "brand-amd", "category": "Brand", - "tags": ["brand", "amongus", "game", "crewmate", "impostor"], + "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"], + "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"], + "tags": ["brand", "angular", "programming", "coding", "typescript", "icon", "stroke", "outline"], "version": "1.45", "unicode": "ef6b" }, - "brand-appgallery": { + "brand-ao3": { + "name": "brand-ao3", "category": "Brand", - "tags": ["brand", "appgallery", "games", "apps", "online", "store", "video"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["brand", "asana", "task", "management", "project management", "manage", "collaborate", "collaboration", "team", "teamwork", "technology", "icon", "stroke", "outline"], "version": "1.36", "unicode": "edc5" }, - "brand-badoo": { + "brand-backbone": { + "name": "brand-backbone", "category": "Brand", - "tags": ["brand", "badoo", "website", "communication", "chat", "social media"], + "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-bandcamp": { + "brand-baidu": { + "name": "brand-baidu", "category": "Brand", - "tags": ["brand", "bandcamp", "music", "website", "music company", "audio"], + "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-beats": { + "brand-bandlab": { + "name": "brand-bandlab", "category": "Brand", - "tags": ["brand", "beats", "music", "audio", "headphones", "audio equipment"], + "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"], + "tags": ["brand", "behance", "logo", "website", "adobe", "project", "views", "marks", "platform", "designer", "icon", "stroke", "outline"], "version": "1.13", "unicode": "ec6e" }, - "brand-bing": { + "brand-binance": { + "name": "brand-binance", "category": "Brand", - "tags": ["brand", "bing", "search", "result", "find", "search", "engine", "internet", "microsoft", "web", "technology"], + "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"], + "tags": ["brand", "bitbucket", "version", "control", "repository", "hosting", "atlassian", "source", "code", "development", "git", "technology", "icon", "stroke", "outline"], "version": "1.36", "unicode": "edc7" }, - "brand-booking": { + "brand-blackbery": { + "name": "brand-blackbery", "category": "Brand", - "tags": ["brand", "booking", "flat", "apartment", "holiday", "vacation", "city", "break", "book", "rent"], + "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"], + "tags": ["brand", "bootstrap", "programming", "coding", "HTML", "hardware", "javascript", "js", "icon", "stroke", "outline"], "version": "1.42", "unicode": "ef3e" }, - "brand-chrome": { + "brand-bulma": { + "name": "brand-bulma", "category": "Brand", - "tags": ["brand", "chrome", "browser", "internet", "web", "logo"], + "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-c-sharp": { + "name": "brand-c-sharp", + "category": "", + "tags": ["brand", "c", "sharp", "coding", "programming", "files", "language", "icon", "stroke", "outline"], + "version": "1.53", + "unicode": "f003" + }, + "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-codepen": { + "brand-citymapper": { + "name": "brand-citymapper", "category": "Brand", - "tags": ["brand", "codepen", "logo", "community", "internet", "codes", "programing", "programmer", "source", "website", "platform", "designer"], + "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"], + "tags": ["brand", "codesandbox", "online", "code", "editor", "prototyping", "prototype", "web", "app", "programming", "integrated", "development", "environment", "technology", "icon", "stroke", "outline"], "version": "1.32", "unicode": "ed6a" }, - "brand-coinbase": { + "brand-cohost": { + "name": "brand-cohost", "category": "Brand", - "tags": ["brand", "coinbase", "cryptocurrencies", "bitcoin", "ethereum", "traded company"], + "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"], + "tags": ["brand", "comedy", "central", "tv", "serial", "films", "stand-up", "skits", "icon", "stroke", "outline"], "version": "1.72", "unicode": "f217" }, - "brand-css3": { + "brand-coreos": { + "name": "brand-coreos", "category": "Brand", - "tags": ["brand", "css3", "cascading", "style", "sheet", "programming", "development", "web", "website", "technology"], + "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-cucumber": { + "brand-ctemplar": { + "name": "brand-ctemplar", "category": "Brand", - "tags": ["brand", "cucumber", "software", "tool", "gherkin", "programming", "ruby", "javascript"], + "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-d3": { + "brand-cupra": { + "name": "brand-cupra", "category": "Brand", - "tags": ["brand", "d3", "data", "charts", "javascript", "js"], + "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-debian": { + "brand-days-counter": { + "name": "brand-days-counter", "category": "Brand", - "tags": ["brand", "debian", "operating system", "Linux", "computer", "gnu"], + "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-deno": { + "brand-deliveroo": { + "name": "brand-deliveroo", "category": "Brand", - "tags": ["brand", "deno", "software", "javascript", "programming", "typescript"], + "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-deviantart": { + "brand-denodo": { + "name": "brand-denodo", "category": "Brand", - "tags": ["brand", "deviantart", "logo", "community", "internet", "works", "designer", "project", "presenting", "artist", "discussion", "website", "platform"], + "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-discord": { + "brand-dingtalk": { + "name": "brand-dingtalk", "category": "Brand", - "tags": ["brand", "discord", "app", "application", "logo", "communication", "talks", "gamers", "freeware", "platform"], + "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"], + "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"], + "tags": ["brand", "disqus", "comment", "blog", "service", "website", "online", "platform", "social", "networking", "technology", "icon", "stroke", "outline"], "version": "1.36", "unicode": "edc9" }, - "brand-docker": { + "brand-django": { + "name": "brand-django", "category": "Brand", - "tags": ["brand", "docker", "app", "development", "hub", "platform", "software", "developer", "programming", "programmer", "virtualization", "technology"], + "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"], + "tags": ["brand", "doctrine", "database", "programming", "library", "php", "icon", "stroke", "outline"], "version": "1.45", "unicode": "ef6d" }, - "brand-dribbble": { + "brand-dolby-digital": { + "name": "brand-dolby-digital", "category": "Brand", - "tags": ["brand", "dribbble", "logo", "website", "community", "project", "platform", "self-promotion", "designer", "portfolio"], + "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-edge": { + "brand-drops": { + "name": "brand-drops", "category": "Brand", - "tags": ["brand", "edge", "browser", "internet", "web", "logo", "explorer"], + "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-facebook": { + "brand-elastic": { + "name": "brand-elastic", "category": "Brand", - "tags": ["brand", "facebook", "logo", "app", "application", "community", "social", "communication", "website", "user", "post", "images", "photos", "comment", "feedback"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["brand", "flickr", "logo", "website", "house", "facilitate", "sharing", "digital", "photos", "images", "icon", "stroke", "outline"], "version": "1.23", "unicode": "ecfe" }, - "brand-flipboard": { + "brand-flightradar24": { + "name": "brand-flightradar24", "category": "Brand", - "tags": ["brand", "flipboard", "news", "newspapper", "social", "media"], + "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-fortnite": { + "brand-flutter": { + "name": "brand-flutter", "category": "Brand", - "tags": ["brand", "fortnite", "games", "online", "battle", "multiplayer", "gun", "weapon", "building"], + "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"], + "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"], + "tags": ["brand", "framer", "logo", "application", "app", "prototyping", "prototype", "animations", "icon", "stroke", "outline"], "version": "1.9", "unicode": "ec1b" }, - "brand-git": { + "brand-funimation": { + "name": "brand-funimation", "category": "Brand", - "tags": ["brand", "git", "programming", "coding", "software", "perl", "boume shell"], + "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": { + "brand-github-copilot": { + "name": "brand-github-copilot", "category": "Brand", - "tags": ["brand", "github", "logo", "website", "hosting", "project", "programming", "software", "development"], + "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"], + "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"], + "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"], + "tags": ["brand", "google", "analytics", "advertising", "track", "website", "traffic", "e-commerce", "online", "technology", "icon", "stroke", "outline"], "version": "1.36", "unicode": "edcb" }, - "brand-google-drive": { + "brand-google-big-query": { + "name": "brand-google-big-query", "category": "Brand", - "tags": ["brand", "google", "drive", "logo", "cloud", "disc", "documents", "sheet", "presentation", "file", "edit"], + "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"], + "tags": ["brand", "google", "fit", "health", "tracking", "platform", "software", "icon", "stroke", "outline"], "version": "1.79", "unicode": "f297" }, - "brand-google-one": { + "brand-google-home": { + "name": "brand-google-home", "category": "Brand", - "tags": ["brand", "google", "one", "data", "software", "storage", "cloud"], + "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"], + "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"], + "tags": ["brand", "google", "play", "logo", "application", "app", "shop", "store", "online", "icon", "stroke", "outline"], "version": "1.26", "unicode": "ed25" }, - "brand-google": { + "brand-google-podcasts": { + "name": "brand-google-podcasts", "category": "Brand", - "tags": ["brand", "google", "logo", "enterprise", "browser", "internet", "web", "discover"], + "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-gravatar": { + "brand-grammarly": { + "name": "brand-grammarly", "category": "Brand", - "tags": ["brand", "gravatar", "avatar", "image", "face", "blog", "comment", "represent", "online", "technology"], + "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"], + "tags": ["brand", "grindr", "app", "communication", "dating", "gay", "lgbt", "icon", "stroke", "outline"], "version": "1.71", "unicode": "f20d" }, - "brand-hipchat": { + "brand-guardian": { + "name": "brand-guardian", "category": "Brand", - "tags": ["brand", "hipchat", "chat", "communicate", "communication", "talk", "discuss", "app", "collaborate", "collaboration", "technology"], + "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"], + "tags": ["brand", "html5", "programming", "development", "web", "website", "technology", "markup", "language", "technology", "icon", "stroke", "outline"], "version": "1.32", "unicode": "ed6c" }, - "brand-instagram": { + "brand-inertia": { + "name": "brand-inertia", "category": "Brand", - "tags": ["brand", "instagram", "logo", "app", "application", "images", "photos", "videos", "post", "stories", "online", "community"], + "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"], + "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"], + "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"], + "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"], + "tags": ["brand", "kotlin", "programming", "language", "programmer", "development", "developer", "technology", "icon", "stroke", "outline"], "version": "1.32", "unicode": "ed6d" }, - "brand-lastfm": { + "brand-laravel": { + "name": "brand-laravel", "category": "Brand", - "tags": ["brand", "lastfm", "radio station", "website", "music", "media player"], + "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"], + "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"], + "tags": ["brand", "linktree", "hyperlinks", "social media", "freemium service", "website", "icon", "stroke", "outline"], "version": "1.69", "unicode": "f1e7" }, - "brand-loom": { + "brand-linqpad": { + "name": "brand-linqpad", "category": "Brand", - "tags": ["brand", "loom", "video", "messages", "osx", "record", "screen", "camera"], + "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-mastercard": { + "brand-mailgun": { + "name": "brand-mailgun", "category": "Brand", - "tags": ["brand", "mastercard", "payment", "money", "debit", "finance"], + "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"], + "tags": ["brand", "mastodon", "web", "app", "social", "nodes", "network", "icon", "stroke", "outline"], "version": "1.75", "unicode": "f250" }, - "brand-mcdonalds": { + "brand-matrix": { + "name": "brand-matrix", "category": "Brand", - "tags": ["brand", "mcdonalds", "food", "cheeseburger", "hamburger", "fries", "fastfood"], + "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"], + "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"], + "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"], + "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", "Instagram", "Messegner", "Giphy"], + "tags": ["brand", "meta", "social media", "facebook", "fb", "instagram", "messegner", "giphy", "icon", "stroke", "outline"], "version": "1.49", "unicode": "efb0" }, - "brand-monday": { + "brand-miniprogram": { + "name": "brand-miniprogram", "category": "Brand", - "tags": ["brand", "monday", "software", "application development", "cloud base platform"], + "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-netbeans": { + "brand-mongodb": { + "name": "brand-mongodb", "category": "Brand", - "tags": ["brand", "netbeans", "software", "programming", "tools", "Java", "mobile devices"], + "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-netflix": { + "brand-netease-music": { + "name": "brand-netease-music", "category": "Brand", - "tags": ["brand", "netflix", "series", "tv", "episode", "movie", "film", "media", "watch", "app", "technology"], + "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-nextjs": { + "brand-nexo": { + "name": "brand-nexo", "category": "Brand", - "tags": ["brand", "nextjs", "website creation", "web platform", "software", "web application functions"], + "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-notion": { + "brand-nord-vpn": { + "name": "brand-nord-vpn", "category": "Brand", - "tags": ["brand", "notion", "software", "note taking", "project management", "database"], + "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-nuxt": { + "brand-npm": { + "name": "brand-npm", "category": "Brand", - "tags": ["brand", "nuxt", "software", "app development", "library", "JavaScript"], + "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"], + "tags": ["brand", "nytimes", "magazines", "news", "newspapper", "website", "icon", "stroke", "outline"], "version": "1.47", "unicode": "ef8d" }, - "brand-open-source": { + "brand-office": { + "name": "brand-office", "category": "Brand", - "tags": ["brand", "open", "source", "software", "code", "developer", "public", "licence", "technology"], + "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-opera": { + "brand-openvpn": { + "name": "brand-openvpn", "category": "Brand", - "tags": ["brand", "opera", "logo", "browser", "internet", "free", "program"], + "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"], + "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"], + "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"], + "tags": ["brand", "paypal", "logo", "enterprise", "service", "payment", "internet", "businessman", "consumer", "icon", "stroke", "outline"], "version": "1.9", "unicode": "ec22" }, - "brand-pepsi": { + "brand-paypay": { + "name": "brand-paypay", "category": "Brand", - "tags": ["brand", "pepsi", "food", "cola", "coke", "drink", "bottle", "carbonated"], + "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"], + "tags": ["brand", "php", "programming", "coding", "script", "format", "file", "icon", "stroke", "outline"], "version": "1.45", "unicode": "ef72" }, - "brand-pinterest": { + "brand-picsart": { + "name": "brand-picsart", "category": "Brand", - "tags": ["brand", "pinterest", "logo", "website", "images", "materials"], + "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"], + "tags": ["brand", "pocket", "logo", "software", "application", "app", "mobile", "device", "gathering", "storage", "icon", "stroke", "outline"], "version": "1.23", "unicode": "ed00" }, - "brand-producthunt": { + "brand-polymer": { + "name": "brand-polymer", "category": "Brand", - "tags": ["brand", "producthunt", "technology", "product", "share", "discover", "new", "novelty", "web", "geek"], + "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-pushover": { + "brand-pushbullet": { + "name": "brand-pushbullet", "category": "Brand", - "tags": ["brand", "pushover", "notifications", "push", "cloud based", "mobile", "app"], + "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"], + "tags": ["brand", "python", "logo", "language", "programming", "source", "icon", "stroke", "outline"], "version": "1.23", "unicode": "ed01" }, - "brand-react-native": { + "brand-qq": { + "name": "brand-qq", "category": "Brand", - "tags": ["brand", "react", "native", "programming", "tools", "app", "JavaScript"], + "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-reddit": { + "brand-react": { + "name": "brand-react", "category": "Brand", - "tags": ["brand", "reddit", "logo", "website", "information", "link", "internet"], + "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-safari": { + "brand-redhat": { + "name": "brand-redhat", "category": "Brand", - "tags": ["brand", "safari", "logo", "browser", "internet", "iPhone", "iPad", "MacBook", "compass", "apple", "discover"], + "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-sass": { + "brand-samsungpass": { + "name": "brand-samsungpass", "category": "Brand", - "tags": ["brand", "sass", "technology", "preprocessor", "script", "language", "programming", "css", "syntax", "compile"], + "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"], + "tags": ["brand", "sentry", "technology", "application", "monitoring", "error", "tracking", "software", "cloud", "development", "app", "icon", "stroke", "outline"], "version": "1.36", "unicode": "edd5" }, - "brand-shazam": { + "brand-sharik": { + "name": "brand-sharik", "category": "Brand", - "tags": ["brand", "shazam", "app", "technology", "device", "music", "sound", "play", "discover", "artist", "recognize"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["brand", "snapseed", "edit", "photo", "image", "editor", "google", "icon", "stroke", "outline"], "version": "1.75", "unicode": "f253" }, - "brand-soundcloud": { + "brand-snowflake": { + "name": "brand-snowflake", "category": "Brand", - "tags": ["brand", "soundcloud", "technology", "audio", "distribution", "platform", "music", "upload", "promote", "streaming"], + "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-spotify": { + "brand-spacehey": { + "name": "brand-spacehey", "category": "Brand", - "tags": ["brand", "spotify", "logo", "app", "application", "platform", "music", "listening", "streaming", "podcast"], + "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"], + "tags": ["brand", "stackoverflow", "social", "media", "programming", "website", "icon", "stroke", "outline"], "version": "1.43", "unicode": "ef58" }, - "brand-steam": { + "brand-stackshare": { + "name": "brand-stackshare", "category": "Brand", - "tags": ["brand", "steam", "technology", "video", "game", "digital", "distribution", "software", "player", "pc"], + "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-strava": { + "brand-storybook": { + "name": "brand-storybook", "category": "Brand", - "tags": ["brand", "strava", "run", "ride", "hike", "activity", "gps", "sport", "app"], + "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"], + "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"], + "tags": ["brand", "sublime", "text", "software", "text", "editing", "programming", "icon", "stroke", "outline"], "version": "1.45", "unicode": "ef74" }, - "brand-surfshark": { + "brand-superhuman": { + "name": "brand-superhuman", "category": "Brand", - "tags": ["brand", "surfshark", "vpn", "security", "ip", "network", "private"], + "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"], + "tags": ["brand", "svelte", "programming", "coding", "interface", "web app", "icon", "stroke", "outline"], "version": "1.64", "unicode": "f0df" }, - "brand-tabler": { + "brand-symfony": { + "name": "brand-symfony", "category": "Brand", - "tags": ["brand", "tabler", "logo", "website", "dashboard", "download", "open-source", "UI"], + "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"], + "tags": ["brand", "tailwind", "logo", "firm", "website", "icon", "stroke", "outline"], "version": "1.17", "unicode": "eca1" }, - "brand-telegram": { + "brand-taobao": { + "name": "brand-taobao", "category": "Brand", - "tags": ["brand", "telegram", "logo", "app", "application", "communicator", "internet", "cloud", "messages", "text", "images", "photos", "videos", "record", "file", "send"], + "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-tidal": { + "brand-tether": { + "name": "brand-tether", "category": "Brand", - "tags": ["brand", "tidal", "technology", "subscription", "music", "podcast", "video", "streaming", "playlist", "party", "track", "song"], + "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"], + "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"], + "tags": ["brand", "tinder", "date", "dating", "app", "love", "affection", "affair", "couple", "technology", "networking", "swipe", "match", "icon", "stroke", "outline"], "version": "1.32", "unicode": "ed71" }, - "brand-toyota": { + "brand-topbuzz": { + "name": "brand-topbuzz", "category": "Brand", - "tags": ["brand", "toyota", "car", "transport", "transportation"], + "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-tripadvisor": { + "brand-trello": { + "name": "brand-trello", "category": "Brand", - "tags": ["brand", "tripadvisor", "travel", "trip", "tourism", "website"], + "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"], + "tags": ["brand", "tumblr", "logo", "website", "platform", "blog", "community", "icon", "stroke", "outline"], "version": "1.23", "unicode": "ed04" }, - "brand-twitch": { + "brand-twilio": { + "name": "brand-twilio", "category": "Brand", - "tags": ["brand", "twitch", "logo", "platform", "streaming", "streamers", "videos", "films", "chat", "subs"], + "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"], + "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-uber": { + "brand-typescript": { + "name": "brand-typescript", "category": "Brand", - "tags": ["brand", "uber", "taxi", "transport", "car", "food"], + "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"], + "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"], - "version": "1.80", - "unicode": "f2ac" + "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"], + "tags": ["brand", "unsplash", "picture", "photo", "photography", "search", "image", "stock", "icon", "stroke", "outline"], "version": "1.36", "unicode": "edd8" }, - "brand-vercel": { + "brand-upwork": { + "name": "brand-upwork", "category": "Brand", - "tags": ["brand", "vercel", "develop", "preview", "programmers", "build", "publish"], + "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"], + "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"], + "tags": ["brand", "vinted", "website", "clothes", "trading", "exchange", "sale", "shopping", "icon", "stroke", "outline"], "version": "1.71", "unicode": "f20f" }, - "brand-visual-studio": { + "brand-visa": { + "name": "brand-visa", "category": "Brand", - "tags": ["brand", "visual", "studio", "software", "microsoft", "programming", "developers", "coding"], + "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-vivaldi": { + "brand-vite": { + "name": "brand-vite", "category": "Brand", - "tags": ["brand", "vivaldi", "browser", "internet", "web", "free", "program"], + "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"], + "tags": ["brand", "vk", "technology", "social", "media", "networking", "service", "russian", "icon", "stroke", "outline"], "version": "1.32", "unicode": "ed72" }, - "brand-vue": { + "brand-volkswagen": { + "name": "brand-volkswagen", "category": "Brand", - "tags": ["brand", "vue", "programming", "coding", "javascript", "document", "software"], + "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"], + "tags": ["brand", "walmart", "shop", "supermarket", "food", "drinking", "groceries", "shopping", "icon", "stroke", "outline"], "version": "1.71", "unicode": "f211" }, - "brand-webflow": { + "brand-waze": { + "name": "brand-waze", "category": "Brand", - "tags": ["brand", "webflow"], + "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-whatsapp": { + "brand-wechat": { + "name": "brand-wechat", "category": "Brand", - "tags": ["brand", "whatsapp", "logo", "app", "application", "communication", "text", "messages", "communicator", "photos", "images", "videos", "giphy"], + "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"], + "tags": ["brand", "windows", "logo", "system", "os", "computer", "microsoft", "icon", "stroke", "outline"], "version": "1.20", "unicode": "ecd8" }, - "brand-wish": { + "brand-windy": { + "name": "brand-windy", "category": "Brand", - "tags": ["brand", "wish", "shopping", "online", "tools", "gadgets", "toys"], + "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-wordpress": { + "brand-wix": { + "name": "brand-wix", "category": "Brand", - "tags": ["brand", "wordpress"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["brand", "youtube", "logo", "platform", "channel", "film", "video", "youtuber", "maker", "comments", "stream", "streamer", "icon", "stroke", "outline"], "version": "1.15", "unicode": "ec90" }, - "brand-zoom": { + "brand-zalando": { + "name": "brand-zalando", "category": "Brand", - "tags": ["brand", "zoom", "program", "video", "chat", "meetings", "online"], + "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-zwift": { + "brand-zulip": { + "name": "brand-zulip", "category": "Brand", - "tags": ["brand", "zwift", "technology", "bike", "sport", "movement", "game"], + "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": { + "bread-off": { + "name": "bread-off", "category": "Food", - "tags": ["bread", "food", "breakfast", "sandwich", "toast", "baking"], + "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": { + "briefcase-off": { + "name": "briefcase-off", "category": "", - "tags": ["briefcase", "bag", "baggage", "folder", "carrier", "documents"], + "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"], + "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"], + "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"], + "tags": ["brightness", "half", "light", "screen", "level", "daytime", "sun", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee1a" }, - "brightness-up": { + "brightness-off": { + "name": "brightness-off", "category": "Photography", - "tags": ["brightness", "up", "light", "screen"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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": { - "category": "", - "tags": ["bucket", "off", "collection", "container", "water", "liquid"], + "name": "bucket-off", + "category": "Design", + "tags": ["bucket", "off", "collection", "container", "water", "liquid", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f103" }, "bucket": { - "category": "", - "tags": ["bucket", "collection", "container", "water", "liquid"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["building", "bridge", "architecture", "urban", "river", "overpass", "city", "countryside", "icon", "stroke", "outline"], "version": "1.1", "unicode": "ea4b" }, - "building-carousel": { + "building-broadcast-tower": { + "name": "building-broadcast-tower", "category": "Buildings", - "tags": ["building", "carousel", "amusement", "park", "fair", "merry-go-round", "fun", "entertaianment"], + "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"], + "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"], + "tags": ["building", "church", "religion", "chapel", "sanctuary", "temple", "cathedral", "pray", "prayer", "icon", "stroke", "outline"], "version": "1.1", "unicode": "ea4c" }, - "building-community": { + "building-circus": { + "name": "building-circus", "category": "Buildings", - "tags": ["building", "community", "place", "skyscraper", "district neighborhood", "area"], + "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"], + "tags": ["building", "cottage", "small", "house", "countryside", "live", "farm", "rural", "outskirts", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee1b" }, - "building-factory-2": { + "building-estate": { + "name": "building-estate", "category": "Buildings", - "tags": ["building", "factory", "2", "goods", "manufature", "machine", "trade", "produce", "product", "worker", "industry", "industrial", "site"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["building", "monument", "history", "memorial", "commemorative", "icon", "stroke", "outline"], "version": "1.26", "unicode": "ed26" }, - "building-pavilon": { + "building-pavilion": { + "name": "building-pavilion", "category": "Buildings", - "tags": ["building", "pavilon", "place", "party", "residence", "ornamentation"], + "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"], + "tags": ["building", "skyscraper", "city", "urban", "office", "workplace", "corporation", "hotel", "apartments", "icon", "stroke", "outline"], "version": "1.8", "unicode": "ec39" }, - "building-store": { + "building-stadium": { + "name": "building-stadium", "category": "Buildings", - "tags": ["building", "store", "shopping", "shop", "supermarket", "market", "products", "retail", "buy", "sell"], + "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-warehouse": { + "building-tunnel": { + "name": "building-tunnel", "category": "Buildings", - "tags": ["building", "warehouse", "store", "inventory", "stuff", "things", "machinery"], + "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": { + "building-wind-turbine": { + "name": "building-wind-turbine", "category": "Buildings", - "tags": ["building", "flat", "office", "city", "urban", "scyscraper", "architecture", "construction"], + "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", + "unicode": "f66a" + }, "bulb-off": { + "name": "bulb-off", "category": "", - "tags": ["bulb", "off", "energy", "power", "electricity", "creativity", "light", "idea"], + "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"], + "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"], + "tags": ["bulldozer", "tractor", "construction", "site", "build", "rear", "machine", "icon", "stroke", "outline"], "version": "1.34", "unicode": "ee1d" }, - "bus-stop": { + "bus-off": { + "name": "bus-off", "category": "Vehicles", - "tags": ["bus", "stop"], + "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"], + "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"], + "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"], + "tags": ["butterfly", "animal", "insect", "nature", "fly", "wings", "icon", "stroke", "outline"], "version": "1.51", "unicode": "efd9" }, - "c-sharp": { - "category": "", - "tags": ["c", "sharp", "coding", "programming", "files", "language"], - "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "unavailable", "unavailability", "leave", "plan", "schedule", "busy", "date", "month", "year", "meeting"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["camera", "video", "photo", "aperture", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea54" }, - "candle": { + "campfire": { + "name": "campfire", "category": "", - "tags": ["candle", "light", "birthday", "decoration", "halloween", "fire", "christmas"], + "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"], + "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"], + "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"], + "tags": ["capture", "off", "photo", "photographer", "sharpen", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0c6" }, "capture": { + "name": "capture", "category": "Media", - "tags": ["capture", "photo", "photographer", "sharpen"], + "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"], + "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"], + "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"], + "tags": ["car", "off", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0c7" }, - "car": { + "car-turbine": { + "name": "car-turbine", "category": "Vehicles", - "tags": ["car", "vehicle", "drive", "driver", "engine", "motor", "journey", "trip"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["caret", "up", "dropdown", "less", "up", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb60" }, - "carrot": { + "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", "food", "healthy", "rabbit", "vegetable"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["cell", "biology", "molecule", "chemistry", "human", "laboratory", "icon", "stroke", "outline"], "version": "1.58", "unicode": "f05f" }, "certificate-2-off": { - "category": "", - "tags": ["certificate", "2", "off", "award", "license", "document", "achievement", "course", "complete"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f66b" + }, + "chart-area-line-filled": { + "name": "chart-area-line-filled", + "category": "Filled", + "tags": ["chart", "area", "line", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f66c" + }, "chart-area-line": { + "name": "chart-area-line", "category": "Charts", - "tags": ["chart", "area", "line", "statistics", "diagram", "graph", "rhythm", "data", "analysis"], + "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"], + "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"], + "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"], + "tags": ["chart", "arrows", "statistics", "data", "value", "variable", "scale", "statistical", "level", "increase", "decrease", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee2a" }, - "chart-bar": { + "chart-bar-off": { + "name": "chart-bar-off", "category": "Charts", - "tags": ["chart", "bar", "statistics", "diagram", "graph", "rhythm", "data", "analysis"], + "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", + "unicode": "f66d" + }, "chart-bubble": { + "name": "chart-bubble", "category": "Charts", - "tags": ["chart", "bubble", "statistics", "diagram", "graph", "rhythm", "data", "analysis"], + "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", + "unicode": "f66e" + }, "chart-candle": { + "name": "chart-candle", "category": "Charts", - "tags": ["chart", "candle", "statistics", "diagram", "graph", "rhythm", "data", "analysis"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f66f" + }, "chart-donut": { + "name": "chart-donut", "category": "Charts", - "tags": ["chart", "donut", "statistics", "diagram", "graph", "rhythm", "data", "analysis"], + "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"], + "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"], + "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"], + "tags": ["chart", "dots", "statistics", "data", "value", "variable", "scale", "statistical", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee2f" }, - "chart-infographic": { + "chart-grid-dots": { + "name": "chart-grid-dots", "category": "Charts", - "tags": ["chart", "infographic", "statistics", "data", "value", "variable", "scale", "statistical", "bar", "information", "report"], + "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"], + "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"], + "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"], + "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"], + "tags": ["chart", "pie", "4", "statistics", "diagram", "graph", "rhythm", "data", "analysis", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee33" }, - "chart-pie": { + "chart-pie-filled": { + "name": "chart-pie-filled", + "category": "Filled", + "tags": ["chart", "pie", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f670" + }, + "chart-pie-off": { + "name": "chart-pie-off", "category": "Charts", - "tags": ["chart", "pie", "statistics", "diagram", "graph", "rhythm", "data", "analysis"], + "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-radar": { + "chart-ppf": { + "name": "chart-ppf", "category": "Charts", - "tags": ["chart", "radar", "statistics", "data", "value", "two", "dimensions", "variable", "report", "points"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["cheese", "food", "mouse", "cooking", "pizza", "sandwiches", "product", "edam", "gouda", "icon", "stroke", "outline"], "version": "1.41", "unicode": "ef26" }, - "chef-hat": { + "chef-hat-off": { + "name": "chef-hat-off", "category": "", - "tags": ["chef", "hat", "cooking", "kitchen", "restaurant", "food", "job"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["chevrons", "up", "move", "top", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea66" }, - "christmas-tree": { + "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", "holidays", "pine", "decorate", "decoration", "gift", "present", "carol", "evergreen", "spruce", "fir", "winter"], + "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-0": { - "category": "Numbers", - "tags": ["circle", "0", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee34" + "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-1": { - "category": "Numbers", - "tags": ["circle", "1", "one", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee35" + "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-2": { - "category": "Numbers", - "tags": ["circle", "2", "two", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee36" + "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-3": { - "category": "Numbers", - "tags": ["circle", "3", "three", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee37" - }, - "circle-4": { - "category": "Numbers", - "tags": ["circle", "4", "four", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee38" - }, - "circle-5": { - "category": "Numbers", - "tags": ["circle", "5", "five", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee39" - }, - "circle-6": { - "category": "Numbers", - "tags": ["circle", "6", "six", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee3a" - }, - "circle-7": { - "category": "Numbers", - "tags": ["circle", "7", "seven", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee3b" - }, - "circle-8": { - "category": "Numbers", - "tags": ["circle", "8", "eight", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee3c" - }, - "circle-9": { - "category": "Numbers", - "tags": ["circle", "9", "nine", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "ee3d" + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f671" + }, "circle-half-2": { + "name": "circle-half-2", "category": "Design", - "tags": ["circle", "half", "2", "shape", "split", "slash"], + "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"], + "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"], + "tags": ["circle", "half", "shape", "split", "slash", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee3f" }, - "circle-minus": { + "circle-key": { + "name": "circle-key", "category": "", - "tags": ["circle", "minus", "remove", "delete"], + "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", "shape", "split", "slash", "disabled"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["circle", "x", "cancel", "no", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea6a" }, "circle": { + "name": "circle", "category": "Shapes", - "tags": ["circle", "false", "zero"], + "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", + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["clear", "formatting", "text", "return", "default", "icon", "stroke", "outline"], "version": "1.7", "unicode": "ebe5" }, "click": { + "name": "click", "category": "", - "tags": ["click", "select", "cursor"], + "tags": ["click", "select", "cursor", "icon", "stroke", "outline"], "version": "1.5", "unicode": "ebbc" }, "clipboard-check": { + "name": "clipboard-check", "category": "Document", - "tags": ["clipboard", "check", "copy", "yes"], + "tags": ["clipboard", "check", "copy", "yes", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea6c" }, "clipboard-copy": { + "name": "clipboard-copy", "category": "Document", - "tags": ["clipboard", "copy"], + "tags": ["clipboard", "copy", "duplicate", "paste", "document", "task", "icon", "stroke", "outline"], "version": "1.79", "unicode": "f299" }, - "clipboard-list": { + "clipboard-data": { + "name": "clipboard-data", "category": "Document", - "tags": ["clipboard", "list", "copy", "items"], + "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", "task", "document", "file", "report"], + "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"], + "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"], + "tags": ["clipboard", "text", "document", "file", "report", "page", "note", "icon", "stroke", "outline"], "version": "1.60", "unicode": "f089" }, - "clipboard-x": { + "clipboard-typography": { + "name": "clipboard-typography", "category": "Document", - "tags": ["clipboard", "x", "copy", "no"], + "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"], + "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"], + "tags": ["clock", "2", "time", "watch", "timer", "alarm", "date", "hour", "schedule", "icon", "stroke", "outline"], "version": "1.61", "unicode": "f099" }, - "clock-off": { + "clock-cancel": { + "name": "clock-cancel", "category": "System", - "tags": ["clock", "off", "time", "watch", "timer", "alarm", "date", "hour", "schedule"], + "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": { + "clock-pause": { + "name": "clock-pause", "category": "System", - "tags": ["clock", "time", "watch", "alarm"], + "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": { + "clothes-rack-off": { + "name": "clothes-rack-off", "category": "", - "tags": ["clothes", "rack", "hanger", "furniture", "fashion", "clothing", "stand"], + "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"], + "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"], + "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"], + "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", + "unicode": "f673" + }, "cloud-fog": { + "name": "cloud-fog", "category": "Weather", - "tags": ["cloud", "fog", "weather", "online"], + "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"], + "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"], + "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", "auto", "backup", "storage", "memory", "files", "pictures", "store"], + "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"], + "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"], + "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"], + "tags": ["cloud", "storm", "weather", "lightning", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea74" }, "cloud-upload": { + "name": "cloud-upload", "category": "System", - "tags": ["cloud", "upload", "files"], + "tags": ["cloud", "upload", "files", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea75" }, "cloud": { + "name": "cloud", "category": "Weather", - "tags": ["cloud", "weather", "online"], + "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"], + "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"], + "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", + "unicode": "f674" + }, "clubs": { + "name": "clubs", "category": "Shapes", - "tags": ["clubs", "card", "game", "casino", "gambling", "poker"], + "tags": ["clubs", "card", "game", "casino", "gambling", "poker", "icon", "stroke", "outline"], "version": "1.52", "unicode": "eff4" }, - "code-minus": { + "code-asterix": { + "name": "code-asterix", "category": "Text", - "tags": ["code", "minus", "remove", "delete", "insert", "braces"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["coin", "euro", "money", "earn", "salary", "change", "icon", "stroke", "outline"], "version": "1.81", "unicode": "f2bf" }, - "coin-off": { + "coin-monero": { + "name": "coin-monero", "category": "E-commerce", - "tags": ["coin", "off", "money", "earn", "salary", "change", "dollar"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["coin", "money", "earn", "salary", "change", "dollar", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb82" }, - "color-picker-off": { + "coins": { + "name": "coins", + "category": "", + "tags": ["coins", "icon", "stroke", "outline"], + "version": "1.119", + "unicode": "f65d" + }, + "color-filter": { + "name": "color-filter", "category": "Design", - "tags": ["color", "picker", "off", "timbre", "saturation", "paint", "image", "brush", "choice", "selection", "sample"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["columns", "off", "text", "gap", "table", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0d4" }, "columns": { + "name": "columns", "category": "Text", - "tags": ["columns", "text", "gap", "table"], + "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"], + "tags": ["comet", "space", "universe", "star", "orb", "glow", "night", "icon", "stroke", "outline"], "version": "1.13", "unicode": "ec76" }, - "command": { + "command-off": { + "name": "command-off", "category": "Symbols", - "tags": ["command", "apple", "key", "keyboard", "cmd"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["cone", "2", "geometry", "math", "object", "shape", "icon", "stroke", "outline"], "version": "1.51", "unicode": "efdc" }, - "cone": { + "cone-off": { + "name": "cone-off", "category": "", - "tags": ["cone", "geometry", "math", "object", "shape"], + "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": { + "confetti-off": { + "name": "confetti-off", "category": "", - "tags": ["confetti", "party", "celebrate", "streamers", "paper", "parade", "wedding", "celebration"], + "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"], + "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"], + "tags": ["container", "element", "html", "block", "store", "inside", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee47" }, - "contrast-2": { + "contrast-2-off": { + "name": "contrast-2-off", "category": "Photography", - "tags": ["contrast", "2", "edit", "paint", "photo"], + "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": { + "contrast-off": { + "name": "contrast-off", "category": "Photography", - "tags": ["contrast", "edit", "paint", "photo"], + "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"], + "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"], + "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"], + "tags": ["copy", "off", "clipboard", "clone", "duplicate", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0d8" }, "copy": { + "name": "copy", "category": "Text", - "tags": ["copy", "clipboard", "clone", "duplicate"], + "tags": ["copy", "clipboard", "clone", "duplicate", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea7a" }, "copyleft-off": { + "name": "copyleft-off", "category": "Symbols", - "tags": ["copyleft", "off", "licence", "direction"], + "tags": ["copyleft", "off", "licence", "license", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0d9" }, "copyleft": { + "name": "copyleft", "category": "Symbols", - "tags": ["copyleft", "licence", "license"], + "tags": ["copyleft", "licence", "license", "icon", "stroke", "outline"], "version": "1.11", "unicode": "ec3d" }, "copyright-off": { + "name": "copyright-off", "category": "Symbols", - "tags": ["copyright", "off", "licence", "direction"], + "tags": ["copyright", "off", "licence", "license", "icon", "stroke", "outline"], "version": "1.63", "unicode": "f0da" }, "copyright": { + "name": "copyright", "category": "Symbols", - "tags": ["copyright", "licence", "license"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["cricket", "ball", "game", "sport", "icon", "stroke", "outline"], "version": "1.61", "unicode": "f09a" }, "crop": { + "name": "crop", "category": "Design", - "tags": ["crop", "photo", "image"], + "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", + "unicode": "f675" + }, "cross-off": { + "name": "cross-off", "category": "Symbols", - "tags": ["cross", "off", "prayer", "church", "catholic", "jezus", "religion"], + "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"], + "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"], + "tags": ["crosshair", "reticle", "tag", "tracer", "measurement", "target", "icon", "stroke", "outline"], "version": "1.11", "unicode": "ec3e" }, "crown-off": { + "name": "crown-off", "category": "", - "tags": ["crown", "off", "king", "queen", "royal", "throne", "power"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["curly", "loop", "voicemail", "power", "infinity", "icon", "stroke", "outline"], "version": "1.20", "unicode": "ecda" }, - "currency-bahraini": { + "currency-afghani": { + "name": "currency-afghani", "category": "Currencies", - "tags": ["currency", "bahraini", "bahraini", "bhd", "commerce", "dinar", "money", "banknote", "pay"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["currency", "dollar", "australian", "dollar", "aud", "australian", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee56" }, - "currency-dollar-canadian": { + "currency-dollar-brunei": { + "name": "currency-dollar-brunei", "category": "Currencies", - "tags": ["currency", "dollar", "canadian", "trade", "dollar", "cad", "canadian", "money", "banknote", "pay"], + "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-singapore": { + "currency-dollar-guyanese": { + "name": "currency-dollar-guyanese", "category": "Currencies", - "tags": ["currency", "dollar", "singapore", "singapore", "dollar", "exchange", "sgd", "money", "banknote", "pay"], + "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": { + "currency-dollar-zimbabwean": { + "name": "currency-dollar-zimbabwean", "category": "Currencies", - "tags": ["currency", "dollar", "american", "us", "dollar", "usd", "sign", "bucks", "usa", "money", "banknote", "pay"], + "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-ethereum": { + "currency-dong": { + "name": "currency-dong", "category": "Currencies", - "tags": ["currency", "ethereum", "ethereum", "digital", "crypto", "ether", "blockchain", "money", "banknote", "pay"], + "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": { + "currency-euro-off": { + "name": "currency-euro-off", "category": "Currencies", - "tags": ["currency", "euro", "euro", "eur", "trade", "finance", "europe", "eu", "money", "banknote", "pay"], + "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"], + "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"], + "tags": ["currency", "frank", "chf", "business", "swiss", "franc", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee5b" }, - "currency-krone-czech": { + "currency-guarani": { + "name": "currency-guarani", "category": "Currencies", - "tags": ["currency", "krone", "czech", "czech", "czk", "koruna", "money", "banknote", "pay"], + "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"], + "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"], + "tags": ["currency", "krone", "swedish", "krone", "kronor", "krona", "swedish", "icelandic", "norwegian", "estonian", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee5e" }, - "currency-leu": { + "currency-lari": { + "name": "currency-lari", "category": "Currencies", - "tags": ["currency", "leu", "leu", "loti", "lempira", "lek", "lilangani", "money", "banknote", "pay"], + "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"], + "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"], + "tags": ["currency", "litecoin", "litecoin", "crypto", "segwit", "lightning network", "blockchain", "p2p", "peer", "transaction", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee61" }, - "currency-naira": { + "currency-lyd": { + "name": "currency-lyd", "category": "Currencies", - "tags": ["currency", "naira", "naira", "ngn", "nigerian", "trade", "money", "banknote", "pay", "money", "banknote", "pay"], + "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-pound": { + "currency-off": { + "name": "currency-off", "category": "Currencies", - "tags": ["currency", "pound", "gbp", "pound", "sterling", "british", "britain", "uk", "money", "banknote", "pay"], + "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-real": { + "currency-quetzal": { + "name": "currency-quetzal", "category": "Currencies", - "tags": ["currency", "real", "brl", "brazilian", "real", "finance", "money", "banknote", "pay"], + "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"], + "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"], + "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"], + "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"], + "tags": ["currency", "rubel", "rub", "russian", "ruble", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee67" }, - "currency-rupee": { + "currency-rufiyaa": { + "name": "currency-rufiyaa", "category": "Currencies", - "tags": ["currency", "rupee", "inr", "indian", "rupee", "exchange", "money", "banknote", "pay"], + "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"], + "tags": ["currency", "shekel", "curency", "ils", "israeli", "shekel", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee68" }, - "currency-taka": { + "currency-solana": { + "name": "currency-solana", "category": "Currencies", - "tags": ["currency", "taka", "trade", "bangladesh", "bdt", "taka", "money", "banknote", "pay"], + "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-tugrik": { + "currency-tenge": { + "name": "currency-tenge", "category": "Currencies", - "tags": ["currency", "tugrik", "tgrg", "mnt", "tugrik", "mongolian", "money", "banknote", "pay"], + "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"], + "tags": ["currency", "won", "korean", "kpw", "north", "won", "money", "banknote", "pay", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee6b" }, - "currency-yen": { + "currency-yen-off": { + "name": "currency-yen-off", "category": "Currencies", - "tags": ["currency", "yen", "japanese", "yen", "jpy", "chinese", "money", "banknote", "pay"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["cut", "scissors", "divide", "hairdresser", "sharp", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea86" }, - "dashboard": { + "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", "home", "car"], + "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"], + "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"], + "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", "data", "file", "storage", "table", "system"], + "tags": ["database", "off", "storage", "data", "memory", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee70" }, "database": { + "name": "database", "category": "Database", - "tags": ["database", "storage", "data", "memory"], + "tags": ["database", "storage", "data", "memory", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea88" }, - "dental-broken": { + "deer": { + "name": "deer", + "category": "Animals", + "tags": ["deer", "animal", "christmas", "santa", "forest", "icon", "stroke", "outline"], + "version": "1.98", + "unicode": "f4c5" + }, + "delta": { + "name": "delta", "category": "", - "tags": ["dental", "broken", "tooth", "dentist", "medical", "care", "caries"], + "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"], + "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"], + "tags": ["dental", "tooth", "toothbrush", "mouth", "hygiene", "icon", "stroke", "outline"], "version": "1.55", "unicode": "f025" }, - "details": { + "details-off": { + "name": "details-off", "category": "", - "tags": ["details", "geometric", "half", "shape", "highlight", "triangle"], + "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-analytics": { + "device-airpods-case": { + "name": "device-airpods-case", "category": "Devices", - "tags": ["device", "analytics", "analyze", "analyse", "data", "traffic", "user"], + "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"], + "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"], + "tags": ["device", "camera", "phone", "smartphone", "technology", "photo", "gadget", "photography", "icon", "stroke", "outline"], "version": "1.73", "unicode": "f233" }, - "device-cctv": { + "device-cctv-off": { + "name": "device-cctv-off", "category": "Devices", - "tags": ["device", "cctv", "closed", "circuit", "television", "video", "surveillance", "signal", "monitor", "record"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["device", "heart", "monitor", "hospital", "rate", "healthcare", "health", "icon", "stroke", "outline"], "version": "1.58", "unicode": "f060" }, - "device-laptop-off": { + "device-ipad-horizontal": { + "name": "device-ipad-horizontal", "category": "Devices", - "tags": ["device", "laptop", "off", "workstation", "mac", "notebook", "portable", "screen", "computer"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["device", "nintendo", "gamepad", "technology", "game", "console", "controller", "icon", "stroke", "outline"], "version": "1.55", "unicode": "f026" }, - "device-speaker-off": { + "device-sd-card": { + "name": "device-sd-card", "category": "Devices", - "tags": ["device", "speaker", "off", "sound", "music", "loud", "audio", "media"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], - "version": "1.58", - "unicode": "f066" + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f676" + }, "diamonds": { + "name": "diamonds", "category": "Shapes", - "tags": ["diamonds", "gambling", "game", "casino", "cards", "poker"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["direction", "horizontal", "travel", "navigation discover", "plane", "icon", "stroke", "outline"], "version": "1.8", "unicode": "ebfa" }, - "direction-sign": { + "direction-sign-off": { + "name": "direction-sign-off", "category": "", - "tags": ["direction", "sign", "arrow", "navigation", "forward", "right"], + "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"], + "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"], + "tags": ["directions", "off", "travel", "navigation", "discover", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f116" }, "directions": { + "name": "directions", "category": "Map", - "tags": ["directions", "travel", "navigation", "discover"], + "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"], + "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", "accessible", "handicapped"], + "tags": ["disabled", "off", "wheelchair", "handicapped", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f117" }, "disabled": { + "name": "disabled", "category": "Health", - "tags": ["disabled", "wheelchair", "handicapped"], + "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"], + "tags": ["disc", "off", "cd", "music", "album", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f118" }, "disc": { + "name": "disc", "category": "Devices", - "tags": ["disc", "cd", "music", "album"], + "tags": ["disc", "cd", "music", "album", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea90" }, - "discount-2": { + "discount-2-off": { + "name": "discount-2-off", "category": "E-commerce", - "tags": ["discount", "2", "sale", "reduction", "price", "cost", "money", "shopping", "bargain"], + "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"], + "tags": ["discount", "check", "reduction", "price", "cost", "money", "shopping", "bargain", "tick", "done", "icon", "stroke", "outline"], "version": "1.70", "unicode": "f1f8" }, - "discount": { + "discount-off": { + "name": "discount-off", "category": "E-commerce", - "tags": ["discount", "sale", "reduction", "price", "cost", "money", "shopping", "bargain"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["dots", "vertical", "hellip", "more", "ellipsis", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea94" }, "dots": { + "name": "dots", "category": "System", - "tags": ["dots", "hellip", "more", "ellipsis"], + "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", "cloud", "document", "file"], + "tags": ["download", "off", "save", "arrow", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f11c" }, "download": { + "name": "download", "category": "Arrows", - "tags": ["download", "save", "arrow"], + "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"], + "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"], + "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", "forbidden", "banned", "unlicensed"], + "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"], + "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"], + "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"], + "tags": ["droplet", "filled", "2", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee7f" }, "droplet-filled": { - "category": "Design", - "tags": ["droplet", "filled", "water", "rain", "liquid", "fill"], - "version": "1.39", - "unicode": "ee80" + "name": "droplet-filled", + "category": "Filled", + "tags": ["droplet", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f677" }, "droplet-half-2": { + "name": "droplet-half-2", "category": "Design", - "tags": ["droplet", "half", "2", "water", "rain", "liquid", "fill"], + "tags": ["droplet", "half", "2", "water", "rain", "liquid", "fill", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee81" }, - "droplet-half": { + "droplet-half-filled": { + "name": "droplet-half-filled", "category": "Design", - "tags": ["droplet", "half", "water", "rain", "liquid", "fill"], + "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"], + "tags": ["droplet", "off", "water", "rain", "liquid", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee83" }, "droplet": { + "name": "droplet", "category": "Design", - "tags": ["droplet", "water", "rain", "liquid"], + "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", "deaf", "hearing", "impaired", "handicapped", "hard-of-hearing", "mute"], + "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"], + "tags": ["ear", "sound", "listen", "music", "hear", "loud", "speakers", "icon", "stroke", "outline"], "version": "1.6", "unicode": "ebce" }, - "edit-circle-off": { + "ease-in-control-point": { + "name": "ease-in-control-point", "category": "Design", - "tags": ["edit", "circle", "off", "pencil", "change", "update"], + "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"], + "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"], + "tags": ["edit", "off", "pencil", "change", "update", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f11e" }, "edit": { + "name": "edit", "category": "Design", - "tags": ["edit", "pencil", "change", "update"], + "tags": ["edit", "pencil", "change", "update", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea98" }, "egg-cracked": { + "name": "egg-cracked", "category": "Food", - "tags": ["egg", "cracked"], + "tags": ["egg", "cracked", "breaking", "broken", "food", "breakfast", "icon", "stroke", "outline"], "version": "1.82", "unicode": "f2d6" }, - "egg-off": { + "egg-filled": { + "name": "egg-filled", + "category": "Filled", + "tags": ["egg", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f678" + }, + "egg-fried": { + "name": "egg-fried", "category": "Food", - "tags": ["egg", "off", "food", "chicken", "easter"], + "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"], + "tags": ["egg", "food", "easter", "chicken", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb8a" }, - "elevator": { + "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", "hotel", "up", "down", "service", "door", "lift"], + "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"], + "tags": ["emergency", "bed", "hospital", "medical", "patient", "medicine", "icon", "stroke", "outline"], "version": "1.44", "unicode": "ef5d" }, - "empathize": { + "empathize-off": { + "name": "empathize-off", "category": "Health", - "tags": ["empathize"], + "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"], + "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"], + "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"], + "tags": ["engine", "car", "motor", "automotive", "dashboard", "icon", "stroke", "outline"], "version": "1.46", "unicode": "ef7e" }, - "equal-not": { + "equal-double": { + "name": "equal-double", "category": "Math", - "tags": ["equal", "not", "maths", "mathematics", "equation", "different", "value"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["exchange", "cantor", "money", "product", "product", "student", "icon", "stroke", "outline"], "version": "1.7", "unicode": "ebe7" }, - "exclamation-mark-off": { + "exclamation-circle": { + "name": "exclamation-circle", "category": "", - "tags": ["exclamation", "mark", "off", "warning", "caution", "alert", "danger"], + "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"], + "tags": ["exclamation", "mark", "warning", "caution", "alert", "danger", "!", "icon", "stroke", "outline"], "version": "1.49", "unicode": "efb4" }, - "explicit": { + "explicit-off": { + "name": "explicit-off", "category": "", - "tags": ["explicit", "adult", "content", "xxx", "curse", "words", "porn"], + "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"], + "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"], + "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"], + "tags": ["exposure", "minus", "2", "digit", "math", "number", "evaluation", "icon", "stroke", "outline"], "version": "1.79", "unicode": "f29e" }, - "exposure-plus-1": { + "exposure-off": { + "name": "exposure-off", "category": "Photography", - "tags": ["exposure", "plus", "1"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f679" + }, "eye-off": { + "name": "eye-off", "category": "Health", - "tags": ["eye", "off", "view", "watch"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["feather", "off", "bird", "animal", "nature", "icon", "stroke", "outline"], "version": "1.65", "unicode": "f128" }, "feather": { + "name": "feather", "category": "Nature", - "tags": ["feather", "bird", "animal", "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["file", "barcode", "document", "code", "qr", "ticket", "scan", "icon", "stroke", "outline"], "version": "1.56", "unicode": "f035" }, - "file-certificate": { + "file-broken": { + "name": "file-broken", "category": "Document", - "tags": ["file", "certificate", "certificate", "license", "diploma", "document", "format", "data", "paper"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["file", "database", "data", "storage", "folder", "format", "server", "icon", "stroke", "outline"], "version": "1.56", "unicode": "f037" }, - "file-description": { + "file-delta": { + "name": "file-delta", "category": "Document", - "tags": ["file", "description", "text", "paper", "report", "details", "job"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["file", "export", "arrow", "data", "paper", "document", "format", "icon", "stroke", "outline"], "version": "1.37", "unicode": "ede9" }, - "file-horizontal": { + "file-function": { + "name": "file-function", "category": "Document", - "tags": ["file", "horizontal", "paper", "new"], + "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"], + "tags": ["file", "import", "arrow", "data", "paper", "document", "format", "icon", "stroke", "outline"], "version": "1.37", "unicode": "edea" }, - "file-info": { + "file-infinity": { + "name": "file-infinity", "category": "Document", - "tags": ["file", "info", "info", "information", "informations", "paper", "file", "document", "page"], + "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"], + "tags": ["file", "invoice", "accounting", "bill", "statement", "settlement", "finance", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb67" }, - "file-like": { + "file-lambda": { + "name": "file-lambda", "category": "Document", - "tags": ["file", "like", "approved", "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"], + "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"], + "tags": ["file", "music", "mp3", "wma", "wav", "icon", "stroke", "outline"], "version": "1.0", "unicode": "ea9f" }, "file-off": { + "name": "file-off", "category": "Document", - "tags": ["file", "off", "new", "close", "gap", "paper"], + "tags": ["file", "off", "paper", "new", "icon", "stroke", "outline"], "version": "1.22", "unicode": "ecf2" }, "file-orientation": { + "name": "file-orientation", "category": "Document", - "tags": ["file", "orientation"], + "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"], + "tags": ["file", "pencil", "edit", "write", "editing", "text", "icon", "stroke", "outline"], "version": "1.56", "unicode": "f039" }, - "file-phone": { + "file-percent": { + "name": "file-percent", "category": "Document", - "tags": ["file", "phone", "save", "transfer", "input"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["file", "spreadsheet", "table", "extension", "excel", "format", "icon", "stroke", "outline"], "version": "1.56", "unicode": "f03e" }, - "file-star": { + "file-stack": { + "name": "file-stack", "category": "Document", - "tags": ["file", "star", "favourite", "bookmark", "like"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["filter", "off", "funnel", "hopper", "filtration", "icon", "stroke", "outline"], "version": "1.26", "unicode": "ed2c" }, "filter": { + "name": "filter", "category": "System", - "tags": ["filter", "funnel", "hopper", "filtration"], + "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"], + "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"], + "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"], + "tags": ["firetruck", "help", "rescuer", "vehicle", "fireman", "extinguishing", "icon", "stroke", "outline"], "version": "1.7", "unicode": "ebe8" }, - "first-aid-kit": { + "first-aid-kit-off": { + "name": "first-aid-kit-off", "category": "Health", - "tags": ["first", "aid", "kit", "medical", "healthcare", "hospital", "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"], + "tags": ["fish", "bone", "food", "skeleton", "cat", "sea", "icon", "stroke", "outline"], "version": "1.78", "unicode": "f287" }, - "fish-hook": { + "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", "fishing", "bait", "hanging", "catch", "water"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f67a" + }, "flag-off": { + "name": "flag-off", "category": "Map", - "tags": ["flag", "off", "banner", "pin", "report", "map", "warning", "alert"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["flip", "vertical", "mirror", "rotate", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaa8" }, "float-center": { + "name": "float-center", "category": "Text", - "tags": ["float", "center", "position"], + "tags": ["float", "center", "position", "icon", "stroke", "outline"], "version": "1.4", "unicode": "ebb1" }, "float-left": { + "name": "float-left", "category": "Text", - "tags": ["float", "left", "position"], + "tags": ["float", "left", "position", "icon", "stroke", "outline"], "version": "1.4", "unicode": "ebb2" }, "float-none": { + "name": "float-none", "category": "Text", - "tags": ["float", "none", "position"], + "tags": ["float", "none", "position", "icon", "stroke", "outline"], "version": "1.24", "unicode": "ed13" }, "float-right": { + "name": "float-right", "category": "Text", - "tags": ["float", "right", "position"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["fold", "up", "arrow", "move", "toggle", "icon", "stroke", "outline"], "version": "1.30", "unicode": "ed55" }, "fold": { + "name": "fold", "category": "Arrows", - "tags": ["fold", "arrow", "move", "merge"], + "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"], + "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"], + "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"], + "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"], + "tags": ["folder", "x", "directory", "dir", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaac" }, "folder": { + "name": "folder", "category": "Document", - "tags": ["folder", "cancel", "no", "directory", "dir"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "grid", "mesh", "photo", "image", "picture"], + "tags": ["frame", "off", "crop", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f135" }, "frame": { + "name": "frame", "category": "Design", - "tags": ["frame", "crop"], + "tags": ["frame", "crop", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaaf" }, "free-rights": { + "name": "free-rights", "category": "", - "tags": ["free", "rights", "justice", "inviolability", "freedom"], + "tags": ["free", "rights", "justice", "inviolability", "freedom", "icon", "stroke", "outline"], "version": "1.49", "unicode": "efb6" }, - "fridge": { + "fridge-off": { + "name": "fridge-off", "category": "Devices", - "tags": ["fridge", "kitchen", "cooler", "control", "freezer", "food"], + "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"], + "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"], + "tags": ["friends", "people", "boy", "girl", "man", "woman", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eab0" }, - "function": { + "function-off": { + "name": "function-off", "category": "Math", - "tags": ["function", "math", "linear", "statyscics", "graph"], + "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": { + "garden-cart-off": { + "name": "garden-cart-off", "category": "Vehicles", - "tags": ["garden", "cart", "gardening", "conctruction", "wheel", "wheelbarrow"], + "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"], + "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"], + "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", "speed"], + "tags": ["gauge", "off", "car", "dashboard", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f138" }, "gauge": { + "name": "gauge", "category": "System", - "tags": ["gauge", "car", "dashboard"], + "tags": ["gauge", "car", "dashboard", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eab1" }, "gavel": { + "name": "gavel", "category": "", - "tags": ["gavel", "justice", "law", "hammer", "legal", "auction"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["geometry", "build", "architecture", "create", "compass", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee90" }, - "ghost": { + "ghost-2": { + "name": "ghost-2", "category": "", - "tags": ["ghost", "spirit", "transparent", "fairytale", "horror", "movie", "shadow", "haunt"], + "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"], + "tags": ["gif", "file", "format", "animation", "image", "extension", "icon", "stroke", "outline"], "version": "1.75", "unicode": "f257" }, - "gift": { + "gift-card": { + "name": "gift-card", "category": "", - "tags": ["gift", "present", "birthday", "celebration", "wish", "bonus", "souvenire", "surprise"], + "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": { - "category": "", - "tags": ["git", "branch", "code", "version control", "command"], + "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": { - "category": "", - "tags": ["git", "commit", "code", "version control", "command"], + "name": "git-commit", + "category": "Version control", + "tags": ["git", "commit", "code", "version control", "command", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eab3" }, "git-compare": { - "category": "", - "tags": ["git", "compare", "code", "version control", "command"], + "name": "git-compare", + "category": "Version control", + "tags": ["git", "compare", "code", "version control", "command", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eab4" }, "git-fork": { - "category": "", - "tags": ["git", "fork", "code", "version control", "command"], + "name": "git-fork", + "category": "Version control", + "tags": ["git", "fork", "code", "version control", "command", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb8f" }, "git-merge": { - "category": "", - "tags": ["git", "merge", "code", "version control", "command"], + "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": { - "category": "", - "tags": ["git", "pull", "request", "closed", "code", "version control", "command"], + "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": { - "category": "", - "tags": ["git", "pull", "request", "draft", "code", "version control", "command"], + "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": { - "category": "", - "tags": ["git", "pull", "request", "code", "version control", "command"], + "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"], + "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"], + "tags": ["glass", "full", "wine", "cup", "goblet", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eab7" }, "glass-off": { + "name": "glass-off", "category": "Food", - "tags": ["glass", "off", "drink", "alcohol", "not-allowed", "sober", "non-alcoholic", "wine"], + "tags": ["glass", "off", "wine", "cup", "goblet", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ee91" }, "glass": { + "name": "glass", "category": "Food", - "tags": ["glass", "wine", "cup", "goblet"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["gps", "navigation", "directions", "global", "positioning", "system", "satnav", "radionavigation", "system", "travel", "car", "icon", "stroke", "outline"], "version": "1.33", "unicode": "ed7a" }, - "grain": { + "gradienter": { + "name": "gradienter", "category": "", - "tags": ["grain", "dots", "pattern", "random", "round", "circle", "nodes"], + "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": { + "graph-off": { + "name": "graph-off", "category": "", - "tags": ["graph", "analytics", "raport", "statistics", "chart"], + "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"], + "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"], + "tags": ["grid", "pattern", "grid", "mesh", "net", "line", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efc9" }, - "grill-off": { + "grill-fork": { + "name": "grill-fork", "category": "Food", - "tags": ["grill", "off", "food", "sasuage", "beef", "steak", "bbq", "cooking"], - "version": "1.66", - "unicode": "f13b" + "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"], + "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"], + "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"], + "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"], + "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", + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["hash", "hashtag", "#", "instagram", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eabc" }, "haze": { + "name": "haze", "category": "Weather", - "tags": ["haze", "climate", "meterology", "weather", "morning"], + "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"], + "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"], + "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", "sound", "silence", "mute", "earphones", "electronics", "wireless", "listen"], + "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"], + "tags": ["headphones", "music", "headset", "audio", "sound", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eabd" }, - "headset": { + "headset-off": { + "name": "headset-off", "category": "Media", - "tags": ["headset", "music", "headphones", "audio", "sound"], + "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"], + "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"], + "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", + "unicode": "f67c" + }, "heart-handshake": { + "name": "heart-handshake", "category": "", - "tags": ["heart", "handshake", "support", "care", "friends", "couple", "relation"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["helmet", "safety", "f1", "racing", "motorcycle", "builder", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efca" }, - "help": { + "help-off": { + "name": "help-off", "category": "", - "tags": ["help", "tooltip", "assistance", "advice", "support"], + "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", + "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", "six", "angle", "shape", "crossed"], + "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"], + "tags": ["hexagon", "shape", "geometric", "math", "2d", "icon", "stroke", "outline"], "version": "1.8", "unicode": "ec02" }, - "hexagons": { + "hexagons-off": { + "name": "hexagons-off", "category": "Shapes", - "tags": ["hexagons", "diagram", "chemistry", "modules", "geometric"], + "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"], + "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"], + "tags": ["hierarchy", "3", "relation", "above", "below", "status", "society", "important", "icon", "stroke", "outline"], "version": "1.78", "unicode": "f289" }, - "hierarchy": { + "hierarchy-off": { + "name": "hierarchy-off", "category": "Design", - "tags": ["hierarchy", "relation", "above", "below", "status", "society", "important"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["home", "2", "house", "dashboard", "living", "building", "icon", "stroke", "outline"], "version": "1.1", "unicode": "eac0" }, - "home-off": { + "home-bolt": { + "name": "home-bolt", "category": "Buildings", - "tags": ["home", "off", "house", "dashboard", "living", "building"], + "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": { + "home-plus": { + "name": "home-plus", "category": "Buildings", - "tags": ["home", "house", "dashboard", "living", "building"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "sweet", "cold", "dessert", "food", "taste", "frozen", "snack", "flavour", "flavor", "cone"], + "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"], + "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"], + "tags": ["ice", "skating", "winter", "skate", "sport", "figure", "activity", "hockey", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efcb" }, - "icons": { + "icons-off": { + "name": "icons-off", "category": "Shapes", - "tags": ["icons", "design", "image", "picture"], + "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"], + "tags": ["id", "badge", "2", "identification", "pass", "card", "identity", "icon", "stroke", "outline"], "version": "1.59", "unicode": "f076" }, - "id-badge": { + "id-badge-off": { + "name": "id-badge-off", "category": "", - "tags": ["id", "badge", "identification", "pass", "card", "identity"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["indent", "increase", "line", "position", "block", "margin", "paragraph", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb92" }, - "infinity": { + "infinity-off": { + "name": "infinity-off", "category": "Math", - "tags": ["infinity", "endless", "eternity", "continuum", "time"], + "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"], + "tags": ["info", "circle", "information", "advice", "news", "tip", "sign", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eac5" }, - "info-square": { + "info-square-rounded": { + "name": "info-square-rounded", "category": "", - "tags": ["info", "square", "information", "advice", "news", "tip", "sign"], + "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"], + "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"], + "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", + "unicode": "f67e" + }, "jewish-star": { + "name": "jewish-star", "category": "Symbols", - "tags": ["jewish", "star", "judaism", "israel", "religion", "bright"], - "version": "1.68", - "unicode": "f1d5" + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "device", "type", "disconnect", "unplug"], + "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"], + "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"], + "tags": ["keyboard", "computer", "laptop", "device", "type", "icon", "stroke", "outline"], "version": "1.6", "unicode": "ebd6" }, - "ladder-off": { + "keyframe-align-center": { + "name": "keyframe-align-center", "category": "", - "tags": ["ladder", "off", "up", "equipment", "garden", "climb", "climbing"], + "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"], + "tags": ["ladder", "up", "equipment", "garden", "climb", "climbing", "icon", "stroke", "outline"], "version": "1.51", "unicode": "efe2" }, - "lamp-2": { + "lambda": { + "name": "lambda", "category": "", - "tags": ["lamp", "2", "light", "room", "decoration", "electic", "energy"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["lasso", "off", "cowboy", "western", "sheriff", "man", "tool", "west", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f14f" }, - "lasso": { + "lasso-polygon": { + "name": "lasso-polygon", "category": "Design", - "tags": ["lasso", "cowboy", "western", "sheriff", "man", "tool", "west"], + "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"], + "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"], + "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"], + "tags": ["layers", "intersect", "stack", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eac9" }, "layers-linked": { + "name": "layers-linked", "category": "Design", - "tags": ["layers", "linked", "data", "network"], + "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"], + "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"], + "tags": ["layers", "subtract", "stack", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaca" }, "layers-union": { + "name": "layers-union", "category": "Design", - "tags": ["layers", "union", "stack", "join"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["layout", "cards", "position", "element", "design", "arrangement", "icon", "stroke", "outline"], "version": "1.8", "unicode": "ec13" }, - "layout-columns": { + "layout-collage": { + "name": "layout-collage", "category": "Design", - "tags": ["layout", "columns", "grid", "column", "rows"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], - "version": "1.66", - "unicode": "f152" + "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"], + "tags": ["leaf", "nature", "plant", "tree", "autumn", "fall", "greenery", "flower", "forest", "garden", "icon", "stroke", "outline"], "version": "1.29", "unicode": "ed4f" }, - "lego": { + "lego-off": { + "name": "lego-off", "category": "", - "tags": ["lego", "toy", "boy", "face", "play"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["line", "geometric", "segment", "link", "connection", "icon", "stroke", "outline"], "version": "1.11", "unicode": "ec40" }, - "link": { + "link-off": { + "name": "link-off", "category": "Text", - "tags": ["link", "chain", "url", "connection", "address"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["list", "task", "unordered", "bullets", "agenda", "shopping", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb6b" }, - "live-photo": { + "live-photo-off": { + "name": "live-photo-off", "category": "Photography", - "tags": ["live", "photo", "capture", "photo", "movement", "sound", "memory", "image", "camera"], + "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"], + "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"], + "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"], + "tags": ["loader", "quarter", "process", "download", "upload", "icon", "stroke", "outline"], "version": "1.17", "unicode": "eca2" }, "loader": { + "name": "loader", "category": "System", - "tags": ["loader", "process", "download", "upload"], + "tags": ["loader", "process", "download", "upload", "icon", "stroke", "outline"], "version": "1.17", "unicode": "eca3" }, "location-broken": { + "name": "location-broken", "category": "Map", - "tags": ["location", "broken"], + "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", + "unicode": "f67f" + }, "location-off": { + "name": "location-off", "category": "Map", - "tags": ["location", "off", "navigation", "map", "direction", "discover", "travel"], + "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"], + "tags": ["location", "navigation", "map", "direction", "discover", "travel", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eae0" }, - "lock-access": { + "lock-access-off": { + "name": "lock-access-off", "category": "", - "tags": ["lock", "access", "block", "limited", "restricted", "unavailable", "confidential"], + "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"], + "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"], + "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"], + "tags": ["lock", "open", "security", "password", "secure", "unprotected", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eae1" }, - "lock-square": { + "lock-square-rounded": { + "name": "lock-square-rounded", "category": "", - "tags": ["lock", "square", "privaty", "safe", "secure", "privacy"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["luggage", "travel", "vacation", "suitcase", "bag", "holiday", "baggage", "icon", "stroke", "outline"], "version": "1.48", "unicode": "efad" }, - "lungs": { + "lungs-off": { + "name": "lungs-off", "category": "Health", - "tags": ["lungs", "anatomy", "human", "medical", "respiratory", "breathe", "organ", "human"], + "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": { + "macro-off": { + "name": "macro-off", "category": "Photography", - "tags": ["macro", "video", "photography", "photo", "camera"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f680" + }, "map-pin-off": { + "name": "map-pin-off", "category": "Map", - "tags": ["map", "pin", "off", "navigation", "location", "travel", "pin", "position", "marker"], + "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"], + "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"], + "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"], + "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"], + "tags": ["map", "navigation", "location", "travel", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eae9" }, - "markdown": { + "markdown-off": { + "name": "markdown-off", "category": "Text", - "tags": ["markdown", "price", "valuation", "cost", "exchange"], + "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"], + "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"], + "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"], + "tags": ["marquee", "tag", "tracer", "html", "animation", "text", "graphic", "icon", "stroke", "outline"], "version": "1.13", "unicode": "ec77" }, "mars": { + "name": "mars", "category": "Symbols", - "tags": ["mars", "male"], + "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"], + "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"], + "tags": ["mask", "edit", "layer", "mask", "tool", "design", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eeb0" }, - "masks-theater": { + "masks-theater-off": { + "name": "masks-theater-off", "category": "", - "tags": ["masks", "theater", "cinema", "comedy", "acting", "face", "art"], + "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"], + "tags": ["massage", "physiotherapy", "spa", "relax", "sports", "therapy", "treatment", "spine", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eeb1" }, - "math-avg": { + "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", "avg", "symbol"], + "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-function-off": { + "math-equal-greater": { + "name": "math-equal-greater", "category": "Math", - "tags": ["math", "function", "off", "linear", "statyscics", "graph"], + "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": { + "math-function-y": { + "name": "math-function-y", "category": "Math", - "tags": ["math", "function", "sdfsfg"], + "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-max": { + "math-greater": { + "name": "math-greater", "category": "Math", - "tags": ["math", "max", "symbol"], + "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"], + "tags": ["math", "min", "symbol", "icon", "stroke", "outline"], "version": "1.64", "unicode": "f0f6" }, - "math-symbols": { + "math-not": { + "name": "math-not", "category": "Math", - "tags": ["math", "symbols", "calculator", "equal", "plus", "multiplication", "minus", "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": { + "math-x-divide-2": { + "name": "math-x-divide-2", "category": "Math", - "tags": ["math", "subject", "count", "plus", "minus", "times"], + "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"], + "tags": ["maximize", "off", "fullscreen", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f15f" }, "maximize": { + "name": "maximize", "category": "", - "tags": ["maximize", "fullscreen"], + "tags": ["maximize", "fullscreen", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaea" }, - "meat": { + "meat-off": { + "name": "meat-off", "category": "Food", - "tags": ["meat", "food", "beef", "steak", "chicken", "sasuage", "dinner"], + "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"], + "tags": ["medal", "2", "decorate", "uniform", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efcd" }, "medal": { + "name": "medal", "category": "", - "tags": ["medal", "decorate", "uniform"], + "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", + "unicode": "f681" + }, "medical-cross-off": { + "name": "medical-cross-off", "category": "Map", - "tags": ["medical", "cross", "off", "sign", "hospital", "help", "indication"], + "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"], + "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"], + "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"], + "tags": ["menu", "2", "bars", "hamburger", "navigation", "burger", "icon", "stroke", "outline"], "version": "1.11", "unicode": "ec42" }, - "menu": { + "menu-order": { + "name": "menu-order", "category": "System", - "tags": ["menu", "bars", "hamburger", "navigation", "burger"], + "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"], + "tags": ["message", "2", "code", "coding", "programming", "chat", "program", "icon", "stroke", "outline"], "version": "1.54", "unicode": "f012" }, - "message-2-share": { + "message-2-off": { + "name": "message-2-off", "category": "Communication", - "tags": ["message", "2", "share", "sharing", "email", "mail", "communication", "post"], + "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"], + "tags": ["message", "2", "comment", "chat", "reply", "faq", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaec" }, - "message-circle-2": { + "message-chatbot": { + "name": "message-chatbot", "category": "Communication", - "tags": ["message", "circle", "2", "comment", "chat", "reply"], + "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", + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["messages", "chat", "reply", "comment", "conversation", "communication", "faq", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb6c" }, - "meteor": { + "meteor-off": { + "name": "meteor-off", "category": "", - "tags": ["meteor", "space", "comet", "astronomy", "galaxy", "cosmos"], + "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", + "unicode": "f683" + }, "mickey": { + "name": "mickey", "category": "", - "tags": ["mickey"], + "tags": ["mickey", "fable", "cartoon", "mouse", "kids", "icon", "stroke", "outline"], "version": "1.79", "unicode": "f2a3" }, - "microphone-2": { + "microphone-2-off": { + "name": "microphone-2-off", "category": "Media", - "tags": ["microphone", "2", "record", "sound", "listen", "sing"], + "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", "blocked", "mute"], + "tags": ["microphone", "off", "record", "sound", "listen", "icon", "stroke", "outline"], "version": "1.24", "unicode": "ed16" }, "microphone": { + "name": "microphone", "category": "Media", - "tags": ["microphone", "record", "sound", "listen"], + "tags": ["microphone", "record", "sound", "listen", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaf0" }, - "microscope": { + "microscope-off": { + "name": "microscope-off", "category": "Health", - "tags": ["microscope", "school", "education", "learning", "lab", "experimental", "chemistry", "biology", "medical", "bacteria", "technology"], + "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"], + "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"], + "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"], + "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"], + "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": { + "milk-off": { + "name": "milk-off", "category": "Food", - "tags": ["milk", "food", "drink", "cow", "healthy", "breakfast", "bottle", "coffee"], + "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"], + "tags": ["minimize", "exit", "close", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaf1" }, "minus-vertical": { + "name": "minus-vertical", "category": "", - "tags": ["minus", "vertical", "subtract", "less", "divide"], + "tags": ["minus", "vertical", "subtract", "less", "divide", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eeb4" }, "minus": { + "name": "minus", "category": "Math", - "tags": ["minus", "subtract", "less"], + "tags": ["minus", "subtract", "less", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaf2" }, - "mist": { + "mist-off": { + "name": "mist-off", "category": "Weather", - "tags": ["mist", "weather", "visibility"], + "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" }, - "mood-boy": { + "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", "boy", "face", "emoji", "emotion"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["mood", "look", "right", "east", "face", "direction", "icon", "stroke", "outline"], "version": "1.81", "unicode": "f2c6" }, - "mood-nervous": { + "mood-nerd": { + "name": "mood-nerd", "category": "Mood", - "tags": ["mood", "nervous", "angry", "stressed", "worry", "frustrated"], + "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"], + "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"], + "tags": ["mood", "off", "sad", "happy", "emoji", "smiley", "neutral", "face", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f161" }, - "mood-sad": { + "mood-sad-2": { + "name": "mood-sad-2", "category": "Mood", - "tags": ["mood", "sad", "face", "emoji", "emotion", "mad"], + "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-sing": { + "mood-sick": { + "name": "mood-sick", "category": "Mood", - "tags": ["mood", "sing"], + "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": { + "mood-smile-beam": { + "name": "mood-smile-beam", "category": "Mood", - "tags": ["mood", "smile", "face", "emoji", "emotion"], + "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"], + "tags": ["mood", "suprised", "face", "emoji", "emotion", "icon", "stroke", "outline"], "version": "1.8", "unicode": "ec04" }, - "mood-tongue": { + "mood-tongue-wink-2": { + "name": "mood-tongue-wink-2", "category": "Mood", - "tags": ["mood", "tongue", "face", "emoji", "emotion"], + "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"], + "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", + "unicode": "f684" + }, "moon-off": { + "name": "moon-off", "category": "Weather", - "tags": ["moon", "off", "night", "dark mode"], + "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"], + "tags": ["moon", "stars", "night", "dark mode", "icon", "stroke", "outline"], "version": "1.21", "unicode": "ece7" }, "moon": { + "name": "moon", "category": "Weather", - "tags": ["moon", "night", "dark mode"], + "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"], + "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"], + "tags": ["motorbike", "engine", "ride", "trip", "journey", "road", "street", "vehicle", "motorcycle", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eeb6" }, - "mountain": { + "mountain-off": { + "name": "mountain-off", "category": "", - "tags": ["mountain", "alps", "camping", "mount everest", "trekking"], + "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"], + "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"], + "tags": ["mouse", "off", "pointer", "cursor", "device", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f163" }, "mouse": { + "name": "mouse", "category": "Devices", - "tags": ["mouse", "pointer", "cursor", "device"], + "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"], + "tags": ["movie", "off", "film", "video", "cinema", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f164" }, "movie": { + "name": "movie", "category": "Media", - "tags": ["movie", "film", "video", "cinema"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["multiplier", "2x", "count", "calculate", "math", "icon", "stroke", "outline"], "version": "1.42", "unicode": "ef44" }, - "mushroom": { + "mushroom-off": { + "name": "mushroom-off", "category": "Food", - "tags": ["mushroom", "food", "vegetable", "cooking", "fungus", "mushrooming"], + "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"], + "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"], + "tags": ["music", "sound", "mp3", "album", "sound", "speakers", "melody", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eafc" }, - "navigation": { + "navigation-filled": { + "name": "navigation-filled", + "category": "Filled", + "tags": ["navigation", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f685" + }, + "navigation-off": { + "name": "navigation-off", "category": "Map", - "tags": ["navigation"], + "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" }, - "network": { + "needle-thread": { + "name": "needle-thread", "category": "", - "tags": ["network", "connection", "internet", "communication", "connect", "web", "signal"], + "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"], + "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"], + "tags": ["news", "off", "newspaper", "article", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f167" }, "news": { + "name": "news", "category": "Document", - "tags": ["news", "newspaper", "article"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["note", "checkbox", "brief", "record", "write", "message", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb6d" }, - "notebook": { + "notebook-off": { + "name": "notebook-off", "category": "Document", - "tags": ["notebook", "study", "learn", "diary", "write", "journal", "page", "paper", "jot down"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f686" + }, "octagon-off": { + "name": "octagon-off", "category": "Shapes", - "tags": ["octagon", "off", "shape", "eight", "angle", "crossed"], + "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"], + "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"], + "tags": ["old", "senior", "person", "elderly", "age", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eeb9" }, - "olympics": { + "olympics-off": { + "name": "olympics-off", "category": "Sport", - "tags": ["olympics", "game", "play", "sport", "sportsman", "champion", "win", "medal", "sporting", "event", "competition", "athlete"], + "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"], + "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"], + "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"], + "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", + "unicode": "f687" + }, + "oval-vertical-filled": { + "name": "oval-vertical-filled", + "category": "Filled", + "tags": ["oval", "vertical", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f688" + }, "oval-vertical": { + "name": "oval-vertical", "category": "Shapes", - "tags": ["oval", "vertical", "shape", "graphic", "circle"], + "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"], + "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"], + "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"], + "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"], + "tags": ["package", "npm", "box", "container", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eaff" }, "packages": { + "name": "packages", "category": "", - "tags": ["packages"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["palette", "color", "paint", "painter", "picture", "board", "artist", "icon", "stroke", "outline"], "version": "1.1", "unicode": "eb01" }, - "panorama-horizontal": { + "panorama-horizontal-off": { + "name": "panorama-horizontal-off", "category": "Photography", - "tags": ["panorama", "horizontal", "photo", "picture", "panoramic"], + "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": { + "panorama-vertical-off": { + "name": "panorama-vertical-off", "category": "Photography", - "tags": ["panorama", "vertical", "photo", "picture", "panoramic"], + "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"], + "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"], + "tags": ["paper", "bag", "recycle", "shopping", "ecology", "food", "icon", "stroke", "outline"], "version": "1.55", "unicode": "f02f" }, "paperclip": { + "name": "paperclip", "category": "", - "tags": ["paperclip", "attachment", "annex", "hold"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["parking", "sign", "car", "vehicle", "space", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb03" }, - "paw": { + "password": { + "name": "password", "category": "", - "tags": ["paw", "animal", "dog", "cat", "foot", "pets"], + "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", + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f68a" + }, "pennant-2": { + "name": "pennant-2", "category": "Map", - "tags": ["pennant", "2", "flag", "ship", "sports", "championship", "mark", "spot", "winner"], + "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", + "unicode": "f68b" + }, "pennant-off": { + "name": "pennant-off", "category": "Map", - "tags": ["pennant", "off", "flag", "ship", "sports", "championship", "mark", "spot", "winner"], + "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"], + "tags": ["pennant", "flag", "ship", "sports", "championship", "mark", "spot", "winner", "icon", "stroke", "outline"], "version": "1.33", "unicode": "ed7d" }, - "pentagon": { + "pentagon-filled": { + "name": "pentagon-filled", + "category": "Filled", + "tags": ["pentagon", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f68c" + }, + "pentagon-off": { + "name": "pentagon-off", "category": "Shapes", - "tags": ["pentagon", "shape", "figure", "math", "graphic", "geometry", "form"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["phone", "call", "mobile", "conversation", "landline", "answer", "number", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb09" }, - "photo-off": { + "photo-cancel": { + "name": "photo-cancel", "category": "Media", - "tags": ["photo", "off", "image", "picture", "landscape", "camera"], + "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": { + "photo-plus": { + "name": "photo-plus", "category": "Media", - "tags": ["photo", "image", "picture", "landscape", "camera"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["picture", "in", "picture", "size", "photo", "elements", "adjust", "image", "icon", "stroke", "outline"], "version": "1.27", "unicode": "ed35" }, - "pig-off": { + "pig-money": { + "name": "pig-money", "category": "Animals", - "tags": ["pig", "off", "animal", "farm", "pork", "mud", "pink", "piggy", "bank"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f68d" + }, "pin": { + "name": "pin", "category": "Map", - "tags": ["pin", "thing", "localization", "maps", "clip", "place", "location"], + "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", + "unicode": "f68e" + }, "pinned-off": { + "name": "pinned-off", "category": "Map", - "tags": ["pinned", "off", "removed", "attach", "corkboard", "unfasten", "noticeboard"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f68f" + }, "player-eject": { + "name": "player-eject", "category": "Media", - "tags": ["player", "eject", "media", "multimedia", "music", "audio", "control", "figures"], + "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", + "unicode": "f690" + }, "player-pause": { + "name": "player-pause", "category": "Media", - "tags": ["player", "pause", "video", "film", "music", "player", "stop"], + "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", + "unicode": "f691" + }, "player-play": { + "name": "player-play", "category": "Media", - "tags": ["player", "play", "start", "video", "film", "music", "player"], + "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", + "unicode": "f692" + }, "player-record": { + "name": "player-record", "category": "Media", - "tags": ["player", "record", "music", "song", "playlist", "melody", "device", "voice", "recorder", "dictation", "machine"], + "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", + "unicode": "f693" + }, "player-skip-back": { + "name": "player-skip-back", "category": "Media", - "tags": ["player", "skip", "back", "button", "player", "video", "film", "music", "cancel", "rewind", "reverse"], + "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", + "unicode": "f694" + }, "player-skip-forward": { + "name": "player-skip-forward", "category": "Media", - "tags": ["player", "skip", "forward", "button", "player", "video", "film", "music", "omit"], + "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", + "unicode": "f695" + }, "player-stop": { + "name": "player-stop", "category": "Media", - "tags": ["player", "stop", "music", "song", "playlist", "melody", "device", "voice", "silence", "break"], + "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", + "unicode": "f696" + }, "player-track-next": { + "name": "player-track-next", "category": "Media", - "tags": ["player", "track", "next", "music", "forward", "play", "song", "playlist"], + "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", + "unicode": "f697" + }, "player-track-prev": { + "name": "player-track-prev", "category": "Media", - "tags": ["player", "track", "prev", "music", "forward", "play", "song", "playlist"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "discharge", "end charging", "charge off"], + "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"], + "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"], + "tags": ["plug", "electricity", "charger", "socket", "connection", "icon", "stroke", "outline"], "version": "1.6", "unicode": "ebd9" }, "plus": { + "name": "plus", "category": "Math", - "tags": ["plus", "add", "create", "new"], + "tags": ["plus", "add", "create", "new", "+", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb0b" }, - "podium": { + "png": { + "name": "png", "category": "", - "tags": ["podium", "speach", "microphone", "conference", "politics", "audience", "presentation"], + "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", + "unicode": "f698" + }, "point-off": { + "name": "point-off", "category": "", - "tags": ["point", "off", "dot", "label"], + "tags": ["point", "off", "dot", "label", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f181" }, "point": { + "name": "point", "category": "", - "tags": ["point", "dot", "label"], + "tags": ["point", "dot", "label", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb0c" }, "pointer": { + "name": "pointer", "category": "System", - "tags": ["pointer", "cursor", "mouse", "point", "click", "arrow"], + "tags": ["pointer", "cursor", "mouse", "point", "click", "arrow", "icon", "stroke", "outline"], "version": "1.76", "unicode": "f265" }, - "pokeball": { + "pokeball-off": { + "name": "pokeball-off", "category": "Map", - "tags": ["pokeball", "pokemon", "go", "catch", "game", "play"], + "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"], + "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"], + "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"], + "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"], + "tags": ["poo", "poop", "shit", "crap", "toilet", "icon", "stroke", "outline"], "version": "1.75", "unicode": "f258" }, - "pool": { + "pool-off": { + "name": "pool-off", "category": "Sport", - "tags": ["pool", "swim", "water", "swimmer", "holiday", "swimming", "vacation", "relax", "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["printer", "off", "fax", "office", "device", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f184" }, "printer": { + "name": "printer", "category": "Devices", - "tags": ["printer", "fax", "office", "device"], + "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"], + "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"], + "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"], + "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"], + "tags": ["propeller", "rotate", "blade", "spiral", "air", "ship", "fan", "power", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eec4" }, - "puzzle-2": { + "pumpkin-scary": { + "name": "pumpkin-scary", "category": "", - "tags": ["puzzle", "2", "jigsaw", "extension", "add-on"], + "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", + "unicode": "f699" + }, "puzzle-off": { + "name": "puzzle-off", "category": "", - "tags": ["puzzle", "off", "jigsaw", "extension", "add-on"], + "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"], + "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"], + "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"], + "tags": ["pyramid", "pattern", "abstract", "geometric", "shape", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eec5" }, - "qrcode": { + "qrcode-off": { + "name": "qrcode-off", "category": "Devices", - "tags": ["qrcode", "scan", "data"], + "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-mark": { + "question-circle": { + "name": "question-circle", "category": "", - "tags": ["question", "mark", "sign", "symbol", "ask", "sentence", "word", "letters"], + "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"], + "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"], + "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"], + "tags": ["radar", "2", "location", "navigation", "gps", "find", "signal", "technology", "submarine", "icon", "stroke", "outline"], "version": "1.54", "unicode": "f016" }, - "radar": { + "radar-off": { + "name": "radar-off", "category": "Map", - "tags": ["radar", "location", "navigation", "gps", "find", "signal", "technology", "submarine"], + "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": { + "radio-off": { + "name": "radio-off", "category": "Media", - "tags": ["radio", "music", "news", "sound", "broadcost", "communication", "station"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "free"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f69a" + }, + "rectangle-vertical-filled": { + "name": "rectangle-vertical-filled", + "category": "Filled", + "tags": ["rectangle", "vertical", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f69b" + }, "rectangle-vertical": { + "name": "rectangle-vertical", "category": "Shapes", - "tags": ["rectangle", "vertical", "shape", "geometric", "math", "upright"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["repeat", "reuse", "redo", "action", "replay", "loop", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb72" }, - "replace": { + "replace-filled": { + "name": "replace-filled", + "category": "Filled", + "tags": ["replace", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f69c" + }, + "replace-off": { + "name": "replace-off", "category": "", - "tags": ["replace", "change", "place", "position", "move", "exchange"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["roller", "skating", "sport", "hobby", "fitness", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efd1" }, - "rollercoaster": { + "rollercoaster-off": { + "name": "rollercoaster-off", "category": "Vehicles", - "tags": ["rollercoaster", "adrenaline", "height", "speed", "funfair", "fun", "attraction", "extreme"], + "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", + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["route", "off", "path", "navigation", "map", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f194" }, "route": { + "name": "route", "category": "Map", - "tags": ["route", "path", "navigation", "map"], + "tags": ["route", "path", "navigation", "map", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb17" }, - "router": { + "router-off": { + "name": "router-off", "category": "Devices", - "tags": ["router", "wifi", "device", "wireless", "signal", "station", "cast"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["run", "jog", "dislocating", "movement", "motion", "sprint", "icon", "stroke", "outline"], "version": "1.14", "unicode": "ec82" }, - "sailboat": { + "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", "sailor", "journey", "sea", "lake", "ocean", "river"], + "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" }, - "salt": { + "salad": { + "name": "salad", "category": "Food", - "tags": ["salt", "food", "cooking", "kitchen", "spice", "salty"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["scan", "code", "barcode", "qr code", "app", "scanner", "document", "icon", "stroke", "outline"], "version": "1.5", "unicode": "ebc8" }, - "schema": { + "schema-off": { + "name": "schema-off", "category": "Database", - "tags": ["schema", "graph", "data", "infography"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["screenshot", "image", "capture", "photo", "icon", "stroke", "outline"], "version": "1.70", "unicode": "f201" }, - "scribble": { + "scribble-off": { + "name": "scribble-off", "category": "", - "tags": ["scribble", "kid", "doodle", "draw", "drawing"], + "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"], + "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"], + "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"], + "tags": ["script", "x", "code", "programming", "coding", "remove", "delete", "icon", "stroke", "outline"], "version": "1.82", "unicode": "f2d9" }, "script": { + "name": "script", "category": "Document", - "tags": ["script"], + "tags": ["script", "code", "programming", "coding", "document", "development", "icon", "stroke", "outline"], "version": "1.82", "unicode": "f2da" }, - "scuba-mask": { + "scuba-mask-off": { + "name": "scuba-mask-off", "category": "Sport", - "tags": ["scuba", "mask", "dive", "diving", "water", "holiday", "underwater", "snorkeling", "equipment"], + "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" }, - "search-off": { + "sdk": { + "name": "sdk", "category": "", - "tags": ["search", "off", "find", "magnifier", "magnifying glass"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["select", "input", "icon", "stroke", "outline"], "version": "1.16", "unicode": "ec9e" }, "selector": { + "name": "selector", "category": "", - "tags": ["selector", "arrows"], + "tags": ["selector", "arrows", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb1d" }, - "send": { + "send-off": { + "name": "send-off", "category": "Communication", - "tags": ["send", "message", "mail", "email", "gmail", "paper", "airplane", "aeroplane"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["server", "2", "storage", "hosting", "www", "icon", "stroke", "outline"], "version": "1.59", "unicode": "f07c" }, - "server-off": { + "server-bolt": { + "name": "server-bolt", "category": "Devices", - "tags": ["server", "off", "storage", "hosting", "www"], + "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"], + "tags": ["server", "storage", "hosting", "www", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb1f" }, "servicemark": { + "name": "servicemark", "category": "Symbols", - "tags": ["servicemark", "trademark", "sign", "symbol", "registration"], + "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"], + "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", + "unicode": "f69e" + }, "settings-off": { + "name": "settings-off", "category": "System", - "tags": ["settings", "off", "cog", "edit", "gear", "preferences", "tools"], + "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"], + "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", "light", "css", "effect", "clear"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["share", "off", "network", "link", "connection", "icon", "stroke", "outline"], "version": "1.66", "unicode": "f1a1" }, "share": { + "name": "share", "category": "", - "tags": ["share", "network", "link", "connection"], + "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"], + "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"], + "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"], + "tags": ["shield", "chevron", "knight", "guard", "defence", "protect", "icon", "stroke", "outline"], "version": "1.47", "unicode": "ef9b" }, - "shield-lock": { + "shield-filled": { + "name": "shield-filled", + "category": "Filled", + "tags": ["shield", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f69f" + }, + "shield-half-filled": { + "name": "shield-half-filled", "category": "System", - "tags": ["shield", "lock", "secure", "security", "closed", "key", "safety"], + "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", "unprotected", "protection", "cancel", "false"], + "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"], + "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"], + "tags": ["shield", "safety", "protect", "protection", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb24" }, - "ship": { + "ship-off": { + "name": "ship-off", "category": "Vehicles", - "tags": ["ship", "sail", "sail across", "ocean", "river", "lake", "sea", "sailor", "journey", "transit", "manufactures", "containers"], + "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", + "unicode": "f6a0" + }, "shirt-off": { + "name": "shirt-off", "category": "", - "tags": ["shirt", "off", "gear", "outfit", "mocker"], + "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"], + "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"], + "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"], + "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"], + "tags": ["shoe", "sport", "boots", "boot", "footwear", "sneaker", "nike", "adidas", "icon", "stroke", "outline"], "version": "1.50", "unicode": "efd2" }, - "shopping-cart-discount": { + "shopping-bag": { + "name": "shopping-bag", "category": "E-commerce", - "tags": ["shopping", "cart", "discount", "shop", "store", "buy", "purchase", "product", "bag", "trolley", "supermarket", "grocery"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f6a1" + }, "sign-left": { + "name": "sign-left", "category": "", - "tags": ["sign", "left", "direction", "west", "navigation", "arrow", "navigate"], + "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", + "unicode": "f6a2" + }, "sign-right": { + "name": "sign-right", "category": "", - "tags": ["sign", "right", "direction", "east", "navigation", "arrow", "navigate"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["sitemap", "page", "webpage", "website", "list", "roadmap", "index", "icon", "stroke", "outline"], "version": "1.3", "unicode": "eb9d" }, - "skateboard": { + "skateboard-off": { + "name": "skateboard-off", "category": "Vehicles", - "tags": ["skateboard", "toy", "vehicle", "electrical"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["social", "off", "society", "community", "collectivity", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1a9" }, "social": { + "name": "social", "category": "", - "tags": ["social", "society", "community", "collectivity"], + "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"], + "tags": ["sock", "clothing", "clothes", "foot", "feet", "leg", "knit", "wool", "cotton", "ankle", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eee1" }, - "sofa": { + "sofa-off": { + "name": "sofa-off", "category": "", - "tags": ["sofa", "chair", "seat", "home", "furniture", "couch"], + "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-ascending-2": { + "sort-0-9": { + "name": "sort-0-9", "category": "Text", - "tags": ["sort", "ascending", "2", "filter", "classify", "arrange", "order"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["sos", "help", "emergency", "signal", "message", "alert", "icon", "stroke", "outline"], "version": "1.74", "unicode": "f24a" }, - "soup": { + "soup-off": { + "name": "soup-off", "category": "Food", - "tags": ["soup", "food", "cooking", "restaurant", "bowl", "hot", "kitchen"], + "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"], + "tags": ["space", "off", "keyboard", "type", "gap", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1aa" }, "space": { + "name": "space", "category": "Text", - "tags": ["space", "keyboard", "type", "gap"], + "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"], + "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"], + "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", + "unicode": "f6a3" + }, "spade": { + "name": "spade", "category": "Shapes", - "tags": ["spade", "cards", "casino", "poker", "shapes", "gamble"], + "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"], + "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"], + "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"], + "tags": ["spider", "halloween", "animal", "scary", "horror", "cobweb", "insect", "icon", "stroke", "outline"], "version": "1.78", "unicode": "f293" }, - "spiral": { + "spiral-off": { + "name": "spiral-off", "category": "", - "tags": ["spiral", "hypnosis", "rotation", "growth"], + "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"], + "tags": ["sport", "billard", "pool", "game", "ball", "pub", "entertainment", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eee4" }, - "spy": { + "spray": { + "name": "spray", "category": "", - "tags": ["spy", "security", "incognito", "privacy", "browser", "web"], + "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-0": { - "category": "Numbers", - "tags": ["square", "0", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eee5" + "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-1": { - "category": "Numbers", - "tags": ["square", "1", "one", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eee6" + "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-2": { - "category": "Shapes", - "tags": ["square", "2", "two", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eee7" + "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-3": { - "category": "Numbers", - "tags": ["square", "3", "three", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eee8" - }, - "square-4": { - "category": "Numbers", - "tags": ["square", "4", "four", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eee9" - }, - "square-5": { - "category": "Numbers", - "tags": ["square", "5", "five", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eeea" - }, - "square-6": { - "category": "Numbers", - "tags": ["square", "6", "six", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eeeb" - }, - "square-7": { - "category": "Numbers", - "tags": ["square", "7", "seven", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eeec" - }, - "square-8": { - "category": "Numbers", - "tags": ["square", "8", "eight", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eeed" - }, - "square-9": { - "category": "Numbers", - "tags": ["square", "9", "nine", "zero", "number", "digit", "quantity", "amount", "order", "maths", "sum", "total"], - "version": "1.39", - "unicode": "eeee" + "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"], + "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"], + "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"], + "tags": ["square", "dot", "corner", "shape", "element", "point", "icon", "stroke", "outline"], "version": "1.30", "unicode": "ed59" }, - "square-forbid-2": { + "square-f0": { + "name": "square-f0", "category": "", - "tags": ["square", "forbid", "2", "box", "disabled", "false", "block"], + "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"], + "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"], + "tags": ["square", "half", "shapes", "pattern", "geometric", "highlight", "geometry", "icon", "stroke", "outline"], "version": "1.52", "unicode": "effb" }, - "square-minus": { + "square-key": { + "name": "square-key", "category": "", - "tags": ["square", "minus", "remove", "indeterminate"], + "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", "box", "disabled", "block"], + "tags": ["square", "off", "checkbox", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eeef" }, "square-plus": { + "name": "square-plus", "category": "", - "tags": ["square", "plus", "add", "create", "new"], + "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"], + "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"], + "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", + "unicode": "f6a4" + }, "square-rotated-forbid-2": { + "name": "square-rotated-forbid-2", "category": "", - "tags": ["square", "rotated", "forbid", "2", "shape", "geometry", "rhombus", "ban", "restricted"], + "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"], + "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", "box", "disabled", "block"], + "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"], + "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", + "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"], + "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"], + "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"], + "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"], + "tags": ["square", "checkbox", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb2c" }, "squares-diagonal": { + "name": "squares-diagonal", "category": "Design", - "tags": ["squares", "diagonal", "boxes", "layers"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f6a6" + }, + "star-half-filled": { + "name": "star-half-filled", + "category": "Filled", + "tags": ["star", "half", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f6a7" + }, "star-half": { + "name": "star-half", "category": "System", - "tags": ["star", "half", "favorite", "like", "mark", "bookmark", "grade"], + "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"], + "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"], + "tags": ["star", "favorite", "like", "mark", "bookmark", "grade", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb2e" }, - "stars": { + "stars-filled": { + "name": "stars-filled", + "category": "Filled", + "tags": ["stars", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f6a8" + }, + "stars-off": { + "name": "stars-off", "category": "System", - "tags": ["stars", "favorite", "like", "mark", "grade", "bookmark", "grade", "space", "universe", "extraterrestrial", "galaxy"], + "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" }, - "steam": { + "status-change": { + "name": "status-change", "category": "", - "tags": ["steam", "app", "social", "games", "platform", "software"], + "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": { + "steering-wheel-off": { + "name": "steering-wheel-off", "category": "Vehicles", - "tags": ["steering", "wheel", "drive", "vehicle", "direction", "turn", "holding", "racing"], + "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"], + "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"], + "tags": ["step", "out", "vector", "placement", "outside", "except", "icon", "stroke", "outline"], "version": "1.20", "unicode": "ece1" }, - "stethoscope": { + "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", "doctor", "medical", "physician", "test", "examination", "health", "illness", "sickness", "scrutiny", "test", "hospital"], + "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"], + "tags": ["sticker", "label", "stamp", "adhesive", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb2f" }, - "storm": { + "storm-off": { + "name": "storm-off", "category": "", - "tags": ["storm", "weather", "cloud", "lighting", "rain", "wind", "tornado"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f6a9" + }, "sun-high": { + "name": "sun-high", "category": "Weather", - "tags": ["sun", "high", "temperature", "hot", "wheater", "thermometer", "forecast"], + "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"], + "tags": ["sun", "low", "temperature", "cold", "wheater", "thermometer", "forecast", "icon", "stroke", "outline"], "version": "1.73", "unicode": "f237" }, - "sun-off": { + "sun-moon": { + "name": "sun-moon", "category": "Weather", - "tags": ["sun", "off", "dark", "darkmode", "summer", "light", "brightness"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["switch", "vertical", "toggle", "up", "down", "arrows", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb32" }, "switch": { + "name": "switch", "category": "Arrows", - "tags": ["switch", "toggle", "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"], - "version": "1.67", - "unicode": "f1ac" + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", "shopping", "promotion"], + "tags": ["tag", "off", "label", "price", "icon", "stroke", "outline"], "version": "1.49", "unicode": "efc0" }, "tag": { + "name": "tag", "category": "E-commerce", - "tags": ["tag", "label", "price"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["target", "off", "focus", "bullseye", "aim", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1ad" }, "target": { + "name": "target", "category": "Map", - "tags": ["target", "focus", "bullseye", "aim"], + "tags": ["target", "focus", "bullseye", "aim", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb35" }, - "telescope-off": { + "teapot": { + "name": "teapot", "category": "", - "tags": ["telescope", "off", "astronomy", "moon", "observation", "vision", "space", "astrology"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["template", "grid", "columns", "masonry", "collage", "icon", "stroke", "outline"], "version": "1.1", "unicode": "eb39" }, - "tent": { + "tent-off": { + "name": "tent-off", "category": "Map", - "tags": ["tent", "camping", "holiday", "vacation", "outdoor", "survival", "travel", "adventure"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["test", "pipe", "sample", "color", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb3a" }, - "text-color": { + "tex": { + "name": "tex", "category": "Text", - "tags": ["text", "color"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["thermometer", "temperature", "hot", "cold", "weather", "medical", "fever", "celsius", "icon", "stroke", "outline"], "version": "1.44", "unicode": "ef67" }, - "thumb-down": { + "thumb-down-filled": { + "name": "thumb-down-filled", + "category": "Filled", + "tags": ["thumb", "down", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f6aa" + }, + "thumb-down-off": { + "name": "thumb-down-off", "category": "System", - "tags": ["thumb", "down", "dislike", "bad", "emotion"], + "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": { + "thumb-up-filled": { + "name": "thumb-up-filled", + "category": "Filled", + "tags": ["thumb", "up", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f6ab" + }, + "thumb-up-off": { + "name": "thumb-up-off", "category": "System", - "tags": ["thumb", "up", "like", "emotion", "good", "love"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["tilt", "shift", "filter", "shift", "photography", "photo", "icon", "stroke", "outline"], "version": "1.39", "unicode": "eefe" }, - "timeline": { + "timeline-event-exclamation": { + "name": "timeline-event-exclamation", "category": "", - "tags": ["timeline", "process", "plan", "planning", "diagram", "chart", "roadmap"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["tools", "off", "preferences", "edit", "settings", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1b7" }, "tools": { + "name": "tools", "category": "Design", - "tags": ["tools", "preferences", "edit", "settings"], + "tags": ["tools", "preferences", "edit", "settings", "icon", "stroke", "outline"], "version": "1.5", "unicode": "ebca" }, "tooltip": { + "name": "tooltip", "category": "System", - "tags": ["tooltip"], + "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"], + "tags": ["tornado", "wind", "rotate", "storm", "spin", "spinning", "air", "catastrophe", "vortex", "icon", "stroke", "outline"], "version": "1.20", "unicode": "ece2" }, "tournament": { - "category": "", - "tags": ["tournament", "competition", "competitor", "sport", "game", "play", "champion"], + "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"], + "tags": ["tower", "off", "building", "castle", "fortress", "palace", "icon", "stroke", "outline"], "version": "1.81", "unicode": "f2ca" }, "tower": { + "name": "tower", "category": "Buildings", - "tags": ["tower"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "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"], + "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"], + "tags": ["transition", "left", "direction", "west", "moving", "icon", "stroke", "outline"], "version": "1.80", "unicode": "f2b3" }, "transition-right": { + "name": "transition-right", "category": "Arrows", - "tags": ["transition", "right"], + "tags": ["transition", "right", "direction", "east", "moving", "icon", "stroke", "outline"], "version": "1.80", "unicode": "f2b4" }, "transition-top": { + "name": "transition-top", "category": "Arrows", - "tags": ["transition", "top"], + "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", "bin", "litter", "recycle", "remove", "delete", "throw", "away", "waste"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f6ad" + }, + "triangle-inverted-filled": { + "name": "triangle-inverted-filled", + "category": "Filled", + "tags": ["triangle", "inverted", "filled", "icon", "stroke", "outline"], + "version": "2.0", + "unicode": "f6ae" + }, "triangle-inverted": { + "name": "triangle-inverted", "category": "", - "tags": ["triangle", "inverted", "shape", "geometry", "geometric", "graphic", "pyramid", "design"], + "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", "shape", "crossed", "angle"], + "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"], + "tags": ["triangle", "square", "circle", "shape", "geometry", "round", "angle", "icon", "stroke", "outline"], "version": "1.21", "unicode": "ece8" }, "triangle": { + "name": "triangle", "category": "Shapes", - "tags": ["triangle", "delta"], + "tags": ["triangle", "delta", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb44" }, "triangles": { + "name": "triangles", "category": "Shapes", - "tags": ["triangles", "shapes", "figure", "geometry", "geometric", "pyramid", "design"], + "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"], + "tags": ["trident", "three", "spear", "weapon", "sharp", "tool", "icon", "stroke", "outline"], "version": "1.18", "unicode": "ecc5" }, - "trophy": { + "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", + "unicode": "f6af" + }, + "trophy-off": { + "name": "trophy-off", "category": "", - "tags": ["trophy", "success", "win", "prize", "winner"], + "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"], + "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"], + "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", "order", "purchase", "online", "shop", "store", "e-commerce", "lorry"], + "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"], + "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"], + "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"], + "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"], + "tags": ["typography", "type", "display", "typeface", "point size", "line length", "line-spacing", "letter-spacing", "font", "icon", "stroke", "outline"], "version": "1.5", "unicode": "ebc5" }, - "uf-off": { + "ufo-off": { + "name": "ufo-off", "category": "", - "tags": ["uf", "off", "alien", "space", "astronomy", "spaceship", "galaxy"], + "tags": ["ufo", "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"], + "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", + "unicode": "f6b0" + }, "umbrella-off": { + "name": "umbrella-off", "category": "", - "tags": ["umbrella", "off", "rain", "weather", "storm", "wet", "autumn", "fall"], + "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"], + "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"], + "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"], + "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"], + "tags": ["upload", "file", "arrow", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb47" }, "urgent": { + "name": "urgent", "category": "", - "tags": ["urgent", "alert", "important"], + "tags": ["urgent", "alert", "important", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb48" }, "usb": { + "name": "usb", "category": "", - "tags": ["usb", "drive", "cable", "plug", "device", "technology", "connect"], + "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"], + "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", "Facebook"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["user", "x", "cancel", "remove", "person", "account", "unsubscribe", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb4c" }, "user": { + "name": "user", "category": "", - "tags": ["user", "person", "account"], + "tags": ["user", "person", "account", "icon", "stroke", "outline"], "version": "1.0", "unicode": "eb4d" }, "users": { + "name": "users", "category": "", - "tags": ["users", "people", "persons", "accounts"], + "tags": ["users", "people", "persons", "accounts", "icon", "stroke", "outline"], "version": "1.7", "unicode": "ebf2" }, - "vaccine-bottle": { + "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", "medical", "medicine", "pharmacy", "covid", "virus", "drug"], + "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"], + "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"], + "tags": ["vaccine", "illness", "sickness", "disease", "injection", "medicine", "medical", "doctor", "nurse", "icon", "stroke", "outline"], "version": "1.39", "unicode": "ef04" }, - "variable-off": { + "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", "off", "maths", "mathematics", "science", "calculate", "function"], + "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": { + "variable-plus": { + "name": "variable-plus", "category": "Math", - "tags": ["variable", "maths", "mathematics", "science", "calculate", "function"], + "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"], + "tags": ["vector", "bezier", "2", "curve", "parametric", "design", "vector graphics", "representation", "icon", "stroke", "outline"], "version": "1.27", "unicode": "f1a3" }, - "vector-bezier": { + "vector-bezier-arc": { + "name": "vector-bezier-arc", "category": "Design", - "tags": ["vector", "bezier", "curve", "parametric", "design", "vector graphics", "representation"], + "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"], + "tags": ["vector", "off", "curve", "parametric", "design", "vector graphics", "placement", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1be" }, - "vector-triangle-off": { + "vector-spline": { + "name": "vector-spline", "category": "Design", - "tags": ["vector", "triangle", "off", "curve", "parametric", "design", "vector graphics", "placement"], + "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"], + "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"], + "tags": ["vector", "curve", "parametric", "design", "vector graphics", "placement", "icon", "stroke", "outline"], "version": "1.17", "unicode": "eca9" }, "venus": { + "name": "venus", "category": "Symbols", - "tags": ["venus", "female"], + "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", + "unicode": "f6b1" + }, "versions-off": { + "name": "versions-off", "category": "", - "tags": ["versions", "off", "app", "variation", "different", "variant", "alternative"], + "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"], + "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"], + "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", "end", "complete"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["viewfinder", "off", "target", "aim", "focus", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1c2" }, "viewfinder": { + "name": "viewfinder", "category": "Map", - "tags": ["viewfinder", "target", "aim", "focus"], + "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"], + "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"], + "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"], + "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", "covid", "coronavirus", "biology", "infection", "infected", "cell", "viral", "infectious", "disease"], + "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"], + "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"], + "tags": ["virus", "infection", "illness", "cell", "infectious", "health", "icon", "stroke", "outline"], "version": "1.2", "unicode": "eb74" }, - "vocabulary": { + "vocabulary-off": { + "name": "vocabulary-off", "category": "Text", - "tags": ["vocabulary", "language", "traffic", "text", "book", "study", "dictionary"], + "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"], + "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"], + "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"], + "tags": ["volume", "off", "music", "sound", "speaker", "icon", "stroke", "outline"], "version": "1.67", "unicode": "f1c3" }, "volume": { + "name": "volume", "category": "Media", - "tags": ["volume", "music", "sound", "speaker"], + "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"], + "tags": ["walk", "ambulation", "dislocating", "movement", "motion", "destination", "icon", "stroke", "outline"], "version": "1.14", "unicode": "ec87" }, - "wall": { + "wall-off": { + "name": "wall-off", "category": "", - "tags": ["wall", "brick", "security", "firewall", "building", "renovation", "consturction"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["wave", "square", "pulse", "signal", "ratio", "rate", "volume", "icon", "stroke", "outline"], "version": "1.19", "unicode": "ecd5" }, - "webhook": { + "webhook-off": { + "name": "webhook-off", "category": "", - "tags": ["webhook", "communication", "interaction", "comunity", "browser"], + "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" }, - "wheelchair": { + "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", "disabled", "disability", "patient", "medical", "handicapped"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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", + "unicode": "f6b2" + }, "windmill-off": { + "name": "windmill-off", "category": "", - "tags": ["windmill", "off", "generate", "power", "blade", "energy", "electricity"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["wiper", "car", "pane", "vehicle", "sprinkler", "scour", "icon", "stroke", "outline"], "version": "1.17", "unicode": "ecab" }, "woman": { + "name": "woman", "category": "", - "tags": ["woman", "girl", "female", "gender"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["world", "upload", "earth", "global", "up", "globe", "arrow", "internet", "icon", "stroke", "outline"], "version": "1.46", "unicode": "ef8b" }, - "world": { + "world-www": { + "name": "world-www", "category": "Map", - "tags": ["world", "earth", "globe", "global", "language", "union"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["xbox", "a", "controller", "joystick", "button", "icon", "stroke", "outline"], "version": "1.80", "unicode": "f2b6" }, "xbox-b": { + "name": "xbox-b", "category": "Devices", - "tags": ["xbox", "b"], + "tags": ["xbox", "b", "controller", "joystick", "button", "icon", "stroke", "outline"], "version": "1.80", "unicode": "f2b7" }, "xbox-x": { + "name": "xbox-x", "category": "Devices", - "tags": ["xbox", "x"], + "tags": ["xbox", "x", "controller", "joystick", "button", "icon", "stroke", "outline"], "version": "1.80", "unicode": "f2b8" }, "xbox-y": { + "name": "xbox-y", "category": "Devices", - "tags": ["xbox", "y"], + "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"], + "tags": ["yin", "yang", "equality", "good", "evil", "balance", "peace", "icon", "stroke", "outline"], "version": "1.10", "unicode": "ec35" }, "yoga": { - "category": "", - "tags": ["yoga", "pose", "sport", "meditation", "fitness"], + "name": "yoga", + "category": "Sport", + "tags": ["yoga", "pose", "sport", "meditation", "fitness", "icon", "stroke", "outline"], "version": "1.54", "unicode": "f01f" }, - "zeppelin": { + "zeppelin-off": { + "name": "zeppelin-off", "category": "Vehicles", - "tags": ["zeppelin", "airship", "transport", "ballon", "flying", "travel"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "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"], + "tags": ["zoom", "reset", "refresh", "default", "settings", "vision", "icon", "stroke", "outline"], "version": "1.78", "unicode": "f295" }, - "zzz": { + "zzz-off": { + "name": "zzz-off", "category": "", - "tags": ["zzz", "sleep", "sleeping", "bed", "dream", "snooze", "rest"], + "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/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..a454620c7 --- /dev/null +++ b/test/test-preact/package.json @@ -0,0 +1,24 @@ +{ + "name": "test-preact", + "private": true, + "version": "2.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "clean": "rm -rf dist" + }, + "dependencies": { + "@tabler/icons-preact": "2.0.0", + "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..1ddedc3f5 --- /dev/null +++ b/test/test-react/package.json @@ -0,0 +1,24 @@ +{ + "name": "test-react", + "private": true, + "version": "2.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "clean": "rm -rf dist" + }, + "dependencies": { + "@tabler/icons-react": "2.0.0", + "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..d9dcd8dd1 --- /dev/null +++ b/test/test-svelte/package.json @@ -0,0 +1,25 @@ +{ + "name": "test-svelte", + "private": true, + "version": "2.0.0", + "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" + }, + "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..c91d14d45 --- /dev/null +++ b/test/test-vue/package.json @@ -0,0 +1,22 @@ +{ + "name": "test-vue", + "private": true, + "version": "2.0.0", + "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" + }, + "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": [] + } + } +}
{% include_cached icon.html name=icon.slug %} {{ icon.slug }}