Icons: Move unicons icons to the repository and generate the iconsBundle.js with nodejs (#53766)
@ -21,6 +21,8 @@ pkg/coremodel/
|
|||||||
pkg/framework/coremodel/
|
pkg/framework/coremodel/
|
||||||
grafana-mixin/
|
grafana-mixin/
|
||||||
cue/
|
cue/
|
||||||
|
public/img/icons/solid/
|
||||||
|
public/img/icons/unicons/
|
||||||
```
|
```
|
||||||
|
|
||||||
The following directories and their subdirectories are licensed under their original upstream licenses:
|
The following directories and their subdirectories are licensed under their original upstream licenses:
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
"ci:test-frontend": "yarn run test:ci && yarn grafana-toolkit node-version-check",
|
"ci:test-frontend": "yarn run test:ci && yarn grafana-toolkit node-version-check",
|
||||||
"i18n:extract": "lingui extract",
|
"i18n:extract": "lingui extract",
|
||||||
"i18n:compile": "lingui compile",
|
"i18n:compile": "lingui compile",
|
||||||
"postinstall": "husky install && node ./scripts/copy-unicons.js",
|
"postinstall": "husky install",
|
||||||
"betterer": "betterer",
|
"betterer": "betterer",
|
||||||
"betterer:merge": "betterer merge",
|
"betterer:merge": "betterer merge",
|
||||||
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts"
|
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts"
|
||||||
@ -201,7 +201,6 @@
|
|||||||
"html-webpack-plugin": "5.5.0",
|
"html-webpack-plugin": "5.5.0",
|
||||||
"http-server": "14.1.1",
|
"http-server": "14.1.1",
|
||||||
"husky": "8.0.1",
|
"husky": "8.0.1",
|
||||||
"iconscout-unicons-tarball": "https://github.com/grafana/icons/tarball/63056cd833ba7ee4e94904492b3a8c0cabc38d28",
|
|
||||||
"jest": "28.1.3",
|
"jest": "28.1.3",
|
||||||
"jest-canvas-mock": "2.4.0",
|
"jest-canvas-mock": "2.4.0",
|
||||||
"jest-date-mock": "1.0.8",
|
"jest-date-mock": "1.0.8",
|
||||||
|
@ -36,7 +36,8 @@
|
|||||||
"docsExtract": "mkdir -p ../../reports/docs && api-extractor run 2>&1 | tee ../../reports/docs/$(basename $(pwd)).log",
|
"docsExtract": "mkdir -p ../../reports/docs && api-extractor run 2>&1 | tee ../../reports/docs/$(basename $(pwd)).log",
|
||||||
"storybook": "start-storybook -p 9001 -c .storybook",
|
"storybook": "start-storybook -p 9001 -c .storybook",
|
||||||
"storybook:build": "build-storybook -o ./dist/storybook -c .storybook",
|
"storybook:build": "build-storybook -o ./dist/storybook -c .storybook",
|
||||||
"typecheck": "tsc --emitDeclarationOnly false --noEmit"
|
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
|
||||||
|
"generate-icons-bundle-cache-file": "node ./scripts/generate-icon-bundle.js"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"defaults",
|
"defaults",
|
||||||
|
51
packages/grafana-ui/scripts/generate-icon-bundle.js
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
const os = require('os');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const cachedListPath = path.join(__dirname, '../src/components/Icon/cached.json');
|
||||||
|
const iconsList = require(cachedListPath);
|
||||||
|
|
||||||
|
const iconsBundleJsTemplatePath = path.join(__dirname, '../src/components/Icon/iconBundle.ts.template');
|
||||||
|
const iconsBundleJsPath = path.join(__dirname, '../src/components/Icon/iconBundle.ts');
|
||||||
|
|
||||||
|
const iconsBundleJsTemplate = fs.readFileSync(iconsBundleJsTemplatePath).toString();
|
||||||
|
|
||||||
|
const importsStatements = [];
|
||||||
|
const cacheStatements = [];
|
||||||
|
|
||||||
|
const grafanaIconsPublicPath = '../../../../../public/img/icons/';
|
||||||
|
|
||||||
|
function generateIconBundle({ outputPath, verbose = false }) {
|
||||||
|
const modulePrefix = 'u';
|
||||||
|
let moduleNameCount = 1000;
|
||||||
|
|
||||||
|
for (iconEntry of iconsList) {
|
||||||
|
// skip empty and commented
|
||||||
|
if (iconEntry === '' || iconEntry.startsWith('#')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
importsStatements.push(
|
||||||
|
`import ${modulePrefix}${moduleNameCount} from '${grafanaIconsPublicPath}${iconEntry}.svg';`
|
||||||
|
);
|
||||||
|
cacheStatements.push(` cacheItem(${modulePrefix}${moduleNameCount}, '${iconEntry}.svg');`);
|
||||||
|
moduleNameCount++;
|
||||||
|
}
|
||||||
|
const output = iconsBundleJsTemplate
|
||||||
|
.replace('//{{imports}}', importsStatements.join('\n'))
|
||||||
|
.replace('//{{cacheItems}}', cacheStatements.join('\n'));
|
||||||
|
|
||||||
|
fs.writeFileSync(outputPath, output);
|
||||||
|
if (verbose) {
|
||||||
|
console.log('The iconsBundle file was successfully written.');
|
||||||
|
console.log(`The file is located at ${outputPath}`);
|
||||||
|
}
|
||||||
|
return outputPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
// if invoked directly
|
||||||
|
if (require.main === module) {
|
||||||
|
generateIconBundle({ outputPath: iconsBundleJsPath, verbose: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = generateIconBundle;
|
157
packages/grafana-ui/src/components/Icon/cached.json
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
[
|
||||||
|
"unicons/angle-double-down",
|
||||||
|
"unicons/angle-double-right",
|
||||||
|
"unicons/angle-down",
|
||||||
|
"unicons/angle-left",
|
||||||
|
"unicons/angle-right",
|
||||||
|
"unicons/angle-up",
|
||||||
|
"unicons/apps",
|
||||||
|
"unicons/arrow",
|
||||||
|
"unicons/arrow-down",
|
||||||
|
"unicons/arrow-from-right",
|
||||||
|
"unicons/arrow-left",
|
||||||
|
"unicons/arrow-random",
|
||||||
|
"unicons/arrow-right",
|
||||||
|
"unicons/arrow-up",
|
||||||
|
"unicons/arrows-h",
|
||||||
|
"unicons/backward",
|
||||||
|
"unicons/bars",
|
||||||
|
"unicons/bell",
|
||||||
|
"unicons/bell-slash",
|
||||||
|
"unicons/bolt",
|
||||||
|
"unicons/book",
|
||||||
|
"unicons/book-open",
|
||||||
|
"unicons/brackets-curly",
|
||||||
|
"unicons/bug",
|
||||||
|
"unicons/building",
|
||||||
|
"unicons/calculator-alt",
|
||||||
|
"unicons/calendar-alt",
|
||||||
|
"unicons/camera",
|
||||||
|
"unicons/channel-add",
|
||||||
|
"unicons/chart-line",
|
||||||
|
"unicons/check",
|
||||||
|
"unicons/check-circle",
|
||||||
|
"unicons/circle",
|
||||||
|
"unicons/clipboard-alt",
|
||||||
|
"unicons/clock-nine",
|
||||||
|
"unicons/cloud",
|
||||||
|
"unicons/cloud-download",
|
||||||
|
"unicons/code-branch",
|
||||||
|
"unicons/cog",
|
||||||
|
"unicons/columns",
|
||||||
|
"unicons/comment-alt",
|
||||||
|
"unicons/comment-alt-share",
|
||||||
|
"unicons/comments-alt",
|
||||||
|
"unicons/compass",
|
||||||
|
"unicons/copy",
|
||||||
|
"unicons/cube",
|
||||||
|
"unicons/dashboard",
|
||||||
|
"unicons/database",
|
||||||
|
"unicons/document-info",
|
||||||
|
"unicons/download-alt",
|
||||||
|
"unicons/draggabledots",
|
||||||
|
"unicons/edit",
|
||||||
|
"unicons/ellipsis-v",
|
||||||
|
"unicons/envelope",
|
||||||
|
"unicons/exchange-alt",
|
||||||
|
"unicons/exclamation-triangle",
|
||||||
|
"unicons/external-link-alt",
|
||||||
|
"unicons/eye",
|
||||||
|
"unicons/eye-slash",
|
||||||
|
"unicons/file-alt",
|
||||||
|
"unicons/file-blank",
|
||||||
|
"unicons/filter",
|
||||||
|
"unicons/folder",
|
||||||
|
"unicons/folder-open",
|
||||||
|
"unicons/folder-plus",
|
||||||
|
"unicons/folder-upload",
|
||||||
|
"unicons/forward",
|
||||||
|
"unicons/graph-bar",
|
||||||
|
"unicons/history",
|
||||||
|
"unicons/home-alt",
|
||||||
|
"unicons/import",
|
||||||
|
"unicons/info",
|
||||||
|
"unicons/info-circle",
|
||||||
|
"unicons/key-skeleton-alt",
|
||||||
|
"unicons/keyboard",
|
||||||
|
"unicons/link",
|
||||||
|
"unicons/list-ul",
|
||||||
|
"unicons/lock",
|
||||||
|
"unicons/minus",
|
||||||
|
"unicons/minus-circle",
|
||||||
|
"unicons/mobile-android",
|
||||||
|
"unicons/monitor",
|
||||||
|
"unicons/pause",
|
||||||
|
"unicons/pen",
|
||||||
|
"unicons/play",
|
||||||
|
"unicons/plug",
|
||||||
|
"unicons/plus",
|
||||||
|
"unicons/plus-circle",
|
||||||
|
"unicons/power",
|
||||||
|
"unicons/presentation-play",
|
||||||
|
"unicons/process",
|
||||||
|
"unicons/question-circle",
|
||||||
|
"unicons/repeat",
|
||||||
|
"unicons/rocket",
|
||||||
|
"unicons/save",
|
||||||
|
"unicons/search",
|
||||||
|
"unicons/search-minus",
|
||||||
|
"unicons/search-plus",
|
||||||
|
"unicons/share-alt",
|
||||||
|
"unicons/shield",
|
||||||
|
"unicons/signal",
|
||||||
|
"unicons/signin",
|
||||||
|
"unicons/signout",
|
||||||
|
"unicons/sitemap",
|
||||||
|
"unicons/slack",
|
||||||
|
"unicons/sliders-v-alt",
|
||||||
|
"unicons/sort-amount-down",
|
||||||
|
"unicons/sort-amount-up",
|
||||||
|
"unicons/square-shape",
|
||||||
|
"unicons/star",
|
||||||
|
"unicons/step-backward",
|
||||||
|
"unicons/sync",
|
||||||
|
"unicons/table",
|
||||||
|
"unicons/tag-alt",
|
||||||
|
"unicons/times",
|
||||||
|
"unicons/trash-alt",
|
||||||
|
"unicons/unlock",
|
||||||
|
"unicons/upload",
|
||||||
|
"unicons/user",
|
||||||
|
"unicons/users-alt",
|
||||||
|
"unicons/wrap-text",
|
||||||
|
"unicons/cloud-upload",
|
||||||
|
"unicons/credit-card",
|
||||||
|
"unicons/file-copy-alt",
|
||||||
|
"unicons/fire",
|
||||||
|
"unicons/hourglass",
|
||||||
|
"unicons/layer-group",
|
||||||
|
"unicons/line-alt",
|
||||||
|
"unicons/list-ui-alt",
|
||||||
|
"unicons/message",
|
||||||
|
"unicons/palette",
|
||||||
|
"unicons/percentage",
|
||||||
|
"unicons/shield-exclamation",
|
||||||
|
"unicons/plus-square",
|
||||||
|
"unicons/x",
|
||||||
|
"unicons/capture",
|
||||||
|
"custom/gf-grid",
|
||||||
|
"custom/gf-landscape",
|
||||||
|
"custom/gf-layout-simple",
|
||||||
|
"custom/gf-portrait",
|
||||||
|
"custom/gf-bar-alignment-after",
|
||||||
|
"custom/gf-bar-alignment-before",
|
||||||
|
"custom/gf-bar-alignment-center",
|
||||||
|
"custom/gf-interpolation-linear",
|
||||||
|
"custom/gf-interpolation-smooth",
|
||||||
|
"custom/gf-interpolation-step-after",
|
||||||
|
"custom/gf-interpolation-step-before",
|
||||||
|
"custom/gf-logs",
|
||||||
|
"mono/favorite",
|
||||||
|
"mono/grafana",
|
||||||
|
"mono/heart",
|
||||||
|
"mono/heart-break",
|
||||||
|
"mono/panel-add",
|
||||||
|
"mono/library-panel",
|
||||||
|
"unicons/record-audio"
|
||||||
|
]
|
@ -1,173 +1,174 @@
|
|||||||
// This file was autogenerated from
|
/* eslint-disable import/order */
|
||||||
// https://github.com/grafana/icons
|
// DO NOT EDIT THIS FILE
|
||||||
|
// This file is automatically generated (do not edit it here)
|
||||||
|
// see @grafana/ui/scripts/generate-icon-bundle.js
|
||||||
|
|
||||||
import { cacheStore } from 'react-inlinesvg';
|
import { cacheStore } from 'react-inlinesvg';
|
||||||
|
|
||||||
import u1141 from '../../../../../public/img/icons/custom/gf-bar-alignment-after.svg';
|
// do not edit this list directly
|
||||||
import u1142 from '../../../../../public/img/icons/custom/gf-bar-alignment-before.svg';
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
import u1143 from '../../../../../public/img/icons/custom/gf-bar-alignment-center.svg';
|
import u1000 from '../../../../../public/img/icons/unicons/angle-double-down.svg';
|
||||||
import u1137 from '../../../../../public/img/icons/custom/gf-grid.svg';
|
import u1001 from '../../../../../public/img/icons/unicons/angle-double-right.svg';
|
||||||
import u1144 from '../../../../../public/img/icons/custom/gf-interpolation-linear.svg';
|
import u1002 from '../../../../../public/img/icons/unicons/angle-down.svg';
|
||||||
import u1145 from '../../../../../public/img/icons/custom/gf-interpolation-smooth.svg';
|
import u1003 from '../../../../../public/img/icons/unicons/angle-left.svg';
|
||||||
import u1146 from '../../../../../public/img/icons/custom/gf-interpolation-step-after.svg';
|
import u1004 from '../../../../../public/img/icons/unicons/angle-right.svg';
|
||||||
import u1147 from '../../../../../public/img/icons/custom/gf-interpolation-step-before.svg';
|
import u1005 from '../../../../../public/img/icons/unicons/angle-up.svg';
|
||||||
import u1138 from '../../../../../public/img/icons/custom/gf-landscape.svg';
|
import u1006 from '../../../../../public/img/icons/unicons/apps.svg';
|
||||||
import u1139 from '../../../../../public/img/icons/custom/gf-layout-simple.svg';
|
import u1007 from '../../../../../public/img/icons/unicons/arrow.svg';
|
||||||
import u1148 from '../../../../../public/img/icons/custom/gf-logs.svg';
|
import u1008 from '../../../../../public/img/icons/unicons/arrow-down.svg';
|
||||||
import u1140 from '../../../../../public/img/icons/custom/gf-portrait.svg';
|
import u1009 from '../../../../../public/img/icons/unicons/arrow-from-right.svg';
|
||||||
import u1149 from '../../../../../public/img/icons/mono/favorite.svg';
|
import u1010 from '../../../../../public/img/icons/unicons/arrow-left.svg';
|
||||||
import u1150 from '../../../../../public/img/icons/mono/grafana.svg';
|
import u1011 from '../../../../../public/img/icons/unicons/arrow-random.svg';
|
||||||
import u1152 from '../../../../../public/img/icons/mono/heart-break.svg';
|
import u1012 from '../../../../../public/img/icons/unicons/arrow-right.svg';
|
||||||
import u1151 from '../../../../../public/img/icons/mono/heart.svg';
|
import u1013 from '../../../../../public/img/icons/unicons/arrow-up.svg';
|
||||||
import u1154 from '../../../../../public/img/icons/mono/library-panel.svg';
|
import u1014 from '../../../../../public/img/icons/unicons/arrows-h.svg';
|
||||||
import u1153 from '../../../../../public/img/icons/mono/panel-add.svg';
|
import u1015 from '../../../../../public/img/icons/unicons/backward.svg';
|
||||||
import u1001 from '../../../../../public/img/icons/unicons/angle-double-down.svg';
|
import u1016 from '../../../../../public/img/icons/unicons/bars.svg';
|
||||||
import u1002 from '../../../../../public/img/icons/unicons/angle-double-right.svg';
|
import u1017 from '../../../../../public/img/icons/unicons/bell.svg';
|
||||||
import u1003 from '../../../../../public/img/icons/unicons/angle-down.svg';
|
import u1018 from '../../../../../public/img/icons/unicons/bell-slash.svg';
|
||||||
import u1004 from '../../../../../public/img/icons/unicons/angle-left.svg';
|
import u1019 from '../../../../../public/img/icons/unicons/bolt.svg';
|
||||||
import u1005 from '../../../../../public/img/icons/unicons/angle-right.svg';
|
import u1020 from '../../../../../public/img/icons/unicons/book.svg';
|
||||||
import u1006 from '../../../../../public/img/icons/unicons/angle-up.svg';
|
import u1021 from '../../../../../public/img/icons/unicons/book-open.svg';
|
||||||
import u1007 from '../../../../../public/img/icons/unicons/apps.svg';
|
import u1022 from '../../../../../public/img/icons/unicons/brackets-curly.svg';
|
||||||
import u1009 from '../../../../../public/img/icons/unicons/arrow-down.svg';
|
import u1023 from '../../../../../public/img/icons/unicons/bug.svg';
|
||||||
import u1010 from '../../../../../public/img/icons/unicons/arrow-from-right.svg';
|
import u1024 from '../../../../../public/img/icons/unicons/building.svg';
|
||||||
import u1011 from '../../../../../public/img/icons/unicons/arrow-left.svg';
|
import u1025 from '../../../../../public/img/icons/unicons/calculator-alt.svg';
|
||||||
import u1012 from '../../../../../public/img/icons/unicons/arrow-random.svg';
|
import u1026 from '../../../../../public/img/icons/unicons/calendar-alt.svg';
|
||||||
import u1013 from '../../../../../public/img/icons/unicons/arrow-right.svg';
|
import u1027 from '../../../../../public/img/icons/unicons/camera.svg';
|
||||||
import u1014 from '../../../../../public/img/icons/unicons/arrow-up.svg';
|
import u1028 from '../../../../../public/img/icons/unicons/channel-add.svg';
|
||||||
import u1008 from '../../../../../public/img/icons/unicons/arrow.svg';
|
import u1029 from '../../../../../public/img/icons/unicons/chart-line.svg';
|
||||||
import u1015 from '../../../../../public/img/icons/unicons/arrows-h.svg';
|
import u1030 from '../../../../../public/img/icons/unicons/check.svg';
|
||||||
import u1016 from '../../../../../public/img/icons/unicons/backward.svg';
|
import u1031 from '../../../../../public/img/icons/unicons/check-circle.svg';
|
||||||
import u1017 from '../../../../../public/img/icons/unicons/bars.svg';
|
import u1032 from '../../../../../public/img/icons/unicons/circle.svg';
|
||||||
import u1019 from '../../../../../public/img/icons/unicons/bell-slash.svg';
|
import u1033 from '../../../../../public/img/icons/unicons/clipboard-alt.svg';
|
||||||
import u1018 from '../../../../../public/img/icons/unicons/bell.svg';
|
import u1034 from '../../../../../public/img/icons/unicons/clock-nine.svg';
|
||||||
import u1020 from '../../../../../public/img/icons/unicons/bolt.svg';
|
import u1035 from '../../../../../public/img/icons/unicons/cloud.svg';
|
||||||
import u1022 from '../../../../../public/img/icons/unicons/book-open.svg';
|
import u1036 from '../../../../../public/img/icons/unicons/cloud-download.svg';
|
||||||
import u1021 from '../../../../../public/img/icons/unicons/book.svg';
|
import u1037 from '../../../../../public/img/icons/unicons/code-branch.svg';
|
||||||
import u1023 from '../../../../../public/img/icons/unicons/brackets-curly.svg';
|
import u1038 from '../../../../../public/img/icons/unicons/cog.svg';
|
||||||
import u1024 from '../../../../../public/img/icons/unicons/bug.svg';
|
import u1039 from '../../../../../public/img/icons/unicons/columns.svg';
|
||||||
import u1025 from '../../../../../public/img/icons/unicons/building.svg';
|
import u1040 from '../../../../../public/img/icons/unicons/comment-alt.svg';
|
||||||
import u1026 from '../../../../../public/img/icons/unicons/calculator-alt.svg';
|
import u1041 from '../../../../../public/img/icons/unicons/comment-alt-share.svg';
|
||||||
import u1027 from '../../../../../public/img/icons/unicons/calendar-alt.svg';
|
import u1042 from '../../../../../public/img/icons/unicons/comments-alt.svg';
|
||||||
import u1028 from '../../../../../public/img/icons/unicons/camera.svg';
|
import u1043 from '../../../../../public/img/icons/unicons/compass.svg';
|
||||||
import u1136 from '../../../../../public/img/icons/unicons/capture.svg';
|
import u1044 from '../../../../../public/img/icons/unicons/copy.svg';
|
||||||
import u1029 from '../../../../../public/img/icons/unicons/channel-add.svg';
|
import u1045 from '../../../../../public/img/icons/unicons/cube.svg';
|
||||||
import u1030 from '../../../../../public/img/icons/unicons/chart-line.svg';
|
import u1046 from '../../../../../public/img/icons/unicons/dashboard.svg';
|
||||||
import u1032 from '../../../../../public/img/icons/unicons/check-circle.svg';
|
import u1047 from '../../../../../public/img/icons/unicons/database.svg';
|
||||||
import u1031 from '../../../../../public/img/icons/unicons/check.svg';
|
import u1048 from '../../../../../public/img/icons/unicons/document-info.svg';
|
||||||
import u1033 from '../../../../../public/img/icons/unicons/circle.svg';
|
import u1049 from '../../../../../public/img/icons/unicons/download-alt.svg';
|
||||||
import u1034 from '../../../../../public/img/icons/unicons/clipboard-alt.svg';
|
import u1050 from '../../../../../public/img/icons/unicons/draggabledots.svg';
|
||||||
import u1035 from '../../../../../public/img/icons/unicons/clock-nine.svg';
|
import u1051 from '../../../../../public/img/icons/unicons/edit.svg';
|
||||||
import u1037 from '../../../../../public/img/icons/unicons/cloud-download.svg';
|
import u1052 from '../../../../../public/img/icons/unicons/ellipsis-v.svg';
|
||||||
import u1122 from '../../../../../public/img/icons/unicons/cloud-upload.svg';
|
import u1053 from '../../../../../public/img/icons/unicons/envelope.svg';
|
||||||
import u1036 from '../../../../../public/img/icons/unicons/cloud.svg';
|
import u1054 from '../../../../../public/img/icons/unicons/exchange-alt.svg';
|
||||||
import u1038 from '../../../../../public/img/icons/unicons/code-branch.svg';
|
import u1055 from '../../../../../public/img/icons/unicons/exclamation-triangle.svg';
|
||||||
import u1039 from '../../../../../public/img/icons/unicons/cog.svg';
|
import u1056 from '../../../../../public/img/icons/unicons/external-link-alt.svg';
|
||||||
import u1040 from '../../../../../public/img/icons/unicons/columns.svg';
|
import u1057 from '../../../../../public/img/icons/unicons/eye.svg';
|
||||||
import u1042 from '../../../../../public/img/icons/unicons/comment-alt-share.svg';
|
import u1058 from '../../../../../public/img/icons/unicons/eye-slash.svg';
|
||||||
import u1041 from '../../../../../public/img/icons/unicons/comment-alt.svg';
|
import u1059 from '../../../../../public/img/icons/unicons/file-alt.svg';
|
||||||
import u1043 from '../../../../../public/img/icons/unicons/comments-alt.svg';
|
import u1060 from '../../../../../public/img/icons/unicons/file-blank.svg';
|
||||||
import u1044 from '../../../../../public/img/icons/unicons/compass.svg';
|
import u1061 from '../../../../../public/img/icons/unicons/filter.svg';
|
||||||
import u1045 from '../../../../../public/img/icons/unicons/copy.svg';
|
import u1062 from '../../../../../public/img/icons/unicons/folder.svg';
|
||||||
import u1123 from '../../../../../public/img/icons/unicons/credit-card.svg';
|
import u1063 from '../../../../../public/img/icons/unicons/folder-open.svg';
|
||||||
import u1046 from '../../../../../public/img/icons/unicons/cube.svg';
|
import u1064 from '../../../../../public/img/icons/unicons/folder-plus.svg';
|
||||||
import u1047 from '../../../../../public/img/icons/unicons/dashboard.svg';
|
import u1065 from '../../../../../public/img/icons/unicons/folder-upload.svg';
|
||||||
import u1048 from '../../../../../public/img/icons/unicons/database.svg';
|
import u1066 from '../../../../../public/img/icons/unicons/forward.svg';
|
||||||
import u1049 from '../../../../../public/img/icons/unicons/document-info.svg';
|
import u1067 from '../../../../../public/img/icons/unicons/graph-bar.svg';
|
||||||
import u1050 from '../../../../../public/img/icons/unicons/download-alt.svg';
|
import u1068 from '../../../../../public/img/icons/unicons/history.svg';
|
||||||
import u1051 from '../../../../../public/img/icons/unicons/draggabledots.svg';
|
import u1069 from '../../../../../public/img/icons/unicons/home-alt.svg';
|
||||||
import u1052 from '../../../../../public/img/icons/unicons/edit.svg';
|
import u1070 from '../../../../../public/img/icons/unicons/import.svg';
|
||||||
import u1053 from '../../../../../public/img/icons/unicons/ellipsis-v.svg';
|
import u1071 from '../../../../../public/img/icons/unicons/info.svg';
|
||||||
import u1054 from '../../../../../public/img/icons/unicons/envelope.svg';
|
import u1072 from '../../../../../public/img/icons/unicons/info-circle.svg';
|
||||||
import u1055 from '../../../../../public/img/icons/unicons/exchange-alt.svg';
|
import u1073 from '../../../../../public/img/icons/unicons/key-skeleton-alt.svg';
|
||||||
import u1056 from '../../../../../public/img/icons/unicons/exclamation-triangle.svg';
|
import u1074 from '../../../../../public/img/icons/unicons/keyboard.svg';
|
||||||
import u1057 from '../../../../../public/img/icons/unicons/external-link-alt.svg';
|
import u1075 from '../../../../../public/img/icons/unicons/link.svg';
|
||||||
import u1059 from '../../../../../public/img/icons/unicons/eye-slash.svg';
|
import u1076 from '../../../../../public/img/icons/unicons/list-ul.svg';
|
||||||
import u1058 from '../../../../../public/img/icons/unicons/eye.svg';
|
import u1077 from '../../../../../public/img/icons/unicons/lock.svg';
|
||||||
import u1060 from '../../../../../public/img/icons/unicons/file-alt.svg';
|
import u1078 from '../../../../../public/img/icons/unicons/minus.svg';
|
||||||
import u1061 from '../../../../../public/img/icons/unicons/file-blank.svg';
|
import u1079 from '../../../../../public/img/icons/unicons/minus-circle.svg';
|
||||||
import u1124 from '../../../../../public/img/icons/unicons/file-copy-alt.svg';
|
import u1080 from '../../../../../public/img/icons/unicons/mobile-android.svg';
|
||||||
import u1062 from '../../../../../public/img/icons/unicons/filter.svg';
|
import u1081 from '../../../../../public/img/icons/unicons/monitor.svg';
|
||||||
import u1125 from '../../../../../public/img/icons/unicons/fire.svg';
|
import u1082 from '../../../../../public/img/icons/unicons/pause.svg';
|
||||||
import u1064 from '../../../../../public/img/icons/unicons/folder-open.svg';
|
import u1083 from '../../../../../public/img/icons/unicons/pen.svg';
|
||||||
import u1065 from '../../../../../public/img/icons/unicons/folder-plus.svg';
|
import u1084 from '../../../../../public/img/icons/unicons/play.svg';
|
||||||
import u1066 from '../../../../../public/img/icons/unicons/folder-upload.svg';
|
import u1085 from '../../../../../public/img/icons/unicons/plug.svg';
|
||||||
import u1063 from '../../../../../public/img/icons/unicons/folder.svg';
|
import u1086 from '../../../../../public/img/icons/unicons/plus.svg';
|
||||||
import u1067 from '../../../../../public/img/icons/unicons/forward.svg';
|
import u1087 from '../../../../../public/img/icons/unicons/plus-circle.svg';
|
||||||
import u1068 from '../../../../../public/img/icons/unicons/graph-bar.svg';
|
import u1088 from '../../../../../public/img/icons/unicons/power.svg';
|
||||||
import u1069 from '../../../../../public/img/icons/unicons/history.svg';
|
import u1089 from '../../../../../public/img/icons/unicons/presentation-play.svg';
|
||||||
import u1070 from '../../../../../public/img/icons/unicons/home-alt.svg';
|
import u1090 from '../../../../../public/img/icons/unicons/process.svg';
|
||||||
import u1158 from '../../../../../public/img/icons/unicons/horizontal-align-center.svg';
|
import u1091 from '../../../../../public/img/icons/unicons/question-circle.svg';
|
||||||
import u1156 from '../../../../../public/img/icons/unicons/horizontal-align-left.svg';
|
import u1092 from '../../../../../public/img/icons/unicons/repeat.svg';
|
||||||
import u1157 from '../../../../../public/img/icons/unicons/horizontal-align-right.svg';
|
import u1093 from '../../../../../public/img/icons/unicons/rocket.svg';
|
||||||
import u1126 from '../../../../../public/img/icons/unicons/hourglass.svg';
|
import u1094 from '../../../../../public/img/icons/unicons/save.svg';
|
||||||
import u1071 from '../../../../../public/img/icons/unicons/import.svg';
|
import u1095 from '../../../../../public/img/icons/unicons/search.svg';
|
||||||
import u1073 from '../../../../../public/img/icons/unicons/info-circle.svg';
|
import u1096 from '../../../../../public/img/icons/unicons/search-minus.svg';
|
||||||
import u1072 from '../../../../../public/img/icons/unicons/info.svg';
|
import u1097 from '../../../../../public/img/icons/unicons/search-plus.svg';
|
||||||
import u1074 from '../../../../../public/img/icons/unicons/key-skeleton-alt.svg';
|
import u1098 from '../../../../../public/img/icons/unicons/share-alt.svg';
|
||||||
import u1075 from '../../../../../public/img/icons/unicons/keyboard.svg';
|
import u1099 from '../../../../../public/img/icons/unicons/shield.svg';
|
||||||
import u1127 from '../../../../../public/img/icons/unicons/layer-group.svg';
|
import u1100 from '../../../../../public/img/icons/unicons/signal.svg';
|
||||||
import u1128 from '../../../../../public/img/icons/unicons/line-alt.svg';
|
import u1101 from '../../../../../public/img/icons/unicons/signin.svg';
|
||||||
import u1076 from '../../../../../public/img/icons/unicons/link.svg';
|
import u1102 from '../../../../../public/img/icons/unicons/signout.svg';
|
||||||
import u1129 from '../../../../../public/img/icons/unicons/list-ui-alt.svg';
|
import u1103 from '../../../../../public/img/icons/unicons/sitemap.svg';
|
||||||
import u1077 from '../../../../../public/img/icons/unicons/list-ul.svg';
|
import u1104 from '../../../../../public/img/icons/unicons/slack.svg';
|
||||||
import u1078 from '../../../../../public/img/icons/unicons/lock.svg';
|
import u1105 from '../../../../../public/img/icons/unicons/sliders-v-alt.svg';
|
||||||
import u1130 from '../../../../../public/img/icons/unicons/message.svg';
|
import u1106 from '../../../../../public/img/icons/unicons/sort-amount-down.svg';
|
||||||
import u1080 from '../../../../../public/img/icons/unicons/minus-circle.svg';
|
import u1107 from '../../../../../public/img/icons/unicons/sort-amount-up.svg';
|
||||||
import u1079 from '../../../../../public/img/icons/unicons/minus.svg';
|
import u1108 from '../../../../../public/img/icons/unicons/square-shape.svg';
|
||||||
import u1081 from '../../../../../public/img/icons/unicons/mobile-android.svg';
|
import u1109 from '../../../../../public/img/icons/unicons/star.svg';
|
||||||
import u1082 from '../../../../../public/img/icons/unicons/monitor.svg';
|
import u1110 from '../../../../../public/img/icons/unicons/step-backward.svg';
|
||||||
import u1131 from '../../../../../public/img/icons/unicons/palette.svg';
|
import u1111 from '../../../../../public/img/icons/unicons/sync.svg';
|
||||||
import u1083 from '../../../../../public/img/icons/unicons/pause.svg';
|
import u1112 from '../../../../../public/img/icons/unicons/table.svg';
|
||||||
import u1084 from '../../../../../public/img/icons/unicons/pen.svg';
|
import u1113 from '../../../../../public/img/icons/unicons/tag-alt.svg';
|
||||||
import u1132 from '../../../../../public/img/icons/unicons/percentage.svg';
|
import u1114 from '../../../../../public/img/icons/unicons/times.svg';
|
||||||
import u1085 from '../../../../../public/img/icons/unicons/play.svg';
|
import u1115 from '../../../../../public/img/icons/unicons/trash-alt.svg';
|
||||||
import u1086 from '../../../../../public/img/icons/unicons/plug.svg';
|
import u1116 from '../../../../../public/img/icons/unicons/unlock.svg';
|
||||||
import u1088 from '../../../../../public/img/icons/unicons/plus-circle.svg';
|
import u1117 from '../../../../../public/img/icons/unicons/upload.svg';
|
||||||
import u1134 from '../../../../../public/img/icons/unicons/plus-square.svg';
|
import u1118 from '../../../../../public/img/icons/unicons/user.svg';
|
||||||
import u1087 from '../../../../../public/img/icons/unicons/plus.svg';
|
import u1119 from '../../../../../public/img/icons/unicons/users-alt.svg';
|
||||||
import u1089 from '../../../../../public/img/icons/unicons/power.svg';
|
import u1120 from '../../../../../public/img/icons/unicons/wrap-text.svg';
|
||||||
import u1090 from '../../../../../public/img/icons/unicons/presentation-play.svg';
|
import u1121 from '../../../../../public/img/icons/unicons/cloud-upload.svg';
|
||||||
import u1091 from '../../../../../public/img/icons/unicons/process.svg';
|
import u1122 from '../../../../../public/img/icons/unicons/credit-card.svg';
|
||||||
import u1092 from '../../../../../public/img/icons/unicons/question-circle.svg';
|
import u1123 from '../../../../../public/img/icons/unicons/file-copy-alt.svg';
|
||||||
import u1155 from '../../../../../public/img/icons/unicons/record-audio.svg';
|
import u1124 from '../../../../../public/img/icons/unicons/fire.svg';
|
||||||
import u1093 from '../../../../../public/img/icons/unicons/repeat.svg';
|
import u1125 from '../../../../../public/img/icons/unicons/hourglass.svg';
|
||||||
import u1094 from '../../../../../public/img/icons/unicons/rocket.svg';
|
import u1126 from '../../../../../public/img/icons/unicons/layer-group.svg';
|
||||||
import u1095 from '../../../../../public/img/icons/unicons/save.svg';
|
import u1127 from '../../../../../public/img/icons/unicons/line-alt.svg';
|
||||||
import u1097 from '../../../../../public/img/icons/unicons/search-minus.svg';
|
import u1128 from '../../../../../public/img/icons/unicons/list-ui-alt.svg';
|
||||||
import u1098 from '../../../../../public/img/icons/unicons/search-plus.svg';
|
import u1129 from '../../../../../public/img/icons/unicons/message.svg';
|
||||||
import u1096 from '../../../../../public/img/icons/unicons/search.svg';
|
import u1130 from '../../../../../public/img/icons/unicons/palette.svg';
|
||||||
import u1099 from '../../../../../public/img/icons/unicons/share-alt.svg';
|
import u1131 from '../../../../../public/img/icons/unicons/percentage.svg';
|
||||||
import u1133 from '../../../../../public/img/icons/unicons/shield-exclamation.svg';
|
import u1132 from '../../../../../public/img/icons/unicons/shield-exclamation.svg';
|
||||||
import u1100 from '../../../../../public/img/icons/unicons/shield.svg';
|
import u1133 from '../../../../../public/img/icons/unicons/plus-square.svg';
|
||||||
import u1101 from '../../../../../public/img/icons/unicons/signal.svg';
|
import u1134 from '../../../../../public/img/icons/unicons/x.svg';
|
||||||
import u1102 from '../../../../../public/img/icons/unicons/signin.svg';
|
import u1135 from '../../../../../public/img/icons/unicons/capture.svg';
|
||||||
import u1103 from '../../../../../public/img/icons/unicons/signout.svg';
|
import u1136 from '../../../../../public/img/icons/custom/gf-grid.svg';
|
||||||
import u1104 from '../../../../../public/img/icons/unicons/sitemap.svg';
|
import u1137 from '../../../../../public/img/icons/custom/gf-landscape.svg';
|
||||||
import u1105 from '../../../../../public/img/icons/unicons/slack.svg';
|
import u1138 from '../../../../../public/img/icons/custom/gf-layout-simple.svg';
|
||||||
import u1106 from '../../../../../public/img/icons/unicons/sliders-v-alt.svg';
|
import u1139 from '../../../../../public/img/icons/custom/gf-portrait.svg';
|
||||||
import u1107 from '../../../../../public/img/icons/unicons/sort-amount-down.svg';
|
import u1140 from '../../../../../public/img/icons/custom/gf-bar-alignment-after.svg';
|
||||||
import u1108 from '../../../../../public/img/icons/unicons/sort-amount-up.svg';
|
import u1141 from '../../../../../public/img/icons/custom/gf-bar-alignment-before.svg';
|
||||||
import u1109 from '../../../../../public/img/icons/unicons/square-shape.svg';
|
import u1142 from '../../../../../public/img/icons/custom/gf-bar-alignment-center.svg';
|
||||||
import u1110 from '../../../../../public/img/icons/unicons/star.svg';
|
import u1143 from '../../../../../public/img/icons/custom/gf-interpolation-linear.svg';
|
||||||
import u1111 from '../../../../../public/img/icons/unicons/step-backward.svg';
|
import u1144 from '../../../../../public/img/icons/custom/gf-interpolation-smooth.svg';
|
||||||
import u1112 from '../../../../../public/img/icons/unicons/sync.svg';
|
import u1145 from '../../../../../public/img/icons/custom/gf-interpolation-step-after.svg';
|
||||||
import u1113 from '../../../../../public/img/icons/unicons/table.svg';
|
import u1146 from '../../../../../public/img/icons/custom/gf-interpolation-step-before.svg';
|
||||||
import u1114 from '../../../../../public/img/icons/unicons/tag-alt.svg';
|
import u1147 from '../../../../../public/img/icons/custom/gf-logs.svg';
|
||||||
import u1115 from '../../../../../public/img/icons/unicons/times.svg';
|
import u1148 from '../../../../../public/img/icons/mono/favorite.svg';
|
||||||
import u1116 from '../../../../../public/img/icons/unicons/trash-alt.svg';
|
import u1149 from '../../../../../public/img/icons/mono/grafana.svg';
|
||||||
import u1117 from '../../../../../public/img/icons/unicons/unlock.svg';
|
import u1150 from '../../../../../public/img/icons/mono/heart.svg';
|
||||||
import u1118 from '../../../../../public/img/icons/unicons/upload.svg';
|
import u1151 from '../../../../../public/img/icons/mono/heart-break.svg';
|
||||||
import u1119 from '../../../../../public/img/icons/unicons/user.svg';
|
import u1152 from '../../../../../public/img/icons/mono/panel-add.svg';
|
||||||
import u1120 from '../../../../../public/img/icons/unicons/users-alt.svg';
|
import u1153 from '../../../../../public/img/icons/mono/library-panel.svg';
|
||||||
import u1160 from '../../../../../public/img/icons/unicons/vertical-align-bottom.svg';
|
import u1154 from '../../../../../public/img/icons/unicons/record-audio.svg';
|
||||||
import u1161 from '../../../../../public/img/icons/unicons/vertical-align-center.svg';
|
// do not edit this list directly
|
||||||
import u1159 from '../../../../../public/img/icons/unicons/vertical-align-top.svg';
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
import u1121 from '../../../../../public/img/icons/unicons/wrap-text.svg';
|
|
||||||
import u1135 from '../../../../../public/img/icons/unicons/x.svg';
|
|
||||||
|
|
||||||
export let cacheInitialized = false;
|
export let cacheInitialized = false;
|
||||||
export let iconRoot = 'public/img/icons/';
|
export let iconRoot = 'public/img/icons/';
|
||||||
|
|
||||||
function cacheItem(content: string, path: string) {
|
export function cacheItem(content: string, path: string) {
|
||||||
cacheStore[iconRoot + path] = { content, status: 'loaded' };
|
cacheStore[iconRoot + path] = { content, status: 'loaded' };
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -180,165 +181,164 @@ export function initIconCache() {
|
|||||||
if (grafanaPublicPath) {
|
if (grafanaPublicPath) {
|
||||||
iconRoot = grafanaPublicPath + 'img/icons/';
|
iconRoot = grafanaPublicPath + 'img/icons/';
|
||||||
}
|
}
|
||||||
cacheItem(u1001, 'unicons/angle-double-down.svg');
|
|
||||||
cacheItem(u1002, 'unicons/angle-double-right.svg');
|
// do not edit this list directly
|
||||||
cacheItem(u1003, 'unicons/angle-down.svg');
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
cacheItem(u1004, 'unicons/angle-left.svg');
|
cacheItem(u1000, 'unicons/angle-double-down.svg');
|
||||||
cacheItem(u1005, 'unicons/angle-right.svg');
|
cacheItem(u1001, 'unicons/angle-double-right.svg');
|
||||||
cacheItem(u1006, 'unicons/angle-up.svg');
|
cacheItem(u1002, 'unicons/angle-down.svg');
|
||||||
cacheItem(u1007, 'unicons/apps.svg');
|
cacheItem(u1003, 'unicons/angle-left.svg');
|
||||||
cacheItem(u1008, 'unicons/arrow.svg');
|
cacheItem(u1004, 'unicons/angle-right.svg');
|
||||||
cacheItem(u1009, 'unicons/arrow-down.svg');
|
cacheItem(u1005, 'unicons/angle-up.svg');
|
||||||
cacheItem(u1010, 'unicons/arrow-from-right.svg');
|
cacheItem(u1006, 'unicons/apps.svg');
|
||||||
cacheItem(u1011, 'unicons/arrow-left.svg');
|
cacheItem(u1007, 'unicons/arrow.svg');
|
||||||
cacheItem(u1012, 'unicons/arrow-random.svg');
|
cacheItem(u1008, 'unicons/arrow-down.svg');
|
||||||
cacheItem(u1013, 'unicons/arrow-right.svg');
|
cacheItem(u1009, 'unicons/arrow-from-right.svg');
|
||||||
cacheItem(u1014, 'unicons/arrow-up.svg');
|
cacheItem(u1010, 'unicons/arrow-left.svg');
|
||||||
cacheItem(u1015, 'unicons/arrows-h.svg');
|
cacheItem(u1011, 'unicons/arrow-random.svg');
|
||||||
cacheItem(u1016, 'unicons/backward.svg');
|
cacheItem(u1012, 'unicons/arrow-right.svg');
|
||||||
cacheItem(u1017, 'unicons/bars.svg');
|
cacheItem(u1013, 'unicons/arrow-up.svg');
|
||||||
cacheItem(u1018, 'unicons/bell.svg');
|
cacheItem(u1014, 'unicons/arrows-h.svg');
|
||||||
cacheItem(u1019, 'unicons/bell-slash.svg');
|
cacheItem(u1015, 'unicons/backward.svg');
|
||||||
cacheItem(u1020, 'unicons/bolt.svg');
|
cacheItem(u1016, 'unicons/bars.svg');
|
||||||
cacheItem(u1021, 'unicons/book.svg');
|
cacheItem(u1017, 'unicons/bell.svg');
|
||||||
cacheItem(u1022, 'unicons/book-open.svg');
|
cacheItem(u1018, 'unicons/bell-slash.svg');
|
||||||
cacheItem(u1023, 'unicons/brackets-curly.svg');
|
cacheItem(u1019, 'unicons/bolt.svg');
|
||||||
cacheItem(u1024, 'unicons/bug.svg');
|
cacheItem(u1020, 'unicons/book.svg');
|
||||||
cacheItem(u1025, 'unicons/building.svg');
|
cacheItem(u1021, 'unicons/book-open.svg');
|
||||||
cacheItem(u1026, 'unicons/calculator-alt.svg');
|
cacheItem(u1022, 'unicons/brackets-curly.svg');
|
||||||
cacheItem(u1027, 'unicons/calendar-alt.svg');
|
cacheItem(u1023, 'unicons/bug.svg');
|
||||||
cacheItem(u1028, 'unicons/camera.svg');
|
cacheItem(u1024, 'unicons/building.svg');
|
||||||
cacheItem(u1029, 'unicons/channel-add.svg');
|
cacheItem(u1025, 'unicons/calculator-alt.svg');
|
||||||
cacheItem(u1030, 'unicons/chart-line.svg');
|
cacheItem(u1026, 'unicons/calendar-alt.svg');
|
||||||
cacheItem(u1031, 'unicons/check.svg');
|
cacheItem(u1027, 'unicons/camera.svg');
|
||||||
cacheItem(u1032, 'unicons/check-circle.svg');
|
cacheItem(u1028, 'unicons/channel-add.svg');
|
||||||
cacheItem(u1033, 'unicons/circle.svg');
|
cacheItem(u1029, 'unicons/chart-line.svg');
|
||||||
cacheItem(u1034, 'unicons/clipboard-alt.svg');
|
cacheItem(u1030, 'unicons/check.svg');
|
||||||
cacheItem(u1035, 'unicons/clock-nine.svg');
|
cacheItem(u1031, 'unicons/check-circle.svg');
|
||||||
cacheItem(u1036, 'unicons/cloud.svg');
|
cacheItem(u1032, 'unicons/circle.svg');
|
||||||
cacheItem(u1037, 'unicons/cloud-download.svg');
|
cacheItem(u1033, 'unicons/clipboard-alt.svg');
|
||||||
cacheItem(u1038, 'unicons/code-branch.svg');
|
cacheItem(u1034, 'unicons/clock-nine.svg');
|
||||||
cacheItem(u1039, 'unicons/cog.svg');
|
cacheItem(u1035, 'unicons/cloud.svg');
|
||||||
cacheItem(u1040, 'unicons/columns.svg');
|
cacheItem(u1036, 'unicons/cloud-download.svg');
|
||||||
cacheItem(u1041, 'unicons/comment-alt.svg');
|
cacheItem(u1037, 'unicons/code-branch.svg');
|
||||||
cacheItem(u1042, 'unicons/comment-alt-share.svg');
|
cacheItem(u1038, 'unicons/cog.svg');
|
||||||
cacheItem(u1043, 'unicons/comments-alt.svg');
|
cacheItem(u1039, 'unicons/columns.svg');
|
||||||
cacheItem(u1044, 'unicons/compass.svg');
|
cacheItem(u1040, 'unicons/comment-alt.svg');
|
||||||
cacheItem(u1045, 'unicons/copy.svg');
|
cacheItem(u1041, 'unicons/comment-alt-share.svg');
|
||||||
cacheItem(u1046, 'unicons/cube.svg');
|
cacheItem(u1042, 'unicons/comments-alt.svg');
|
||||||
cacheItem(u1047, 'unicons/dashboard.svg');
|
cacheItem(u1043, 'unicons/compass.svg');
|
||||||
cacheItem(u1048, 'unicons/database.svg');
|
cacheItem(u1044, 'unicons/copy.svg');
|
||||||
cacheItem(u1049, 'unicons/document-info.svg');
|
cacheItem(u1045, 'unicons/cube.svg');
|
||||||
cacheItem(u1050, 'unicons/download-alt.svg');
|
cacheItem(u1046, 'unicons/dashboard.svg');
|
||||||
cacheItem(u1051, 'unicons/draggabledots.svg');
|
cacheItem(u1047, 'unicons/database.svg');
|
||||||
cacheItem(u1052, 'unicons/edit.svg');
|
cacheItem(u1048, 'unicons/document-info.svg');
|
||||||
cacheItem(u1053, 'unicons/ellipsis-v.svg');
|
cacheItem(u1049, 'unicons/download-alt.svg');
|
||||||
cacheItem(u1054, 'unicons/envelope.svg');
|
cacheItem(u1050, 'unicons/draggabledots.svg');
|
||||||
cacheItem(u1055, 'unicons/exchange-alt.svg');
|
cacheItem(u1051, 'unicons/edit.svg');
|
||||||
cacheItem(u1056, 'unicons/exclamation-triangle.svg');
|
cacheItem(u1052, 'unicons/ellipsis-v.svg');
|
||||||
cacheItem(u1057, 'unicons/external-link-alt.svg');
|
cacheItem(u1053, 'unicons/envelope.svg');
|
||||||
cacheItem(u1058, 'unicons/eye.svg');
|
cacheItem(u1054, 'unicons/exchange-alt.svg');
|
||||||
cacheItem(u1059, 'unicons/eye-slash.svg');
|
cacheItem(u1055, 'unicons/exclamation-triangle.svg');
|
||||||
cacheItem(u1060, 'unicons/file-alt.svg');
|
cacheItem(u1056, 'unicons/external-link-alt.svg');
|
||||||
cacheItem(u1061, 'unicons/file-blank.svg');
|
cacheItem(u1057, 'unicons/eye.svg');
|
||||||
cacheItem(u1062, 'unicons/filter.svg');
|
cacheItem(u1058, 'unicons/eye-slash.svg');
|
||||||
cacheItem(u1063, 'unicons/folder.svg');
|
cacheItem(u1059, 'unicons/file-alt.svg');
|
||||||
cacheItem(u1064, 'unicons/folder-open.svg');
|
cacheItem(u1060, 'unicons/file-blank.svg');
|
||||||
cacheItem(u1065, 'unicons/folder-plus.svg');
|
cacheItem(u1061, 'unicons/filter.svg');
|
||||||
cacheItem(u1066, 'unicons/folder-upload.svg');
|
cacheItem(u1062, 'unicons/folder.svg');
|
||||||
cacheItem(u1067, 'unicons/forward.svg');
|
cacheItem(u1063, 'unicons/folder-open.svg');
|
||||||
cacheItem(u1068, 'unicons/graph-bar.svg');
|
cacheItem(u1064, 'unicons/folder-plus.svg');
|
||||||
cacheItem(u1069, 'unicons/history.svg');
|
cacheItem(u1065, 'unicons/folder-upload.svg');
|
||||||
cacheItem(u1070, 'unicons/home-alt.svg');
|
cacheItem(u1066, 'unicons/forward.svg');
|
||||||
cacheItem(u1071, 'unicons/import.svg');
|
cacheItem(u1067, 'unicons/graph-bar.svg');
|
||||||
cacheItem(u1072, 'unicons/info.svg');
|
cacheItem(u1068, 'unicons/history.svg');
|
||||||
cacheItem(u1073, 'unicons/info-circle.svg');
|
cacheItem(u1069, 'unicons/home-alt.svg');
|
||||||
cacheItem(u1074, 'unicons/key-skeleton-alt.svg');
|
cacheItem(u1070, 'unicons/import.svg');
|
||||||
cacheItem(u1075, 'unicons/keyboard.svg');
|
cacheItem(u1071, 'unicons/info.svg');
|
||||||
cacheItem(u1076, 'unicons/link.svg');
|
cacheItem(u1072, 'unicons/info-circle.svg');
|
||||||
cacheItem(u1077, 'unicons/list-ul.svg');
|
cacheItem(u1073, 'unicons/key-skeleton-alt.svg');
|
||||||
cacheItem(u1078, 'unicons/lock.svg');
|
cacheItem(u1074, 'unicons/keyboard.svg');
|
||||||
cacheItem(u1079, 'unicons/minus.svg');
|
cacheItem(u1075, 'unicons/link.svg');
|
||||||
cacheItem(u1080, 'unicons/minus-circle.svg');
|
cacheItem(u1076, 'unicons/list-ul.svg');
|
||||||
cacheItem(u1081, 'unicons/mobile-android.svg');
|
cacheItem(u1077, 'unicons/lock.svg');
|
||||||
cacheItem(u1082, 'unicons/monitor.svg');
|
cacheItem(u1078, 'unicons/minus.svg');
|
||||||
cacheItem(u1083, 'unicons/pause.svg');
|
cacheItem(u1079, 'unicons/minus-circle.svg');
|
||||||
cacheItem(u1084, 'unicons/pen.svg');
|
cacheItem(u1080, 'unicons/mobile-android.svg');
|
||||||
cacheItem(u1085, 'unicons/play.svg');
|
cacheItem(u1081, 'unicons/monitor.svg');
|
||||||
cacheItem(u1086, 'unicons/plug.svg');
|
cacheItem(u1082, 'unicons/pause.svg');
|
||||||
cacheItem(u1087, 'unicons/plus.svg');
|
cacheItem(u1083, 'unicons/pen.svg');
|
||||||
cacheItem(u1088, 'unicons/plus-circle.svg');
|
cacheItem(u1084, 'unicons/play.svg');
|
||||||
cacheItem(u1089, 'unicons/power.svg');
|
cacheItem(u1085, 'unicons/plug.svg');
|
||||||
cacheItem(u1090, 'unicons/presentation-play.svg');
|
cacheItem(u1086, 'unicons/plus.svg');
|
||||||
cacheItem(u1091, 'unicons/process.svg');
|
cacheItem(u1087, 'unicons/plus-circle.svg');
|
||||||
cacheItem(u1092, 'unicons/question-circle.svg');
|
cacheItem(u1088, 'unicons/power.svg');
|
||||||
cacheItem(u1093, 'unicons/repeat.svg');
|
cacheItem(u1089, 'unicons/presentation-play.svg');
|
||||||
cacheItem(u1094, 'unicons/rocket.svg');
|
cacheItem(u1090, 'unicons/process.svg');
|
||||||
cacheItem(u1095, 'unicons/save.svg');
|
cacheItem(u1091, 'unicons/question-circle.svg');
|
||||||
cacheItem(u1096, 'unicons/search.svg');
|
cacheItem(u1092, 'unicons/repeat.svg');
|
||||||
cacheItem(u1097, 'unicons/search-minus.svg');
|
cacheItem(u1093, 'unicons/rocket.svg');
|
||||||
cacheItem(u1098, 'unicons/search-plus.svg');
|
cacheItem(u1094, 'unicons/save.svg');
|
||||||
cacheItem(u1099, 'unicons/share-alt.svg');
|
cacheItem(u1095, 'unicons/search.svg');
|
||||||
cacheItem(u1100, 'unicons/shield.svg');
|
cacheItem(u1096, 'unicons/search-minus.svg');
|
||||||
cacheItem(u1101, 'unicons/signal.svg');
|
cacheItem(u1097, 'unicons/search-plus.svg');
|
||||||
cacheItem(u1102, 'unicons/signin.svg');
|
cacheItem(u1098, 'unicons/share-alt.svg');
|
||||||
cacheItem(u1103, 'unicons/signout.svg');
|
cacheItem(u1099, 'unicons/shield.svg');
|
||||||
cacheItem(u1104, 'unicons/sitemap.svg');
|
cacheItem(u1100, 'unicons/signal.svg');
|
||||||
cacheItem(u1105, 'unicons/slack.svg');
|
cacheItem(u1101, 'unicons/signin.svg');
|
||||||
cacheItem(u1106, 'unicons/sliders-v-alt.svg');
|
cacheItem(u1102, 'unicons/signout.svg');
|
||||||
cacheItem(u1107, 'unicons/sort-amount-down.svg');
|
cacheItem(u1103, 'unicons/sitemap.svg');
|
||||||
cacheItem(u1108, 'unicons/sort-amount-up.svg');
|
cacheItem(u1104, 'unicons/slack.svg');
|
||||||
cacheItem(u1109, 'unicons/square-shape.svg');
|
cacheItem(u1105, 'unicons/sliders-v-alt.svg');
|
||||||
cacheItem(u1110, 'unicons/star.svg');
|
cacheItem(u1106, 'unicons/sort-amount-down.svg');
|
||||||
cacheItem(u1111, 'unicons/step-backward.svg');
|
cacheItem(u1107, 'unicons/sort-amount-up.svg');
|
||||||
cacheItem(u1112, 'unicons/sync.svg');
|
cacheItem(u1108, 'unicons/square-shape.svg');
|
||||||
cacheItem(u1113, 'unicons/table.svg');
|
cacheItem(u1109, 'unicons/star.svg');
|
||||||
cacheItem(u1114, 'unicons/tag-alt.svg');
|
cacheItem(u1110, 'unicons/step-backward.svg');
|
||||||
cacheItem(u1115, 'unicons/times.svg');
|
cacheItem(u1111, 'unicons/sync.svg');
|
||||||
cacheItem(u1116, 'unicons/trash-alt.svg');
|
cacheItem(u1112, 'unicons/table.svg');
|
||||||
cacheItem(u1117, 'unicons/unlock.svg');
|
cacheItem(u1113, 'unicons/tag-alt.svg');
|
||||||
cacheItem(u1118, 'unicons/upload.svg');
|
cacheItem(u1114, 'unicons/times.svg');
|
||||||
cacheItem(u1119, 'unicons/user.svg');
|
cacheItem(u1115, 'unicons/trash-alt.svg');
|
||||||
cacheItem(u1120, 'unicons/users-alt.svg');
|
cacheItem(u1116, 'unicons/unlock.svg');
|
||||||
cacheItem(u1121, 'unicons/wrap-text.svg');
|
cacheItem(u1117, 'unicons/upload.svg');
|
||||||
cacheItem(u1122, 'unicons/cloud-upload.svg');
|
cacheItem(u1118, 'unicons/user.svg');
|
||||||
cacheItem(u1123, 'unicons/credit-card.svg');
|
cacheItem(u1119, 'unicons/users-alt.svg');
|
||||||
cacheItem(u1124, 'unicons/file-copy-alt.svg');
|
cacheItem(u1120, 'unicons/wrap-text.svg');
|
||||||
cacheItem(u1125, 'unicons/fire.svg');
|
cacheItem(u1121, 'unicons/cloud-upload.svg');
|
||||||
cacheItem(u1126, 'unicons/hourglass.svg');
|
cacheItem(u1122, 'unicons/credit-card.svg');
|
||||||
cacheItem(u1127, 'unicons/layer-group.svg');
|
cacheItem(u1123, 'unicons/file-copy-alt.svg');
|
||||||
cacheItem(u1128, 'unicons/line-alt.svg');
|
cacheItem(u1124, 'unicons/fire.svg');
|
||||||
cacheItem(u1129, 'unicons/list-ui-alt.svg');
|
cacheItem(u1125, 'unicons/hourglass.svg');
|
||||||
cacheItem(u1130, 'unicons/message.svg');
|
cacheItem(u1126, 'unicons/layer-group.svg');
|
||||||
cacheItem(u1131, 'unicons/palette.svg');
|
cacheItem(u1127, 'unicons/line-alt.svg');
|
||||||
cacheItem(u1132, 'unicons/percentage.svg');
|
cacheItem(u1128, 'unicons/list-ui-alt.svg');
|
||||||
cacheItem(u1133, 'unicons/shield-exclamation.svg');
|
cacheItem(u1129, 'unicons/message.svg');
|
||||||
cacheItem(u1134, 'unicons/plus-square.svg');
|
cacheItem(u1130, 'unicons/palette.svg');
|
||||||
cacheItem(u1135, 'unicons/x.svg');
|
cacheItem(u1131, 'unicons/percentage.svg');
|
||||||
cacheItem(u1136, 'unicons/capture.svg');
|
cacheItem(u1132, 'unicons/shield-exclamation.svg');
|
||||||
cacheItem(u1137, 'custom/gf-grid.svg');
|
cacheItem(u1133, 'unicons/plus-square.svg');
|
||||||
cacheItem(u1138, 'custom/gf-landscape.svg');
|
cacheItem(u1134, 'unicons/x.svg');
|
||||||
cacheItem(u1139, 'custom/gf-layout-simple.svg');
|
cacheItem(u1135, 'unicons/capture.svg');
|
||||||
cacheItem(u1140, 'custom/gf-portrait.svg');
|
cacheItem(u1136, 'custom/gf-grid.svg');
|
||||||
cacheItem(u1141, 'custom/gf-bar-alignment-after.svg');
|
cacheItem(u1137, 'custom/gf-landscape.svg');
|
||||||
cacheItem(u1142, 'custom/gf-bar-alignment-before.svg');
|
cacheItem(u1138, 'custom/gf-layout-simple.svg');
|
||||||
cacheItem(u1143, 'custom/gf-bar-alignment-center.svg');
|
cacheItem(u1139, 'custom/gf-portrait.svg');
|
||||||
cacheItem(u1144, 'custom/gf-interpolation-linear.svg');
|
cacheItem(u1140, 'custom/gf-bar-alignment-after.svg');
|
||||||
cacheItem(u1145, 'custom/gf-interpolation-smooth.svg');
|
cacheItem(u1141, 'custom/gf-bar-alignment-before.svg');
|
||||||
cacheItem(u1146, 'custom/gf-interpolation-step-after.svg');
|
cacheItem(u1142, 'custom/gf-bar-alignment-center.svg');
|
||||||
cacheItem(u1147, 'custom/gf-interpolation-step-before.svg');
|
cacheItem(u1143, 'custom/gf-interpolation-linear.svg');
|
||||||
cacheItem(u1148, 'custom/gf-logs.svg');
|
cacheItem(u1144, 'custom/gf-interpolation-smooth.svg');
|
||||||
cacheItem(u1149, 'mono/favorite.svg');
|
cacheItem(u1145, 'custom/gf-interpolation-step-after.svg');
|
||||||
cacheItem(u1150, 'mono/grafana.svg');
|
cacheItem(u1146, 'custom/gf-interpolation-step-before.svg');
|
||||||
cacheItem(u1151, 'mono/heart.svg');
|
cacheItem(u1147, 'custom/gf-logs.svg');
|
||||||
cacheItem(u1152, 'mono/heart-break.svg');
|
cacheItem(u1148, 'mono/favorite.svg');
|
||||||
cacheItem(u1153, 'mono/panel-add.svg');
|
cacheItem(u1149, 'mono/grafana.svg');
|
||||||
cacheItem(u1154, 'mono/library-panel.svg');
|
cacheItem(u1150, 'mono/heart.svg');
|
||||||
cacheItem(u1155, 'unicons/record-audio.svg');
|
cacheItem(u1151, 'mono/heart-break.svg');
|
||||||
cacheItem(u1156, 'unicons/horizontal-align-left.svg');
|
cacheItem(u1152, 'mono/panel-add.svg');
|
||||||
cacheItem(u1157, 'unicons/horizontal-align-right.svg');
|
cacheItem(u1153, 'mono/library-panel.svg');
|
||||||
cacheItem(u1158, 'unicons/horizontal-align-center.svg');
|
cacheItem(u1154, 'unicons/record-audio.svg');
|
||||||
cacheItem(u1159, 'unicons/vertical-align-top.svg');
|
// do not edit this list directly
|
||||||
cacheItem(u1160, 'unicons/vertical-align-bottom.svg');
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
cacheItem(u1161, 'unicons/vertical-align-center.svg');
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,37 @@
|
|||||||
|
/* eslint-disable import/order */
|
||||||
|
// DO NOT EDIT THIS FILE
|
||||||
|
// This file is automatically generated (do not edit it here)
|
||||||
|
// see @grafana/ui/scripts/generate-icon-bundle.js
|
||||||
|
|
||||||
|
|
||||||
|
import { cacheStore } from 'react-inlinesvg';
|
||||||
|
|
||||||
|
// do not edit this list directly
|
||||||
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
|
//{{imports}}
|
||||||
|
// do not edit this list directly
|
||||||
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
|
|
||||||
|
export let cacheInitialized = false;
|
||||||
|
export let iconRoot = 'public/img/icons/';
|
||||||
|
|
||||||
|
export function cacheItem(content: string, path: string) {
|
||||||
|
cacheStore[iconRoot + path] = { content, status: 'loaded' };
|
||||||
|
}
|
||||||
|
|
||||||
|
export function initIconCache() {
|
||||||
|
cacheInitialized = true;
|
||||||
|
|
||||||
|
// This function needs to be called after index.js loads to give the
|
||||||
|
// application time to modify __webpack_public_path__ with a CDN path
|
||||||
|
const grafanaPublicPath = typeof window !== 'undefined' && (window as any).__grafana_public_path__;
|
||||||
|
if (grafanaPublicPath) {
|
||||||
|
iconRoot = grafanaPublicPath + 'img/icons/';
|
||||||
|
}
|
||||||
|
|
||||||
|
// do not edit this list directly
|
||||||
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
|
//{{cacheItems}}
|
||||||
|
// do not edit this list directly
|
||||||
|
// the list of icons live here: @grafana/ui/components/Icon/cached.json
|
||||||
|
}
|
4
public/img/icons/.gitignore
vendored
@ -1,4 +0,0 @@
|
|||||||
# unicons and solid folders are imported via webpack
|
|
||||||
# https://github.com/Iconscout/unicons/tarball/d0859416ab8d8e60dcfa1c0b50716874fcf11778
|
|
||||||
unicons
|
|
||||||
solid
|
|
202
public/img/icons/solid/LICENSE_APACHE2
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright 2015 Grafana Labs
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
2
public/img/icons/solid/NOTICE.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
The icons contained in this solid icons folder were originally created
|
||||||
|
by [IconScout](https://github.com/Iconscout/unicons)
|
1
public/img/icons/solid/airplay.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12.8,13.4c-0.1-0.1-0.1-0.2-0.2-0.2c-0.5-0.3-1.1-0.2-1.5,0.2l-4,6C7.1,19.6,7,19.8,7,20c0,0.6,0.4,1,1,1h8c0.2,0,0.4-0.1,0.6-0.2c0.5-0.3,0.6-0.9,0.3-1.4L12.8,13.4z M19,3H5C3.3,3,2,4.3,2,6v9c0,1.7,1.3,3,3,3h0.8c0.6,0,1-0.4,1-1s-0.4-1-1-1H5c-0.6,0-1-0.4-1-1V6c0-0.6,0.4-1,1-1h14c0.6,0,1,0.4,1,1v9c0,0.6-0.4,1-1,1h-0.8c-0.6,0-1,0.4-1,1s0.4,1,1,1H19c1.7,0,3-1.3,3-3V6C22,4.3,20.7,3,19,3z"/></svg>
|
After Width: | Height: | Size: 493 B |
1
public/img/icons/solid/align-alt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M10,15H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h7c0.6,0,1-0.4,1-1S10.6,15,10,15z M10,11H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h7c0.6,0,1-0.4,1-1S10.6,11,10,11z M10,7H3C2.4,7,2,7.4,2,8s0.4,1,1,1h7c0.6,0,1-0.4,1-1S10.6,7,10,7z M14,5h7c0.6,0,1-0.4,1-1s-0.4-1-1-1h-7c-0.6,0-1,0.4-1,1S13.4,5,14,5z M10,19H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h7c0.6,0,1-0.4,1-1S10.6,19,10,19z M21,15h-7c-0.6,0-1,0.4-1,1s0.4,1,1,1h7c0.6,0,1-0.4,1-1S21.6,15,21,15z M21,7h-7c-0.6,0-1,0.4-1,1s0.4,1,1,1h7c0.6,0,1-0.4,1-1S21.6,7,21,7z M10,3H7C6.4,3,6,3.4,6,4s0.4,1,1,1h3c0.6,0,1-0.4,1-1S10.6,3,10,3z M21,11h-7c-0.6,0-1,0.4-1,1s0.4,1,1,1h7c0.6,0,1-0.4,1-1S21.6,11,21,11z M17,19h-3c-0.6,0-1,0.4-1,1s0.4,1,1,1h3c0.6,0,1-0.4,1-1S17.6,19,17,19z"/></svg>
|
After Width: | Height: | Size: 793 B |
1
public/img/icons/solid/align-center-justify.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,19H7c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S17.6,19,17,19z M3,5h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,3,2,3.4,2,4S2.4,5,3,5z M21,15H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,15,21,15z M21,11H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,11,21,11z M21,7H3C2.4,7,2,7.4,2,8s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,7,21,7z"/></svg>
|
After Width: | Height: | Size: 451 B |
1
public/img/icons/solid/align-center.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M7,9c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1s-0.4-1-1-1H7z M3,7h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,5,2,5.4,2,6S2.4,7,3,7z M17,17H7c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S17.6,17,17,17z M21,13H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,13,21,13z"/></svg>
|
After Width: | Height: | Size: 380 B |
1
public/img/icons/solid/align-justify.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M3,7h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,5,2,5.4,2,6S2.4,7,3,7z M21,9H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,9,21,9z M21,13H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,13,21,13z M21,17H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,17,21,17z"/></svg>
|
After Width: | Height: | Size: 382 B |
1
public/img/icons/solid/align-left-justify.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,15H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,15,21,15z M15,19H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h12c0.6,0,1-0.4,1-1S15.6,19,15,19z M3,5h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,3,2,3.4,2,4S2.4,5,3,5z M21,7H3C2.4,7,2,7.4,2,8s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,7,21,7z M21,11H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,11,21,11z"/></svg>
|
After Width: | Height: | Size: 451 B |
1
public/img/icons/solid/align-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M3,7h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,5,2,5.4,2,6S2.4,7,3,7z M3,11h14c0.6,0,1-0.4,1-1s-0.4-1-1-1H3c-0.6,0-1,0.4-1,1S2.4,11,3,11z M21,13H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,13,21,13z M17,17H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1S17.6,17,17,17z"/></svg>
|
After Width: | Height: | Size: 383 B |
1
public/img/icons/solid/align-letter-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,20H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,20,21,20z M10,4h11c0.6,0,1-0.4,1-1s-0.4-1-1-1H10C9.4,2,9,2.4,9,3S9.4,4,10,4z M21,16H11c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S21.6,16,21,16z M21,10H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,10,21,10z M21,6H3C2.4,6,2,6.4,2,7s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,6,21,6z"/></svg>
|
After Width: | Height: | Size: 455 B |
1
public/img/icons/solid/align-right-justify.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M3,5h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,3,2,3.4,2,4S2.4,5,3,5z M21,19H11c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S21.6,19,21,19z M21,11H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,11,21,11z M21,15H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,15,21,15z M21,7H3C2.4,7,2,7.4,2,8s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,7,21,7z"/></svg>
|
After Width: | Height: | Size: 452 B |
1
public/img/icons/solid/align-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M3,7h18c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,5,2,5.4,2,6S2.4,7,3,7z M21,9H7c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1S21.6,9,21,9z M21,13H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,13,21,13z M21,17H7c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1S21.6,17,21,17z"/></svg>
|
After Width: | Height: | Size: 382 B |
1
public/img/icons/solid/analysis.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21.7,7.3c-0.4-0.4-1-0.4-1.4,0L14,13.6L9.7,9.3C9.5,9.1,9.3,9,9,9C8.7,9,8.5,9.1,8.3,9.3l-6,6C2.1,15.5,2,15.7,2,16c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3L9,11.4l4.3,4.3c0.1,0.1,0.2,0.2,0.3,0.2C13.7,16,13.9,16,14,16c0.2,0,0.5-0.1,0.6-0.3c0,0,0,0,0.1,0c0,0,0,0,0,0s0,0,0,0l7-7C22.1,8.3,22.1,7.7,21.7,7.3z"/></svg>
|
After Width: | Height: | Size: 411 B |
1
public/img/icons/solid/analytics.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M10,2C9.4,2,9,2.4,9,3c0,0,0,0,0,0v18c0,0.6,0.4,1,1,1s1-0.4,1-1V3C11,2.4,10.6,2,10,2C10,2,10,2,10,2z M5,12c-0.6,0-1,0.4-1,1c0,0,0,0,0,0v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C6,12.4,5.6,12,5,12C5,12,5,12,5,12z M15,8c-0.6,0-1,0.4-1,1c0,0,0,0,0,0v12c0,0.6,0.4,1,1,1s1-0.4,1-1V9C16,8.4,15.6,8,15,8C15,8,15,8,15,8z M20,16c-0.6,0-1,0.4-1,1c0,0,0,0,0,0v4c0,0.6,0.4,1,1,1s1-0.4,1-1v-4C21,16.4,20.6,16,20,16C20,16,20,16,20,16z"/></svg>
|
After Width: | Height: | Size: 521 B |
1
public/img/icons/solid/anchor.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M19,13h-2c-0.6,0-1,0.4-1,1s0.4,1,1,1h0.9c-0.4,2.5-2.4,4.5-4.9,4.9V11h1c0.6,0,1-0.4,1-1s-0.4-1-1-1h-1V7.8c1.2-0.4,2-1.5,2-2.8c0-1.7-1.3-3-3-3S9,3.3,9,5c0,1.3,0.8,2.4,2,2.8V9h-1c-0.6,0-1,0.4-1,1s0.4,1,1,1h1v8.9c-2.5-0.4-4.5-2.4-4.9-4.9H7c0.6,0,1-0.4,1-1s-0.4-1-1-1H5c-0.6,0-1,0.4-1,1c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8C20,13.4,19.6,13,19,13z M12,4c0.6,0,1,0.4,1,1c0,0.6-0.4,1-1,1s-1-0.4-1-1S11.4,4,12,4z"/></svg>
|
After Width: | Height: | Size: 510 B |
1
public/img/icons/solid/angle-double-down.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M11.3,11.5c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,9.3L9.7,7c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4L11.3,11.5z M14.3,12.5L12,14.8l-2.3-2.3c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l3,3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4C15.3,12.2,14.7,12.2,14.3,12.5z"/></svg>
|
After Width: | Height: | Size: 454 B |
1
public/img/icons/solid/angle-double-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,14.3L14.7,12L17,9.7c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-3,3c0,0,0,0,0,0c-0.4,0.4-0.4,1,0,1.4l3,3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3C17.3,15.3,17.3,14.7,17,14.3z M9.2,12l2.3-2.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-3,3c0,0,0,0,0,0c-0.4,0.4-0.4,1,0,1.4l3,3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L9.2,12z"/></svg>
|
After Width: | Height: | Size: 466 B |
1
public/img/icons/solid/angle-double-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M8.5,8.3c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4L9.3,12L7,14.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3l3-3c0,0,0,0,0,0c0.4-0.4,0.4-1,0-1.4L8.5,8.3z M17,11.3l-3-3c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l2.3,2.3l-2.3,2.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3l3-3C17.3,12.3,17.3,11.7,17,11.3z"/></svg>
|
After Width: | Height: | Size: 453 B |
1
public/img/icons/solid/angle-double-up.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12.7,12.5C12.7,12.5,12.7,12.5,12.7,12.5c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0l2.3-2.3l2.3,2.3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L12.7,12.5z M9.7,11.5L12,9.2l2.3,2.3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4l-3-3c0,0,0,0,0,0c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4C8.7,11.8,9.3,11.8,9.7,11.5z"/></svg>
|
After Width: | Height: | Size: 495 B |
1
public/img/icons/solid/angle-down.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M16.9,9.2c-0.4-0.4-1-0.4-1.4,0L12,12.7L8.5,9.2c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4l4.2,4.2c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l4.2-4.2C17.3,10.2,17.3,9.6,16.9,9.2z"/></svg>
|
After Width: | Height: | Size: 283 B |
1
public/img/icons/solid/angle-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M11.3,12l3.5-3.5c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-4.2,4.2l0,0c-0.4,0.4-0.4,1,0,1.4l4.2,4.2c0.2,0.2,0.4,0.3,0.7,0.3l0,0c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L11.3,12z"/></svg>
|
After Width: | Height: | Size: 290 B |
1
public/img/icons/solid/angle-right-b.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M15.5,11.3L9.9,5.6c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4l4.9,4.9l-4.9,4.9c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3l5.7-5.7c0,0,0,0,0,0C15.9,12.3,15.9,11.7,15.5,11.3z"/></svg>
|
After Width: | Height: | Size: 295 B |
1
public/img/icons/solid/angle-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M9.9,17.2c-0.6,0-1-0.4-1-1c0-0.3,0.1-0.5,0.3-0.7l3.5-3.5L9.2,8.5c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0l4.2,4.2c0.4,0.4,0.4,1,0,1.4c0,0,0,0,0,0l-4.2,4.2C10.4,17.1,10.1,17.2,9.9,17.2z"/></svg>
|
After Width: | Height: | Size: 296 B |
1
public/img/icons/solid/angle-up.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M16.9,13.4l-4.2-4.2l0,0c-0.4-0.4-1-0.4-1.4,0l-4.2,4.2c-0.4,0.4-0.4,1,0,1.4s1,0.4,1.4,0l3.5-3.5l3.5,3.5c0.2,0.2,0.4,0.3,0.7,0.3l0,0c0.3,0,0.5-0.1,0.7-0.3C17.3,14.4,17.3,13.8,16.9,13.4z"/></svg>
|
After Width: | Height: | Size: 295 B |
1
public/img/icons/solid/apps.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M10,2H3C2.4,2,2,2.4,2,3v7c0,0.6,0.4,1,1,1h7c0.6,0,1-0.4,1-1V3C11,2.4,10.6,2,10,2z M10,13H3c-0.6,0-1,0.4-1,1v7c0,0.6,0.4,1,1,1h7c0.6,0,1-0.4,1-1v-7C11,13.4,10.6,13,10,13z M21,2h-7c-0.6,0-1,0.4-1,1v7c0,0.6,0.4,1,1,1h7c0.6,0,1-0.4,1-1V3C22,2.4,21.6,2,21,2z M21,13h-7c-0.6,0-1,0.4-1,1v7c0,0.6,0.4,1,1,1h7c0.6,0,1-0.4,1-1v-7C22,13.4,21.6,13,21,13z"/></svg>
|
After Width: | Height: | Size: 454 B |
1
public/img/icons/solid/arrow-circle-down.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M15.7,12.7l-3,3c-0.1,0.1-0.2,0.2-0.3,0.2c-0.2,0.1-0.5,0.1-0.8,0c-0.1,0-0.2-0.1-0.3-0.2l-3-3c0,0,0,0,0,0c-0.4-0.4-0.4-1,0-1.4c0,0,0,0,0,0c0.4-0.4,1-0.4,1.4,0l1.3,1.3V9c0-0.6,0.4-1,1-1s1,0.4,1,1v3.6l1.3-1.3c0.4-0.4,1-0.4,1.4,0C16.1,11.7,16.1,12.3,15.7,12.7z"/></svg>
|
After Width: | Height: | Size: 429 B |
1
public/img/icons/solid/arrow-circle-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12c0,5.5,4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M15,13h-3.6l1.3,1.3c0.4,0.4,0.4,1,0,1.4c-0.4,0.4-1,0.4-1.4,0l-3-3c-0.4-0.4-0.4-1,0-1.4c0,0,0,0,0,0l3-3c0.4-0.4,1-0.4,1.4,0c0,0,0,0,0,0c0.4,0.4,0.4,1,0,1.4c0,0,0,0,0,0L11.4,11H15c0.6,0,1,0.4,1,1S15.6,13,15,13z"/></svg>
|
After Width: | Height: | Size: 388 B |
1
public/img/icons/solid/arrow-circle-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10c5.5,0,10-4.5,10-10C22,6.5,17.5,2,12,2z M15.7,12.7C15.7,12.7,15.7,12.7,15.7,12.7l-3,3c-0.4,0.4-1,0.4-1.4,0c0,0,0,0,0,0c-0.4-0.4-0.4-1,0-1.4c0,0,0,0,0,0l1.3-1.3H9c-0.6,0-1-0.4-1-1s0.4-1,1-1h3.6l-1.3-1.3c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0l3,3C16.1,11.7,16.1,12.3,15.7,12.7z"/></svg>
|
After Width: | Height: | Size: 424 B |
1
public/img/icons/solid/arrow-circle-up.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M15.7,12.7C15.7,12.7,15.7,12.7,15.7,12.7c-0.4,0.4-1,0.4-1.4,0c0,0,0,0,0,0L13,11.4V15c0,0.6-0.4,1-1,1s-1-0.4-1-1v-3.6l-1.3,1.3c-0.4,0.4-1,0.4-1.4,0c-0.4-0.4-0.4-1,0-1.4l3-3c0.4-0.4,1-0.4,1.4,0c0,0,0,0,0,0l3,3C16.1,11.7,16.1,12.3,15.7,12.7z"/></svg>
|
After Width: | Height: | Size: 419 B |
1
public/img/icons/solid/arrow-down-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,16H9.4l8.3-8.3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L8,14.6V7c0-0.6-0.4-1-1-1S6,6.4,6,7v10c0,0.1,0,0.3,0.1,0.4c0.1,0.2,0.3,0.4,0.5,0.5C6.7,18,6.9,18,7,18h10c0.6,0,1-0.4,1-1S17.6,16,17,16z"/></svg>
|
After Width: | Height: | Size: 306 B |
1
public/img/icons/solid/arrow-down-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,6c-0.6,0-1,0.4-1,1v7.6L7.7,6.3c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l8.3,8.3H7c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1V7C18,6.4,17.6,6,17,6z"/></svg>
|
After Width: | Height: | Size: 266 B |
1
public/img/icons/solid/arrow-up-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M9.4,8H17c0.6,0,1-0.4,1-1s-0.4-1-1-1H7C6.4,6,6,6.4,6,7v10c0,0.6,0.4,1,1,1s1-0.4,1-1V9.4l8.3,8.3c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L9.4,8z"/></svg>
|
After Width: | Height: | Size: 254 B |
1
public/img/icons/solid/arrow-up-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,6H7C6.4,6,6,6.4,6,7s0.4,1,1,1h7.6l-8.3,8.3c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0L16,9.4V17c0,0.6,0.4,1,1,1s1-0.4,1-1V7C18,6.4,17.6,6,17,6z"/></svg>
|
After Width: | Height: | Size: 257 B |
1
public/img/icons/solid/at.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10c1.8,0,3.5-0.5,5-1.3c0.5-0.3,0.6-0.9,0.4-1.4c-0.3-0.5-0.9-0.6-1.4-0.4c0,0,0,0,0,0c-3.8,2.2-8.7,0.9-10.9-2.9C2.9,12.2,4.2,7.3,8,5.1c3.8-2.2,8.7-0.9,10.9,2.9c0.7,1.2,1.1,2.6,1.1,4v0.8c0,1-0.8,1.8-1.8,1.8s-1.8-0.8-1.8-1.8V8.5c0-0.6-0.4-1-1-1c-0.5,0-0.9,0.3-1,0.8c-2-1.4-4.9-0.9-6.3,1.1c-1.4,2-0.9,4.9,1.1,6.3c1.9,1.3,4.4,1,5.9-0.7c1.3,1.6,3.6,1.9,5.2,0.7c0.9-0.7,1.5-1.8,1.5-3V12C22,6.5,17.5,2,12,2z M12,14.5c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C14.5,13.4,13.4,14.5,12,14.5z"/></svg>
|
After Width: | Height: | Size: 636 B |
1
public/img/icons/solid/bag.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M19,6h-3V5c0-1.1-0.9-2-2-2h-4C8.9,3,8,3.9,8,5v1H5C3.3,6,2,7.3,2,9v9c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V9C22,7.3,20.7,6,19,6z M10,5h4v1h-4V5z M20,18c0,0.6-0.4,1-1,1H5c-0.6,0-1-0.4-1-1v-5.6l4.7,1.6C8.8,14,8.9,14,9,14h6c0.1,0,0.2,0,0.3-0.1l4.7-1.6V18z"/></svg>
|
After Width: | Height: | Size: 360 B |
1
public/img/icons/solid/bars.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M20,11H4c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S20.6,11,20,11z M4,8h16c0.6,0,1-0.4,1-1s-0.4-1-1-1H4C3.4,6,3,6.4,3,7S3.4,8,4,8z M20,16H4c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S20.6,16,20,16z"/></svg>
|
After Width: | Height: | Size: 315 B |
1
public/img/icons/solid/battery-bolt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,7H4C2.9,7,2,7.9,2,9v6c0,1.1,0.9,2,2,2h6.7c-0.6,0-1-0.4-1-1c0-0.2,0-0.3,0.1-0.5l1.4-2.5H8l0,0l0,0c-0.1,0-0.2,0-0.3-0.1c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1-0.1-0.1-0.2-0.2-0.3c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0-0.1,0.1-0.3,0.1-0.4c0,0,0,0,0-0.1l2.3-4c0.3-0.5,0.9-0.6,1.4-0.4c0.5,0.3,0.6,0.9,0.4,1.4c0,0,0,0,0,0L9.7,11H13c0,0,0,0,0.1,0c0.1,0,0.3,0.1,0.4,0.1c0,0,0,0,0.1,0c0,0,0.1,0.1,0.1,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.2,0.2,0.3c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0,0,0.1l-2.3,4C11.4,16.8,11,17,10.7,17H17c1.1,0,2-0.9,2-2V9C19,7.9,18.1,7,17,7z M21,10c-0.6,0-1,0.4-1,1v2c0,0.6,0.4,1,1,1s1-0.4,1-1v-2C22,10.4,21.6,10,21,10z"/></svg>
|
After Width: | Height: | Size: 843 B |
1
public/img/icons/solid/battery-empty.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,10c-0.6,0-1,0.4-1,1v2c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-2C22,10.4,21.6,10,21,10z M17,7H4C2.9,7,2,7.9,2,9v6c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2V9C19,7.9,18.1,7,17,7z"/></svg>
|
After Width: | Height: | Size: 280 B |
1
public/img/icons/solid/bookmark.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M16,2H8C6.3,2,5,3.3,5,5v16c0,0.2,0,0.3,0.1,0.5C5.4,22,6,22.1,6.5,21.9l5.5-3.2l5.5,3.2C17.7,22,17.8,22,18,22c0.6,0,1-0.4,1-1V5C19,3.3,17.7,2,16,2z"/></svg>
|
After Width: | Height: | Size: 257 B |
1
public/img/icons/solid/border-alt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M20.5,3.5c0-0.6-0.4-1-1-1h-16c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-15h15C20.1,4.5,20.5,4.1,20.5,3.5z M19.5,10.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,10.5,19.5,10.5z M19.5,6.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,6.5,19.5,6.5z M19.5,14.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,14.5,19.5,14.5z M7.5,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.1,18.5,7.5,18.5z M11.5,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.1,18.5,11.5,18.5z M15.5,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.1,18.5,15.5,18.5z M19.5,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,18.5,19.5,18.5z"/></svg>
|
After Width: | Height: | Size: 707 B |
1
public/img/icons/solid/border-bottom.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,9.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,9.5,12,9.5z M12,13.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,13.5,12,13.5z M12,17.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,17.5,12,17.5z M12,5.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,5.5,12,5.5z M20,5.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S19.4,5.5,20,5.5z M8,5.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S7.4,5.5,8,5.5z M16,5.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S15.4,5.5,16,5.5z M16,13.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S15.4,13.5,16,13.5z M4,9.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S3.4,9.5,4,9.5z M20,15.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,15.5,20,15.5z M20,11.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,11.5,20,11.5z M20,7.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,7.5,20,7.5z M20,19.5H4c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S20.6,19.5,20,19.5z M4,13.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S3.4,13.5,4,13.5z M4,5.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S3.4,5.5,4,5.5z M8,13.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S7.4,13.5,8,13.5z M4,17.5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S3.4,17.5,4,17.5z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
public/img/icons/solid/border-clear.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,15,12,15z M12,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,19,12,19z M12,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,7,12,7z M12,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,3,12,3z M4,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,15,4,15z M4,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,19,4,19z M4,7C3.4,7,3,7.4,3,8s0.4,1,1,1s1-0.4,1-1S4.6,7,4,7z M4,3C3.4,3,3,3.4,3,4s0.4,1,1,1s1-0.4,1-1S4.6,3,4,3z M8,3C7.4,3,7,3.4,7,4s0.4,1,1,1s1-0.4,1-1S8.6,3,8,3z M16,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,3,16,3z M8,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.6,19,8,19z M16,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,19,16,19z M8,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.6,11,8,11z M16,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,11,16,11z M20,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,15,20,15z M20,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,19,20,19z M20,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,7,20,7z M12,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,11,12,11z M4,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,11,4,11z M20,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,11,20,11z M20,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S19.4,5,20,5z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
public/img/icons/solid/border-horizontal.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M20,11H4c-0.6,0-1,0.4-1,1s0.4,1,1,1h16c0.6,0,1-0.4,1-1S20.6,11,20,11z M12,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,15,12,15z M12,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,19,12,19z M12,9c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,9,12,9z M12,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,5,12,5z M4,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,15,4,15z M4,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,19,4,19z M4,9c0.6,0,1-0.4,1-1S4.6,7,4,7S3,7.4,3,8S3.4,9,4,9z M4,5c0.6,0,1-0.4,1-1S4.6,3,4,3S3,3.4,3,4S3.4,5,4,5z M8,5c0.6,0,1-0.4,1-1S8.6,3,8,3S7,3.4,7,4S7.4,5,8,5z M16,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S15.4,5,16,5z M8,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.6,19,8,19z M16,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,19,16,19z M20,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,15,20,15z M20,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,19,20,19z M20,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,7,20,7z M20,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S19.4,5,20,5z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
public/img/icons/solid/border-inner.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,12c0-0.6-0.4-1-1-1h-7V4c0-0.6-0.4-1-1-1s-1,0.4-1,1v7H4c-0.6,0-1,0.4-1,1s0.4,1,1,1h7v7c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-7h7C20.5,13,21,12.6,21,12z M4,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.5,15,4,15z M4,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.5,19,4,19z M4,9c0.6,0,1-0.4,1-1S4.5,7,4,7S3,7.4,3,8S3.4,9,4,9z M4,5c0.6,0,1-0.4,1-1S4.5,3,4,3S3,3.4,3,4S3.4,5,4,5z M8,5c0.6,0,1-0.4,1-1S8.5,3,8,3S7,3.4,7,4S7.4,5,8,5z M16,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S15.4,5,16,5z M8,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.5,19,8,19z M16,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.5,19,16,19z M20,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.5,15,20,15z M20,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.5,19,20,19z M20,9c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S19.4,9,20,9z M20,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S19.4,5,20,5z"/></svg>
|
After Width: | Height: | Size: 935 B |
1
public/img/icons/solid/border-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M3.5,3c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1V4C4.5,3.4,4.1,3,3.5,3z M7.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.1,11,7.5,11z M11.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.1,11,11.5,11z M15.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.1,11,15.5,11z M19.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,11,19.5,11z M7.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.1,3,7.5,3z M11.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.1,3,11.5,3z M15.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.1,3,15.5,3z M19.5,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S18.9,5,19.5,5z M19.5,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,7,19.5,7z M19.5,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,15,19.5,15z M11.5,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.1,7,11.5,7z M11.5,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.1,15,11.5,15z M7.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.1,19,7.5,19z M11.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.1,19,11.5,19z M15.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.1,19,15.5,19z M19.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.1,19,19.5,19z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
public/img/icons/solid/border-out.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M20,3H4C3.4,3,3,3.4,3,4v16c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V4C21,3.4,20.6,3,20,3z M19,19H5V5h14V19z M12,13c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,13,12,13z M12,17c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,17,12,17z M12,9c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S11.4,9,12,9z M8,13c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S7.4,13,8,13z M16,13c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S15.4,13,16,13z"/></svg>
|
After Width: | Height: | Size: 507 B |
1
public/img/icons/solid/border-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M20.5,3c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1V4C21.5,3.4,21.1,3,20.5,3z M16.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S17.1,11,16.5,11z M12.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S13.1,11,12.5,11z M8.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S9.1,11,8.5,11z M4.5,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S5.1,11,4.5,11z M16.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S17.1,19,16.5,19z M12.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S13.1,19,12.5,19z M8.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S9.1,19,8.5,19z M4.5,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S5.1,19,4.5,19z M4.5,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S5.1,15,4.5,15z M4.5,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S5.1,7,4.5,7z M12.5,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S13.1,15,12.5,15z M12.5,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S13.1,7,12.5,7z M16.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S17.1,3,16.5,3z M12.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S13.1,3,12.5,3z M8.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S9.1,3,8.5,3z M4.5,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S5.1,3,4.5,3z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
public/img/icons/solid/border-top.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M4,4.5h16c0.6,0,1-0.4,1-1s-0.4-1-1-1H4c-0.6,0-1,0.4-1,1S3.4,4.5,4,4.5z M12,6.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,6.5,12,6.5z M12,10.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,10.5,12,10.5z M12,14.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,14.5,12,14.5z M12,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,18.5,12,18.5z M20,6.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,6.5,20,6.5z M20,10.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,10.5,20,10.5z M20,14.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,14.5,20,14.5z M20,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S20.6,18.5,20,18.5z M16,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,18.5,16,18.5z M8,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.6,18.5,8,18.5z M16,10.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S16.6,10.5,16,10.5z M8,10.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S8.6,10.5,8,10.5z M4,6.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,6.5,4,6.5z M4,10.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,10.5,4,10.5z M4,14.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,14.5,4,14.5z M4,18.5c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S4.6,18.5,4,18.5z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
public/img/icons/solid/border-vertical.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M11,3c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1V4C12,3.4,11.6,3,11,3z M7,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S7.6,11,7,11z M3,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S3.6,11,3,11z M15,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S15.6,11,15,11z M19,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S19.6,11,19,11z M7,3C6.4,3,6,3.4,6,4s0.4,1,1,1s1-0.4,1-1S7.6,3,7,3z M3,3C2.4,3,2,3.4,2,4s0.4,1,1,1s1-0.4,1-1S3.6,3,3,3z M15,3c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S15.6,3,15,3z M19,5c0.6,0,1-0.4,1-1s-0.4-1-1-1s-1,0.4-1,1S18.4,5,19,5z M19,7c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S19.6,7,19,7z M19,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S19.6,15,19,15z M3,7C2.4,7,2,7.4,2,8s0.4,1,1,1s1-0.4,1-1S3.6,7,3,7z M3,15c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S3.6,15,3,15z M7,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S7.6,19,7,19z M3,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S3.6,19,3,19z M15,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S15.6,19,15,19z M19,19c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S19.6,19,19,19z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
public/img/icons/solid/briefcase.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M17,15.5V17c0,0.6-0.4,1-1,1s-1-0.4-1-1v-1.5H9V17c0,0.6-0.4,1-1,1s-1-0.4-1-1v-1.5H5c-0.7,0-1.4-0.2-2-0.5v4c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3v-4c-0.6,0.3-1.3,0.5-2,0.5H17z M21,6h-4V5c0-1.7-1.3-3-3-3h-4C8.3,2,7,3.3,7,5v1H3C2.4,6,2,6.4,2,7v4c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V7C22,6.4,21.6,6,21,6z M15,6H9V5c0-0.6,0.4-1,1-1h4c0.6,0,1,0.4,1,1V6z"/></svg>
|
After Width: | Height: | Size: 454 B |
1
public/img/icons/solid/calender.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M2,19c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3v-8H2V19z M19,4h-2V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v1H9V3c0-0.6-0.4-1-1-1S7,2.4,7,3v1H5C3.3,4,2,5.3,2,7v2h20V7C22,5.3,20.7,4,19,4z"/></svg>
|
After Width: | Height: | Size: 278 B |
1
public/img/icons/solid/chart-pie.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M12,4c4,0,7.4,3,7.9,7H12V4z M16,18.9L12.6,13h7.4C19.6,15.5,18.2,17.7,16,18.9z"/></svg>
|
After Width: | Height: | Size: 258 B |
1
public/img/icons/solid/chart.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M19,2H5C3.3,2,2,3.3,2,5v14c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V5C22,3.3,20.7,2,19,2z M8,17c0,0.6-0.4,1-1,1s-1-0.4-1-1v-4c0-0.6,0.4-1,1-1s1,0.4,1,1V17z M13,17c0,0.6-0.4,1-1,1s-1-0.4-1-1V7c0-0.6,0.4-1,1-1s1,0.4,1,1V17z M18,17c0,0.6-0.4,1-1,1s-1-0.4-1-1v-6c0-0.6,0.4-1,1-1s1,0.4,1,1V17z"/></svg>
|
After Width: | Height: | Size: 394 B |
1
public/img/icons/solid/check-circle.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M16.2,10.3l-4.8,4.8c-0.4,0.4-1,0.4-1.4,0l0,0l-2.2-2.2c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0c0,0,0,0,0,0l1.5,1.5l4.1-4.1c0.4-0.4,1-0.4,1.4,0C16.6,9.3,16.6,9.9,16.2,10.3z"/></svg>
|
After Width: | Height: | Size: 352 B |
1
public/img/icons/solid/check-square.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,2H3C2.4,2,2,2.4,2,3v18c0,0.6,0.4,1,1,1h18c0.6,0,1-0.4,1-1V3C22,2.4,21.6,2,21,2z M17.7,9.3l-6.8,6.8c-0.4,0.4-1,0.4-1.4,0l-3.2-3.2c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0l2.5,2.5l6.1-6.1c0.4-0.4,1-0.4,1.4,0C18.1,8.3,18.1,8.9,17.7,9.3z"/></svg>
|
After Width: | Height: | Size: 349 B |
1
public/img/icons/solid/check.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M18.7,7.2c-0.4-0.4-1-0.4-1.4,0l-7.5,7.5l-3.1-3.1c0,0,0,0,0,0c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l3.8,3.8c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l8.2-8.2C19.1,8.2,19.1,7.6,18.7,7.2z"/></svg>
|
After Width: | Height: | Size: 304 B |
1
public/img/icons/solid/circle-layer.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M7,12c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S9.8,12,7,12z M11,7c-2.4,0-4.6,1.5-5.5,3.7c3.5-0.9,7,1.3,7.8,4.7c0.3,1,0.3,2.1,0,3.1c3.1-1.3,4.5-4.8,3.2-7.8C15.6,8.5,13.4,7,11,7z M21.2,5.8C20.1,3.5,17.6,2,15,2S9.9,3.5,8.8,5.8c4-1.2,8.2,1,9.4,4.9c0.5,1.5,0.5,3,0,4.5C21.6,13.5,23,9.3,21.2,5.8z"/></svg>
|
After Width: | Height: | Size: 398 B |
1
public/img/icons/solid/clinic-medical.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21.7,10.3l-9-8c-0.4-0.3-0.9-0.3-1.3,0l-9,8c-0.4,0.4-0.5,1-0.1,1.4s1,0.5,1.4,0.1L4,11.4V21c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1v-9.6l0.3,0.3c0.4,0.4,1,0.3,1.4-0.1C22.1,11.3,22.1,10.6,21.7,10.3z M14,15h-1v1c0,0.6-0.4,1-1,1s-1-0.4-1-1v-1h-1c-0.6,0-1-0.4-1-1s0.4-1,1-1h1v-1c0-0.6,0.4-1,1-1s1,0.4,1,1v1h1c0.6,0,1,0.4,1,1S14.6,15,14,15z"/></svg>
|
After Width: | Height: | Size: 441 B |
1
public/img/icons/solid/clock-eight.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,12c0,0.4-0.2,0.7-0.5,0.9l-2.6,1.5c-0.5,0.3-1.1,0.1-1.4-0.4s-0.1-1.1,0.4-1.4l2.1-1.2V7c0-0.6,0.4-1,1-1s1,0.4,1,1V12z"/></svg>
|
After Width: | Height: | Size: 293 B |
1
public/img/icons/solid/clock-five.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M14,15.7c-0.5,0.3-1.1,0.1-1.4-0.4l-1.5-2.8C11,12.3,11,12.2,11,12V7c0-0.6,0.4-1,1-1s1,0.4,1,1v4.7l1.4,2.6C14.6,14.8,14.5,15.4,14,15.7z"/></svg>
|
After Width: | Height: | Size: 307 B |
1
public/img/icons/solid/clock-nine.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,12c0,0.6-0.4,1-1,1H9c-0.6,0-1-0.4-1-1s0.4-1,1-1h2V7c0-0.6,0.4-1,1-1s1,0.4,1,1V12z"/></svg>
|
After Width: | Height: | Size: 259 B |
1
public/img/icons/solid/clock-seven.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,12c0,0.2-0.1,0.3-0.1,0.4l-1.5,2.8c-0.3,0.5-0.9,0.7-1.4,0.4c-0.5-0.3-0.7-0.9-0.4-1.4l1.4-2.6V7c0-0.6,0.4-1,1-1s1,0.4,1,1V12z"/></svg>
|
After Width: | Height: | Size: 301 B |
1
public/img/icons/solid/clock-ten.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,12c0,0.6-0.4,1-1,1c-0.2,0-0.3,0-0.5-0.1l-2.6-1.5c-0.5-0.3-0.6-0.9-0.4-1.4c0.3-0.5,0.9-0.6,1.4-0.4l1.1,0.6V7c0-0.6,0.4-1,1-1s1,0.4,1,1V12z"/></svg>
|
After Width: | Height: | Size: 315 B |
1
public/img/icons/solid/clock-three.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M15,13h-3c-0.6,0-1-0.4-1-1V7c0-0.6,0.4-1,1-1s1,0.4,1,1v4h2c0.6,0,1,0.4,1,1S15.6,13,15,13z"/></svg>
|
After Width: | Height: | Size: 263 B |
1
public/img/icons/solid/clock-two.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M15.1,11.4l-2.6,1.5c-0.5,0.3-1.1,0.1-1.4-0.4C11,12.3,11,12.2,11,12V7c0-0.6,0.4-1,1-1s1,0.4,1,1v3.3l1.1-0.6c0.5-0.3,1.1-0.1,1.4,0.4S15.6,11.1,15.1,11.4z"/></svg>
|
After Width: | Height: | Size: 325 B |
1
public/img/icons/solid/clock.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M15.5,14c-0.3,0.5-0.9,0.6-1.4,0.4l-2.6-1.5C11.2,12.7,11,12.4,11,12V7c0-0.6,0.4-1,1-1s1,0.4,1,1v4.4l2.1,1.2C15.6,12.9,15.7,13.5,15.5,14z"/></svg>
|
After Width: | Height: | Size: 309 B |
1
public/img/icons/solid/columns.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M2,3v18c0,0.6,0.4,1,1,1h8V2H3C2.4,2,2,2.4,2,3z M21,2h-8v20h8c0.6,0,1-0.4,1-1V3C22,2.4,21.6,2,21,2z"/></svg>
|
After Width: | Height: | Size: 210 B |
1
public/img/icons/solid/comment-dots.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C6.5,2,2,6.5,2,12c0,2.3,0.8,4.5,2.3,6.3l-2,2c-0.4,0.4-0.4,1,0,1.4C2.5,21.9,2.7,22,3,22h9c5.5,0,10-4.5,10-10S17.5,2,12,2z M8,13c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S8.6,13,8,13z M12,13c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S12.6,13,12,13z M16,13c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S16.6,13,16,13z"/></svg>
|
After Width: | Height: | Size: 411 B |
1
public/img/icons/solid/compress.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M8,15H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h4v4c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-5C9,15.4,8.6,15,8,15z M8,2C7.4,2,7,2.4,7,3v4H3C2.4,7,2,7.4,2,8s0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C9,2.4,8.6,2,8,2z M16,9h5c0.6,0,1-0.4,1-1s-0.4-1-1-1h-4V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v5C15,8.6,15.4,9,16,9z M21,15h-5c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-4h4c0.6,0,1-0.4,1-1S21.6,15,21,15z"/></svg>
|
After Width: | Height: | Size: 483 B |
1
public/img/icons/solid/corner-down-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M18.7,2c-0.6,0-1,0.4-1,1v10.4c0,1.1-0.9,2-2,2h-8l2.9-2.9c0.4-0.4,0.4-1,0-1.4s-1-0.4-1.4,0l-4.6,4.6l0,0c-0.4,0.4-0.4,1,0,1.4l4.6,4.6C9.4,21.9,9.7,22,9.9,22c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4l-2.9-2.9h8c2.2,0,4-1.8,4-4V3C19.7,2.4,19.2,2,18.7,2z"/></svg>
|
After Width: | Height: | Size: 361 B |
1
public/img/icons/solid/corner-down-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M19.4,15.7L14.8,11c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l2.9,2.9h-7c-1.7,0-3-1.3-3-3V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v9.4c0,2.8,2.2,5,5,5h7l-2.9,2.9c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3l4.6-4.6c0,0,0,0,0,0C19.8,16.7,19.8,16.1,19.4,15.7z"/></svg>
|
After Width: | Height: | Size: 374 B |
1
public/img/icons/solid/corner-left-down.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,4.3h-9.4c-2.8,0-5,2.2-5,5v7l-2.9-2.9c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l4.6,4.6c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l4.6-4.6c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0l-2.9,2.9v-7c0-1.7,1.3-3,3-3H21c0.6,0,1-0.4,1-1S21.6,4.3,21,4.3z"/></svg>
|
After Width: | Height: | Size: 361 B |
1
public/img/icons/solid/corner-right-down.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21.7,13.4c-0.4-0.4-1-0.4-1.4,0l-2.9,2.9v-8c0-2.2-1.8-4-4-4H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h10.4c1.1,0,2,0.9,2,2v8l-2.9-2.9c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l4.6,4.6c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l4.6-4.6C22.1,14.4,22.1,13.7,21.7,13.4z"/></svg>
|
After Width: | Height: | Size: 367 B |
1
public/img/icons/solid/corner-up-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M14.7,6.6h-7l2.9-2.9c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L4.6,6.9l0,0c-0.4,0.4-0.4,1,0,1.4L9.2,13c0.2,0.2,0.4,0.3,0.7,0.3v0c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L7.7,8.6h7c1.7,0,3,1.3,3,3V21c0,0.6,0.4,1,1,1s1-0.4,1-1v-9.4C19.7,8.9,17.4,6.6,14.7,6.6z"/></svg>
|
After Width: | Height: | Size: 369 B |
1
public/img/icons/solid/corner-up-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M19.4,6.9l-4.6-4.6c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l2.9,2.9h-8c-2.2,0-4,1.8-4,4V21c0,0.6,0.4,1,1,1c0.6,0,1-0.4,1-1V10.6c0-1.1,0.9-2,2-2h8l-2.9,2.9c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3l4.6-4.6c0,0,0,0,0,0C19.8,7.9,19.8,7.3,19.4,6.9z"/></svg>
|
After Width: | Height: | Size: 378 B |
1
public/img/icons/solid/coronavirus.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M22,11h-1.1c-0.2-1.7-0.9-3.3-1.9-4.6l0.8-0.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L17.6,5c-1.3-1.1-2.9-1.7-4.6-1.9V2c0-0.6-0.4-1-1-1s-1,0.4-1,1v1.1C9.3,3.2,7.7,3.9,6.4,5L5.6,4.2c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4L5,6.4C3.9,7.7,3.2,9.3,3.1,11H2c-0.6,0-1,0.4-1,1s0.4,1,1,1h1.1c0.2,1.7,0.9,3.3,1.9,4.6l-0.8,0.8c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0L6.4,19c1.3,1.1,2.9,1.7,4.6,1.9V22c0,0.6,0.4,1,1,1s1-0.4,1-1v-1.1c1.7-0.2,3.3-0.9,4.6-1.9l0.8,0.8c0.4,0.4,1,0.4,1.4,0c0.4-0.4,0.4-1,0-1.4L19,17.6c1.1-1.3,1.7-2.9,1.9-4.6H22c0.6,0,1-0.4,1-1S22.6,11,22,11z M9,16c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S9.6,16,9,16z M9.5,12C8.7,12,8,11.3,8,10.5S8.7,9,9.5,9S11,9.7,11,10.5S10.3,12,9.5,12z M14.5,15c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S15.3,15,14.5,15z M15,10c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S15.6,10,15,10z"/></svg>
|
After Width: | Height: | Size: 941 B |
1
public/img/icons/solid/dialpad.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M14,9.2h-4c-0.4,0-0.8,0.3-0.8,0.8v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8v-4C14.8,9.6,14.4,9.2,14,9.2z M14,16.2h-4c-0.4,0-0.8,0.3-0.8,0.8v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8v-4C14.8,16.6,14.4,16.2,14,16.2z M7,2.2H3C2.6,2.2,2.2,2.6,2.2,3v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8V3C7.8,2.6,7.4,2.2,7,2.2z M7,9.2H3c-0.4,0-0.8,0.3-0.8,0.8v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8v-4C7.8,9.6,7.4,9.2,7,9.2z M21,2.2h-4c-0.4,0-0.8,0.3-0.8,0.8v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8V3C21.8,2.6,21.4,2.2,21,2.2z M14,2.2h-4C9.6,2.2,9.2,2.6,9.2,3v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8V3C14.8,2.6,14.4,2.2,14,2.2z M21,9.2h-4c-0.4,0-0.8,0.3-0.8,0.8v4c0,0.4,0.3,0.8,0.8,0.8h4c0.4,0,0.8-0.3,0.8-0.8v-4C21.8,9.6,21.4,9.2,21,9.2z"/></svg>
|
After Width: | Height: | Size: 877 B |
1
public/img/icons/solid/direction.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M14.3,14.8L12,17.1l-2.3-2.3c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l3,3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4C15.3,14.4,14.7,14.4,14.3,14.8z M9.7,10.2L12,7.9l2.3,2.3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4l-3-3c0,0,0,0,0,0c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4C8.7,10.6,9.3,10.6,9.7,10.2z"/></svg>
|
After Width: | Height: | Size: 469 B |
1
public/img/icons/solid/document-layout-center.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M19,8h2c0.6,0,1-0.4,1-1s-0.4-1-1-1h-2c-0.6,0-1,0.4-1,1S18.4,8,19,8z M21,10h-2c-0.6,0-1,0.4-1,1s0.4,1,1,1h2c0.6,0,1-0.4,1-1S21.6,10,21,10z M3,8h2c0.6,0,1-0.4,1-1S5.6,6,5,6H3C2.4,6,2,6.4,2,7S2.4,8,3,8z M3,12h2c0.6,0,1-0.4,1-1s-0.4-1-1-1H3c-0.6,0-1,0.4-1,1S2.4,12,3,12z M9,12h6c0.6,0,1-0.4,1-1V5c0-0.6-0.4-1-1-1H9C8.4,4,8,4.4,8,5v6C8,11.6,8.4,12,9,12z M21,14H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,14,21,14z M13,18H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S13.6,18,13,18z"/></svg>
|
After Width: | Height: | Size: 600 B |
1
public/img/icons/solid/document-layout-left.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M13,8h8c0.6,0,1-0.4,1-1s-0.4-1-1-1h-8c-0.6,0-1,0.4-1,1S12.4,8,13,8z M21,10h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S21.6,10,21,10z M3,12h6c0.6,0,1-0.4,1-1V5c0-0.6-0.4-1-1-1H3C2.4,4,2,4.4,2,5v6C2,11.6,2.4,12,3,12z M21,14H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,14,21,14z M13,18H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S13.6,18,13,18z"/></svg>
|
After Width: | Height: | Size: 471 B |
1
public/img/icons/solid/document-layout-right.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M13,18H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h10c0.6,0,1-0.4,1-1S13.6,18,13,18z M3,8h8c0.6,0,1-0.4,1-1s-0.4-1-1-1H3C2.4,6,2,6.4,2,7S2.4,8,3,8z M3,12h8c0.6,0,1-0.4,1-1s-0.4-1-1-1H3c-0.6,0-1,0.4-1,1S2.4,12,3,12z M21,4h-6c-0.6,0-1,0.4-1,1v6c0,0.6,0.4,1,1,1h6c0.6,0,1-0.4,1-1V5C22,4.4,21.6,4,21,4z M21,14H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,14,21,14z"/></svg>
|
After Width: | Height: | Size: 465 B |
1
public/img/icons/solid/download-alt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M18,9h-2c-0.6,0-1,0.4-1,1s0.4,1,1,1h2c0.6,0,1,0.4,1,1v7c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1v-7c0-0.6,0.4-1,1-1h2c0.6,0,1-0.4,1-1S8.6,9,8,9H6c-1.7,0-3,1.3-3,3v7c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3v-7C21,10.3,19.7,9,18,9z M8.3,14.7l3,3c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L13,14.6V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v11.6l-1.3-1.3c-0.4-0.4-1-0.4-1.4,0C7.9,13.7,7.9,14.3,8.3,14.7z"/></svg>
|
After Width: | Height: | Size: 534 B |
1
public/img/icons/solid/ellipsis-h.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M5,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S6.1,10,5,10z M19,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S20.1,10,19,10z"/></svg>
|
After Width: | Height: | Size: 285 B |
1
public/img/icons/solid/ellipsis-v.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M12,7c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,7,12,7z M12,17c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,17,12,17z"/></svg>
|
After Width: | Height: | Size: 286 B |
1
public/img/icons/solid/exclamation-circle.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2C12,2,12,2,12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,17c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S12.6,17,12,17z M13,12c0,0.6-0.4,1-1,1s-1-0.4-1-1V8c0-0.6,0.4-1,1-1s1,0.4,1,1V12z"/></svg>
|
After Width: | Height: | Size: 313 B |
1
public/img/icons/solid/exclamation-octagon.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21.7,7.6l-5.3-5.3C16.2,2.1,16,2,15.7,2H8.3C8,2,7.8,2.1,7.6,2.3L2.3,7.6C2.1,7.8,2,8,2,8.3v7.5c0,0.3,0.1,0.5,0.3,0.7l5.3,5.3C7.8,21.9,8,22,8.3,22h7.5c0.3,0,0.5-0.1,0.7-0.3l5.3-5.3c0.2-0.2,0.3-0.4,0.3-0.7V8.3C22,8,21.9,7.8,21.7,7.6z M12,17c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S12.6,17,12,17z M13,12c0,0.6-0.4,1-1,1s-1-0.4-1-1V8c0-0.6,0.4-1,1-1s1,0.4,1,1V12z"/></svg>
|
After Width: | Height: | Size: 467 B |
1
public/img/icons/solid/exclamation-triangle.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M22.7,17.5l-8.1-14c-0.8-1.4-2.7-1.9-4.1-1.1C10,2.7,9.6,3.1,9.4,3.5l-8.1,14c-0.8,1.4-0.3,3.3,1.1,4.1c0.5,0.3,1,0.4,1.5,0.4h16.1c1.7,0,3-1.4,3-3C23.1,18.4,22.9,17.9,22.7,17.5z M12,18c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S12.6,18,12,18z M13,13c0,0.6-0.4,1-1,1s-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1V13z"/></svg>
|
After Width: | Height: | Size: 410 B |
1
public/img/icons/solid/favorite.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M22,10.1c0.1-0.5-0.3-1.1-0.8-1.1l-5.7-0.8L12.9,3c-0.1-0.2-0.2-0.3-0.4-0.4C12,2.3,11.4,2.5,11.1,3L8.6,8.2L2.9,9C2.6,9,2.4,9.1,2.3,9.3c-0.4,0.4-0.4,1,0,1.4l4.1,4l-1,5.7c0,0.2,0,0.4,0.1,0.6c0.3,0.5,0.9,0.7,1.4,0.4l5.1-2.7l5.1,2.7c0.1,0.1,0.3,0.1,0.5,0.1l0,0c0.1,0,0.1,0,0.2,0c0.5-0.1,0.9-0.6,0.8-1.2l-1-5.7l4.1-4C21.9,10.5,22,10.3,22,10.1z"/></svg>
|
After Width: | Height: | Size: 448 B |
1
public/img/icons/solid/flip-h-alt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M7.4,7.2c0.1,0,0.2,0,0.2,0l1.9-0.5c0.5-0.1,0.9-0.7,0.7-1.2c-0.1-0.5-0.7-0.9-1.2-0.7L7.1,5.2c-0.4,0.1-0.8,0.5-0.8,1C6.4,6.7,6.8,7.2,7.4,7.2z M9.5,9h-2c-0.6,0-1,0.4-1,1s0.4,1,1,1h2c0.6,0,1-0.4,1-1S10.1,9,9.5,9z M13.2,5.7c0.1,0,0.2,0,0.2,0l1.9-0.5c0,0,0,0,0,0C15.9,5,16.3,4.5,16.1,4c-0.1-0.5-0.7-0.9-1.2-0.7L13,3.7c-0.4,0.1-0.8,0.5-0.8,1C12.2,5.2,12.7,5.7,13.2,5.7z M13.5,9c-0.6,0-1,0.4-1,1s0.4,1,1,1h2c0.6,0,1-0.4,1-1s-0.4-1-1-1H13.5z M21,2.8c-0.1-0.5-0.7-0.9-1.2-0.7l-1,0.2c-0.4,0.1-0.8,0.5-0.8,1c0,0.6,0.4,1,1,1C19.1,4.7,19.5,5,20,5h0c0.6,0,1-0.4,1-1V3C21,2.9,21,2.8,21,2.8z M4,10.5L4,10.5c0.6,0,1-0.4,1-1v-2c0-0.6-0.4-1-1-1S3,7,3,7.5v2C3,10.1,3.4,10.5,4,10.5z M20,7c-0.6,0-1,0.4-1,1v1.1c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.6,0.4,1,1,1H20c0.6,0,1-0.4,1-1V8C21,7.4,20.6,7,20,7z M20,13H4c-0.6,0-1,0.4-1,1v3c0,0.5,0.3,0.9,0.8,1l16,4c0.1,0,0.2,0,0.2,0c0.6,0,1-0.4,1-1v-7C21,13.4,20.6,13,20,13z"/></svg>
|
After Width: | Height: | Size: 994 B |
1
public/img/icons/solid/flip-h.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M21,11H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h18c0.6,0,1-0.4,1-1S21.6,11,21,11z M17,15H7c-0.3,0-0.5,0.1-0.7,0.3c-0.4,0.4-0.4,1,0,1.4l5,5c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l5-5c0.2-0.2,0.3-0.4,0.3-0.7C18,15.4,17.6,15,17,15z M15.4,8c0,0.6,0.4,1,1,1H17c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4l-0.7-0.7c-0.3-0.3-0.8-0.4-1.2-0.2c-0.5,0.2-0.7,0.8-0.4,1.3C15.4,7.9,15.4,7.9,15.4,8z M11.6,4.8L12,4.4l0.8,0.8c0.2,0.2,0.4,0.3,0.7,0.3h0c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4l-1.1-1.1c-0.1-0.1-0.2-0.1-0.3-0.2c0-0.1-0.1-0.2-0.2-0.3c-0.4-0.4-1-0.4-1.4,0l-1.1,1.1c-0.4,0.4-0.4,1,0,1.4S11.3,5.2,11.6,4.8z M7.1,9c0.3,0,0.5-0.1,0.7-0.3l1.1-1.1c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L6.3,7.2C6.2,7.4,6.1,7.7,6.1,7.9C6.1,8.5,6.5,8.9,7.1,9z M10.9,9h1.5c0.6,0,1-0.4,1-1s-0.4-1-1-1h-1.5c-0.6,0-1,0.4-1,1S10.4,9,10.9,9z"/></svg>
|
After Width: | Height: | Size: 917 B |
1
public/img/icons/solid/flip-v-alt.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M4.9,12.2c-0.5-0.1-1.1,0.2-1.2,0.7l-0.5,1.9C3.1,15.4,3.4,16,4,16.1c0.1,0,0.2,0,0.2,0c0.5,0,0.9-0.3,1-0.8l0.5-1.9C5.8,12.9,5.5,12.4,4.9,12.2z M7.5,5h2c0.6,0,1-0.4,1-1s-0.4-1-1-1h-2c-0.6,0-1,0.4-1,1S7,5,7.5,5z M4.2,19c0-0.5-0.3-0.9-0.8-1c-0.5-0.1-1.1,0.2-1.2,0.7l-0.2,1c0,0.1,0,0.2,0,0.2c0,0.6,0.4,1,1,1h1c0.5,0,0.9-0.3,1-0.8C5.1,19.7,4.8,19.2,4.2,19z M6.4,6.4C5.9,6.3,5.3,6.6,5.2,7.1L4.7,9.1c0,0.1,0,0.2,0,0.2c0,0.6,0.4,1,1,1c0.5,0,0.9-0.3,1-0.8l0.5-1.9C7.3,7.1,6.9,6.6,6.4,6.4z M10,12.5c-0.6,0-1,0.4-1,1v2c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-2C11,13,10.6,12.5,10,12.5z M10,6.5c-0.6,0-1,0.4-1,1v2c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-2C11,7,10.6,6.5,10,6.5z M10.5,18.6C10,18.4,9.4,18.5,9.1,19H8c-0.6,0-1,0.4-1,1s0.4,1,1,1h2c0.6,0,1-0.4,1-1v-0.5C11,19.2,10.8,18.8,10.5,18.6z M22,19.8l-4-16C17.9,3.3,17.5,3,17,3h-3c-0.6,0-1,0.4-1,1v16c0,0.6,0.4,1,1,1h7c0.1,0,0.2,0,0.2,0C21.8,20.8,22.1,20.3,22,19.8z"/></svg>
|
After Width: | Height: | Size: 1005 B |
1
public/img/icons/solid/flip-v.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24"><path d="M12,2c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1V3C13,2.4,12.6,2,12,2z M21.7,11.3l-5-5C16.5,6.1,16.3,6,16,6c-0.6,0-1,0.4-1,1v10c0,0.6,0.4,1,1,1c0.3,0,0.5-0.1,0.7-0.3l5-5C22.1,12.3,22.1,11.7,21.7,11.3z M3.8,9.8l-1.1,1.1c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0.1-0.3,0.2c-0.4,0.4-0.4,1,0,1.4l1.1,1.1c0.2,0.2,0.4,0.3,0.7,0.3h0c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L4.4,12l0.8-0.8c0.4-0.4,0.4-1,0-1.4S4.2,9.4,3.8,9.8z M7.6,15.2c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l1.1,1.1C7.4,17.8,7.7,18,7.9,18l0,0c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L7.6,15.2z M7.3,6.3L6.6,7C6.4,7.1,6.3,7.4,6.3,7.7c0,0.6,0.4,1,1,1c0.2,0,0.3,0,0.5-0.1c0.1,0,0.1,0,0.2,0c0.6,0,1-0.4,1-1V7c0-0.3-0.1-0.5-0.3-0.7C8.3,5.9,7.7,5.9,7.3,6.3z M8,10.6c-0.6,0-1,0.4-1,1v1.5c0,0.6,0.4,1,1,1h0c0.6,0,1-0.4,1-1v-1.5C9,11,8.6,10.6,8,10.6z"/></svg>
|
After Width: | Height: | Size: 925 B |