diff --git a/LICENSING.md b/LICENSING.md index 510ff42a32b..2a64b5cb4ea 100644 --- a/LICENSING.md +++ b/LICENSING.md @@ -21,6 +21,8 @@ pkg/coremodel/ pkg/framework/coremodel/ grafana-mixin/ cue/ +public/img/icons/solid/ +public/img/icons/unicons/ ``` The following directories and their subdirectories are licensed under their original upstream licenses: diff --git a/package.json b/package.json index 5f1a2601dbb..466c860a4ed 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "ci:test-frontend": "yarn run test:ci && yarn grafana-toolkit node-version-check", "i18n:extract": "lingui extract", "i18n:compile": "lingui compile", - "postinstall": "husky install && node ./scripts/copy-unicons.js", + "postinstall": "husky install", "betterer": "betterer", "betterer:merge": "betterer merge", "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", "http-server": "14.1.1", "husky": "8.0.1", - "iconscout-unicons-tarball": "https://github.com/grafana/icons/tarball/63056cd833ba7ee4e94904492b3a8c0cabc38d28", "jest": "28.1.3", "jest-canvas-mock": "2.4.0", "jest-date-mock": "1.0.8", diff --git a/packages/grafana-ui/package.json b/packages/grafana-ui/package.json index 0bd77b7af7b..5859b9121b3 100644 --- a/packages/grafana-ui/package.json +++ b/packages/grafana-ui/package.json @@ -36,7 +36,8 @@ "docsExtract": "mkdir -p ../../reports/docs && api-extractor run 2>&1 | tee ../../reports/docs/$(basename $(pwd)).log", "storybook": "start-storybook -p 9001 -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": [ "defaults", diff --git a/packages/grafana-ui/scripts/generate-icon-bundle.js b/packages/grafana-ui/scripts/generate-icon-bundle.js new file mode 100644 index 00000000000..d8dc0ef1ac5 --- /dev/null +++ b/packages/grafana-ui/scripts/generate-icon-bundle.js @@ -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; diff --git a/packages/grafana-ui/src/components/Icon/cached.json b/packages/grafana-ui/src/components/Icon/cached.json new file mode 100644 index 00000000000..6ad63e13bf5 --- /dev/null +++ b/packages/grafana-ui/src/components/Icon/cached.json @@ -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" +] diff --git a/packages/grafana-ui/src/components/Icon/iconBundle.ts b/packages/grafana-ui/src/components/Icon/iconBundle.ts index 5bc180e21ef..644060305fd 100644 --- a/packages/grafana-ui/src/components/Icon/iconBundle.ts +++ b/packages/grafana-ui/src/components/Icon/iconBundle.ts @@ -1,173 +1,174 @@ -// This file was autogenerated from -// https://github.com/grafana/icons +/* 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'; -import u1141 from '../../../../../public/img/icons/custom/gf-bar-alignment-after.svg'; -import u1142 from '../../../../../public/img/icons/custom/gf-bar-alignment-before.svg'; -import u1143 from '../../../../../public/img/icons/custom/gf-bar-alignment-center.svg'; -import u1137 from '../../../../../public/img/icons/custom/gf-grid.svg'; -import u1144 from '../../../../../public/img/icons/custom/gf-interpolation-linear.svg'; -import u1145 from '../../../../../public/img/icons/custom/gf-interpolation-smooth.svg'; -import u1146 from '../../../../../public/img/icons/custom/gf-interpolation-step-after.svg'; -import u1147 from '../../../../../public/img/icons/custom/gf-interpolation-step-before.svg'; -import u1138 from '../../../../../public/img/icons/custom/gf-landscape.svg'; -import u1139 from '../../../../../public/img/icons/custom/gf-layout-simple.svg'; -import u1148 from '../../../../../public/img/icons/custom/gf-logs.svg'; -import u1140 from '../../../../../public/img/icons/custom/gf-portrait.svg'; -import u1149 from '../../../../../public/img/icons/mono/favorite.svg'; -import u1150 from '../../../../../public/img/icons/mono/grafana.svg'; -import u1152 from '../../../../../public/img/icons/mono/heart-break.svg'; -import u1151 from '../../../../../public/img/icons/mono/heart.svg'; -import u1154 from '../../../../../public/img/icons/mono/library-panel.svg'; -import u1153 from '../../../../../public/img/icons/mono/panel-add.svg'; -import u1001 from '../../../../../public/img/icons/unicons/angle-double-down.svg'; -import u1002 from '../../../../../public/img/icons/unicons/angle-double-right.svg'; -import u1003 from '../../../../../public/img/icons/unicons/angle-down.svg'; -import u1004 from '../../../../../public/img/icons/unicons/angle-left.svg'; -import u1005 from '../../../../../public/img/icons/unicons/angle-right.svg'; -import u1006 from '../../../../../public/img/icons/unicons/angle-up.svg'; -import u1007 from '../../../../../public/img/icons/unicons/apps.svg'; -import u1009 from '../../../../../public/img/icons/unicons/arrow-down.svg'; -import u1010 from '../../../../../public/img/icons/unicons/arrow-from-right.svg'; -import u1011 from '../../../../../public/img/icons/unicons/arrow-left.svg'; -import u1012 from '../../../../../public/img/icons/unicons/arrow-random.svg'; -import u1013 from '../../../../../public/img/icons/unicons/arrow-right.svg'; -import u1014 from '../../../../../public/img/icons/unicons/arrow-up.svg'; -import u1008 from '../../../../../public/img/icons/unicons/arrow.svg'; -import u1015 from '../../../../../public/img/icons/unicons/arrows-h.svg'; -import u1016 from '../../../../../public/img/icons/unicons/backward.svg'; -import u1017 from '../../../../../public/img/icons/unicons/bars.svg'; -import u1019 from '../../../../../public/img/icons/unicons/bell-slash.svg'; -import u1018 from '../../../../../public/img/icons/unicons/bell.svg'; -import u1020 from '../../../../../public/img/icons/unicons/bolt.svg'; -import u1022 from '../../../../../public/img/icons/unicons/book-open.svg'; -import u1021 from '../../../../../public/img/icons/unicons/book.svg'; -import u1023 from '../../../../../public/img/icons/unicons/brackets-curly.svg'; -import u1024 from '../../../../../public/img/icons/unicons/bug.svg'; -import u1025 from '../../../../../public/img/icons/unicons/building.svg'; -import u1026 from '../../../../../public/img/icons/unicons/calculator-alt.svg'; -import u1027 from '../../../../../public/img/icons/unicons/calendar-alt.svg'; -import u1028 from '../../../../../public/img/icons/unicons/camera.svg'; -import u1136 from '../../../../../public/img/icons/unicons/capture.svg'; -import u1029 from '../../../../../public/img/icons/unicons/channel-add.svg'; -import u1030 from '../../../../../public/img/icons/unicons/chart-line.svg'; -import u1032 from '../../../../../public/img/icons/unicons/check-circle.svg'; -import u1031 from '../../../../../public/img/icons/unicons/check.svg'; -import u1033 from '../../../../../public/img/icons/unicons/circle.svg'; -import u1034 from '../../../../../public/img/icons/unicons/clipboard-alt.svg'; -import u1035 from '../../../../../public/img/icons/unicons/clock-nine.svg'; -import u1037 from '../../../../../public/img/icons/unicons/cloud-download.svg'; -import u1122 from '../../../../../public/img/icons/unicons/cloud-upload.svg'; -import u1036 from '../../../../../public/img/icons/unicons/cloud.svg'; -import u1038 from '../../../../../public/img/icons/unicons/code-branch.svg'; -import u1039 from '../../../../../public/img/icons/unicons/cog.svg'; -import u1040 from '../../../../../public/img/icons/unicons/columns.svg'; -import u1042 from '../../../../../public/img/icons/unicons/comment-alt-share.svg'; -import u1041 from '../../../../../public/img/icons/unicons/comment-alt.svg'; -import u1043 from '../../../../../public/img/icons/unicons/comments-alt.svg'; -import u1044 from '../../../../../public/img/icons/unicons/compass.svg'; -import u1045 from '../../../../../public/img/icons/unicons/copy.svg'; -import u1123 from '../../../../../public/img/icons/unicons/credit-card.svg'; -import u1046 from '../../../../../public/img/icons/unicons/cube.svg'; -import u1047 from '../../../../../public/img/icons/unicons/dashboard.svg'; -import u1048 from '../../../../../public/img/icons/unicons/database.svg'; -import u1049 from '../../../../../public/img/icons/unicons/document-info.svg'; -import u1050 from '../../../../../public/img/icons/unicons/download-alt.svg'; -import u1051 from '../../../../../public/img/icons/unicons/draggabledots.svg'; -import u1052 from '../../../../../public/img/icons/unicons/edit.svg'; -import u1053 from '../../../../../public/img/icons/unicons/ellipsis-v.svg'; -import u1054 from '../../../../../public/img/icons/unicons/envelope.svg'; -import u1055 from '../../../../../public/img/icons/unicons/exchange-alt.svg'; -import u1056 from '../../../../../public/img/icons/unicons/exclamation-triangle.svg'; -import u1057 from '../../../../../public/img/icons/unicons/external-link-alt.svg'; -import u1059 from '../../../../../public/img/icons/unicons/eye-slash.svg'; -import u1058 from '../../../../../public/img/icons/unicons/eye.svg'; -import u1060 from '../../../../../public/img/icons/unicons/file-alt.svg'; -import u1061 from '../../../../../public/img/icons/unicons/file-blank.svg'; -import u1124 from '../../../../../public/img/icons/unicons/file-copy-alt.svg'; -import u1062 from '../../../../../public/img/icons/unicons/filter.svg'; -import u1125 from '../../../../../public/img/icons/unicons/fire.svg'; -import u1064 from '../../../../../public/img/icons/unicons/folder-open.svg'; -import u1065 from '../../../../../public/img/icons/unicons/folder-plus.svg'; -import u1066 from '../../../../../public/img/icons/unicons/folder-upload.svg'; -import u1063 from '../../../../../public/img/icons/unicons/folder.svg'; -import u1067 from '../../../../../public/img/icons/unicons/forward.svg'; -import u1068 from '../../../../../public/img/icons/unicons/graph-bar.svg'; -import u1069 from '../../../../../public/img/icons/unicons/history.svg'; -import u1070 from '../../../../../public/img/icons/unicons/home-alt.svg'; -import u1158 from '../../../../../public/img/icons/unicons/horizontal-align-center.svg'; -import u1156 from '../../../../../public/img/icons/unicons/horizontal-align-left.svg'; -import u1157 from '../../../../../public/img/icons/unicons/horizontal-align-right.svg'; -import u1126 from '../../../../../public/img/icons/unicons/hourglass.svg'; -import u1071 from '../../../../../public/img/icons/unicons/import.svg'; -import u1073 from '../../../../../public/img/icons/unicons/info-circle.svg'; -import u1072 from '../../../../../public/img/icons/unicons/info.svg'; -import u1074 from '../../../../../public/img/icons/unicons/key-skeleton-alt.svg'; -import u1075 from '../../../../../public/img/icons/unicons/keyboard.svg'; -import u1127 from '../../../../../public/img/icons/unicons/layer-group.svg'; -import u1128 from '../../../../../public/img/icons/unicons/line-alt.svg'; -import u1076 from '../../../../../public/img/icons/unicons/link.svg'; -import u1129 from '../../../../../public/img/icons/unicons/list-ui-alt.svg'; -import u1077 from '../../../../../public/img/icons/unicons/list-ul.svg'; -import u1078 from '../../../../../public/img/icons/unicons/lock.svg'; -import u1130 from '../../../../../public/img/icons/unicons/message.svg'; -import u1080 from '../../../../../public/img/icons/unicons/minus-circle.svg'; -import u1079 from '../../../../../public/img/icons/unicons/minus.svg'; -import u1081 from '../../../../../public/img/icons/unicons/mobile-android.svg'; -import u1082 from '../../../../../public/img/icons/unicons/monitor.svg'; -import u1131 from '../../../../../public/img/icons/unicons/palette.svg'; -import u1083 from '../../../../../public/img/icons/unicons/pause.svg'; -import u1084 from '../../../../../public/img/icons/unicons/pen.svg'; -import u1132 from '../../../../../public/img/icons/unicons/percentage.svg'; -import u1085 from '../../../../../public/img/icons/unicons/play.svg'; -import u1086 from '../../../../../public/img/icons/unicons/plug.svg'; -import u1088 from '../../../../../public/img/icons/unicons/plus-circle.svg'; -import u1134 from '../../../../../public/img/icons/unicons/plus-square.svg'; -import u1087 from '../../../../../public/img/icons/unicons/plus.svg'; -import u1089 from '../../../../../public/img/icons/unicons/power.svg'; -import u1090 from '../../../../../public/img/icons/unicons/presentation-play.svg'; -import u1091 from '../../../../../public/img/icons/unicons/process.svg'; -import u1092 from '../../../../../public/img/icons/unicons/question-circle.svg'; -import u1155 from '../../../../../public/img/icons/unicons/record-audio.svg'; -import u1093 from '../../../../../public/img/icons/unicons/repeat.svg'; -import u1094 from '../../../../../public/img/icons/unicons/rocket.svg'; -import u1095 from '../../../../../public/img/icons/unicons/save.svg'; -import u1097 from '../../../../../public/img/icons/unicons/search-minus.svg'; -import u1098 from '../../../../../public/img/icons/unicons/search-plus.svg'; -import u1096 from '../../../../../public/img/icons/unicons/search.svg'; -import u1099 from '../../../../../public/img/icons/unicons/share-alt.svg'; -import u1133 from '../../../../../public/img/icons/unicons/shield-exclamation.svg'; -import u1100 from '../../../../../public/img/icons/unicons/shield.svg'; -import u1101 from '../../../../../public/img/icons/unicons/signal.svg'; -import u1102 from '../../../../../public/img/icons/unicons/signin.svg'; -import u1103 from '../../../../../public/img/icons/unicons/signout.svg'; -import u1104 from '../../../../../public/img/icons/unicons/sitemap.svg'; -import u1105 from '../../../../../public/img/icons/unicons/slack.svg'; -import u1106 from '../../../../../public/img/icons/unicons/sliders-v-alt.svg'; -import u1107 from '../../../../../public/img/icons/unicons/sort-amount-down.svg'; -import u1108 from '../../../../../public/img/icons/unicons/sort-amount-up.svg'; -import u1109 from '../../../../../public/img/icons/unicons/square-shape.svg'; -import u1110 from '../../../../../public/img/icons/unicons/star.svg'; -import u1111 from '../../../../../public/img/icons/unicons/step-backward.svg'; -import u1112 from '../../../../../public/img/icons/unicons/sync.svg'; -import u1113 from '../../../../../public/img/icons/unicons/table.svg'; -import u1114 from '../../../../../public/img/icons/unicons/tag-alt.svg'; -import u1115 from '../../../../../public/img/icons/unicons/times.svg'; -import u1116 from '../../../../../public/img/icons/unicons/trash-alt.svg'; -import u1117 from '../../../../../public/img/icons/unicons/unlock.svg'; -import u1118 from '../../../../../public/img/icons/unicons/upload.svg'; -import u1119 from '../../../../../public/img/icons/unicons/user.svg'; -import u1120 from '../../../../../public/img/icons/unicons/users-alt.svg'; -import u1160 from '../../../../../public/img/icons/unicons/vertical-align-bottom.svg'; -import u1161 from '../../../../../public/img/icons/unicons/vertical-align-center.svg'; -import u1159 from '../../../../../public/img/icons/unicons/vertical-align-top.svg'; -import u1121 from '../../../../../public/img/icons/unicons/wrap-text.svg'; -import u1135 from '../../../../../public/img/icons/unicons/x.svg'; +// do not edit this list directly +// the list of icons live here: @grafana/ui/components/Icon/cached.json +import u1000 from '../../../../../public/img/icons/unicons/angle-double-down.svg'; +import u1001 from '../../../../../public/img/icons/unicons/angle-double-right.svg'; +import u1002 from '../../../../../public/img/icons/unicons/angle-down.svg'; +import u1003 from '../../../../../public/img/icons/unicons/angle-left.svg'; +import u1004 from '../../../../../public/img/icons/unicons/angle-right.svg'; +import u1005 from '../../../../../public/img/icons/unicons/angle-up.svg'; +import u1006 from '../../../../../public/img/icons/unicons/apps.svg'; +import u1007 from '../../../../../public/img/icons/unicons/arrow.svg'; +import u1008 from '../../../../../public/img/icons/unicons/arrow-down.svg'; +import u1009 from '../../../../../public/img/icons/unicons/arrow-from-right.svg'; +import u1010 from '../../../../../public/img/icons/unicons/arrow-left.svg'; +import u1011 from '../../../../../public/img/icons/unicons/arrow-random.svg'; +import u1012 from '../../../../../public/img/icons/unicons/arrow-right.svg'; +import u1013 from '../../../../../public/img/icons/unicons/arrow-up.svg'; +import u1014 from '../../../../../public/img/icons/unicons/arrows-h.svg'; +import u1015 from '../../../../../public/img/icons/unicons/backward.svg'; +import u1016 from '../../../../../public/img/icons/unicons/bars.svg'; +import u1017 from '../../../../../public/img/icons/unicons/bell.svg'; +import u1018 from '../../../../../public/img/icons/unicons/bell-slash.svg'; +import u1019 from '../../../../../public/img/icons/unicons/bolt.svg'; +import u1020 from '../../../../../public/img/icons/unicons/book.svg'; +import u1021 from '../../../../../public/img/icons/unicons/book-open.svg'; +import u1022 from '../../../../../public/img/icons/unicons/brackets-curly.svg'; +import u1023 from '../../../../../public/img/icons/unicons/bug.svg'; +import u1024 from '../../../../../public/img/icons/unicons/building.svg'; +import u1025 from '../../../../../public/img/icons/unicons/calculator-alt.svg'; +import u1026 from '../../../../../public/img/icons/unicons/calendar-alt.svg'; +import u1027 from '../../../../../public/img/icons/unicons/camera.svg'; +import u1028 from '../../../../../public/img/icons/unicons/channel-add.svg'; +import u1029 from '../../../../../public/img/icons/unicons/chart-line.svg'; +import u1030 from '../../../../../public/img/icons/unicons/check.svg'; +import u1031 from '../../../../../public/img/icons/unicons/check-circle.svg'; +import u1032 from '../../../../../public/img/icons/unicons/circle.svg'; +import u1033 from '../../../../../public/img/icons/unicons/clipboard-alt.svg'; +import u1034 from '../../../../../public/img/icons/unicons/clock-nine.svg'; +import u1035 from '../../../../../public/img/icons/unicons/cloud.svg'; +import u1036 from '../../../../../public/img/icons/unicons/cloud-download.svg'; +import u1037 from '../../../../../public/img/icons/unicons/code-branch.svg'; +import u1038 from '../../../../../public/img/icons/unicons/cog.svg'; +import u1039 from '../../../../../public/img/icons/unicons/columns.svg'; +import u1040 from '../../../../../public/img/icons/unicons/comment-alt.svg'; +import u1041 from '../../../../../public/img/icons/unicons/comment-alt-share.svg'; +import u1042 from '../../../../../public/img/icons/unicons/comments-alt.svg'; +import u1043 from '../../../../../public/img/icons/unicons/compass.svg'; +import u1044 from '../../../../../public/img/icons/unicons/copy.svg'; +import u1045 from '../../../../../public/img/icons/unicons/cube.svg'; +import u1046 from '../../../../../public/img/icons/unicons/dashboard.svg'; +import u1047 from '../../../../../public/img/icons/unicons/database.svg'; +import u1048 from '../../../../../public/img/icons/unicons/document-info.svg'; +import u1049 from '../../../../../public/img/icons/unicons/download-alt.svg'; +import u1050 from '../../../../../public/img/icons/unicons/draggabledots.svg'; +import u1051 from '../../../../../public/img/icons/unicons/edit.svg'; +import u1052 from '../../../../../public/img/icons/unicons/ellipsis-v.svg'; +import u1053 from '../../../../../public/img/icons/unicons/envelope.svg'; +import u1054 from '../../../../../public/img/icons/unicons/exchange-alt.svg'; +import u1055 from '../../../../../public/img/icons/unicons/exclamation-triangle.svg'; +import u1056 from '../../../../../public/img/icons/unicons/external-link-alt.svg'; +import u1057 from '../../../../../public/img/icons/unicons/eye.svg'; +import u1058 from '../../../../../public/img/icons/unicons/eye-slash.svg'; +import u1059 from '../../../../../public/img/icons/unicons/file-alt.svg'; +import u1060 from '../../../../../public/img/icons/unicons/file-blank.svg'; +import u1061 from '../../../../../public/img/icons/unicons/filter.svg'; +import u1062 from '../../../../../public/img/icons/unicons/folder.svg'; +import u1063 from '../../../../../public/img/icons/unicons/folder-open.svg'; +import u1064 from '../../../../../public/img/icons/unicons/folder-plus.svg'; +import u1065 from '../../../../../public/img/icons/unicons/folder-upload.svg'; +import u1066 from '../../../../../public/img/icons/unicons/forward.svg'; +import u1067 from '../../../../../public/img/icons/unicons/graph-bar.svg'; +import u1068 from '../../../../../public/img/icons/unicons/history.svg'; +import u1069 from '../../../../../public/img/icons/unicons/home-alt.svg'; +import u1070 from '../../../../../public/img/icons/unicons/import.svg'; +import u1071 from '../../../../../public/img/icons/unicons/info.svg'; +import u1072 from '../../../../../public/img/icons/unicons/info-circle.svg'; +import u1073 from '../../../../../public/img/icons/unicons/key-skeleton-alt.svg'; +import u1074 from '../../../../../public/img/icons/unicons/keyboard.svg'; +import u1075 from '../../../../../public/img/icons/unicons/link.svg'; +import u1076 from '../../../../../public/img/icons/unicons/list-ul.svg'; +import u1077 from '../../../../../public/img/icons/unicons/lock.svg'; +import u1078 from '../../../../../public/img/icons/unicons/minus.svg'; +import u1079 from '../../../../../public/img/icons/unicons/minus-circle.svg'; +import u1080 from '../../../../../public/img/icons/unicons/mobile-android.svg'; +import u1081 from '../../../../../public/img/icons/unicons/monitor.svg'; +import u1082 from '../../../../../public/img/icons/unicons/pause.svg'; +import u1083 from '../../../../../public/img/icons/unicons/pen.svg'; +import u1084 from '../../../../../public/img/icons/unicons/play.svg'; +import u1085 from '../../../../../public/img/icons/unicons/plug.svg'; +import u1086 from '../../../../../public/img/icons/unicons/plus.svg'; +import u1087 from '../../../../../public/img/icons/unicons/plus-circle.svg'; +import u1088 from '../../../../../public/img/icons/unicons/power.svg'; +import u1089 from '../../../../../public/img/icons/unicons/presentation-play.svg'; +import u1090 from '../../../../../public/img/icons/unicons/process.svg'; +import u1091 from '../../../../../public/img/icons/unicons/question-circle.svg'; +import u1092 from '../../../../../public/img/icons/unicons/repeat.svg'; +import u1093 from '../../../../../public/img/icons/unicons/rocket.svg'; +import u1094 from '../../../../../public/img/icons/unicons/save.svg'; +import u1095 from '../../../../../public/img/icons/unicons/search.svg'; +import u1096 from '../../../../../public/img/icons/unicons/search-minus.svg'; +import u1097 from '../../../../../public/img/icons/unicons/search-plus.svg'; +import u1098 from '../../../../../public/img/icons/unicons/share-alt.svg'; +import u1099 from '../../../../../public/img/icons/unicons/shield.svg'; +import u1100 from '../../../../../public/img/icons/unicons/signal.svg'; +import u1101 from '../../../../../public/img/icons/unicons/signin.svg'; +import u1102 from '../../../../../public/img/icons/unicons/signout.svg'; +import u1103 from '../../../../../public/img/icons/unicons/sitemap.svg'; +import u1104 from '../../../../../public/img/icons/unicons/slack.svg'; +import u1105 from '../../../../../public/img/icons/unicons/sliders-v-alt.svg'; +import u1106 from '../../../../../public/img/icons/unicons/sort-amount-down.svg'; +import u1107 from '../../../../../public/img/icons/unicons/sort-amount-up.svg'; +import u1108 from '../../../../../public/img/icons/unicons/square-shape.svg'; +import u1109 from '../../../../../public/img/icons/unicons/star.svg'; +import u1110 from '../../../../../public/img/icons/unicons/step-backward.svg'; +import u1111 from '../../../../../public/img/icons/unicons/sync.svg'; +import u1112 from '../../../../../public/img/icons/unicons/table.svg'; +import u1113 from '../../../../../public/img/icons/unicons/tag-alt.svg'; +import u1114 from '../../../../../public/img/icons/unicons/times.svg'; +import u1115 from '../../../../../public/img/icons/unicons/trash-alt.svg'; +import u1116 from '../../../../../public/img/icons/unicons/unlock.svg'; +import u1117 from '../../../../../public/img/icons/unicons/upload.svg'; +import u1118 from '../../../../../public/img/icons/unicons/user.svg'; +import u1119 from '../../../../../public/img/icons/unicons/users-alt.svg'; +import u1120 from '../../../../../public/img/icons/unicons/wrap-text.svg'; +import u1121 from '../../../../../public/img/icons/unicons/cloud-upload.svg'; +import u1122 from '../../../../../public/img/icons/unicons/credit-card.svg'; +import u1123 from '../../../../../public/img/icons/unicons/file-copy-alt.svg'; +import u1124 from '../../../../../public/img/icons/unicons/fire.svg'; +import u1125 from '../../../../../public/img/icons/unicons/hourglass.svg'; +import u1126 from '../../../../../public/img/icons/unicons/layer-group.svg'; +import u1127 from '../../../../../public/img/icons/unicons/line-alt.svg'; +import u1128 from '../../../../../public/img/icons/unicons/list-ui-alt.svg'; +import u1129 from '../../../../../public/img/icons/unicons/message.svg'; +import u1130 from '../../../../../public/img/icons/unicons/palette.svg'; +import u1131 from '../../../../../public/img/icons/unicons/percentage.svg'; +import u1132 from '../../../../../public/img/icons/unicons/shield-exclamation.svg'; +import u1133 from '../../../../../public/img/icons/unicons/plus-square.svg'; +import u1134 from '../../../../../public/img/icons/unicons/x.svg'; +import u1135 from '../../../../../public/img/icons/unicons/capture.svg'; +import u1136 from '../../../../../public/img/icons/custom/gf-grid.svg'; +import u1137 from '../../../../../public/img/icons/custom/gf-landscape.svg'; +import u1138 from '../../../../../public/img/icons/custom/gf-layout-simple.svg'; +import u1139 from '../../../../../public/img/icons/custom/gf-portrait.svg'; +import u1140 from '../../../../../public/img/icons/custom/gf-bar-alignment-after.svg'; +import u1141 from '../../../../../public/img/icons/custom/gf-bar-alignment-before.svg'; +import u1142 from '../../../../../public/img/icons/custom/gf-bar-alignment-center.svg'; +import u1143 from '../../../../../public/img/icons/custom/gf-interpolation-linear.svg'; +import u1144 from '../../../../../public/img/icons/custom/gf-interpolation-smooth.svg'; +import u1145 from '../../../../../public/img/icons/custom/gf-interpolation-step-after.svg'; +import u1146 from '../../../../../public/img/icons/custom/gf-interpolation-step-before.svg'; +import u1147 from '../../../../../public/img/icons/custom/gf-logs.svg'; +import u1148 from '../../../../../public/img/icons/mono/favorite.svg'; +import u1149 from '../../../../../public/img/icons/mono/grafana.svg'; +import u1150 from '../../../../../public/img/icons/mono/heart.svg'; +import u1151 from '../../../../../public/img/icons/mono/heart-break.svg'; +import u1152 from '../../../../../public/img/icons/mono/panel-add.svg'; +import u1153 from '../../../../../public/img/icons/mono/library-panel.svg'; +import u1154 from '../../../../../public/img/icons/unicons/record-audio.svg'; +// 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/'; -function cacheItem(content: string, path: string) { +export function cacheItem(content: string, path: string) { cacheStore[iconRoot + path] = { content, status: 'loaded' }; } @@ -180,165 +181,164 @@ export function initIconCache() { if (grafanaPublicPath) { iconRoot = grafanaPublicPath + 'img/icons/'; } - cacheItem(u1001, 'unicons/angle-double-down.svg'); - cacheItem(u1002, 'unicons/angle-double-right.svg'); - cacheItem(u1003, 'unicons/angle-down.svg'); - cacheItem(u1004, 'unicons/angle-left.svg'); - cacheItem(u1005, 'unicons/angle-right.svg'); - cacheItem(u1006, 'unicons/angle-up.svg'); - cacheItem(u1007, 'unicons/apps.svg'); - cacheItem(u1008, 'unicons/arrow.svg'); - cacheItem(u1009, 'unicons/arrow-down.svg'); - cacheItem(u1010, 'unicons/arrow-from-right.svg'); - cacheItem(u1011, 'unicons/arrow-left.svg'); - cacheItem(u1012, 'unicons/arrow-random.svg'); - cacheItem(u1013, 'unicons/arrow-right.svg'); - cacheItem(u1014, 'unicons/arrow-up.svg'); - cacheItem(u1015, 'unicons/arrows-h.svg'); - cacheItem(u1016, 'unicons/backward.svg'); - cacheItem(u1017, 'unicons/bars.svg'); - cacheItem(u1018, 'unicons/bell.svg'); - cacheItem(u1019, 'unicons/bell-slash.svg'); - cacheItem(u1020, 'unicons/bolt.svg'); - cacheItem(u1021, 'unicons/book.svg'); - cacheItem(u1022, 'unicons/book-open.svg'); - cacheItem(u1023, 'unicons/brackets-curly.svg'); - cacheItem(u1024, 'unicons/bug.svg'); - cacheItem(u1025, 'unicons/building.svg'); - cacheItem(u1026, 'unicons/calculator-alt.svg'); - cacheItem(u1027, 'unicons/calendar-alt.svg'); - cacheItem(u1028, 'unicons/camera.svg'); - cacheItem(u1029, 'unicons/channel-add.svg'); - cacheItem(u1030, 'unicons/chart-line.svg'); - cacheItem(u1031, 'unicons/check.svg'); - cacheItem(u1032, 'unicons/check-circle.svg'); - cacheItem(u1033, 'unicons/circle.svg'); - cacheItem(u1034, 'unicons/clipboard-alt.svg'); - cacheItem(u1035, 'unicons/clock-nine.svg'); - cacheItem(u1036, 'unicons/cloud.svg'); - cacheItem(u1037, 'unicons/cloud-download.svg'); - cacheItem(u1038, 'unicons/code-branch.svg'); - cacheItem(u1039, 'unicons/cog.svg'); - cacheItem(u1040, 'unicons/columns.svg'); - cacheItem(u1041, 'unicons/comment-alt.svg'); - cacheItem(u1042, 'unicons/comment-alt-share.svg'); - cacheItem(u1043, 'unicons/comments-alt.svg'); - cacheItem(u1044, 'unicons/compass.svg'); - cacheItem(u1045, 'unicons/copy.svg'); - cacheItem(u1046, 'unicons/cube.svg'); - cacheItem(u1047, 'unicons/dashboard.svg'); - cacheItem(u1048, 'unicons/database.svg'); - cacheItem(u1049, 'unicons/document-info.svg'); - cacheItem(u1050, 'unicons/download-alt.svg'); - cacheItem(u1051, 'unicons/draggabledots.svg'); - cacheItem(u1052, 'unicons/edit.svg'); - cacheItem(u1053, 'unicons/ellipsis-v.svg'); - cacheItem(u1054, 'unicons/envelope.svg'); - cacheItem(u1055, 'unicons/exchange-alt.svg'); - cacheItem(u1056, 'unicons/exclamation-triangle.svg'); - cacheItem(u1057, 'unicons/external-link-alt.svg'); - cacheItem(u1058, 'unicons/eye.svg'); - cacheItem(u1059, 'unicons/eye-slash.svg'); - cacheItem(u1060, 'unicons/file-alt.svg'); - cacheItem(u1061, 'unicons/file-blank.svg'); - cacheItem(u1062, 'unicons/filter.svg'); - cacheItem(u1063, 'unicons/folder.svg'); - cacheItem(u1064, 'unicons/folder-open.svg'); - cacheItem(u1065, 'unicons/folder-plus.svg'); - cacheItem(u1066, 'unicons/folder-upload.svg'); - cacheItem(u1067, 'unicons/forward.svg'); - cacheItem(u1068, 'unicons/graph-bar.svg'); - cacheItem(u1069, 'unicons/history.svg'); - cacheItem(u1070, 'unicons/home-alt.svg'); - cacheItem(u1071, 'unicons/import.svg'); - cacheItem(u1072, 'unicons/info.svg'); - cacheItem(u1073, 'unicons/info-circle.svg'); - cacheItem(u1074, 'unicons/key-skeleton-alt.svg'); - cacheItem(u1075, 'unicons/keyboard.svg'); - cacheItem(u1076, 'unicons/link.svg'); - cacheItem(u1077, 'unicons/list-ul.svg'); - cacheItem(u1078, 'unicons/lock.svg'); - cacheItem(u1079, 'unicons/minus.svg'); - cacheItem(u1080, 'unicons/minus-circle.svg'); - cacheItem(u1081, 'unicons/mobile-android.svg'); - cacheItem(u1082, 'unicons/monitor.svg'); - cacheItem(u1083, 'unicons/pause.svg'); - cacheItem(u1084, 'unicons/pen.svg'); - cacheItem(u1085, 'unicons/play.svg'); - cacheItem(u1086, 'unicons/plug.svg'); - cacheItem(u1087, 'unicons/plus.svg'); - cacheItem(u1088, 'unicons/plus-circle.svg'); - cacheItem(u1089, 'unicons/power.svg'); - cacheItem(u1090, 'unicons/presentation-play.svg'); - cacheItem(u1091, 'unicons/process.svg'); - cacheItem(u1092, 'unicons/question-circle.svg'); - cacheItem(u1093, 'unicons/repeat.svg'); - cacheItem(u1094, 'unicons/rocket.svg'); - cacheItem(u1095, 'unicons/save.svg'); - cacheItem(u1096, 'unicons/search.svg'); - cacheItem(u1097, 'unicons/search-minus.svg'); - cacheItem(u1098, 'unicons/search-plus.svg'); - cacheItem(u1099, 'unicons/share-alt.svg'); - cacheItem(u1100, 'unicons/shield.svg'); - cacheItem(u1101, 'unicons/signal.svg'); - cacheItem(u1102, 'unicons/signin.svg'); - cacheItem(u1103, 'unicons/signout.svg'); - cacheItem(u1104, 'unicons/sitemap.svg'); - cacheItem(u1105, 'unicons/slack.svg'); - cacheItem(u1106, 'unicons/sliders-v-alt.svg'); - cacheItem(u1107, 'unicons/sort-amount-down.svg'); - cacheItem(u1108, 'unicons/sort-amount-up.svg'); - cacheItem(u1109, 'unicons/square-shape.svg'); - cacheItem(u1110, 'unicons/star.svg'); - cacheItem(u1111, 'unicons/step-backward.svg'); - cacheItem(u1112, 'unicons/sync.svg'); - cacheItem(u1113, 'unicons/table.svg'); - cacheItem(u1114, 'unicons/tag-alt.svg'); - cacheItem(u1115, 'unicons/times.svg'); - cacheItem(u1116, 'unicons/trash-alt.svg'); - cacheItem(u1117, 'unicons/unlock.svg'); - cacheItem(u1118, 'unicons/upload.svg'); - cacheItem(u1119, 'unicons/user.svg'); - cacheItem(u1120, 'unicons/users-alt.svg'); - cacheItem(u1121, 'unicons/wrap-text.svg'); - cacheItem(u1122, 'unicons/cloud-upload.svg'); - cacheItem(u1123, 'unicons/credit-card.svg'); - cacheItem(u1124, 'unicons/file-copy-alt.svg'); - cacheItem(u1125, 'unicons/fire.svg'); - cacheItem(u1126, 'unicons/hourglass.svg'); - cacheItem(u1127, 'unicons/layer-group.svg'); - cacheItem(u1128, 'unicons/line-alt.svg'); - cacheItem(u1129, 'unicons/list-ui-alt.svg'); - cacheItem(u1130, 'unicons/message.svg'); - cacheItem(u1131, 'unicons/palette.svg'); - cacheItem(u1132, 'unicons/percentage.svg'); - cacheItem(u1133, 'unicons/shield-exclamation.svg'); - cacheItem(u1134, 'unicons/plus-square.svg'); - cacheItem(u1135, 'unicons/x.svg'); - cacheItem(u1136, 'unicons/capture.svg'); - cacheItem(u1137, 'custom/gf-grid.svg'); - cacheItem(u1138, 'custom/gf-landscape.svg'); - cacheItem(u1139, 'custom/gf-layout-simple.svg'); - cacheItem(u1140, 'custom/gf-portrait.svg'); - cacheItem(u1141, 'custom/gf-bar-alignment-after.svg'); - cacheItem(u1142, 'custom/gf-bar-alignment-before.svg'); - cacheItem(u1143, 'custom/gf-bar-alignment-center.svg'); - cacheItem(u1144, 'custom/gf-interpolation-linear.svg'); - cacheItem(u1145, 'custom/gf-interpolation-smooth.svg'); - cacheItem(u1146, 'custom/gf-interpolation-step-after.svg'); - cacheItem(u1147, 'custom/gf-interpolation-step-before.svg'); - cacheItem(u1148, 'custom/gf-logs.svg'); - cacheItem(u1149, 'mono/favorite.svg'); - cacheItem(u1150, 'mono/grafana.svg'); - cacheItem(u1151, 'mono/heart.svg'); - cacheItem(u1152, 'mono/heart-break.svg'); - cacheItem(u1153, 'mono/panel-add.svg'); - cacheItem(u1154, 'mono/library-panel.svg'); - cacheItem(u1155, 'unicons/record-audio.svg'); - cacheItem(u1156, 'unicons/horizontal-align-left.svg'); - cacheItem(u1157, 'unicons/horizontal-align-right.svg'); - cacheItem(u1158, 'unicons/horizontal-align-center.svg'); - cacheItem(u1159, 'unicons/vertical-align-top.svg'); - cacheItem(u1160, 'unicons/vertical-align-bottom.svg'); - cacheItem(u1161, 'unicons/vertical-align-center.svg'); + + // do not edit this list directly + // the list of icons live here: @grafana/ui/components/Icon/cached.json + cacheItem(u1000, 'unicons/angle-double-down.svg'); + cacheItem(u1001, 'unicons/angle-double-right.svg'); + cacheItem(u1002, 'unicons/angle-down.svg'); + cacheItem(u1003, 'unicons/angle-left.svg'); + cacheItem(u1004, 'unicons/angle-right.svg'); + cacheItem(u1005, 'unicons/angle-up.svg'); + cacheItem(u1006, 'unicons/apps.svg'); + cacheItem(u1007, 'unicons/arrow.svg'); + cacheItem(u1008, 'unicons/arrow-down.svg'); + cacheItem(u1009, 'unicons/arrow-from-right.svg'); + cacheItem(u1010, 'unicons/arrow-left.svg'); + cacheItem(u1011, 'unicons/arrow-random.svg'); + cacheItem(u1012, 'unicons/arrow-right.svg'); + cacheItem(u1013, 'unicons/arrow-up.svg'); + cacheItem(u1014, 'unicons/arrows-h.svg'); + cacheItem(u1015, 'unicons/backward.svg'); + cacheItem(u1016, 'unicons/bars.svg'); + cacheItem(u1017, 'unicons/bell.svg'); + cacheItem(u1018, 'unicons/bell-slash.svg'); + cacheItem(u1019, 'unicons/bolt.svg'); + cacheItem(u1020, 'unicons/book.svg'); + cacheItem(u1021, 'unicons/book-open.svg'); + cacheItem(u1022, 'unicons/brackets-curly.svg'); + cacheItem(u1023, 'unicons/bug.svg'); + cacheItem(u1024, 'unicons/building.svg'); + cacheItem(u1025, 'unicons/calculator-alt.svg'); + cacheItem(u1026, 'unicons/calendar-alt.svg'); + cacheItem(u1027, 'unicons/camera.svg'); + cacheItem(u1028, 'unicons/channel-add.svg'); + cacheItem(u1029, 'unicons/chart-line.svg'); + cacheItem(u1030, 'unicons/check.svg'); + cacheItem(u1031, 'unicons/check-circle.svg'); + cacheItem(u1032, 'unicons/circle.svg'); + cacheItem(u1033, 'unicons/clipboard-alt.svg'); + cacheItem(u1034, 'unicons/clock-nine.svg'); + cacheItem(u1035, 'unicons/cloud.svg'); + cacheItem(u1036, 'unicons/cloud-download.svg'); + cacheItem(u1037, 'unicons/code-branch.svg'); + cacheItem(u1038, 'unicons/cog.svg'); + cacheItem(u1039, 'unicons/columns.svg'); + cacheItem(u1040, 'unicons/comment-alt.svg'); + cacheItem(u1041, 'unicons/comment-alt-share.svg'); + cacheItem(u1042, 'unicons/comments-alt.svg'); + cacheItem(u1043, 'unicons/compass.svg'); + cacheItem(u1044, 'unicons/copy.svg'); + cacheItem(u1045, 'unicons/cube.svg'); + cacheItem(u1046, 'unicons/dashboard.svg'); + cacheItem(u1047, 'unicons/database.svg'); + cacheItem(u1048, 'unicons/document-info.svg'); + cacheItem(u1049, 'unicons/download-alt.svg'); + cacheItem(u1050, 'unicons/draggabledots.svg'); + cacheItem(u1051, 'unicons/edit.svg'); + cacheItem(u1052, 'unicons/ellipsis-v.svg'); + cacheItem(u1053, 'unicons/envelope.svg'); + cacheItem(u1054, 'unicons/exchange-alt.svg'); + cacheItem(u1055, 'unicons/exclamation-triangle.svg'); + cacheItem(u1056, 'unicons/external-link-alt.svg'); + cacheItem(u1057, 'unicons/eye.svg'); + cacheItem(u1058, 'unicons/eye-slash.svg'); + cacheItem(u1059, 'unicons/file-alt.svg'); + cacheItem(u1060, 'unicons/file-blank.svg'); + cacheItem(u1061, 'unicons/filter.svg'); + cacheItem(u1062, 'unicons/folder.svg'); + cacheItem(u1063, 'unicons/folder-open.svg'); + cacheItem(u1064, 'unicons/folder-plus.svg'); + cacheItem(u1065, 'unicons/folder-upload.svg'); + cacheItem(u1066, 'unicons/forward.svg'); + cacheItem(u1067, 'unicons/graph-bar.svg'); + cacheItem(u1068, 'unicons/history.svg'); + cacheItem(u1069, 'unicons/home-alt.svg'); + cacheItem(u1070, 'unicons/import.svg'); + cacheItem(u1071, 'unicons/info.svg'); + cacheItem(u1072, 'unicons/info-circle.svg'); + cacheItem(u1073, 'unicons/key-skeleton-alt.svg'); + cacheItem(u1074, 'unicons/keyboard.svg'); + cacheItem(u1075, 'unicons/link.svg'); + cacheItem(u1076, 'unicons/list-ul.svg'); + cacheItem(u1077, 'unicons/lock.svg'); + cacheItem(u1078, 'unicons/minus.svg'); + cacheItem(u1079, 'unicons/minus-circle.svg'); + cacheItem(u1080, 'unicons/mobile-android.svg'); + cacheItem(u1081, 'unicons/monitor.svg'); + cacheItem(u1082, 'unicons/pause.svg'); + cacheItem(u1083, 'unicons/pen.svg'); + cacheItem(u1084, 'unicons/play.svg'); + cacheItem(u1085, 'unicons/plug.svg'); + cacheItem(u1086, 'unicons/plus.svg'); + cacheItem(u1087, 'unicons/plus-circle.svg'); + cacheItem(u1088, 'unicons/power.svg'); + cacheItem(u1089, 'unicons/presentation-play.svg'); + cacheItem(u1090, 'unicons/process.svg'); + cacheItem(u1091, 'unicons/question-circle.svg'); + cacheItem(u1092, 'unicons/repeat.svg'); + cacheItem(u1093, 'unicons/rocket.svg'); + cacheItem(u1094, 'unicons/save.svg'); + cacheItem(u1095, 'unicons/search.svg'); + cacheItem(u1096, 'unicons/search-minus.svg'); + cacheItem(u1097, 'unicons/search-plus.svg'); + cacheItem(u1098, 'unicons/share-alt.svg'); + cacheItem(u1099, 'unicons/shield.svg'); + cacheItem(u1100, 'unicons/signal.svg'); + cacheItem(u1101, 'unicons/signin.svg'); + cacheItem(u1102, 'unicons/signout.svg'); + cacheItem(u1103, 'unicons/sitemap.svg'); + cacheItem(u1104, 'unicons/slack.svg'); + cacheItem(u1105, 'unicons/sliders-v-alt.svg'); + cacheItem(u1106, 'unicons/sort-amount-down.svg'); + cacheItem(u1107, 'unicons/sort-amount-up.svg'); + cacheItem(u1108, 'unicons/square-shape.svg'); + cacheItem(u1109, 'unicons/star.svg'); + cacheItem(u1110, 'unicons/step-backward.svg'); + cacheItem(u1111, 'unicons/sync.svg'); + cacheItem(u1112, 'unicons/table.svg'); + cacheItem(u1113, 'unicons/tag-alt.svg'); + cacheItem(u1114, 'unicons/times.svg'); + cacheItem(u1115, 'unicons/trash-alt.svg'); + cacheItem(u1116, 'unicons/unlock.svg'); + cacheItem(u1117, 'unicons/upload.svg'); + cacheItem(u1118, 'unicons/user.svg'); + cacheItem(u1119, 'unicons/users-alt.svg'); + cacheItem(u1120, 'unicons/wrap-text.svg'); + cacheItem(u1121, 'unicons/cloud-upload.svg'); + cacheItem(u1122, 'unicons/credit-card.svg'); + cacheItem(u1123, 'unicons/file-copy-alt.svg'); + cacheItem(u1124, 'unicons/fire.svg'); + cacheItem(u1125, 'unicons/hourglass.svg'); + cacheItem(u1126, 'unicons/layer-group.svg'); + cacheItem(u1127, 'unicons/line-alt.svg'); + cacheItem(u1128, 'unicons/list-ui-alt.svg'); + cacheItem(u1129, 'unicons/message.svg'); + cacheItem(u1130, 'unicons/palette.svg'); + cacheItem(u1131, 'unicons/percentage.svg'); + cacheItem(u1132, 'unicons/shield-exclamation.svg'); + cacheItem(u1133, 'unicons/plus-square.svg'); + cacheItem(u1134, 'unicons/x.svg'); + cacheItem(u1135, 'unicons/capture.svg'); + cacheItem(u1136, 'custom/gf-grid.svg'); + cacheItem(u1137, 'custom/gf-landscape.svg'); + cacheItem(u1138, 'custom/gf-layout-simple.svg'); + cacheItem(u1139, 'custom/gf-portrait.svg'); + cacheItem(u1140, 'custom/gf-bar-alignment-after.svg'); + cacheItem(u1141, 'custom/gf-bar-alignment-before.svg'); + cacheItem(u1142, 'custom/gf-bar-alignment-center.svg'); + cacheItem(u1143, 'custom/gf-interpolation-linear.svg'); + cacheItem(u1144, 'custom/gf-interpolation-smooth.svg'); + cacheItem(u1145, 'custom/gf-interpolation-step-after.svg'); + cacheItem(u1146, 'custom/gf-interpolation-step-before.svg'); + cacheItem(u1147, 'custom/gf-logs.svg'); + cacheItem(u1148, 'mono/favorite.svg'); + cacheItem(u1149, 'mono/grafana.svg'); + cacheItem(u1150, 'mono/heart.svg'); + cacheItem(u1151, 'mono/heart-break.svg'); + cacheItem(u1152, 'mono/panel-add.svg'); + cacheItem(u1153, 'mono/library-panel.svg'); + cacheItem(u1154, 'unicons/record-audio.svg'); + // do not edit this list directly + // the list of icons live here: @grafana/ui/components/Icon/cached.json } diff --git a/packages/grafana-ui/src/components/Icon/iconBundle.ts.template b/packages/grafana-ui/src/components/Icon/iconBundle.ts.template new file mode 100644 index 00000000000..947387ba9cc --- /dev/null +++ b/packages/grafana-ui/src/components/Icon/iconBundle.ts.template @@ -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 +} diff --git a/public/img/icons/.gitignore b/public/img/icons/.gitignore deleted file mode 100644 index 1969881b163..00000000000 --- a/public/img/icons/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# unicons and solid folders are imported via webpack -# https://github.com/Iconscout/unicons/tarball/d0859416ab8d8e60dcfa1c0b50716874fcf11778 -unicons -solid diff --git a/public/img/icons/solid/LICENSE_APACHE2 b/public/img/icons/solid/LICENSE_APACHE2 new file mode 100644 index 00000000000..373dde574a0 --- /dev/null +++ b/public/img/icons/solid/LICENSE_APACHE2 @@ -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. diff --git a/public/img/icons/solid/NOTICE.txt b/public/img/icons/solid/NOTICE.txt new file mode 100644 index 00000000000..c61a84d0990 --- /dev/null +++ b/public/img/icons/solid/NOTICE.txt @@ -0,0 +1,2 @@ +The icons contained in this solid icons folder were originally created +by [IconScout](https://github.com/Iconscout/unicons) diff --git a/public/img/icons/solid/airplay.svg b/public/img/icons/solid/airplay.svg new file mode 100644 index 00000000000..1e5591a4eec --- /dev/null +++ b/public/img/icons/solid/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-alt.svg b/public/img/icons/solid/align-alt.svg new file mode 100644 index 00000000000..8e4bbed8658 --- /dev/null +++ b/public/img/icons/solid/align-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-center-justify.svg b/public/img/icons/solid/align-center-justify.svg new file mode 100644 index 00000000000..1cbbfcdfd92 --- /dev/null +++ b/public/img/icons/solid/align-center-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-center.svg b/public/img/icons/solid/align-center.svg new file mode 100644 index 00000000000..131e6a6ec27 --- /dev/null +++ b/public/img/icons/solid/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-justify.svg b/public/img/icons/solid/align-justify.svg new file mode 100644 index 00000000000..9da41bb1950 --- /dev/null +++ b/public/img/icons/solid/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-left-justify.svg b/public/img/icons/solid/align-left-justify.svg new file mode 100644 index 00000000000..d700bf2f095 --- /dev/null +++ b/public/img/icons/solid/align-left-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-left.svg b/public/img/icons/solid/align-left.svg new file mode 100644 index 00000000000..61a006e4fe9 --- /dev/null +++ b/public/img/icons/solid/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-letter-right.svg b/public/img/icons/solid/align-letter-right.svg new file mode 100644 index 00000000000..e107058e110 --- /dev/null +++ b/public/img/icons/solid/align-letter-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-right-justify.svg b/public/img/icons/solid/align-right-justify.svg new file mode 100644 index 00000000000..8e5aa55d1fb --- /dev/null +++ b/public/img/icons/solid/align-right-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/align-right.svg b/public/img/icons/solid/align-right.svg new file mode 100644 index 00000000000..4afd6675053 --- /dev/null +++ b/public/img/icons/solid/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/analysis.svg b/public/img/icons/solid/analysis.svg new file mode 100644 index 00000000000..0782b57db2f --- /dev/null +++ b/public/img/icons/solid/analysis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/analytics.svg b/public/img/icons/solid/analytics.svg new file mode 100644 index 00000000000..760e60c9989 --- /dev/null +++ b/public/img/icons/solid/analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/anchor.svg b/public/img/icons/solid/anchor.svg new file mode 100644 index 00000000000..8dd4f23da46 --- /dev/null +++ b/public/img/icons/solid/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-double-down.svg b/public/img/icons/solid/angle-double-down.svg new file mode 100644 index 00000000000..3b3210c3ef0 --- /dev/null +++ b/public/img/icons/solid/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-double-left.svg b/public/img/icons/solid/angle-double-left.svg new file mode 100644 index 00000000000..7e64106e660 --- /dev/null +++ b/public/img/icons/solid/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-double-right.svg b/public/img/icons/solid/angle-double-right.svg new file mode 100644 index 00000000000..f47f85150c4 --- /dev/null +++ b/public/img/icons/solid/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-double-up.svg b/public/img/icons/solid/angle-double-up.svg new file mode 100644 index 00000000000..fdbe2fc0079 --- /dev/null +++ b/public/img/icons/solid/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-down.svg b/public/img/icons/solid/angle-down.svg new file mode 100644 index 00000000000..6a9d706bf77 --- /dev/null +++ b/public/img/icons/solid/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-left.svg b/public/img/icons/solid/angle-left.svg new file mode 100644 index 00000000000..0c061adcc6b --- /dev/null +++ b/public/img/icons/solid/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-right-b.svg b/public/img/icons/solid/angle-right-b.svg new file mode 100644 index 00000000000..ae0f35ec9f9 --- /dev/null +++ b/public/img/icons/solid/angle-right-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-right.svg b/public/img/icons/solid/angle-right.svg new file mode 100644 index 00000000000..5751cbe33c7 --- /dev/null +++ b/public/img/icons/solid/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/angle-up.svg b/public/img/icons/solid/angle-up.svg new file mode 100644 index 00000000000..f85b9839d40 --- /dev/null +++ b/public/img/icons/solid/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/apps.svg b/public/img/icons/solid/apps.svg new file mode 100644 index 00000000000..76956206a74 --- /dev/null +++ b/public/img/icons/solid/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-circle-down.svg b/public/img/icons/solid/arrow-circle-down.svg new file mode 100644 index 00000000000..d22d6b05de5 --- /dev/null +++ b/public/img/icons/solid/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-circle-left.svg b/public/img/icons/solid/arrow-circle-left.svg new file mode 100644 index 00000000000..3beb5dbbac3 --- /dev/null +++ b/public/img/icons/solid/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-circle-right.svg b/public/img/icons/solid/arrow-circle-right.svg new file mode 100644 index 00000000000..dba3a3f90a6 --- /dev/null +++ b/public/img/icons/solid/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-circle-up.svg b/public/img/icons/solid/arrow-circle-up.svg new file mode 100644 index 00000000000..88a149905ab --- /dev/null +++ b/public/img/icons/solid/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-down-left.svg b/public/img/icons/solid/arrow-down-left.svg new file mode 100644 index 00000000000..64ed50cf634 --- /dev/null +++ b/public/img/icons/solid/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-down-right.svg b/public/img/icons/solid/arrow-down-right.svg new file mode 100644 index 00000000000..d8332451a28 --- /dev/null +++ b/public/img/icons/solid/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-up-left.svg b/public/img/icons/solid/arrow-up-left.svg new file mode 100644 index 00000000000..0c450450367 --- /dev/null +++ b/public/img/icons/solid/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/arrow-up-right.svg b/public/img/icons/solid/arrow-up-right.svg new file mode 100644 index 00000000000..6574fe26440 --- /dev/null +++ b/public/img/icons/solid/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/at.svg b/public/img/icons/solid/at.svg new file mode 100644 index 00000000000..2957f916fb0 --- /dev/null +++ b/public/img/icons/solid/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/bag.svg b/public/img/icons/solid/bag.svg new file mode 100644 index 00000000000..7d72e9bf56b --- /dev/null +++ b/public/img/icons/solid/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/bars.svg b/public/img/icons/solid/bars.svg new file mode 100644 index 00000000000..a0410b75671 --- /dev/null +++ b/public/img/icons/solid/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/battery-bolt.svg b/public/img/icons/solid/battery-bolt.svg new file mode 100644 index 00000000000..2a863b07f83 --- /dev/null +++ b/public/img/icons/solid/battery-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/battery-empty.svg b/public/img/icons/solid/battery-empty.svg new file mode 100644 index 00000000000..288270aa187 --- /dev/null +++ b/public/img/icons/solid/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/bookmark.svg b/public/img/icons/solid/bookmark.svg new file mode 100644 index 00000000000..edf1cf5ed1c --- /dev/null +++ b/public/img/icons/solid/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-alt.svg b/public/img/icons/solid/border-alt.svg new file mode 100644 index 00000000000..3cd6ece37bd --- /dev/null +++ b/public/img/icons/solid/border-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-bottom.svg b/public/img/icons/solid/border-bottom.svg new file mode 100644 index 00000000000..13365636238 --- /dev/null +++ b/public/img/icons/solid/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-clear.svg b/public/img/icons/solid/border-clear.svg new file mode 100644 index 00000000000..c6ee138033b --- /dev/null +++ b/public/img/icons/solid/border-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-horizontal.svg b/public/img/icons/solid/border-horizontal.svg new file mode 100644 index 00000000000..01512df9e46 --- /dev/null +++ b/public/img/icons/solid/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-inner.svg b/public/img/icons/solid/border-inner.svg new file mode 100644 index 00000000000..e228030445b --- /dev/null +++ b/public/img/icons/solid/border-inner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-left.svg b/public/img/icons/solid/border-left.svg new file mode 100644 index 00000000000..cb7927e5399 --- /dev/null +++ b/public/img/icons/solid/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-out.svg b/public/img/icons/solid/border-out.svg new file mode 100644 index 00000000000..b473abe655b --- /dev/null +++ b/public/img/icons/solid/border-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-right.svg b/public/img/icons/solid/border-right.svg new file mode 100644 index 00000000000..eba9f4e7171 --- /dev/null +++ b/public/img/icons/solid/border-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-top.svg b/public/img/icons/solid/border-top.svg new file mode 100644 index 00000000000..c2e13d81fdd --- /dev/null +++ b/public/img/icons/solid/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/border-vertical.svg b/public/img/icons/solid/border-vertical.svg new file mode 100644 index 00000000000..86ea8cf971d --- /dev/null +++ b/public/img/icons/solid/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/briefcase.svg b/public/img/icons/solid/briefcase.svg new file mode 100644 index 00000000000..598e171168b --- /dev/null +++ b/public/img/icons/solid/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/calender.svg b/public/img/icons/solid/calender.svg new file mode 100644 index 00000000000..7e2f17ea522 --- /dev/null +++ b/public/img/icons/solid/calender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/chart-pie.svg b/public/img/icons/solid/chart-pie.svg new file mode 100644 index 00000000000..f8d3be4e8e3 --- /dev/null +++ b/public/img/icons/solid/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/chart.svg b/public/img/icons/solid/chart.svg new file mode 100644 index 00000000000..2f164ca4ba8 --- /dev/null +++ b/public/img/icons/solid/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/check-circle.svg b/public/img/icons/solid/check-circle.svg new file mode 100644 index 00000000000..bf8eaa1d6e7 --- /dev/null +++ b/public/img/icons/solid/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/check-square.svg b/public/img/icons/solid/check-square.svg new file mode 100644 index 00000000000..04ae667d8e3 --- /dev/null +++ b/public/img/icons/solid/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/check.svg b/public/img/icons/solid/check.svg new file mode 100644 index 00000000000..1df5f7a3b5a --- /dev/null +++ b/public/img/icons/solid/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/circle-layer.svg b/public/img/icons/solid/circle-layer.svg new file mode 100644 index 00000000000..352440e5ca1 --- /dev/null +++ b/public/img/icons/solid/circle-layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clinic-medical.svg b/public/img/icons/solid/clinic-medical.svg new file mode 100644 index 00000000000..8e0b29b17cd --- /dev/null +++ b/public/img/icons/solid/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-eight.svg b/public/img/icons/solid/clock-eight.svg new file mode 100644 index 00000000000..8fba03c1bbb --- /dev/null +++ b/public/img/icons/solid/clock-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-five.svg b/public/img/icons/solid/clock-five.svg new file mode 100644 index 00000000000..adb7627953c --- /dev/null +++ b/public/img/icons/solid/clock-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-nine.svg b/public/img/icons/solid/clock-nine.svg new file mode 100644 index 00000000000..0994077d1ae --- /dev/null +++ b/public/img/icons/solid/clock-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-seven.svg b/public/img/icons/solid/clock-seven.svg new file mode 100644 index 00000000000..26df9ede82a --- /dev/null +++ b/public/img/icons/solid/clock-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-ten.svg b/public/img/icons/solid/clock-ten.svg new file mode 100644 index 00000000000..1d7ac11d319 --- /dev/null +++ b/public/img/icons/solid/clock-ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-three.svg b/public/img/icons/solid/clock-three.svg new file mode 100644 index 00000000000..03589294c33 --- /dev/null +++ b/public/img/icons/solid/clock-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock-two.svg b/public/img/icons/solid/clock-two.svg new file mode 100644 index 00000000000..0a2a5762126 --- /dev/null +++ b/public/img/icons/solid/clock-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/clock.svg b/public/img/icons/solid/clock.svg new file mode 100644 index 00000000000..5c7626e8c01 --- /dev/null +++ b/public/img/icons/solid/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/columns.svg b/public/img/icons/solid/columns.svg new file mode 100644 index 00000000000..7d9096e90fd --- /dev/null +++ b/public/img/icons/solid/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/comment-dots.svg b/public/img/icons/solid/comment-dots.svg new file mode 100644 index 00000000000..90e4d5be9eb --- /dev/null +++ b/public/img/icons/solid/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/compress.svg b/public/img/icons/solid/compress.svg new file mode 100644 index 00000000000..f2427e1583b --- /dev/null +++ b/public/img/icons/solid/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/corner-down-left.svg b/public/img/icons/solid/corner-down-left.svg new file mode 100644 index 00000000000..95c66bbe6f4 --- /dev/null +++ b/public/img/icons/solid/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/corner-down-right.svg b/public/img/icons/solid/corner-down-right.svg new file mode 100644 index 00000000000..611b2182787 --- /dev/null +++ b/public/img/icons/solid/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/corner-left-down.svg b/public/img/icons/solid/corner-left-down.svg new file mode 100644 index 00000000000..6e244a92256 --- /dev/null +++ b/public/img/icons/solid/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/corner-right-down.svg b/public/img/icons/solid/corner-right-down.svg new file mode 100644 index 00000000000..cf96949792f --- /dev/null +++ b/public/img/icons/solid/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/corner-up-left.svg b/public/img/icons/solid/corner-up-left.svg new file mode 100644 index 00000000000..b38e35d23fe --- /dev/null +++ b/public/img/icons/solid/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/corner-up-right.svg b/public/img/icons/solid/corner-up-right.svg new file mode 100644 index 00000000000..f2f3d84175b --- /dev/null +++ b/public/img/icons/solid/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/coronavirus.svg b/public/img/icons/solid/coronavirus.svg new file mode 100644 index 00000000000..00862e79653 --- /dev/null +++ b/public/img/icons/solid/coronavirus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/dialpad.svg b/public/img/icons/solid/dialpad.svg new file mode 100644 index 00000000000..f0b0e17b56f --- /dev/null +++ b/public/img/icons/solid/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/direction.svg b/public/img/icons/solid/direction.svg new file mode 100644 index 00000000000..1fec5b3eb0e --- /dev/null +++ b/public/img/icons/solid/direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/document-layout-center.svg b/public/img/icons/solid/document-layout-center.svg new file mode 100644 index 00000000000..1130088c8a0 --- /dev/null +++ b/public/img/icons/solid/document-layout-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/document-layout-left.svg b/public/img/icons/solid/document-layout-left.svg new file mode 100644 index 00000000000..3986fc4bee2 --- /dev/null +++ b/public/img/icons/solid/document-layout-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/document-layout-right.svg b/public/img/icons/solid/document-layout-right.svg new file mode 100644 index 00000000000..0bd1f49f83a --- /dev/null +++ b/public/img/icons/solid/document-layout-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/download-alt.svg b/public/img/icons/solid/download-alt.svg new file mode 100644 index 00000000000..7aca3e5f44f --- /dev/null +++ b/public/img/icons/solid/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/ellipsis-h.svg b/public/img/icons/solid/ellipsis-h.svg new file mode 100644 index 00000000000..3d494bbd5ec --- /dev/null +++ b/public/img/icons/solid/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/ellipsis-v.svg b/public/img/icons/solid/ellipsis-v.svg new file mode 100644 index 00000000000..137102a8398 --- /dev/null +++ b/public/img/icons/solid/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/exclamation-circle.svg b/public/img/icons/solid/exclamation-circle.svg new file mode 100644 index 00000000000..bcc362604db --- /dev/null +++ b/public/img/icons/solid/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/exclamation-octagon.svg b/public/img/icons/solid/exclamation-octagon.svg new file mode 100644 index 00000000000..8d51600dacc --- /dev/null +++ b/public/img/icons/solid/exclamation-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/exclamation-triangle.svg b/public/img/icons/solid/exclamation-triangle.svg new file mode 100644 index 00000000000..d0c7ea03eaf --- /dev/null +++ b/public/img/icons/solid/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/favorite.svg b/public/img/icons/solid/favorite.svg new file mode 100644 index 00000000000..c2c10760310 --- /dev/null +++ b/public/img/icons/solid/favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/flip-h-alt.svg b/public/img/icons/solid/flip-h-alt.svg new file mode 100644 index 00000000000..584e6900437 --- /dev/null +++ b/public/img/icons/solid/flip-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/flip-h.svg b/public/img/icons/solid/flip-h.svg new file mode 100644 index 00000000000..ce7694e7d01 --- /dev/null +++ b/public/img/icons/solid/flip-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/flip-v-alt.svg b/public/img/icons/solid/flip-v-alt.svg new file mode 100644 index 00000000000..b416fb3507c --- /dev/null +++ b/public/img/icons/solid/flip-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/flip-v.svg b/public/img/icons/solid/flip-v.svg new file mode 100644 index 00000000000..979853d922c --- /dev/null +++ b/public/img/icons/solid/flip-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/graph-bar.svg b/public/img/icons/solid/graph-bar.svg new file mode 100644 index 00000000000..97d30e11354 --- /dev/null +++ b/public/img/icons/solid/graph-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/grid.svg b/public/img/icons/solid/grid.svg new file mode 100644 index 00000000000..29684c6f2db --- /dev/null +++ b/public/img/icons/solid/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/grids.svg b/public/img/icons/solid/grids.svg new file mode 100644 index 00000000000..5dd4ff86d50 --- /dev/null +++ b/public/img/icons/solid/grids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/grip-horizontal-line.svg b/public/img/icons/solid/grip-horizontal-line.svg new file mode 100644 index 00000000000..1745c9f1c8a --- /dev/null +++ b/public/img/icons/solid/grip-horizontal-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/head-side-cough.svg b/public/img/icons/solid/head-side-cough.svg new file mode 100644 index 00000000000..ceaacbcf1b4 --- /dev/null +++ b/public/img/icons/solid/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/head-side-mask.svg b/public/img/icons/solid/head-side-mask.svg new file mode 100644 index 00000000000..57be6292872 --- /dev/null +++ b/public/img/icons/solid/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/head-side.svg b/public/img/icons/solid/head-side.svg new file mode 100644 index 00000000000..978e0a2fd5a --- /dev/null +++ b/public/img/icons/solid/head-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/history-alt.svg b/public/img/icons/solid/history-alt.svg new file mode 100644 index 00000000000..36b36078c6a --- /dev/null +++ b/public/img/icons/solid/history-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/history.svg b/public/img/icons/solid/history.svg new file mode 100644 index 00000000000..939a4816355 --- /dev/null +++ b/public/img/icons/solid/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/horizontal-align-left.svg b/public/img/icons/solid/horizontal-align-left.svg new file mode 100644 index 00000000000..40d0d07f2d2 --- /dev/null +++ b/public/img/icons/solid/horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/hospital-square-sign.svg b/public/img/icons/solid/hospital-square-sign.svg new file mode 100644 index 00000000000..ba1a14d0b38 --- /dev/null +++ b/public/img/icons/solid/hospital-square-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/hospital-symbol.svg b/public/img/icons/solid/hospital-symbol.svg new file mode 100644 index 00000000000..0e4ea59fcd4 --- /dev/null +++ b/public/img/icons/solid/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/hospital.svg b/public/img/icons/solid/hospital.svg new file mode 100644 index 00000000000..cb0a52783ca --- /dev/null +++ b/public/img/icons/solid/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/house-user.svg b/public/img/icons/solid/house-user.svg new file mode 100644 index 00000000000..f412b5a3558 --- /dev/null +++ b/public/img/icons/solid/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/image-v.svg b/public/img/icons/solid/image-v.svg new file mode 100644 index 00000000000..0bf92fb9704 --- /dev/null +++ b/public/img/icons/solid/image-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/key-skeleton-alt.svg b/public/img/icons/solid/key-skeleton-alt.svg new file mode 100644 index 00000000000..b2e1c8e0cb3 --- /dev/null +++ b/public/img/icons/solid/key-skeleton-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/key-skeleton.svg b/public/img/icons/solid/key-skeleton.svg new file mode 100644 index 00000000000..64cc1fc267d --- /dev/null +++ b/public/img/icons/solid/key-skeleton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/keyhole-circle.svg b/public/img/icons/solid/keyhole-circle.svg new file mode 100644 index 00000000000..3f519ba01be --- /dev/null +++ b/public/img/icons/solid/keyhole-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/keyhole-square-full.svg b/public/img/icons/solid/keyhole-square-full.svg new file mode 100644 index 00000000000..76e6d3c6f3c --- /dev/null +++ b/public/img/icons/solid/keyhole-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/keyhole-square.svg b/public/img/icons/solid/keyhole-square.svg new file mode 100644 index 00000000000..bc9971510c8 --- /dev/null +++ b/public/img/icons/solid/keyhole-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/layer-group.svg b/public/img/icons/solid/layer-group.svg new file mode 100644 index 00000000000..44fbddc03b4 --- /dev/null +++ b/public/img/icons/solid/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/layers-alt.svg b/public/img/icons/solid/layers-alt.svg new file mode 100644 index 00000000000..99ea91f3af3 --- /dev/null +++ b/public/img/icons/solid/layers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/left-indent-alt.svg b/public/img/icons/solid/left-indent-alt.svg new file mode 100644 index 00000000000..9e6867db860 --- /dev/null +++ b/public/img/icons/solid/left-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/left-indent.svg b/public/img/icons/solid/left-indent.svg new file mode 100644 index 00000000000..1235786f8b3 --- /dev/null +++ b/public/img/icons/solid/left-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/line-spacing.svg b/public/img/icons/solid/line-spacing.svg new file mode 100644 index 00000000000..b209524a487 --- /dev/null +++ b/public/img/icons/solid/line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/link-h.svg b/public/img/icons/solid/link-h.svg new file mode 100644 index 00000000000..3ebf547cae8 --- /dev/null +++ b/public/img/icons/solid/link-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/list-ui-alt.svg b/public/img/icons/solid/list-ui-alt.svg new file mode 100644 index 00000000000..fc117a7a254 --- /dev/null +++ b/public/img/icons/solid/list-ui-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/list-ul.svg b/public/img/icons/solid/list-ul.svg new file mode 100644 index 00000000000..fa3fa6a2b44 --- /dev/null +++ b/public/img/icons/solid/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/lock-access.svg b/public/img/icons/solid/lock-access.svg new file mode 100644 index 00000000000..8145d57f708 --- /dev/null +++ b/public/img/icons/solid/lock-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/lock-alt.svg b/public/img/icons/solid/lock-alt.svg new file mode 100644 index 00000000000..62ed0532b2b --- /dev/null +++ b/public/img/icons/solid/lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/lock-open-alt.svg b/public/img/icons/solid/lock-open-alt.svg new file mode 100644 index 00000000000..991ba61968b --- /dev/null +++ b/public/img/icons/solid/lock-open-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/lock.svg b/public/img/icons/solid/lock.svg new file mode 100644 index 00000000000..7bd7408d518 --- /dev/null +++ b/public/img/icons/solid/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/microscope.svg b/public/img/icons/solid/microscope.svg new file mode 100644 index 00000000000..eb9c6ccddd6 --- /dev/null +++ b/public/img/icons/solid/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/minus-square-full.svg b/public/img/icons/solid/minus-square-full.svg new file mode 100644 index 00000000000..972903f8571 --- /dev/null +++ b/public/img/icons/solid/minus-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/multiply.svg b/public/img/icons/solid/multiply.svg new file mode 100644 index 00000000000..6ef5c96a8ce --- /dev/null +++ b/public/img/icons/solid/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/object-group.svg b/public/img/icons/solid/object-group.svg new file mode 100644 index 00000000000..206c04df0b9 --- /dev/null +++ b/public/img/icons/solid/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/object-ungroup.svg b/public/img/icons/solid/object-ungroup.svg new file mode 100644 index 00000000000..aa112262ac2 --- /dev/null +++ b/public/img/icons/solid/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/padlock.svg b/public/img/icons/solid/padlock.svg new file mode 100644 index 00000000000..aa633e7383f --- /dev/null +++ b/public/img/icons/solid/padlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/paperclip.svg b/public/img/icons/solid/paperclip.svg new file mode 100644 index 00000000000..3ab05fc2d1e --- /dev/null +++ b/public/img/icons/solid/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/paragraph.svg b/public/img/icons/solid/paragraph.svg new file mode 100644 index 00000000000..3b629b7891a --- /dev/null +++ b/public/img/icons/solid/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/pentagon.svg b/public/img/icons/solid/pentagon.svg new file mode 100644 index 00000000000..0db6ae8d901 --- /dev/null +++ b/public/img/icons/solid/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/polygon.svg b/public/img/icons/solid/polygon.svg new file mode 100644 index 00000000000..608b95191bd --- /dev/null +++ b/public/img/icons/solid/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/previous.svg b/public/img/icons/solid/previous.svg new file mode 100644 index 00000000000..fa78797d1c7 --- /dev/null +++ b/public/img/icons/solid/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/process.svg b/public/img/icons/solid/process.svg new file mode 100644 index 00000000000..5ee731eb1a5 --- /dev/null +++ b/public/img/icons/solid/process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/record-audio.svg b/public/img/icons/solid/record-audio.svg new file mode 100644 index 00000000000..87d54aa881e --- /dev/null +++ b/public/img/icons/solid/record-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/redo.svg b/public/img/icons/solid/redo.svg new file mode 100644 index 00000000000..0700cf74305 --- /dev/null +++ b/public/img/icons/solid/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/refresh.svg b/public/img/icons/solid/refresh.svg new file mode 100644 index 00000000000..f9eaf11bf27 --- /dev/null +++ b/public/img/icons/solid/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/repeat.svg b/public/img/icons/solid/repeat.svg new file mode 100644 index 00000000000..917188efb77 --- /dev/null +++ b/public/img/icons/solid/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/right-indent-alt.svg b/public/img/icons/solid/right-indent-alt.svg new file mode 100644 index 00000000000..f499353d1df --- /dev/null +++ b/public/img/icons/solid/right-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/right-indent.svg b/public/img/icons/solid/right-indent.svg new file mode 100644 index 00000000000..f90ec045865 --- /dev/null +++ b/public/img/icons/solid/right-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/rocket.svg b/public/img/icons/solid/rocket.svg new file mode 100644 index 00000000000..48ab020264c --- /dev/null +++ b/public/img/icons/solid/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/ruler-combined.svg b/public/img/icons/solid/ruler-combined.svg new file mode 100644 index 00000000000..f0cd52c67a9 --- /dev/null +++ b/public/img/icons/solid/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/ruler.svg b/public/img/icons/solid/ruler.svg new file mode 100644 index 00000000000..dd85fd4e179 --- /dev/null +++ b/public/img/icons/solid/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/sanitizer-alt.svg b/public/img/icons/solid/sanitizer-alt.svg new file mode 100644 index 00000000000..60f6bdf3e04 --- /dev/null +++ b/public/img/icons/solid/sanitizer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/sanitizer.svg b/public/img/icons/solid/sanitizer.svg new file mode 100644 index 00000000000..4d2949d4e13 --- /dev/null +++ b/public/img/icons/solid/sanitizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/scenery.svg b/public/img/icons/solid/scenery.svg new file mode 100644 index 00000000000..cf918194a69 --- /dev/null +++ b/public/img/icons/solid/scenery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/schedule.svg b/public/img/icons/solid/schedule.svg new file mode 100644 index 00000000000..11b95f64582 --- /dev/null +++ b/public/img/icons/solid/schedule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/shield-plus.svg b/public/img/icons/solid/shield-plus.svg new file mode 100644 index 00000000000..d56bc00da1f --- /dev/null +++ b/public/img/icons/solid/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/signal-alt-3.svg b/public/img/icons/solid/signal-alt-3.svg new file mode 100644 index 00000000000..1a1aaa3c635 --- /dev/null +++ b/public/img/icons/solid/signal-alt-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/signal-alt.svg b/public/img/icons/solid/signal-alt.svg new file mode 100644 index 00000000000..0df47465a28 --- /dev/null +++ b/public/img/icons/solid/signal-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/signout.svg b/public/img/icons/solid/signout.svg new file mode 100644 index 00000000000..8eeea860b1f --- /dev/null +++ b/public/img/icons/solid/signout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/social-distancing.svg b/public/img/icons/solid/social-distancing.svg new file mode 100644 index 00000000000..5e4a723258b --- /dev/null +++ b/public/img/icons/solid/social-distancing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/sorting.svg b/public/img/icons/solid/sorting.svg new file mode 100644 index 00000000000..c460d177f24 --- /dev/null +++ b/public/img/icons/solid/sorting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/space-key.svg b/public/img/icons/solid/space-key.svg new file mode 100644 index 00000000000..b59d3901c8b --- /dev/null +++ b/public/img/icons/solid/space-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/square-full.svg b/public/img/icons/solid/square-full.svg new file mode 100644 index 00000000000..0701ca0eb7c --- /dev/null +++ b/public/img/icons/solid/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/star-half-alt.svg b/public/img/icons/solid/star-half-alt.svg new file mode 100644 index 00000000000..70ed0816744 --- /dev/null +++ b/public/img/icons/solid/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/star.svg b/public/img/icons/solid/star.svg new file mode 100644 index 00000000000..7a1655b0786 --- /dev/null +++ b/public/img/icons/solid/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/step-forward.svg b/public/img/icons/solid/step-forward.svg new file mode 100644 index 00000000000..2ff51b61402 --- /dev/null +++ b/public/img/icons/solid/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/stethoscope-alt.svg b/public/img/icons/solid/stethoscope-alt.svg new file mode 100644 index 00000000000..9a8598f3e66 --- /dev/null +++ b/public/img/icons/solid/stethoscope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/stethoscope.svg b/public/img/icons/solid/stethoscope.svg new file mode 100644 index 00000000000..a933977b9b2 --- /dev/null +++ b/public/img/icons/solid/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/stopwatch.svg b/public/img/icons/solid/stopwatch.svg new file mode 100644 index 00000000000..7e888291e4c --- /dev/null +++ b/public/img/icons/solid/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/store-slash.svg b/public/img/icons/solid/store-slash.svg new file mode 100644 index 00000000000..f6175330782 --- /dev/null +++ b/public/img/icons/solid/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/subject.svg b/public/img/icons/solid/subject.svg new file mode 100644 index 00000000000..edf84361235 --- /dev/null +++ b/public/img/icons/solid/subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/sync-exclamation.svg b/public/img/icons/solid/sync-exclamation.svg new file mode 100644 index 00000000000..3457ed07fe7 --- /dev/null +++ b/public/img/icons/solid/sync-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/sync-slash.svg b/public/img/icons/solid/sync-slash.svg new file mode 100644 index 00000000000..cd9e93c6625 --- /dev/null +++ b/public/img/icons/solid/sync-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/table.svg b/public/img/icons/solid/table.svg new file mode 100644 index 00000000000..f2f5371bd5b --- /dev/null +++ b/public/img/icons/solid/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/th-large.svg b/public/img/icons/solid/th-large.svg new file mode 100644 index 00000000000..fe7e2a408a0 --- /dev/null +++ b/public/img/icons/solid/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/times-circle.svg b/public/img/icons/solid/times-circle.svg new file mode 100644 index 00000000000..dab3da6c8bc --- /dev/null +++ b/public/img/icons/solid/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/toggle-off.svg b/public/img/icons/solid/toggle-off.svg new file mode 100644 index 00000000000..99e1a9da6c9 --- /dev/null +++ b/public/img/icons/solid/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/toggle-on.svg b/public/img/icons/solid/toggle-on.svg new file mode 100644 index 00000000000..a2b034efcb0 --- /dev/null +++ b/public/img/icons/solid/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/toilet-paper.svg b/public/img/icons/solid/toilet-paper.svg new file mode 100644 index 00000000000..955af96719f --- /dev/null +++ b/public/img/icons/solid/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/triangle.svg b/public/img/icons/solid/triangle.svg new file mode 100644 index 00000000000..21fc1fd2d46 --- /dev/null +++ b/public/img/icons/solid/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/unlock-alt.svg b/public/img/icons/solid/unlock-alt.svg new file mode 100644 index 00000000000..adcef06835c --- /dev/null +++ b/public/img/icons/solid/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/unlock.svg b/public/img/icons/solid/unlock.svg new file mode 100644 index 00000000000..fec722f6733 --- /dev/null +++ b/public/img/icons/solid/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/upload-alt.svg b/public/img/icons/solid/upload-alt.svg new file mode 100644 index 00000000000..db768b9d983 --- /dev/null +++ b/public/img/icons/solid/upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/user-arrows.svg b/public/img/icons/solid/user-arrows.svg new file mode 100644 index 00000000000..3829ce14138 --- /dev/null +++ b/public/img/icons/solid/user-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/user-md.svg b/public/img/icons/solid/user-md.svg new file mode 100644 index 00000000000..961a8eae2d8 --- /dev/null +++ b/public/img/icons/solid/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/user-nurse.svg b/public/img/icons/solid/user-nurse.svg new file mode 100644 index 00000000000..b46dbcf0c41 --- /dev/null +++ b/public/img/icons/solid/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/vector-square-alt.svg b/public/img/icons/solid/vector-square-alt.svg new file mode 100644 index 00000000000..b1cba4e8ecf --- /dev/null +++ b/public/img/icons/solid/vector-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/vector-square.svg b/public/img/icons/solid/vector-square.svg new file mode 100644 index 00000000000..e436bd03d12 --- /dev/null +++ b/public/img/icons/solid/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/virus-slash.svg b/public/img/icons/solid/virus-slash.svg new file mode 100644 index 00000000000..2f75fe27efb --- /dev/null +++ b/public/img/icons/solid/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/web-grid-alt.svg b/public/img/icons/solid/web-grid-alt.svg new file mode 100644 index 00000000000..86bb03315bd --- /dev/null +++ b/public/img/icons/solid/web-grid-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/web-grid.svg b/public/img/icons/solid/web-grid.svg new file mode 100644 index 00000000000..3af017fb71d --- /dev/null +++ b/public/img/icons/solid/web-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/web-section-alt.svg b/public/img/icons/solid/web-section-alt.svg new file mode 100644 index 00000000000..6be291eed6d --- /dev/null +++ b/public/img/icons/solid/web-section-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/web-section.svg b/public/img/icons/solid/web-section.svg new file mode 100644 index 00000000000..efbcc79a5c5 --- /dev/null +++ b/public/img/icons/solid/web-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/window-grid.svg b/public/img/icons/solid/window-grid.svg new file mode 100644 index 00000000000..4a89697e31c --- /dev/null +++ b/public/img/icons/solid/window-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/window-maximize.svg b/public/img/icons/solid/window-maximize.svg new file mode 100644 index 00000000000..40cb46da204 --- /dev/null +++ b/public/img/icons/solid/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/window-section.svg b/public/img/icons/solid/window-section.svg new file mode 100644 index 00000000000..36cd59a5420 --- /dev/null +++ b/public/img/icons/solid/window-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/solid/wrap-text.svg b/public/img/icons/solid/wrap-text.svg new file mode 100644 index 00000000000..e6c06aa51b4 --- /dev/null +++ b/public/img/icons/solid/wrap-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/0-plus.svg b/public/img/icons/unicons/0-plus.svg new file mode 100644 index 00000000000..71660215928 --- /dev/null +++ b/public/img/icons/unicons/0-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/10-plus.svg b/public/img/icons/unicons/10-plus.svg new file mode 100644 index 00000000000..097acb9eefa --- /dev/null +++ b/public/img/icons/unicons/10-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/12-plus.svg b/public/img/icons/unicons/12-plus.svg new file mode 100644 index 00000000000..12ba8369f81 --- /dev/null +++ b/public/img/icons/unicons/12-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/13-plus.svg b/public/img/icons/unicons/13-plus.svg new file mode 100644 index 00000000000..9800eb103de --- /dev/null +++ b/public/img/icons/unicons/13-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/16-plus.svg b/public/img/icons/unicons/16-plus.svg new file mode 100644 index 00000000000..f94587a2754 --- /dev/null +++ b/public/img/icons/unicons/16-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/17-plus.svg b/public/img/icons/unicons/17-plus.svg new file mode 100644 index 00000000000..e737acc1b2a --- /dev/null +++ b/public/img/icons/unicons/17-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/18-plus.svg b/public/img/icons/unicons/18-plus.svg new file mode 100644 index 00000000000..6fc8aacdf6f --- /dev/null +++ b/public/img/icons/unicons/18-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/21-plus.svg b/public/img/icons/unicons/21-plus.svg new file mode 100644 index 00000000000..8de87603f11 --- /dev/null +++ b/public/img/icons/unicons/21-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/3-plus.svg b/public/img/icons/unicons/3-plus.svg new file mode 100644 index 00000000000..d9f0aa041bd --- /dev/null +++ b/public/img/icons/unicons/3-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/500px.svg b/public/img/icons/unicons/500px.svg new file mode 100644 index 00000000000..c5dc7d2baff --- /dev/null +++ b/public/img/icons/unicons/500px.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/6-plus.svg b/public/img/icons/unicons/6-plus.svg new file mode 100644 index 00000000000..fbb4d737d81 --- /dev/null +++ b/public/img/icons/unicons/6-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/LICENSE_APACHE2 b/public/img/icons/unicons/LICENSE_APACHE2 new file mode 100644 index 00000000000..373dde574a0 --- /dev/null +++ b/public/img/icons/unicons/LICENSE_APACHE2 @@ -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. diff --git a/public/img/icons/unicons/NOTICE.txt b/public/img/icons/unicons/NOTICE.txt new file mode 100644 index 00000000000..e003752ef9e --- /dev/null +++ b/public/img/icons/unicons/NOTICE.txt @@ -0,0 +1,2 @@ +The icons contained in this unicons icons folder were originally created +by [IconScout](https://github.com/Iconscout/unicons) diff --git a/public/img/icons/unicons/abacus.svg b/public/img/icons/unicons/abacus.svg new file mode 100644 index 00000000000..0fe7c0d4080 --- /dev/null +++ b/public/img/icons/unicons/abacus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/accessible-icon-alt.svg b/public/img/icons/unicons/accessible-icon-alt.svg new file mode 100644 index 00000000000..3dcd9ddd7dd --- /dev/null +++ b/public/img/icons/unicons/accessible-icon-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/adjust-alt.svg b/public/img/icons/unicons/adjust-alt.svg new file mode 100644 index 00000000000..aae7a24562a --- /dev/null +++ b/public/img/icons/unicons/adjust-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/adjust-circle.svg b/public/img/icons/unicons/adjust-circle.svg new file mode 100644 index 00000000000..9671174c42b --- /dev/null +++ b/public/img/icons/unicons/adjust-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/adjust-half.svg b/public/img/icons/unicons/adjust-half.svg new file mode 100644 index 00000000000..da7696b8b60 --- /dev/null +++ b/public/img/icons/unicons/adjust-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/adjust.svg b/public/img/icons/unicons/adjust.svg new file mode 100644 index 00000000000..25b87fd09de --- /dev/null +++ b/public/img/icons/unicons/adjust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/adobe-alt.svg b/public/img/icons/unicons/adobe-alt.svg new file mode 100644 index 00000000000..449fc067ece --- /dev/null +++ b/public/img/icons/unicons/adobe-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/adobe.svg b/public/img/icons/unicons/adobe.svg new file mode 100644 index 00000000000..ccf5c09f8b9 --- /dev/null +++ b/public/img/icons/unicons/adobe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/airplay.svg b/public/img/icons/unicons/airplay.svg new file mode 100644 index 00000000000..1d93b80f18f --- /dev/null +++ b/public/img/icons/unicons/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-alt.svg b/public/img/icons/unicons/align-alt.svg new file mode 100644 index 00000000000..9f639f8c88e --- /dev/null +++ b/public/img/icons/unicons/align-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-center-alt.svg b/public/img/icons/unicons/align-center-alt.svg new file mode 100644 index 00000000000..474f517d795 --- /dev/null +++ b/public/img/icons/unicons/align-center-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-center-h.svg b/public/img/icons/unicons/align-center-h.svg new file mode 100644 index 00000000000..bd41efc33db --- /dev/null +++ b/public/img/icons/unicons/align-center-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-center-justify.svg b/public/img/icons/unicons/align-center-justify.svg new file mode 100644 index 00000000000..1816947525a --- /dev/null +++ b/public/img/icons/unicons/align-center-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-center-v.svg b/public/img/icons/unicons/align-center-v.svg new file mode 100644 index 00000000000..9f5ae39f521 --- /dev/null +++ b/public/img/icons/unicons/align-center-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-center.svg b/public/img/icons/unicons/align-center.svg new file mode 100644 index 00000000000..bb022fb1554 --- /dev/null +++ b/public/img/icons/unicons/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-justify.svg b/public/img/icons/unicons/align-justify.svg new file mode 100644 index 00000000000..4d25ad5af6a --- /dev/null +++ b/public/img/icons/unicons/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-left-justify.svg b/public/img/icons/unicons/align-left-justify.svg new file mode 100644 index 00000000000..65975cc819f --- /dev/null +++ b/public/img/icons/unicons/align-left-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-left.svg b/public/img/icons/unicons/align-left.svg new file mode 100644 index 00000000000..85db219a1b6 --- /dev/null +++ b/public/img/icons/unicons/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-letter-right.svg b/public/img/icons/unicons/align-letter-right.svg new file mode 100644 index 00000000000..d08566eff7b --- /dev/null +++ b/public/img/icons/unicons/align-letter-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-right-justify.svg b/public/img/icons/unicons/align-right-justify.svg new file mode 100644 index 00000000000..662aaeb038b --- /dev/null +++ b/public/img/icons/unicons/align-right-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align-right.svg b/public/img/icons/unicons/align-right.svg new file mode 100644 index 00000000000..21d27aca3c5 --- /dev/null +++ b/public/img/icons/unicons/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/align.svg b/public/img/icons/unicons/align.svg new file mode 100644 index 00000000000..6e638795334 --- /dev/null +++ b/public/img/icons/unicons/align.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/amazon.svg b/public/img/icons/unicons/amazon.svg new file mode 100644 index 00000000000..0af93549ae4 --- /dev/null +++ b/public/img/icons/unicons/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ambulance.svg b/public/img/icons/unicons/ambulance.svg new file mode 100644 index 00000000000..07e124dbbcc --- /dev/null +++ b/public/img/icons/unicons/ambulance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/analysis.svg b/public/img/icons/unicons/analysis.svg new file mode 100644 index 00000000000..c04b3314e07 --- /dev/null +++ b/public/img/icons/unicons/analysis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/analytics.svg b/public/img/icons/unicons/analytics.svg new file mode 100644 index 00000000000..21810df07d4 --- /dev/null +++ b/public/img/icons/unicons/analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/anchor.svg b/public/img/icons/unicons/anchor.svg new file mode 100644 index 00000000000..cc203977055 --- /dev/null +++ b/public/img/icons/unicons/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/android-alt.svg b/public/img/icons/unicons/android-alt.svg new file mode 100644 index 00000000000..6bdb80c6a80 --- /dev/null +++ b/public/img/icons/unicons/android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/android-phone-slash.svg b/public/img/icons/unicons/android-phone-slash.svg new file mode 100644 index 00000000000..238ebb7e6fa --- /dev/null +++ b/public/img/icons/unicons/android-phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/android.svg b/public/img/icons/unicons/android.svg new file mode 100644 index 00000000000..372f120ecd7 --- /dev/null +++ b/public/img/icons/unicons/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-double-down.svg b/public/img/icons/unicons/angle-double-down.svg new file mode 100644 index 00000000000..848604c408e --- /dev/null +++ b/public/img/icons/unicons/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-double-left.svg b/public/img/icons/unicons/angle-double-left.svg new file mode 100644 index 00000000000..5b9f7fbd09a --- /dev/null +++ b/public/img/icons/unicons/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-double-right.svg b/public/img/icons/unicons/angle-double-right.svg new file mode 100644 index 00000000000..f24b2633bc3 --- /dev/null +++ b/public/img/icons/unicons/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-double-up.svg b/public/img/icons/unicons/angle-double-up.svg new file mode 100644 index 00000000000..c496dc1fa23 --- /dev/null +++ b/public/img/icons/unicons/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-down.svg b/public/img/icons/unicons/angle-down.svg new file mode 100644 index 00000000000..df3b9410b06 --- /dev/null +++ b/public/img/icons/unicons/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-left-b.svg b/public/img/icons/unicons/angle-left-b.svg new file mode 100644 index 00000000000..5fa63092309 --- /dev/null +++ b/public/img/icons/unicons/angle-left-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-left.svg b/public/img/icons/unicons/angle-left.svg new file mode 100644 index 00000000000..25cd536aa4a --- /dev/null +++ b/public/img/icons/unicons/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-right-b.svg b/public/img/icons/unicons/angle-right-b.svg new file mode 100644 index 00000000000..b174cd2644f --- /dev/null +++ b/public/img/icons/unicons/angle-right-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-right.svg b/public/img/icons/unicons/angle-right.svg new file mode 100644 index 00000000000..b21121fe607 --- /dev/null +++ b/public/img/icons/unicons/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angle-up.svg b/public/img/icons/unicons/angle-up.svg new file mode 100644 index 00000000000..1309a2ed311 --- /dev/null +++ b/public/img/icons/unicons/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/angry.svg b/public/img/icons/unicons/angry.svg new file mode 100644 index 00000000000..faf47462d25 --- /dev/null +++ b/public/img/icons/unicons/angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ankh.svg b/public/img/icons/unicons/ankh.svg new file mode 100644 index 00000000000..01e826c2442 --- /dev/null +++ b/public/img/icons/unicons/ankh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/annoyed-alt.svg b/public/img/icons/unicons/annoyed-alt.svg new file mode 100644 index 00000000000..afac8e3ff86 --- /dev/null +++ b/public/img/icons/unicons/annoyed-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/annoyed.svg b/public/img/icons/unicons/annoyed.svg new file mode 100644 index 00000000000..599028ddea3 --- /dev/null +++ b/public/img/icons/unicons/annoyed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/apple-alt.svg b/public/img/icons/unicons/apple-alt.svg new file mode 100644 index 00000000000..b2c9e639990 --- /dev/null +++ b/public/img/icons/unicons/apple-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/apple.svg b/public/img/icons/unicons/apple.svg new file mode 100644 index 00000000000..e365fc91476 --- /dev/null +++ b/public/img/icons/unicons/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/apps.svg b/public/img/icons/unicons/apps.svg new file mode 100644 index 00000000000..7d51d736491 --- /dev/null +++ b/public/img/icons/unicons/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/archive-alt.svg b/public/img/icons/unicons/archive-alt.svg new file mode 100644 index 00000000000..7c6243ba211 --- /dev/null +++ b/public/img/icons/unicons/archive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/archive.svg b/public/img/icons/unicons/archive.svg new file mode 100644 index 00000000000..c61a0c0524d --- /dev/null +++ b/public/img/icons/unicons/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/archway.svg b/public/img/icons/unicons/archway.svg new file mode 100644 index 00000000000..9e0f87f86c6 --- /dev/null +++ b/public/img/icons/unicons/archway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-break.svg b/public/img/icons/unicons/arrow-break.svg new file mode 100644 index 00000000000..abe45b496f7 --- /dev/null +++ b/public/img/icons/unicons/arrow-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-circle-down.svg b/public/img/icons/unicons/arrow-circle-down.svg new file mode 100644 index 00000000000..97f2081b224 --- /dev/null +++ b/public/img/icons/unicons/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-circle-left.svg b/public/img/icons/unicons/arrow-circle-left.svg new file mode 100644 index 00000000000..d2521b6907f --- /dev/null +++ b/public/img/icons/unicons/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-circle-right.svg b/public/img/icons/unicons/arrow-circle-right.svg new file mode 100644 index 00000000000..93608a22c26 --- /dev/null +++ b/public/img/icons/unicons/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-circle-up.svg b/public/img/icons/unicons/arrow-circle-up.svg new file mode 100644 index 00000000000..d4d2e0a7afa --- /dev/null +++ b/public/img/icons/unicons/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-compress-h.svg b/public/img/icons/unicons/arrow-compress-h.svg new file mode 100644 index 00000000000..9e0dba6cbba --- /dev/null +++ b/public/img/icons/unicons/arrow-compress-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-down-left.svg b/public/img/icons/unicons/arrow-down-left.svg new file mode 100644 index 00000000000..f160c6855c2 --- /dev/null +++ b/public/img/icons/unicons/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-down-right.svg b/public/img/icons/unicons/arrow-down-right.svg new file mode 100644 index 00000000000..9e6281e2d6e --- /dev/null +++ b/public/img/icons/unicons/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-down.svg b/public/img/icons/unicons/arrow-down.svg new file mode 100644 index 00000000000..9bd09a5b156 --- /dev/null +++ b/public/img/icons/unicons/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-from-right.svg b/public/img/icons/unicons/arrow-from-right.svg new file mode 100644 index 00000000000..5a05790003e --- /dev/null +++ b/public/img/icons/unicons/arrow-from-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-from-top.svg b/public/img/icons/unicons/arrow-from-top.svg new file mode 100644 index 00000000000..c267a1c86da --- /dev/null +++ b/public/img/icons/unicons/arrow-from-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-growth.svg b/public/img/icons/unicons/arrow-growth.svg new file mode 100644 index 00000000000..21a0398cbe7 --- /dev/null +++ b/public/img/icons/unicons/arrow-growth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-left.svg b/public/img/icons/unicons/arrow-left.svg new file mode 100644 index 00000000000..69253987040 --- /dev/null +++ b/public/img/icons/unicons/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-random.svg b/public/img/icons/unicons/arrow-random.svg new file mode 100644 index 00000000000..353d6c12d55 --- /dev/null +++ b/public/img/icons/unicons/arrow-random.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-resize-diagonal.svg b/public/img/icons/unicons/arrow-resize-diagonal.svg new file mode 100644 index 00000000000..8a1eec12523 --- /dev/null +++ b/public/img/icons/unicons/arrow-resize-diagonal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-right.svg b/public/img/icons/unicons/arrow-right.svg new file mode 100644 index 00000000000..2b2ada351c3 --- /dev/null +++ b/public/img/icons/unicons/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-to-bottom.svg b/public/img/icons/unicons/arrow-to-bottom.svg new file mode 100644 index 00000000000..5bb8417c87b --- /dev/null +++ b/public/img/icons/unicons/arrow-to-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-to-right.svg b/public/img/icons/unicons/arrow-to-right.svg new file mode 100644 index 00000000000..494352362cf --- /dev/null +++ b/public/img/icons/unicons/arrow-to-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-up-left.svg b/public/img/icons/unicons/arrow-up-left.svg new file mode 100644 index 00000000000..3bf2abd919c --- /dev/null +++ b/public/img/icons/unicons/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-up-right.svg b/public/img/icons/unicons/arrow-up-right.svg new file mode 100644 index 00000000000..67b901493be --- /dev/null +++ b/public/img/icons/unicons/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow-up.svg b/public/img/icons/unicons/arrow-up.svg new file mode 100644 index 00000000000..b5771debac5 --- /dev/null +++ b/public/img/icons/unicons/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrow.svg b/public/img/icons/unicons/arrow.svg new file mode 100644 index 00000000000..2c1e398fe8c --- /dev/null +++ b/public/img/icons/unicons/arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-h-alt.svg b/public/img/icons/unicons/arrows-h-alt.svg new file mode 100644 index 00000000000..ddf31fdb803 --- /dev/null +++ b/public/img/icons/unicons/arrows-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-h.svg b/public/img/icons/unicons/arrows-h.svg new file mode 100644 index 00000000000..e7a0619d71d --- /dev/null +++ b/public/img/icons/unicons/arrows-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-left-down.svg b/public/img/icons/unicons/arrows-left-down.svg new file mode 100644 index 00000000000..54ad2e99e8b --- /dev/null +++ b/public/img/icons/unicons/arrows-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-maximize.svg b/public/img/icons/unicons/arrows-maximize.svg new file mode 100644 index 00000000000..b8f4c4618b6 --- /dev/null +++ b/public/img/icons/unicons/arrows-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-merge.svg b/public/img/icons/unicons/arrows-merge.svg new file mode 100644 index 00000000000..3745ff19225 --- /dev/null +++ b/public/img/icons/unicons/arrows-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-resize-h.svg b/public/img/icons/unicons/arrows-resize-h.svg new file mode 100644 index 00000000000..862a5820dd1 --- /dev/null +++ b/public/img/icons/unicons/arrows-resize-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-resize-v.svg b/public/img/icons/unicons/arrows-resize-v.svg new file mode 100644 index 00000000000..e7631a216a7 --- /dev/null +++ b/public/img/icons/unicons/arrows-resize-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-resize.svg b/public/img/icons/unicons/arrows-resize.svg new file mode 100644 index 00000000000..4a1420db338 --- /dev/null +++ b/public/img/icons/unicons/arrows-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-right-down.svg b/public/img/icons/unicons/arrows-right-down.svg new file mode 100644 index 00000000000..4830cb80676 --- /dev/null +++ b/public/img/icons/unicons/arrows-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-shrink-h.svg b/public/img/icons/unicons/arrows-shrink-h.svg new file mode 100644 index 00000000000..3238402c2fb --- /dev/null +++ b/public/img/icons/unicons/arrows-shrink-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-shrink-v.svg b/public/img/icons/unicons/arrows-shrink-v.svg new file mode 100644 index 00000000000..66bf2f1fbfa --- /dev/null +++ b/public/img/icons/unicons/arrows-shrink-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-up-right.svg b/public/img/icons/unicons/arrows-up-right.svg new file mode 100644 index 00000000000..2c5f35cb5c3 --- /dev/null +++ b/public/img/icons/unicons/arrows-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-v-alt.svg b/public/img/icons/unicons/arrows-v-alt.svg new file mode 100644 index 00000000000..8723f64411f --- /dev/null +++ b/public/img/icons/unicons/arrows-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/arrows-v.svg b/public/img/icons/unicons/arrows-v.svg new file mode 100644 index 00000000000..d1ff46cbc37 --- /dev/null +++ b/public/img/icons/unicons/arrows-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/assistive-listening-systems.svg b/public/img/icons/unicons/assistive-listening-systems.svg new file mode 100644 index 00000000000..9e71c03b2c1 --- /dev/null +++ b/public/img/icons/unicons/assistive-listening-systems.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/asterisk.svg b/public/img/icons/unicons/asterisk.svg new file mode 100644 index 00000000000..fb3dfe74107 --- /dev/null +++ b/public/img/icons/unicons/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/at.svg b/public/img/icons/unicons/at.svg new file mode 100644 index 00000000000..b9956d10b03 --- /dev/null +++ b/public/img/icons/unicons/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/atom.svg b/public/img/icons/unicons/atom.svg new file mode 100644 index 00000000000..e83c8ab5aa9 --- /dev/null +++ b/public/img/icons/unicons/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/auto-flash.svg b/public/img/icons/unicons/auto-flash.svg new file mode 100644 index 00000000000..380276f1cda --- /dev/null +++ b/public/img/icons/unicons/auto-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/award-alt.svg b/public/img/icons/unicons/award-alt.svg new file mode 100644 index 00000000000..dfb80a4e98f --- /dev/null +++ b/public/img/icons/unicons/award-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/award.svg b/public/img/icons/unicons/award.svg new file mode 100644 index 00000000000..40961793e57 --- /dev/null +++ b/public/img/icons/unicons/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/baby-carriage.svg b/public/img/icons/unicons/baby-carriage.svg new file mode 100644 index 00000000000..441b3980491 --- /dev/null +++ b/public/img/icons/unicons/baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/backpack.svg b/public/img/icons/unicons/backpack.svg new file mode 100644 index 00000000000..b8363d00ce0 --- /dev/null +++ b/public/img/icons/unicons/backpack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/backspace.svg b/public/img/icons/unicons/backspace.svg new file mode 100644 index 00000000000..a2002516173 --- /dev/null +++ b/public/img/icons/unicons/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/backward.svg b/public/img/icons/unicons/backward.svg new file mode 100644 index 00000000000..5697eac4c42 --- /dev/null +++ b/public/img/icons/unicons/backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bag-alt.svg b/public/img/icons/unicons/bag-alt.svg new file mode 100644 index 00000000000..465269a673e --- /dev/null +++ b/public/img/icons/unicons/bag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bag-slash.svg b/public/img/icons/unicons/bag-slash.svg new file mode 100644 index 00000000000..ab18f9fef79 --- /dev/null +++ b/public/img/icons/unicons/bag-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bag.svg b/public/img/icons/unicons/bag.svg new file mode 100644 index 00000000000..3e38713dbaf --- /dev/null +++ b/public/img/icons/unicons/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/balance-scale.svg b/public/img/icons/unicons/balance-scale.svg new file mode 100644 index 00000000000..c89cac2699b --- /dev/null +++ b/public/img/icons/unicons/balance-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ban.svg b/public/img/icons/unicons/ban.svg new file mode 100644 index 00000000000..6389f7609f5 --- /dev/null +++ b/public/img/icons/unicons/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/band-aid.svg b/public/img/icons/unicons/band-aid.svg new file mode 100644 index 00000000000..4938099888d --- /dev/null +++ b/public/img/icons/unicons/band-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bars.svg b/public/img/icons/unicons/bars.svg new file mode 100644 index 00000000000..b19cbe402cc --- /dev/null +++ b/public/img/icons/unicons/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/baseball-ball.svg b/public/img/icons/unicons/baseball-ball.svg new file mode 100644 index 00000000000..d47e1a19800 --- /dev/null +++ b/public/img/icons/unicons/baseball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/basketball-hoop.svg b/public/img/icons/unicons/basketball-hoop.svg new file mode 100644 index 00000000000..ce3ccf09110 --- /dev/null +++ b/public/img/icons/unicons/basketball-hoop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/basketball.svg b/public/img/icons/unicons/basketball.svg new file mode 100644 index 00000000000..c1904cecfd5 --- /dev/null +++ b/public/img/icons/unicons/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bath.svg b/public/img/icons/unicons/bath.svg new file mode 100644 index 00000000000..006d09c3bfa --- /dev/null +++ b/public/img/icons/unicons/bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/battery-bolt.svg b/public/img/icons/unicons/battery-bolt.svg new file mode 100644 index 00000000000..56a6de39696 --- /dev/null +++ b/public/img/icons/unicons/battery-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/battery-empty.svg b/public/img/icons/unicons/battery-empty.svg new file mode 100644 index 00000000000..a26f9eeba5a --- /dev/null +++ b/public/img/icons/unicons/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bed-double.svg b/public/img/icons/unicons/bed-double.svg new file mode 100644 index 00000000000..8f64d668387 --- /dev/null +++ b/public/img/icons/unicons/bed-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bed.svg b/public/img/icons/unicons/bed.svg new file mode 100644 index 00000000000..0516c55460a --- /dev/null +++ b/public/img/icons/unicons/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/behance-alt.svg b/public/img/icons/unicons/behance-alt.svg new file mode 100644 index 00000000000..18251d18e14 --- /dev/null +++ b/public/img/icons/unicons/behance-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/behance.svg b/public/img/icons/unicons/behance.svg new file mode 100644 index 00000000000..f5b421f3742 --- /dev/null +++ b/public/img/icons/unicons/behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bell-school.svg b/public/img/icons/unicons/bell-school.svg new file mode 100644 index 00000000000..a90511e4cfc --- /dev/null +++ b/public/img/icons/unicons/bell-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bell-slash.svg b/public/img/icons/unicons/bell-slash.svg new file mode 100644 index 00000000000..6914ed2af33 --- /dev/null +++ b/public/img/icons/unicons/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bell.svg b/public/img/icons/unicons/bell.svg new file mode 100644 index 00000000000..3fbc40a490d --- /dev/null +++ b/public/img/icons/unicons/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bill.svg b/public/img/icons/unicons/bill.svg new file mode 100644 index 00000000000..e16f5ccd241 --- /dev/null +++ b/public/img/icons/unicons/bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bing.svg b/public/img/icons/unicons/bing.svg new file mode 100644 index 00000000000..c3225adb00a --- /dev/null +++ b/public/img/icons/unicons/bing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bitcoin-alt.svg b/public/img/icons/unicons/bitcoin-alt.svg new file mode 100644 index 00000000000..40d7125ecb9 --- /dev/null +++ b/public/img/icons/unicons/bitcoin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bitcoin-circle.svg b/public/img/icons/unicons/bitcoin-circle.svg new file mode 100644 index 00000000000..7c893a4cdcc --- /dev/null +++ b/public/img/icons/unicons/bitcoin-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bitcoin-sign.svg b/public/img/icons/unicons/bitcoin-sign.svg new file mode 100644 index 00000000000..a25bdc07c5c --- /dev/null +++ b/public/img/icons/unicons/bitcoin-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bitcoin.svg b/public/img/icons/unicons/bitcoin.svg new file mode 100644 index 00000000000..7a2f1ed9956 --- /dev/null +++ b/public/img/icons/unicons/bitcoin.svg @@ -0,0 +1 @@ +Artboard 5 copy 21 \ No newline at end of file diff --git a/public/img/icons/unicons/black-berry.svg b/public/img/icons/unicons/black-berry.svg new file mode 100644 index 00000000000..383cd18258d --- /dev/null +++ b/public/img/icons/unicons/black-berry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/blogger-alt.svg b/public/img/icons/unicons/blogger-alt.svg new file mode 100644 index 00000000000..834d195da75 --- /dev/null +++ b/public/img/icons/unicons/blogger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/blogger.svg b/public/img/icons/unicons/blogger.svg new file mode 100644 index 00000000000..998e1035f90 --- /dev/null +++ b/public/img/icons/unicons/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bluetooth-b.svg b/public/img/icons/unicons/bluetooth-b.svg new file mode 100644 index 00000000000..31394e88b22 --- /dev/null +++ b/public/img/icons/unicons/bluetooth-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bold.svg b/public/img/icons/unicons/bold.svg new file mode 100644 index 00000000000..938e87af301 --- /dev/null +++ b/public/img/icons/unicons/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bolt-alt.svg b/public/img/icons/unicons/bolt-alt.svg new file mode 100644 index 00000000000..b6e667c9f25 --- /dev/null +++ b/public/img/icons/unicons/bolt-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bolt-slash.svg b/public/img/icons/unicons/bolt-slash.svg new file mode 100644 index 00000000000..0f9930a7949 --- /dev/null +++ b/public/img/icons/unicons/bolt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bolt.svg b/public/img/icons/unicons/bolt.svg new file mode 100644 index 00000000000..4d4e0e62669 --- /dev/null +++ b/public/img/icons/unicons/bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/book-alt.svg b/public/img/icons/unicons/book-alt.svg new file mode 100644 index 00000000000..da3c0174bb4 --- /dev/null +++ b/public/img/icons/unicons/book-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/book-medical.svg b/public/img/icons/unicons/book-medical.svg new file mode 100644 index 00000000000..fda28b7f998 --- /dev/null +++ b/public/img/icons/unicons/book-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/book-open.svg b/public/img/icons/unicons/book-open.svg new file mode 100644 index 00000000000..91347309afc --- /dev/null +++ b/public/img/icons/unicons/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/book-reader.svg b/public/img/icons/unicons/book-reader.svg new file mode 100644 index 00000000000..78131965d60 --- /dev/null +++ b/public/img/icons/unicons/book-reader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/book.svg b/public/img/icons/unicons/book.svg new file mode 100644 index 00000000000..8e59539d7a4 --- /dev/null +++ b/public/img/icons/unicons/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bookmark-full.svg b/public/img/icons/unicons/bookmark-full.svg new file mode 100644 index 00000000000..84d7bcff57e --- /dev/null +++ b/public/img/icons/unicons/bookmark-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bookmark.svg b/public/img/icons/unicons/bookmark.svg new file mode 100644 index 00000000000..5acd3c8af13 --- /dev/null +++ b/public/img/icons/unicons/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/books.svg b/public/img/icons/unicons/books.svg new file mode 100644 index 00000000000..46e6d1bf4da --- /dev/null +++ b/public/img/icons/unicons/books.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/boombox.svg b/public/img/icons/unicons/boombox.svg new file mode 100644 index 00000000000..a3997d07adc --- /dev/null +++ b/public/img/icons/unicons/boombox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-alt.svg b/public/img/icons/unicons/border-alt.svg new file mode 100644 index 00000000000..7614b5e5817 --- /dev/null +++ b/public/img/icons/unicons/border-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-bottom.svg b/public/img/icons/unicons/border-bottom.svg new file mode 100644 index 00000000000..fd13df06a39 --- /dev/null +++ b/public/img/icons/unicons/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-clear.svg b/public/img/icons/unicons/border-clear.svg new file mode 100644 index 00000000000..e895a0377dd --- /dev/null +++ b/public/img/icons/unicons/border-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-horizontal.svg b/public/img/icons/unicons/border-horizontal.svg new file mode 100644 index 00000000000..90dc412e012 --- /dev/null +++ b/public/img/icons/unicons/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-inner.svg b/public/img/icons/unicons/border-inner.svg new file mode 100644 index 00000000000..d1569ae67e1 --- /dev/null +++ b/public/img/icons/unicons/border-inner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-left.svg b/public/img/icons/unicons/border-left.svg new file mode 100644 index 00000000000..4c72445e074 --- /dev/null +++ b/public/img/icons/unicons/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-out.svg b/public/img/icons/unicons/border-out.svg new file mode 100644 index 00000000000..3fcd967722c --- /dev/null +++ b/public/img/icons/unicons/border-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-right.svg b/public/img/icons/unicons/border-right.svg new file mode 100644 index 00000000000..4408048505b --- /dev/null +++ b/public/img/icons/unicons/border-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-top.svg b/public/img/icons/unicons/border-top.svg new file mode 100644 index 00000000000..252cbd6c504 --- /dev/null +++ b/public/img/icons/unicons/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/border-vertical.svg b/public/img/icons/unicons/border-vertical.svg new file mode 100644 index 00000000000..9da27735a7a --- /dev/null +++ b/public/img/icons/unicons/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bowling-ball.svg b/public/img/icons/unicons/bowling-ball.svg new file mode 100644 index 00000000000..5a0df5307a1 --- /dev/null +++ b/public/img/icons/unicons/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/box.svg b/public/img/icons/unicons/box.svg new file mode 100644 index 00000000000..ba5b3d63552 --- /dev/null +++ b/public/img/icons/unicons/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brackets-curly.svg b/public/img/icons/unicons/brackets-curly.svg new file mode 100644 index 00000000000..8d4ed131b40 --- /dev/null +++ b/public/img/icons/unicons/brackets-curly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brain.svg b/public/img/icons/unicons/brain.svg new file mode 100644 index 00000000000..da7a6566cb5 --- /dev/null +++ b/public/img/icons/unicons/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/briefcase-alt.svg b/public/img/icons/unicons/briefcase-alt.svg new file mode 100644 index 00000000000..b06a2eb98e9 --- /dev/null +++ b/public/img/icons/unicons/briefcase-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/briefcase.svg b/public/img/icons/unicons/briefcase.svg new file mode 100644 index 00000000000..c206ad055a9 --- /dev/null +++ b/public/img/icons/unicons/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bright.svg b/public/img/icons/unicons/bright.svg new file mode 100644 index 00000000000..f64e2087090 --- /dev/null +++ b/public/img/icons/unicons/bright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brightness-empty.svg b/public/img/icons/unicons/brightness-empty.svg new file mode 100644 index 00000000000..a92e7a0c912 --- /dev/null +++ b/public/img/icons/unicons/brightness-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brightness-half.svg b/public/img/icons/unicons/brightness-half.svg new file mode 100644 index 00000000000..fc00d2fc30e --- /dev/null +++ b/public/img/icons/unicons/brightness-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brightness-low.svg b/public/img/icons/unicons/brightness-low.svg new file mode 100644 index 00000000000..c4584c74483 --- /dev/null +++ b/public/img/icons/unicons/brightness-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brightness-minus.svg b/public/img/icons/unicons/brightness-minus.svg new file mode 100644 index 00000000000..0f01f75bf7a --- /dev/null +++ b/public/img/icons/unicons/brightness-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brightness-plus.svg b/public/img/icons/unicons/brightness-plus.svg new file mode 100644 index 00000000000..b3569bd1809 --- /dev/null +++ b/public/img/icons/unicons/brightness-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brightness.svg b/public/img/icons/unicons/brightness.svg new file mode 100644 index 00000000000..b1e44331a61 --- /dev/null +++ b/public/img/icons/unicons/brightness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bring-bottom.svg b/public/img/icons/unicons/bring-bottom.svg new file mode 100644 index 00000000000..22d8989bc5e --- /dev/null +++ b/public/img/icons/unicons/bring-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bring-front.svg b/public/img/icons/unicons/bring-front.svg new file mode 100644 index 00000000000..ba9352afdeb --- /dev/null +++ b/public/img/icons/unicons/bring-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/browser.svg b/public/img/icons/unicons/browser.svg new file mode 100644 index 00000000000..d6142cd7fe3 --- /dev/null +++ b/public/img/icons/unicons/browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/brush-alt.svg b/public/img/icons/unicons/brush-alt.svg new file mode 100644 index 00000000000..c3437ec20f2 --- /dev/null +++ b/public/img/icons/unicons/brush-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bug.svg b/public/img/icons/unicons/bug.svg new file mode 100644 index 00000000000..ae0f05488a6 --- /dev/null +++ b/public/img/icons/unicons/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/building.svg b/public/img/icons/unicons/building.svg new file mode 100644 index 00000000000..ce05d400a5f --- /dev/null +++ b/public/img/icons/unicons/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bullseye.svg b/public/img/icons/unicons/bullseye.svg new file mode 100644 index 00000000000..af716b3b2cf --- /dev/null +++ b/public/img/icons/unicons/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bus-alt.svg b/public/img/icons/unicons/bus-alt.svg new file mode 100644 index 00000000000..78bbf99c2e0 --- /dev/null +++ b/public/img/icons/unicons/bus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bus-school.svg b/public/img/icons/unicons/bus-school.svg new file mode 100644 index 00000000000..67f4baeb89a --- /dev/null +++ b/public/img/icons/unicons/bus-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/bus.svg b/public/img/icons/unicons/bus.svg new file mode 100644 index 00000000000..31a21c2e7f2 --- /dev/null +++ b/public/img/icons/unicons/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/calculator-alt.svg b/public/img/icons/unicons/calculator-alt.svg new file mode 100644 index 00000000000..ab108ad924a --- /dev/null +++ b/public/img/icons/unicons/calculator-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/calculator.svg b/public/img/icons/unicons/calculator.svg new file mode 100644 index 00000000000..422df1febe5 --- /dev/null +++ b/public/img/icons/unicons/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/calendar-alt.svg b/public/img/icons/unicons/calendar-alt.svg new file mode 100644 index 00000000000..53524f428be --- /dev/null +++ b/public/img/icons/unicons/calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/calendar-slash.svg b/public/img/icons/unicons/calendar-slash.svg new file mode 100644 index 00000000000..7744addb1b5 --- /dev/null +++ b/public/img/icons/unicons/calendar-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/calender.svg b/public/img/icons/unicons/calender.svg new file mode 100644 index 00000000000..cc8e7ccba4d --- /dev/null +++ b/public/img/icons/unicons/calender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/calling.svg b/public/img/icons/unicons/calling.svg new file mode 100644 index 00000000000..e3569e04eb6 --- /dev/null +++ b/public/img/icons/unicons/calling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/camera-change.svg b/public/img/icons/unicons/camera-change.svg new file mode 100644 index 00000000000..3001337b40d --- /dev/null +++ b/public/img/icons/unicons/camera-change.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/camera-plus.svg b/public/img/icons/unicons/camera-plus.svg new file mode 100644 index 00000000000..a10cd1988a3 --- /dev/null +++ b/public/img/icons/unicons/camera-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/camera-slash.svg b/public/img/icons/unicons/camera-slash.svg new file mode 100644 index 00000000000..41e33c0ba0c --- /dev/null +++ b/public/img/icons/unicons/camera-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/camera.svg b/public/img/icons/unicons/camera.svg new file mode 100644 index 00000000000..b5386e2ccb3 --- /dev/null +++ b/public/img/icons/unicons/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cancel.svg b/public/img/icons/unicons/cancel.svg new file mode 100644 index 00000000000..138499ab728 --- /dev/null +++ b/public/img/icons/unicons/cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/capsule.svg b/public/img/icons/unicons/capsule.svg new file mode 100644 index 00000000000..94b948f6760 --- /dev/null +++ b/public/img/icons/unicons/capsule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/capture.svg b/public/img/icons/unicons/capture.svg new file mode 100644 index 00000000000..a984e562a97 --- /dev/null +++ b/public/img/icons/unicons/capture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/car-sideview.svg b/public/img/icons/unicons/car-sideview.svg new file mode 100644 index 00000000000..47ea0b6130a --- /dev/null +++ b/public/img/icons/unicons/car-sideview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/car-slash.svg b/public/img/icons/unicons/car-slash.svg new file mode 100644 index 00000000000..fd87682c65c --- /dev/null +++ b/public/img/icons/unicons/car-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/car-wash.svg b/public/img/icons/unicons/car-wash.svg new file mode 100644 index 00000000000..11aa342b44e --- /dev/null +++ b/public/img/icons/unicons/car-wash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/car.svg b/public/img/icons/unicons/car.svg new file mode 100644 index 00000000000..c0dd697a348 --- /dev/null +++ b/public/img/icons/unicons/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/card-atm.svg b/public/img/icons/unicons/card-atm.svg new file mode 100644 index 00000000000..fd92764cdd0 --- /dev/null +++ b/public/img/icons/unicons/card-atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/caret-right.svg b/public/img/icons/unicons/caret-right.svg new file mode 100644 index 00000000000..3965abeccfd --- /dev/null +++ b/public/img/icons/unicons/caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cell.svg b/public/img/icons/unicons/cell.svg new file mode 100644 index 00000000000..328748c82b1 --- /dev/null +++ b/public/img/icons/unicons/cell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/celsius.svg b/public/img/icons/unicons/celsius.svg new file mode 100644 index 00000000000..476765c4d8a --- /dev/null +++ b/public/img/icons/unicons/celsius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/channel-add.svg b/public/img/icons/unicons/channel-add.svg new file mode 100644 index 00000000000..feedb453498 --- /dev/null +++ b/public/img/icons/unicons/channel-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/channel.svg b/public/img/icons/unicons/channel.svg new file mode 100644 index 00000000000..5098ca87d96 --- /dev/null +++ b/public/img/icons/unicons/channel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-bar-alt.svg b/public/img/icons/unicons/chart-bar-alt.svg new file mode 100644 index 00000000000..318d8c2621b --- /dev/null +++ b/public/img/icons/unicons/chart-bar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-bar.svg b/public/img/icons/unicons/chart-bar.svg new file mode 100644 index 00000000000..5825ff83f82 --- /dev/null +++ b/public/img/icons/unicons/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-down.svg b/public/img/icons/unicons/chart-down.svg new file mode 100644 index 00000000000..d21bd9c51ef --- /dev/null +++ b/public/img/icons/unicons/chart-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-growth-alt.svg b/public/img/icons/unicons/chart-growth-alt.svg new file mode 100644 index 00000000000..4aed9c2572d --- /dev/null +++ b/public/img/icons/unicons/chart-growth-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-growth.svg b/public/img/icons/unicons/chart-growth.svg new file mode 100644 index 00000000000..f5f846d9a65 --- /dev/null +++ b/public/img/icons/unicons/chart-growth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-line.svg b/public/img/icons/unicons/chart-line.svg new file mode 100644 index 00000000000..8b697a3db48 --- /dev/null +++ b/public/img/icons/unicons/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-pie-alt.svg b/public/img/icons/unicons/chart-pie-alt.svg new file mode 100644 index 00000000000..c3d157d2c04 --- /dev/null +++ b/public/img/icons/unicons/chart-pie-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart-pie.svg b/public/img/icons/unicons/chart-pie.svg new file mode 100644 index 00000000000..bd2b1026589 --- /dev/null +++ b/public/img/icons/unicons/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chart.svg b/public/img/icons/unicons/chart.svg new file mode 100644 index 00000000000..8adab43337b --- /dev/null +++ b/public/img/icons/unicons/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chat-bubble-user.svg b/public/img/icons/unicons/chat-bubble-user.svg new file mode 100644 index 00000000000..57a77279a40 --- /dev/null +++ b/public/img/icons/unicons/chat-bubble-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chat-info.svg b/public/img/icons/unicons/chat-info.svg new file mode 100644 index 00000000000..6a98cc697e1 --- /dev/null +++ b/public/img/icons/unicons/chat-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/chat.svg b/public/img/icons/unicons/chat.svg new file mode 100644 index 00000000000..05afcb9447f --- /dev/null +++ b/public/img/icons/unicons/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/check-circle.svg b/public/img/icons/unicons/check-circle.svg new file mode 100644 index 00000000000..0924f9b5b85 --- /dev/null +++ b/public/img/icons/unicons/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/check-square.svg b/public/img/icons/unicons/check-square.svg new file mode 100644 index 00000000000..02d0c70d3cb --- /dev/null +++ b/public/img/icons/unicons/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/check.svg b/public/img/icons/unicons/check.svg new file mode 100644 index 00000000000..dec3efeb23a --- /dev/null +++ b/public/img/icons/unicons/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/circle-layer.svg b/public/img/icons/unicons/circle-layer.svg new file mode 100644 index 00000000000..ce18336d477 --- /dev/null +++ b/public/img/icons/unicons/circle-layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/circle.svg b/public/img/icons/unicons/circle.svg new file mode 100644 index 00000000000..bbb2e6352a8 --- /dev/null +++ b/public/img/icons/unicons/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/circuit.svg b/public/img/icons/unicons/circuit.svg new file mode 100644 index 00000000000..b80114470a7 --- /dev/null +++ b/public/img/icons/unicons/circuit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clapper-board.svg b/public/img/icons/unicons/clapper-board.svg new file mode 100644 index 00000000000..1bcb452684b --- /dev/null +++ b/public/img/icons/unicons/clapper-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clinic-medical.svg b/public/img/icons/unicons/clinic-medical.svg new file mode 100644 index 00000000000..d6077bf2b73 --- /dev/null +++ b/public/img/icons/unicons/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clipboard-alt.svg b/public/img/icons/unicons/clipboard-alt.svg new file mode 100644 index 00000000000..11ccde65c29 --- /dev/null +++ b/public/img/icons/unicons/clipboard-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clipboard-blank.svg b/public/img/icons/unicons/clipboard-blank.svg new file mode 100644 index 00000000000..24a49ac1d07 --- /dev/null +++ b/public/img/icons/unicons/clipboard-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clipboard-notes.svg b/public/img/icons/unicons/clipboard-notes.svg new file mode 100644 index 00000000000..47ec0111e4e --- /dev/null +++ b/public/img/icons/unicons/clipboard-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clipboard.svg b/public/img/icons/unicons/clipboard.svg new file mode 100644 index 00000000000..98b4343a13d --- /dev/null +++ b/public/img/icons/unicons/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-eight.svg b/public/img/icons/unicons/clock-eight.svg new file mode 100644 index 00000000000..37434182581 --- /dev/null +++ b/public/img/icons/unicons/clock-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-five.svg b/public/img/icons/unicons/clock-five.svg new file mode 100644 index 00000000000..bb96618c2ec --- /dev/null +++ b/public/img/icons/unicons/clock-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-nine.svg b/public/img/icons/unicons/clock-nine.svg new file mode 100644 index 00000000000..8f71b53942e --- /dev/null +++ b/public/img/icons/unicons/clock-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-seven.svg b/public/img/icons/unicons/clock-seven.svg new file mode 100644 index 00000000000..c0c929e64a0 --- /dev/null +++ b/public/img/icons/unicons/clock-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-ten.svg b/public/img/icons/unicons/clock-ten.svg new file mode 100644 index 00000000000..26646d6d12f --- /dev/null +++ b/public/img/icons/unicons/clock-ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-three.svg b/public/img/icons/unicons/clock-three.svg new file mode 100644 index 00000000000..6559c7801dd --- /dev/null +++ b/public/img/icons/unicons/clock-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock-two.svg b/public/img/icons/unicons/clock-two.svg new file mode 100644 index 00000000000..00b026e8e90 --- /dev/null +++ b/public/img/icons/unicons/clock-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clock.svg b/public/img/icons/unicons/clock.svg new file mode 100644 index 00000000000..1eb1218e57a --- /dev/null +++ b/public/img/icons/unicons/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/closed-captioning-slash.svg b/public/img/icons/unicons/closed-captioning-slash.svg new file mode 100644 index 00000000000..49007faac2e --- /dev/null +++ b/public/img/icons/unicons/closed-captioning-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/closed-captioning.svg b/public/img/icons/unicons/closed-captioning.svg new file mode 100644 index 00000000000..ab7120f4873 --- /dev/null +++ b/public/img/icons/unicons/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-block.svg b/public/img/icons/unicons/cloud-block.svg new file mode 100644 index 00000000000..4ee82b8ebc0 --- /dev/null +++ b/public/img/icons/unicons/cloud-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-bookmark.svg b/public/img/icons/unicons/cloud-bookmark.svg new file mode 100644 index 00000000000..3f21a960f8e --- /dev/null +++ b/public/img/icons/unicons/cloud-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-check.svg b/public/img/icons/unicons/cloud-check.svg new file mode 100644 index 00000000000..0fafa0e3c46 --- /dev/null +++ b/public/img/icons/unicons/cloud-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-computing.svg b/public/img/icons/unicons/cloud-computing.svg new file mode 100644 index 00000000000..b5559389082 --- /dev/null +++ b/public/img/icons/unicons/cloud-computing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-data-connection.svg b/public/img/icons/unicons/cloud-data-connection.svg new file mode 100644 index 00000000000..c4b8b90d8a1 --- /dev/null +++ b/public/img/icons/unicons/cloud-data-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-database-tree.svg b/public/img/icons/unicons/cloud-database-tree.svg new file mode 100644 index 00000000000..aaa8c73bbf0 --- /dev/null +++ b/public/img/icons/unicons/cloud-database-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-download.svg b/public/img/icons/unicons/cloud-download.svg new file mode 100644 index 00000000000..5ebba2cdf75 --- /dev/null +++ b/public/img/icons/unicons/cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-drizzle.svg b/public/img/icons/unicons/cloud-drizzle.svg new file mode 100644 index 00000000000..615e7620aef --- /dev/null +++ b/public/img/icons/unicons/cloud-drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-exclamation.svg b/public/img/icons/unicons/cloud-exclamation.svg new file mode 100644 index 00000000000..f6c430ec5f0 --- /dev/null +++ b/public/img/icons/unicons/cloud-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-hail.svg b/public/img/icons/unicons/cloud-hail.svg new file mode 100644 index 00000000000..04213577c92 --- /dev/null +++ b/public/img/icons/unicons/cloud-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-heart.svg b/public/img/icons/unicons/cloud-heart.svg new file mode 100644 index 00000000000..28923908080 --- /dev/null +++ b/public/img/icons/unicons/cloud-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-info.svg b/public/img/icons/unicons/cloud-info.svg new file mode 100644 index 00000000000..8934c0dd81a --- /dev/null +++ b/public/img/icons/unicons/cloud-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-lock.svg b/public/img/icons/unicons/cloud-lock.svg new file mode 100644 index 00000000000..6bd0298edc4 --- /dev/null +++ b/public/img/icons/unicons/cloud-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-meatball.svg b/public/img/icons/unicons/cloud-meatball.svg new file mode 100644 index 00000000000..af0348b878c --- /dev/null +++ b/public/img/icons/unicons/cloud-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-moon-hail.svg b/public/img/icons/unicons/cloud-moon-hail.svg new file mode 100644 index 00000000000..24c6ca470a0 --- /dev/null +++ b/public/img/icons/unicons/cloud-moon-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-moon-meatball.svg b/public/img/icons/unicons/cloud-moon-meatball.svg new file mode 100644 index 00000000000..c5aa1a0f2ee --- /dev/null +++ b/public/img/icons/unicons/cloud-moon-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-moon-rain.svg b/public/img/icons/unicons/cloud-moon-rain.svg new file mode 100644 index 00000000000..e23d20e6f3a --- /dev/null +++ b/public/img/icons/unicons/cloud-moon-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-moon-showers.svg b/public/img/icons/unicons/cloud-moon-showers.svg new file mode 100644 index 00000000000..ab7db9866db --- /dev/null +++ b/public/img/icons/unicons/cloud-moon-showers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-moon.svg b/public/img/icons/unicons/cloud-moon.svg new file mode 100644 index 00000000000..00a5f6a828b --- /dev/null +++ b/public/img/icons/unicons/cloud-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-question.svg b/public/img/icons/unicons/cloud-question.svg new file mode 100644 index 00000000000..77842795255 --- /dev/null +++ b/public/img/icons/unicons/cloud-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-rain-sun.svg b/public/img/icons/unicons/cloud-rain-sun.svg new file mode 100644 index 00000000000..9eea6b47a75 --- /dev/null +++ b/public/img/icons/unicons/cloud-rain-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-rain.svg b/public/img/icons/unicons/cloud-rain.svg new file mode 100644 index 00000000000..1ac79d15d79 --- /dev/null +++ b/public/img/icons/unicons/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-redo.svg b/public/img/icons/unicons/cloud-redo.svg new file mode 100644 index 00000000000..23895904a32 --- /dev/null +++ b/public/img/icons/unicons/cloud-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-share.svg b/public/img/icons/unicons/cloud-share.svg new file mode 100644 index 00000000000..7ca7b621141 --- /dev/null +++ b/public/img/icons/unicons/cloud-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-shield.svg b/public/img/icons/unicons/cloud-shield.svg new file mode 100644 index 00000000000..80fe720e705 --- /dev/null +++ b/public/img/icons/unicons/cloud-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-showers-alt.svg b/public/img/icons/unicons/cloud-showers-alt.svg new file mode 100644 index 00000000000..3e5571004c1 --- /dev/null +++ b/public/img/icons/unicons/cloud-showers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-showers-heavy.svg b/public/img/icons/unicons/cloud-showers-heavy.svg new file mode 100644 index 00000000000..53062d3bdcb --- /dev/null +++ b/public/img/icons/unicons/cloud-showers-heavy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-showers.svg b/public/img/icons/unicons/cloud-showers.svg new file mode 100644 index 00000000000..e91836f3f28 --- /dev/null +++ b/public/img/icons/unicons/cloud-showers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-slash.svg b/public/img/icons/unicons/cloud-slash.svg new file mode 100644 index 00000000000..807a6922166 --- /dev/null +++ b/public/img/icons/unicons/cloud-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-sun-hail.svg b/public/img/icons/unicons/cloud-sun-hail.svg new file mode 100644 index 00000000000..2d225a3fbe8 --- /dev/null +++ b/public/img/icons/unicons/cloud-sun-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-sun-meatball.svg b/public/img/icons/unicons/cloud-sun-meatball.svg new file mode 100644 index 00000000000..cc3d946c97e --- /dev/null +++ b/public/img/icons/unicons/cloud-sun-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-sun-rain-alt.svg b/public/img/icons/unicons/cloud-sun-rain-alt.svg new file mode 100644 index 00000000000..0cac3d20164 --- /dev/null +++ b/public/img/icons/unicons/cloud-sun-rain-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-sun-rain.svg b/public/img/icons/unicons/cloud-sun-rain.svg new file mode 100644 index 00000000000..be60b470061 --- /dev/null +++ b/public/img/icons/unicons/cloud-sun-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-sun-tear.svg b/public/img/icons/unicons/cloud-sun-tear.svg new file mode 100644 index 00000000000..b35ecccd48e --- /dev/null +++ b/public/img/icons/unicons/cloud-sun-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-sun.svg b/public/img/icons/unicons/cloud-sun.svg new file mode 100644 index 00000000000..0cc85ce7691 --- /dev/null +++ b/public/img/icons/unicons/cloud-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-times.svg b/public/img/icons/unicons/cloud-times.svg new file mode 100644 index 00000000000..610e6ae1f47 --- /dev/null +++ b/public/img/icons/unicons/cloud-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-unlock.svg b/public/img/icons/unicons/cloud-unlock.svg new file mode 100644 index 00000000000..24ed718e8c0 --- /dev/null +++ b/public/img/icons/unicons/cloud-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-upload.svg b/public/img/icons/unicons/cloud-upload.svg new file mode 100644 index 00000000000..e90d346c2c5 --- /dev/null +++ b/public/img/icons/unicons/cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-wifi.svg b/public/img/icons/unicons/cloud-wifi.svg new file mode 100644 index 00000000000..4b1a6015696 --- /dev/null +++ b/public/img/icons/unicons/cloud-wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud-wind.svg b/public/img/icons/unicons/cloud-wind.svg new file mode 100644 index 00000000000..458221790de --- /dev/null +++ b/public/img/icons/unicons/cloud-wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cloud.svg b/public/img/icons/unicons/cloud.svg new file mode 100644 index 00000000000..925e54e7e28 --- /dev/null +++ b/public/img/icons/unicons/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/clouds.svg b/public/img/icons/unicons/clouds.svg new file mode 100644 index 00000000000..d0277adf1f8 --- /dev/null +++ b/public/img/icons/unicons/clouds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/club.svg b/public/img/icons/unicons/club.svg new file mode 100644 index 00000000000..ac3b134db3c --- /dev/null +++ b/public/img/icons/unicons/club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/code-branch.svg b/public/img/icons/unicons/code-branch.svg new file mode 100644 index 00000000000..cc74c697eaa --- /dev/null +++ b/public/img/icons/unicons/code-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/coffee.svg b/public/img/icons/unicons/coffee.svg new file mode 100644 index 00000000000..e2393ca68e7 --- /dev/null +++ b/public/img/icons/unicons/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cog.svg b/public/img/icons/unicons/cog.svg new file mode 100644 index 00000000000..982d8663e4a --- /dev/null +++ b/public/img/icons/unicons/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/coins.svg b/public/img/icons/unicons/coins.svg new file mode 100644 index 00000000000..2a5a2d7aec1 --- /dev/null +++ b/public/img/icons/unicons/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/columns.svg b/public/img/icons/unicons/columns.svg new file mode 100644 index 00000000000..d61c50e6135 --- /dev/null +++ b/public/img/icons/unicons/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-add.svg b/public/img/icons/unicons/comment-add.svg new file mode 100644 index 00000000000..30e7a13634e --- /dev/null +++ b/public/img/icons/unicons/comment-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-block.svg b/public/img/icons/unicons/comment-alt-block.svg new file mode 100644 index 00000000000..3d5ce39aac7 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-chart-lines.svg b/public/img/icons/unicons/comment-alt-chart-lines.svg new file mode 100644 index 00000000000..cdbd90d74a1 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-chart-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-check.svg b/public/img/icons/unicons/comment-alt-check.svg new file mode 100644 index 00000000000..278144dbd3b --- /dev/null +++ b/public/img/icons/unicons/comment-alt-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-dots.svg b/public/img/icons/unicons/comment-alt-dots.svg new file mode 100644 index 00000000000..08062be3e31 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-download.svg b/public/img/icons/unicons/comment-alt-download.svg new file mode 100644 index 00000000000..2c763228b66 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-edit.svg b/public/img/icons/unicons/comment-alt-edit.svg new file mode 100644 index 00000000000..160e773b72d --- /dev/null +++ b/public/img/icons/unicons/comment-alt-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-exclamation.svg b/public/img/icons/unicons/comment-alt-exclamation.svg new file mode 100644 index 00000000000..ca654f9e10c --- /dev/null +++ b/public/img/icons/unicons/comment-alt-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-heart.svg b/public/img/icons/unicons/comment-alt-heart.svg new file mode 100644 index 00000000000..9c508b93e91 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-image.svg b/public/img/icons/unicons/comment-alt-image.svg new file mode 100644 index 00000000000..9f8c8728425 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-info.svg b/public/img/icons/unicons/comment-alt-info.svg new file mode 100644 index 00000000000..bd5dc56406a --- /dev/null +++ b/public/img/icons/unicons/comment-alt-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-lines.svg b/public/img/icons/unicons/comment-alt-lines.svg new file mode 100644 index 00000000000..8a2197d33d1 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-lock.svg b/public/img/icons/unicons/comment-alt-lock.svg new file mode 100644 index 00000000000..5cbe93a711c --- /dev/null +++ b/public/img/icons/unicons/comment-alt-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-medical.svg b/public/img/icons/unicons/comment-alt-medical.svg new file mode 100644 index 00000000000..d58c28e20f3 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-message.svg b/public/img/icons/unicons/comment-alt-message.svg new file mode 100644 index 00000000000..09dacb6dc9c --- /dev/null +++ b/public/img/icons/unicons/comment-alt-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-notes.svg b/public/img/icons/unicons/comment-alt-notes.svg new file mode 100644 index 00000000000..fac5b51a449 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-plus.svg b/public/img/icons/unicons/comment-alt-plus.svg new file mode 100644 index 00000000000..3b412b5cc21 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-question.svg b/public/img/icons/unicons/comment-alt-question.svg new file mode 100644 index 00000000000..db93992abe3 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-redo.svg b/public/img/icons/unicons/comment-alt-redo.svg new file mode 100644 index 00000000000..a81bf375a15 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-search.svg b/public/img/icons/unicons/comment-alt-search.svg new file mode 100644 index 00000000000..45c0d743930 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-share.svg b/public/img/icons/unicons/comment-alt-share.svg new file mode 100644 index 00000000000..c9cd3c82c2d --- /dev/null +++ b/public/img/icons/unicons/comment-alt-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-shield.svg b/public/img/icons/unicons/comment-alt-shield.svg new file mode 100644 index 00000000000..1862ca78295 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-slash.svg b/public/img/icons/unicons/comment-alt-slash.svg new file mode 100644 index 00000000000..886ea547f5f --- /dev/null +++ b/public/img/icons/unicons/comment-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-upload.svg b/public/img/icons/unicons/comment-alt-upload.svg new file mode 100644 index 00000000000..50a5ad7fa81 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt-verify.svg b/public/img/icons/unicons/comment-alt-verify.svg new file mode 100644 index 00000000000..820b7f033b6 --- /dev/null +++ b/public/img/icons/unicons/comment-alt-verify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-alt.svg b/public/img/icons/unicons/comment-alt.svg new file mode 100644 index 00000000000..4d8da86f85f --- /dev/null +++ b/public/img/icons/unicons/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-block.svg b/public/img/icons/unicons/comment-block.svg new file mode 100644 index 00000000000..bd736653180 --- /dev/null +++ b/public/img/icons/unicons/comment-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-chart-line.svg b/public/img/icons/unicons/comment-chart-line.svg new file mode 100644 index 00000000000..304982bfb9c --- /dev/null +++ b/public/img/icons/unicons/comment-chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-check.svg b/public/img/icons/unicons/comment-check.svg new file mode 100644 index 00000000000..7cd7de70525 --- /dev/null +++ b/public/img/icons/unicons/comment-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-dots.svg b/public/img/icons/unicons/comment-dots.svg new file mode 100644 index 00000000000..644628f0aa8 --- /dev/null +++ b/public/img/icons/unicons/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-download.svg b/public/img/icons/unicons/comment-download.svg new file mode 100644 index 00000000000..f55044e8cef --- /dev/null +++ b/public/img/icons/unicons/comment-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-edit.svg b/public/img/icons/unicons/comment-edit.svg new file mode 100644 index 00000000000..4bc845dc0e8 --- /dev/null +++ b/public/img/icons/unicons/comment-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-exclamation.svg b/public/img/icons/unicons/comment-exclamation.svg new file mode 100644 index 00000000000..3dd87b94685 --- /dev/null +++ b/public/img/icons/unicons/comment-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-heart.svg b/public/img/icons/unicons/comment-heart.svg new file mode 100644 index 00000000000..e3094254c10 --- /dev/null +++ b/public/img/icons/unicons/comment-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-image.svg b/public/img/icons/unicons/comment-image.svg new file mode 100644 index 00000000000..168f5a603a3 --- /dev/null +++ b/public/img/icons/unicons/comment-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-info-alt.svg b/public/img/icons/unicons/comment-info-alt.svg new file mode 100644 index 00000000000..285a28217d8 --- /dev/null +++ b/public/img/icons/unicons/comment-info-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-info.svg b/public/img/icons/unicons/comment-info.svg new file mode 100644 index 00000000000..dad84924386 --- /dev/null +++ b/public/img/icons/unicons/comment-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-lines.svg b/public/img/icons/unicons/comment-lines.svg new file mode 100644 index 00000000000..30ed30b5576 --- /dev/null +++ b/public/img/icons/unicons/comment-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-lock.svg b/public/img/icons/unicons/comment-lock.svg new file mode 100644 index 00000000000..619b81a02a3 --- /dev/null +++ b/public/img/icons/unicons/comment-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-medical.svg b/public/img/icons/unicons/comment-medical.svg new file mode 100644 index 00000000000..060e3fdd5ab --- /dev/null +++ b/public/img/icons/unicons/comment-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-message.svg b/public/img/icons/unicons/comment-message.svg new file mode 100644 index 00000000000..082e0293c34 --- /dev/null +++ b/public/img/icons/unicons/comment-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-notes.svg b/public/img/icons/unicons/comment-notes.svg new file mode 100644 index 00000000000..b56f53ff812 --- /dev/null +++ b/public/img/icons/unicons/comment-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-plus.svg b/public/img/icons/unicons/comment-plus.svg new file mode 100644 index 00000000000..b303c38a7c5 --- /dev/null +++ b/public/img/icons/unicons/comment-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-question.svg b/public/img/icons/unicons/comment-question.svg new file mode 100644 index 00000000000..f5bd066bb13 --- /dev/null +++ b/public/img/icons/unicons/comment-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-redo.svg b/public/img/icons/unicons/comment-redo.svg new file mode 100644 index 00000000000..8dabbbda52c --- /dev/null +++ b/public/img/icons/unicons/comment-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-search.svg b/public/img/icons/unicons/comment-search.svg new file mode 100644 index 00000000000..8f26159fa0b --- /dev/null +++ b/public/img/icons/unicons/comment-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-share.svg b/public/img/icons/unicons/comment-share.svg new file mode 100644 index 00000000000..8793b738b04 --- /dev/null +++ b/public/img/icons/unicons/comment-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-shield.svg b/public/img/icons/unicons/comment-shield.svg new file mode 100644 index 00000000000..bb1eb37628d --- /dev/null +++ b/public/img/icons/unicons/comment-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-slash.svg b/public/img/icons/unicons/comment-slash.svg new file mode 100644 index 00000000000..8afa2c5fe02 --- /dev/null +++ b/public/img/icons/unicons/comment-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-upload.svg b/public/img/icons/unicons/comment-upload.svg new file mode 100644 index 00000000000..299d435c3b6 --- /dev/null +++ b/public/img/icons/unicons/comment-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment-verify.svg b/public/img/icons/unicons/comment-verify.svg new file mode 100644 index 00000000000..e94812226d3 --- /dev/null +++ b/public/img/icons/unicons/comment-verify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comment.svg b/public/img/icons/unicons/comment.svg new file mode 100644 index 00000000000..6188444f48c --- /dev/null +++ b/public/img/icons/unicons/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comments-alt.svg b/public/img/icons/unicons/comments-alt.svg new file mode 100644 index 00000000000..98a060f283a --- /dev/null +++ b/public/img/icons/unicons/comments-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comments.svg b/public/img/icons/unicons/comments.svg new file mode 100644 index 00000000000..b93b5fc28a1 --- /dev/null +++ b/public/img/icons/unicons/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compact-disc.svg b/public/img/icons/unicons/compact-disc.svg new file mode 100644 index 00000000000..547a307059f --- /dev/null +++ b/public/img/icons/unicons/compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/comparison.svg b/public/img/icons/unicons/comparison.svg new file mode 100644 index 00000000000..f8e31f33b0b --- /dev/null +++ b/public/img/icons/unicons/comparison.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compass.svg b/public/img/icons/unicons/compass.svg new file mode 100644 index 00000000000..2055f01a768 --- /dev/null +++ b/public/img/icons/unicons/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress-alt-left.svg b/public/img/icons/unicons/compress-alt-left.svg new file mode 100644 index 00000000000..643f25116be --- /dev/null +++ b/public/img/icons/unicons/compress-alt-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress-alt.svg b/public/img/icons/unicons/compress-alt.svg new file mode 100644 index 00000000000..fd9eaf79c6e --- /dev/null +++ b/public/img/icons/unicons/compress-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress-arrows.svg b/public/img/icons/unicons/compress-arrows.svg new file mode 100644 index 00000000000..5fca9154e51 --- /dev/null +++ b/public/img/icons/unicons/compress-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress-lines.svg b/public/img/icons/unicons/compress-lines.svg new file mode 100644 index 00000000000..94bcdaa33a0 --- /dev/null +++ b/public/img/icons/unicons/compress-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress-point.svg b/public/img/icons/unicons/compress-point.svg new file mode 100644 index 00000000000..55295e26f05 --- /dev/null +++ b/public/img/icons/unicons/compress-point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress-v.svg b/public/img/icons/unicons/compress-v.svg new file mode 100644 index 00000000000..328abb83493 --- /dev/null +++ b/public/img/icons/unicons/compress-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/compress.svg b/public/img/icons/unicons/compress.svg new file mode 100644 index 00000000000..1d9b6a454d2 --- /dev/null +++ b/public/img/icons/unicons/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/confused.svg b/public/img/icons/unicons/confused.svg new file mode 100644 index 00000000000..558d6c18a5e --- /dev/null +++ b/public/img/icons/unicons/confused.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/constructor.svg b/public/img/icons/unicons/constructor.svg new file mode 100644 index 00000000000..ea7c948ec02 --- /dev/null +++ b/public/img/icons/unicons/constructor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/copy-alt.svg b/public/img/icons/unicons/copy-alt.svg new file mode 100644 index 00000000000..1f0401fcc51 --- /dev/null +++ b/public/img/icons/unicons/copy-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/copy-landscape.svg b/public/img/icons/unicons/copy-landscape.svg new file mode 100644 index 00000000000..f2a46d675a1 --- /dev/null +++ b/public/img/icons/unicons/copy-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/copy.svg b/public/img/icons/unicons/copy.svg new file mode 100644 index 00000000000..1404ed257ae --- /dev/null +++ b/public/img/icons/unicons/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/copyright.svg b/public/img/icons/unicons/copyright.svg new file mode 100644 index 00000000000..5c8773933b9 --- /dev/null +++ b/public/img/icons/unicons/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-down-left.svg b/public/img/icons/unicons/corner-down-left.svg new file mode 100644 index 00000000000..f240f359162 --- /dev/null +++ b/public/img/icons/unicons/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-down-right-alt.svg b/public/img/icons/unicons/corner-down-right-alt.svg new file mode 100644 index 00000000000..2dbd839e3a4 --- /dev/null +++ b/public/img/icons/unicons/corner-down-right-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-down-right.svg b/public/img/icons/unicons/corner-down-right.svg new file mode 100644 index 00000000000..e180216f80e --- /dev/null +++ b/public/img/icons/unicons/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-left-down.svg b/public/img/icons/unicons/corner-left-down.svg new file mode 100644 index 00000000000..663e1b451a3 --- /dev/null +++ b/public/img/icons/unicons/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-right-down.svg b/public/img/icons/unicons/corner-right-down.svg new file mode 100644 index 00000000000..093d7ac4484 --- /dev/null +++ b/public/img/icons/unicons/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-up-left-alt.svg b/public/img/icons/unicons/corner-up-left-alt.svg new file mode 100644 index 00000000000..524670bcfc9 --- /dev/null +++ b/public/img/icons/unicons/corner-up-left-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-up-left.svg b/public/img/icons/unicons/corner-up-left.svg new file mode 100644 index 00000000000..cf80615f4ed --- /dev/null +++ b/public/img/icons/unicons/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-up-right-alt.svg b/public/img/icons/unicons/corner-up-right-alt.svg new file mode 100644 index 00000000000..db620d76dee --- /dev/null +++ b/public/img/icons/unicons/corner-up-right-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/corner-up-right.svg b/public/img/icons/unicons/corner-up-right.svg new file mode 100644 index 00000000000..86b8831412e --- /dev/null +++ b/public/img/icons/unicons/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/coronavirus.svg b/public/img/icons/unicons/coronavirus.svg new file mode 100644 index 00000000000..4757f7629e6 --- /dev/null +++ b/public/img/icons/unicons/coronavirus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/create-dashboard.svg b/public/img/icons/unicons/create-dashboard.svg new file mode 100644 index 00000000000..de8a94e7461 --- /dev/null +++ b/public/img/icons/unicons/create-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/creative-commons-pd.svg b/public/img/icons/unicons/creative-commons-pd.svg new file mode 100644 index 00000000000..aa766a65af3 --- /dev/null +++ b/public/img/icons/unicons/creative-commons-pd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/credit-card-search.svg b/public/img/icons/unicons/credit-card-search.svg new file mode 100644 index 00000000000..82984937ccc --- /dev/null +++ b/public/img/icons/unicons/credit-card-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/credit-card.svg b/public/img/icons/unicons/credit-card.svg new file mode 100644 index 00000000000..4f74502ab49 --- /dev/null +++ b/public/img/icons/unicons/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crockery.svg b/public/img/icons/unicons/crockery.svg new file mode 100644 index 00000000000..b4eee6abf9f --- /dev/null +++ b/public/img/icons/unicons/crockery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crop-alt-rotate-left.svg b/public/img/icons/unicons/crop-alt-rotate-left.svg new file mode 100644 index 00000000000..ee24e17bdae --- /dev/null +++ b/public/img/icons/unicons/crop-alt-rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crop-alt-rotate-right.svg b/public/img/icons/unicons/crop-alt-rotate-right.svg new file mode 100644 index 00000000000..cf93864479d --- /dev/null +++ b/public/img/icons/unicons/crop-alt-rotate-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crop-alt.svg b/public/img/icons/unicons/crop-alt.svg new file mode 100644 index 00000000000..e365746889b --- /dev/null +++ b/public/img/icons/unicons/crop-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crosshair-alt.svg b/public/img/icons/unicons/crosshair-alt.svg new file mode 100644 index 00000000000..960b6c37bb8 --- /dev/null +++ b/public/img/icons/unicons/crosshair-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crosshair.svg b/public/img/icons/unicons/crosshair.svg new file mode 100644 index 00000000000..1bdcded94e4 --- /dev/null +++ b/public/img/icons/unicons/crosshair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/crosshairs.svg b/public/img/icons/unicons/crosshairs.svg new file mode 100644 index 00000000000..d1dbde2d457 --- /dev/null +++ b/public/img/icons/unicons/crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/css3-simple.svg b/public/img/icons/unicons/css3-simple.svg new file mode 100644 index 00000000000..828b4418af8 --- /dev/null +++ b/public/img/icons/unicons/css3-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/cube.svg b/public/img/icons/unicons/cube.svg new file mode 100644 index 00000000000..c365b525970 --- /dev/null +++ b/public/img/icons/unicons/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dashboard.svg b/public/img/icons/unicons/dashboard.svg new file mode 100644 index 00000000000..5e698696457 --- /dev/null +++ b/public/img/icons/unicons/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/data-sharing.svg b/public/img/icons/unicons/data-sharing.svg new file mode 100644 index 00000000000..0c3700c5ffc --- /dev/null +++ b/public/img/icons/unicons/data-sharing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/database-alt.svg b/public/img/icons/unicons/database-alt.svg new file mode 100644 index 00000000000..29535921746 --- /dev/null +++ b/public/img/icons/unicons/database-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/database.svg b/public/img/icons/unicons/database.svg new file mode 100644 index 00000000000..dc7d33efc85 --- /dev/null +++ b/public/img/icons/unicons/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/desert.svg b/public/img/icons/unicons/desert.svg new file mode 100644 index 00000000000..af7a92b0a25 --- /dev/null +++ b/public/img/icons/unicons/desert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/desktop-alt-slash.svg b/public/img/icons/unicons/desktop-alt-slash.svg new file mode 100644 index 00000000000..27ad6d0d203 --- /dev/null +++ b/public/img/icons/unicons/desktop-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/desktop-alt.svg b/public/img/icons/unicons/desktop-alt.svg new file mode 100644 index 00000000000..421b9f81b28 --- /dev/null +++ b/public/img/icons/unicons/desktop-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/desktop-cloud-alt.svg b/public/img/icons/unicons/desktop-cloud-alt.svg new file mode 100644 index 00000000000..b5d15612fcc --- /dev/null +++ b/public/img/icons/unicons/desktop-cloud-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/desktop-slash.svg b/public/img/icons/unicons/desktop-slash.svg new file mode 100644 index 00000000000..5a62adbfd6e --- /dev/null +++ b/public/img/icons/unicons/desktop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/desktop.svg b/public/img/icons/unicons/desktop.svg new file mode 100644 index 00000000000..57d9d36f4c6 --- /dev/null +++ b/public/img/icons/unicons/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dialpad-alt.svg b/public/img/icons/unicons/dialpad-alt.svg new file mode 100644 index 00000000000..89487798203 --- /dev/null +++ b/public/img/icons/unicons/dialpad-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dialpad.svg b/public/img/icons/unicons/dialpad.svg new file mode 100644 index 00000000000..7b1e47d3a4d --- /dev/null +++ b/public/img/icons/unicons/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/diamond.svg b/public/img/icons/unicons/diamond.svg new file mode 100644 index 00000000000..34af97c2223 --- /dev/null +++ b/public/img/icons/unicons/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/diary-alt.svg b/public/img/icons/unicons/diary-alt.svg new file mode 100644 index 00000000000..d216320f5f4 --- /dev/null +++ b/public/img/icons/unicons/diary-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/diary.svg b/public/img/icons/unicons/diary.svg new file mode 100644 index 00000000000..8e2e3817845 --- /dev/null +++ b/public/img/icons/unicons/diary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dice-five.svg b/public/img/icons/unicons/dice-five.svg new file mode 100644 index 00000000000..7a435b2be78 --- /dev/null +++ b/public/img/icons/unicons/dice-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dice-four.svg b/public/img/icons/unicons/dice-four.svg new file mode 100644 index 00000000000..1bba187833f --- /dev/null +++ b/public/img/icons/unicons/dice-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dice-one.svg b/public/img/icons/unicons/dice-one.svg new file mode 100644 index 00000000000..04b80df4822 --- /dev/null +++ b/public/img/icons/unicons/dice-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dice-six.svg b/public/img/icons/unicons/dice-six.svg new file mode 100644 index 00000000000..d56ab21f3e1 --- /dev/null +++ b/public/img/icons/unicons/dice-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dice-three.svg b/public/img/icons/unicons/dice-three.svg new file mode 100644 index 00000000000..041d80aa100 --- /dev/null +++ b/public/img/icons/unicons/dice-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dice-two.svg b/public/img/icons/unicons/dice-two.svg new file mode 100644 index 00000000000..425f3a481d8 --- /dev/null +++ b/public/img/icons/unicons/dice-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/direction.svg b/public/img/icons/unicons/direction.svg new file mode 100644 index 00000000000..dcbc6976e79 --- /dev/null +++ b/public/img/icons/unicons/direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/directions.svg b/public/img/icons/unicons/directions.svg new file mode 100644 index 00000000000..eb39ecc2bb9 --- /dev/null +++ b/public/img/icons/unicons/directions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/discord.svg b/public/img/icons/unicons/discord.svg new file mode 100644 index 00000000000..149ee80d876 --- /dev/null +++ b/public/img/icons/unicons/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dizzy-meh.svg b/public/img/icons/unicons/dizzy-meh.svg new file mode 100644 index 00000000000..ee63c786094 --- /dev/null +++ b/public/img/icons/unicons/dizzy-meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dna.svg b/public/img/icons/unicons/dna.svg new file mode 100644 index 00000000000..405bd8673c6 --- /dev/null +++ b/public/img/icons/unicons/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/docker.svg b/public/img/icons/unicons/docker.svg new file mode 100644 index 00000000000..553dbd587ba --- /dev/null +++ b/public/img/icons/unicons/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/document-info.svg b/public/img/icons/unicons/document-info.svg new file mode 100644 index 00000000000..dc5b17e4e6d --- /dev/null +++ b/public/img/icons/unicons/document-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/document-layout-center.svg b/public/img/icons/unicons/document-layout-center.svg new file mode 100644 index 00000000000..12ad1179218 --- /dev/null +++ b/public/img/icons/unicons/document-layout-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/document-layout-left.svg b/public/img/icons/unicons/document-layout-left.svg new file mode 100644 index 00000000000..f7b798f4d8c --- /dev/null +++ b/public/img/icons/unicons/document-layout-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/document-layout-right.svg b/public/img/icons/unicons/document-layout-right.svg new file mode 100644 index 00000000000..bd0b43dc782 --- /dev/null +++ b/public/img/icons/unicons/document-layout-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dollar-alt.svg b/public/img/icons/unicons/dollar-alt.svg new file mode 100644 index 00000000000..ed0a26935b3 --- /dev/null +++ b/public/img/icons/unicons/dollar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dollar-sign-alt.svg b/public/img/icons/unicons/dollar-sign-alt.svg new file mode 100644 index 00000000000..e97680d97a4 --- /dev/null +++ b/public/img/icons/unicons/dollar-sign-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dollar-sign.svg b/public/img/icons/unicons/dollar-sign.svg new file mode 100644 index 00000000000..e97680d97a4 --- /dev/null +++ b/public/img/icons/unicons/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/download-alt.svg b/public/img/icons/unicons/download-alt.svg new file mode 100644 index 00000000000..574f0a1b9d2 --- /dev/null +++ b/public/img/icons/unicons/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/draggabledots.svg b/public/img/icons/unicons/draggabledots.svg new file mode 100644 index 00000000000..4e5d98a7214 --- /dev/null +++ b/public/img/icons/unicons/draggabledots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dribbble.svg b/public/img/icons/unicons/dribbble.svg new file mode 100644 index 00000000000..30c8c5cf4af --- /dev/null +++ b/public/img/icons/unicons/dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/drill.svg b/public/img/icons/unicons/drill.svg new file mode 100644 index 00000000000..17a9fd18168 --- /dev/null +++ b/public/img/icons/unicons/drill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dropbox.svg b/public/img/icons/unicons/dropbox.svg new file mode 100644 index 00000000000..ce0c22b1ccd --- /dev/null +++ b/public/img/icons/unicons/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/dumbbell.svg b/public/img/icons/unicons/dumbbell.svg new file mode 100644 index 00000000000..bb5918675b4 --- /dev/null +++ b/public/img/icons/unicons/dumbbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ear.svg b/public/img/icons/unicons/ear.svg new file mode 100644 index 00000000000..cef668359c2 --- /dev/null +++ b/public/img/icons/unicons/ear.svg @@ -0,0 +1 @@ +Ear \ No newline at end of file diff --git a/public/img/icons/unicons/edit-alt.svg b/public/img/icons/unicons/edit-alt.svg new file mode 100644 index 00000000000..f1a2cd6114e --- /dev/null +++ b/public/img/icons/unicons/edit-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/edit.svg b/public/img/icons/unicons/edit.svg new file mode 100644 index 00000000000..62b8946863f --- /dev/null +++ b/public/img/icons/unicons/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/elipsis-double-v-alt.svg b/public/img/icons/unicons/elipsis-double-v-alt.svg new file mode 100644 index 00000000000..381d09e1d22 --- /dev/null +++ b/public/img/icons/unicons/elipsis-double-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ellipsis-h.svg b/public/img/icons/unicons/ellipsis-h.svg new file mode 100644 index 00000000000..629a1208793 --- /dev/null +++ b/public/img/icons/unicons/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ellipsis-v.svg b/public/img/icons/unicons/ellipsis-v.svg new file mode 100644 index 00000000000..676776e64b0 --- /dev/null +++ b/public/img/icons/unicons/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/emoji.svg b/public/img/icons/unicons/emoji.svg new file mode 100644 index 00000000000..df229b986ca --- /dev/null +++ b/public/img/icons/unicons/emoji.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/english-to-chinese.svg b/public/img/icons/unicons/english-to-chinese.svg new file mode 100644 index 00000000000..1cdf4529ddb --- /dev/null +++ b/public/img/icons/unicons/english-to-chinese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/enter.svg b/public/img/icons/unicons/enter.svg new file mode 100644 index 00000000000..7458836ccb1 --- /dev/null +++ b/public/img/icons/unicons/enter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-add.svg b/public/img/icons/unicons/envelope-add.svg new file mode 100644 index 00000000000..1664c1c4954 --- /dev/null +++ b/public/img/icons/unicons/envelope-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-alt.svg b/public/img/icons/unicons/envelope-alt.svg new file mode 100644 index 00000000000..2474f096442 --- /dev/null +++ b/public/img/icons/unicons/envelope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-block.svg b/public/img/icons/unicons/envelope-block.svg new file mode 100644 index 00000000000..c7540296576 --- /dev/null +++ b/public/img/icons/unicons/envelope-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-bookmark.svg b/public/img/icons/unicons/envelope-bookmark.svg new file mode 100644 index 00000000000..21b6875c8b7 --- /dev/null +++ b/public/img/icons/unicons/envelope-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-check.svg b/public/img/icons/unicons/envelope-check.svg new file mode 100644 index 00000000000..b8fc89f26b1 --- /dev/null +++ b/public/img/icons/unicons/envelope-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-download-alt.svg b/public/img/icons/unicons/envelope-download-alt.svg new file mode 100644 index 00000000000..a5435d3d834 --- /dev/null +++ b/public/img/icons/unicons/envelope-download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-download.svg b/public/img/icons/unicons/envelope-download.svg new file mode 100644 index 00000000000..3f2a77fdaf0 --- /dev/null +++ b/public/img/icons/unicons/envelope-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-edit.svg b/public/img/icons/unicons/envelope-edit.svg new file mode 100644 index 00000000000..a79c846fafc --- /dev/null +++ b/public/img/icons/unicons/envelope-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-exclamation.svg b/public/img/icons/unicons/envelope-exclamation.svg new file mode 100644 index 00000000000..a6739b75c1f --- /dev/null +++ b/public/img/icons/unicons/envelope-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-heart.svg b/public/img/icons/unicons/envelope-heart.svg new file mode 100644 index 00000000000..dc0958d195c --- /dev/null +++ b/public/img/icons/unicons/envelope-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-info.svg b/public/img/icons/unicons/envelope-info.svg new file mode 100644 index 00000000000..60f9c0ca6ac --- /dev/null +++ b/public/img/icons/unicons/envelope-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-lock.svg b/public/img/icons/unicons/envelope-lock.svg new file mode 100644 index 00000000000..d9e8dbcf8db --- /dev/null +++ b/public/img/icons/unicons/envelope-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-minus.svg b/public/img/icons/unicons/envelope-minus.svg new file mode 100644 index 00000000000..c0964765064 --- /dev/null +++ b/public/img/icons/unicons/envelope-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-open.svg b/public/img/icons/unicons/envelope-open.svg new file mode 100644 index 00000000000..50bece7a5b1 --- /dev/null +++ b/public/img/icons/unicons/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-question.svg b/public/img/icons/unicons/envelope-question.svg new file mode 100644 index 00000000000..eb84a10b8f9 --- /dev/null +++ b/public/img/icons/unicons/envelope-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-receive.svg b/public/img/icons/unicons/envelope-receive.svg new file mode 100644 index 00000000000..1107934c5f0 --- /dev/null +++ b/public/img/icons/unicons/envelope-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-redo.svg b/public/img/icons/unicons/envelope-redo.svg new file mode 100644 index 00000000000..dc933a2286d --- /dev/null +++ b/public/img/icons/unicons/envelope-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-search.svg b/public/img/icons/unicons/envelope-search.svg new file mode 100644 index 00000000000..0aa84a20ac4 --- /dev/null +++ b/public/img/icons/unicons/envelope-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-send.svg b/public/img/icons/unicons/envelope-send.svg new file mode 100644 index 00000000000..33287d5051b --- /dev/null +++ b/public/img/icons/unicons/envelope-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-share.svg b/public/img/icons/unicons/envelope-share.svg new file mode 100644 index 00000000000..b72b9cbbea2 --- /dev/null +++ b/public/img/icons/unicons/envelope-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-shield.svg b/public/img/icons/unicons/envelope-shield.svg new file mode 100644 index 00000000000..a760411c900 --- /dev/null +++ b/public/img/icons/unicons/envelope-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-star.svg b/public/img/icons/unicons/envelope-star.svg new file mode 100644 index 00000000000..2394279532f --- /dev/null +++ b/public/img/icons/unicons/envelope-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-times.svg b/public/img/icons/unicons/envelope-times.svg new file mode 100644 index 00000000000..cb7ff2c93b3 --- /dev/null +++ b/public/img/icons/unicons/envelope-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-upload-alt.svg b/public/img/icons/unicons/envelope-upload-alt.svg new file mode 100644 index 00000000000..a7807293dc5 --- /dev/null +++ b/public/img/icons/unicons/envelope-upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope-upload.svg b/public/img/icons/unicons/envelope-upload.svg new file mode 100644 index 00000000000..a4604f02922 --- /dev/null +++ b/public/img/icons/unicons/envelope-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelope.svg b/public/img/icons/unicons/envelope.svg new file mode 100644 index 00000000000..f88dd1dca63 --- /dev/null +++ b/public/img/icons/unicons/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/envelopes.svg b/public/img/icons/unicons/envelopes.svg new file mode 100644 index 00000000000..b02eb179441 --- /dev/null +++ b/public/img/icons/unicons/envelopes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/equal-circle.svg b/public/img/icons/unicons/equal-circle.svg new file mode 100644 index 00000000000..d0f2c02e319 --- /dev/null +++ b/public/img/icons/unicons/equal-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/estate.svg b/public/img/icons/unicons/estate.svg new file mode 100644 index 00000000000..798130de6d8 --- /dev/null +++ b/public/img/icons/unicons/estate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/euro-circle.svg b/public/img/icons/unicons/euro-circle.svg new file mode 100644 index 00000000000..4b98785ca76 --- /dev/null +++ b/public/img/icons/unicons/euro-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/euro.svg b/public/img/icons/unicons/euro.svg new file mode 100644 index 00000000000..84688e0e273 --- /dev/null +++ b/public/img/icons/unicons/euro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exchange-alt.svg b/public/img/icons/unicons/exchange-alt.svg new file mode 100644 index 00000000000..b36fd9ed0a0 --- /dev/null +++ b/public/img/icons/unicons/exchange-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exchange.svg b/public/img/icons/unicons/exchange.svg new file mode 100644 index 00000000000..37b3114f8a8 --- /dev/null +++ b/public/img/icons/unicons/exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exclamation-circle.svg b/public/img/icons/unicons/exclamation-circle.svg new file mode 100644 index 00000000000..ed889cdbb50 --- /dev/null +++ b/public/img/icons/unicons/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exclamation-octagon.svg b/public/img/icons/unicons/exclamation-octagon.svg new file mode 100644 index 00000000000..e68532fb230 --- /dev/null +++ b/public/img/icons/unicons/exclamation-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exclamation-triangle.svg b/public/img/icons/unicons/exclamation-triangle.svg new file mode 100644 index 00000000000..49d4ec27805 --- /dev/null +++ b/public/img/icons/unicons/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exclamation.svg b/public/img/icons/unicons/exclamation.svg new file mode 100644 index 00000000000..d283f07239d --- /dev/null +++ b/public/img/icons/unicons/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exclude.svg b/public/img/icons/unicons/exclude.svg new file mode 100644 index 00000000000..e4b25a4d01a --- /dev/null +++ b/public/img/icons/unicons/exclude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exit.svg b/public/img/icons/unicons/exit.svg new file mode 100644 index 00000000000..4009a2654bb --- /dev/null +++ b/public/img/icons/unicons/exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/expand-alt.svg b/public/img/icons/unicons/expand-alt.svg new file mode 100644 index 00000000000..3817a58771d --- /dev/null +++ b/public/img/icons/unicons/expand-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/expand-arrows-alt.svg b/public/img/icons/unicons/expand-arrows-alt.svg new file mode 100644 index 00000000000..0197d11552f --- /dev/null +++ b/public/img/icons/unicons/expand-arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/expand-arrows.svg b/public/img/icons/unicons/expand-arrows.svg new file mode 100644 index 00000000000..906d9fff618 --- /dev/null +++ b/public/img/icons/unicons/expand-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/expand-from-corner.svg b/public/img/icons/unicons/expand-from-corner.svg new file mode 100644 index 00000000000..d8dcb4f3fc8 --- /dev/null +++ b/public/img/icons/unicons/expand-from-corner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/expand-left.svg b/public/img/icons/unicons/expand-left.svg new file mode 100644 index 00000000000..565aea099a2 --- /dev/null +++ b/public/img/icons/unicons/expand-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/expand-right.svg b/public/img/icons/unicons/expand-right.svg new file mode 100644 index 00000000000..6b0fb1c75dc --- /dev/null +++ b/public/img/icons/unicons/expand-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/export.svg b/public/img/icons/unicons/export.svg new file mode 100644 index 00000000000..64b674516b1 --- /dev/null +++ b/public/img/icons/unicons/export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exposure-alt.svg b/public/img/icons/unicons/exposure-alt.svg new file mode 100644 index 00000000000..b17b9594864 --- /dev/null +++ b/public/img/icons/unicons/exposure-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/exposure-increase.svg b/public/img/icons/unicons/exposure-increase.svg new file mode 100644 index 00000000000..eb3dc393874 --- /dev/null +++ b/public/img/icons/unicons/exposure-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/external-link-alt.svg b/public/img/icons/unicons/external-link-alt.svg new file mode 100644 index 00000000000..196abdfa19a --- /dev/null +++ b/public/img/icons/unicons/external-link-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/eye-slash.svg b/public/img/icons/unicons/eye-slash.svg new file mode 100644 index 00000000000..702f0a87f43 --- /dev/null +++ b/public/img/icons/unicons/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/eye.svg b/public/img/icons/unicons/eye.svg new file mode 100644 index 00000000000..5f7293fa112 --- /dev/null +++ b/public/img/icons/unicons/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/facebook-f.svg b/public/img/icons/unicons/facebook-f.svg new file mode 100644 index 00000000000..f1a9f16401d --- /dev/null +++ b/public/img/icons/unicons/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/facebook-messenger-alt.svg b/public/img/icons/unicons/facebook-messenger-alt.svg new file mode 100644 index 00000000000..47a185879bd --- /dev/null +++ b/public/img/icons/unicons/facebook-messenger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/facebook-messenger.svg b/public/img/icons/unicons/facebook-messenger.svg new file mode 100644 index 00000000000..32465e109e4 --- /dev/null +++ b/public/img/icons/unicons/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/facebook.svg b/public/img/icons/unicons/facebook.svg new file mode 100644 index 00000000000..c1be95a5f60 --- /dev/null +++ b/public/img/icons/unicons/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/fahrenheit.svg b/public/img/icons/unicons/fahrenheit.svg new file mode 100644 index 00000000000..8af9d00001a --- /dev/null +++ b/public/img/icons/unicons/fahrenheit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/fast-mail-alt.svg b/public/img/icons/unicons/fast-mail-alt.svg new file mode 100644 index 00000000000..123e370697d --- /dev/null +++ b/public/img/icons/unicons/fast-mail-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/fast-mail.svg b/public/img/icons/unicons/fast-mail.svg new file mode 100644 index 00000000000..781348766ab --- /dev/null +++ b/public/img/icons/unicons/fast-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/favorite.svg b/public/img/icons/unicons/favorite.svg new file mode 100644 index 00000000000..3a22c296ccd --- /dev/null +++ b/public/img/icons/unicons/favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/feedback.svg b/public/img/icons/unicons/feedback.svg new file mode 100644 index 00000000000..663d7a09b4e --- /dev/null +++ b/public/img/icons/unicons/feedback.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/fidget-spinner.svg b/public/img/icons/unicons/fidget-spinner.svg new file mode 100644 index 00000000000..5c6f01109ad --- /dev/null +++ b/public/img/icons/unicons/fidget-spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-alt.svg b/public/img/icons/unicons/file-alt.svg new file mode 100644 index 00000000000..d2f338143ec --- /dev/null +++ b/public/img/icons/unicons/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-blank.svg b/public/img/icons/unicons/file-blank.svg new file mode 100644 index 00000000000..3462dc71d8a --- /dev/null +++ b/public/img/icons/unicons/file-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-block-alt.svg b/public/img/icons/unicons/file-block-alt.svg new file mode 100644 index 00000000000..473d710c2c9 --- /dev/null +++ b/public/img/icons/unicons/file-block-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-bookmark-alt.svg b/public/img/icons/unicons/file-bookmark-alt.svg new file mode 100644 index 00000000000..778bbbf9635 --- /dev/null +++ b/public/img/icons/unicons/file-bookmark-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-check-alt.svg b/public/img/icons/unicons/file-check-alt.svg new file mode 100644 index 00000000000..c689bb71502 --- /dev/null +++ b/public/img/icons/unicons/file-check-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-check.svg b/public/img/icons/unicons/file-check.svg new file mode 100644 index 00000000000..ceeb2ab6d65 --- /dev/null +++ b/public/img/icons/unicons/file-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-contract-dollar.svg b/public/img/icons/unicons/file-contract-dollar.svg new file mode 100644 index 00000000000..4f1286db522 --- /dev/null +++ b/public/img/icons/unicons/file-contract-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-contract.svg b/public/img/icons/unicons/file-contract.svg new file mode 100644 index 00000000000..3e76142b236 --- /dev/null +++ b/public/img/icons/unicons/file-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-copy-alt.svg b/public/img/icons/unicons/file-copy-alt.svg new file mode 100644 index 00000000000..578263caf26 --- /dev/null +++ b/public/img/icons/unicons/file-copy-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-download-alt.svg b/public/img/icons/unicons/file-download-alt.svg new file mode 100644 index 00000000000..f8c604f1140 --- /dev/null +++ b/public/img/icons/unicons/file-download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-download.svg b/public/img/icons/unicons/file-download.svg new file mode 100644 index 00000000000..2a3e7495c15 --- /dev/null +++ b/public/img/icons/unicons/file-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-edit-alt.svg b/public/img/icons/unicons/file-edit-alt.svg new file mode 100644 index 00000000000..71edd3f2fac --- /dev/null +++ b/public/img/icons/unicons/file-edit-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-exclamation-alt.svg b/public/img/icons/unicons/file-exclamation-alt.svg new file mode 100644 index 00000000000..fe0cf9d5365 --- /dev/null +++ b/public/img/icons/unicons/file-exclamation-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-exclamation.svg b/public/img/icons/unicons/file-exclamation.svg new file mode 100644 index 00000000000..a594dda0b4e --- /dev/null +++ b/public/img/icons/unicons/file-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-export.svg b/public/img/icons/unicons/file-export.svg new file mode 100644 index 00000000000..f97a1656037 --- /dev/null +++ b/public/img/icons/unicons/file-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-graph.svg b/public/img/icons/unicons/file-graph.svg new file mode 100644 index 00000000000..9129f453fad --- /dev/null +++ b/public/img/icons/unicons/file-graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-heart.svg b/public/img/icons/unicons/file-heart.svg new file mode 100644 index 00000000000..8dad6d1669f --- /dev/null +++ b/public/img/icons/unicons/file-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-import.svg b/public/img/icons/unicons/file-import.svg new file mode 100644 index 00000000000..5db58b684a7 --- /dev/null +++ b/public/img/icons/unicons/file-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-info-alt.svg b/public/img/icons/unicons/file-info-alt.svg new file mode 100644 index 00000000000..42b1c71345f --- /dev/null +++ b/public/img/icons/unicons/file-info-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-landscape-alt.svg b/public/img/icons/unicons/file-landscape-alt.svg new file mode 100644 index 00000000000..61d665cf6af --- /dev/null +++ b/public/img/icons/unicons/file-landscape-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-landscape.svg b/public/img/icons/unicons/file-landscape.svg new file mode 100644 index 00000000000..06a8814117a --- /dev/null +++ b/public/img/icons/unicons/file-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-lanscape-slash.svg b/public/img/icons/unicons/file-lanscape-slash.svg new file mode 100644 index 00000000000..9785da2d39a --- /dev/null +++ b/public/img/icons/unicons/file-lanscape-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-lock-alt.svg b/public/img/icons/unicons/file-lock-alt.svg new file mode 100644 index 00000000000..9eb030a56c1 --- /dev/null +++ b/public/img/icons/unicons/file-lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-medical-alt.svg b/public/img/icons/unicons/file-medical-alt.svg new file mode 100644 index 00000000000..a07ed3a4cf6 --- /dev/null +++ b/public/img/icons/unicons/file-medical-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-medical.svg b/public/img/icons/unicons/file-medical.svg new file mode 100644 index 00000000000..0e0fc2db866 --- /dev/null +++ b/public/img/icons/unicons/file-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-minus-alt.svg b/public/img/icons/unicons/file-minus-alt.svg new file mode 100644 index 00000000000..2241ed91a69 --- /dev/null +++ b/public/img/icons/unicons/file-minus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-minus.svg b/public/img/icons/unicons/file-minus.svg new file mode 100644 index 00000000000..c7210262f30 --- /dev/null +++ b/public/img/icons/unicons/file-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-network.svg b/public/img/icons/unicons/file-network.svg new file mode 100644 index 00000000000..dbfec22951c --- /dev/null +++ b/public/img/icons/unicons/file-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-plus-alt.svg b/public/img/icons/unicons/file-plus-alt.svg new file mode 100644 index 00000000000..caf7adad201 --- /dev/null +++ b/public/img/icons/unicons/file-plus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-plus.svg b/public/img/icons/unicons/file-plus.svg new file mode 100644 index 00000000000..a378a74c997 --- /dev/null +++ b/public/img/icons/unicons/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-question-alt.svg b/public/img/icons/unicons/file-question-alt.svg new file mode 100644 index 00000000000..ae91dd2a86c --- /dev/null +++ b/public/img/icons/unicons/file-question-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-question.svg b/public/img/icons/unicons/file-question.svg new file mode 100644 index 00000000000..a11da238495 --- /dev/null +++ b/public/img/icons/unicons/file-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-redo-alt.svg b/public/img/icons/unicons/file-redo-alt.svg new file mode 100644 index 00000000000..5cb444b114d --- /dev/null +++ b/public/img/icons/unicons/file-redo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-search-alt.svg b/public/img/icons/unicons/file-search-alt.svg new file mode 100644 index 00000000000..54b4a551607 --- /dev/null +++ b/public/img/icons/unicons/file-search-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-share-alt.svg b/public/img/icons/unicons/file-share-alt.svg new file mode 100644 index 00000000000..4239cfeb1e9 --- /dev/null +++ b/public/img/icons/unicons/file-share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-shield-alt.svg b/public/img/icons/unicons/file-shield-alt.svg new file mode 100644 index 00000000000..46e3d6d4dd0 --- /dev/null +++ b/public/img/icons/unicons/file-shield-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-slash.svg b/public/img/icons/unicons/file-slash.svg new file mode 100644 index 00000000000..18416ffe5cf --- /dev/null +++ b/public/img/icons/unicons/file-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-times-alt.svg b/public/img/icons/unicons/file-times-alt.svg new file mode 100644 index 00000000000..66724983bd1 --- /dev/null +++ b/public/img/icons/unicons/file-times-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-times.svg b/public/img/icons/unicons/file-times.svg new file mode 100644 index 00000000000..4399302b340 --- /dev/null +++ b/public/img/icons/unicons/file-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-upload-alt.svg b/public/img/icons/unicons/file-upload-alt.svg new file mode 100644 index 00000000000..be87c540854 --- /dev/null +++ b/public/img/icons/unicons/file-upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file-upload.svg b/public/img/icons/unicons/file-upload.svg new file mode 100644 index 00000000000..a87ebcbfd96 --- /dev/null +++ b/public/img/icons/unicons/file-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/file.svg b/public/img/icons/unicons/file.svg new file mode 100644 index 00000000000..a6a3460387e --- /dev/null +++ b/public/img/icons/unicons/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/files-landscapes-alt.svg b/public/img/icons/unicons/files-landscapes-alt.svg new file mode 100644 index 00000000000..8a934f330be --- /dev/null +++ b/public/img/icons/unicons/files-landscapes-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/files-landscapes.svg b/public/img/icons/unicons/files-landscapes.svg new file mode 100644 index 00000000000..7bbf700dc6a --- /dev/null +++ b/public/img/icons/unicons/files-landscapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/film.svg b/public/img/icons/unicons/film.svg new file mode 100644 index 00000000000..4f4f47dda89 --- /dev/null +++ b/public/img/icons/unicons/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/filter-slash.svg b/public/img/icons/unicons/filter-slash.svg new file mode 100644 index 00000000000..3c4342b4a35 --- /dev/null +++ b/public/img/icons/unicons/filter-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/filter.svg b/public/img/icons/unicons/filter.svg new file mode 100644 index 00000000000..f7f8681c111 --- /dev/null +++ b/public/img/icons/unicons/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/fire.svg b/public/img/icons/unicons/fire.svg new file mode 100644 index 00000000000..1d6d8f316b1 --- /dev/null +++ b/public/img/icons/unicons/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flask-potion.svg b/public/img/icons/unicons/flask-potion.svg new file mode 100644 index 00000000000..543dda899f3 --- /dev/null +++ b/public/img/icons/unicons/flask-potion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flask.svg b/public/img/icons/unicons/flask.svg new file mode 100644 index 00000000000..28c4078a8ab --- /dev/null +++ b/public/img/icons/unicons/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flip-h-alt.svg b/public/img/icons/unicons/flip-h-alt.svg new file mode 100644 index 00000000000..4491c5ac909 --- /dev/null +++ b/public/img/icons/unicons/flip-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flip-h.svg b/public/img/icons/unicons/flip-h.svg new file mode 100644 index 00000000000..efa607c0e6f --- /dev/null +++ b/public/img/icons/unicons/flip-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flip-v-alt.svg b/public/img/icons/unicons/flip-v-alt.svg new file mode 100644 index 00000000000..4672f9d9798 --- /dev/null +++ b/public/img/icons/unicons/flip-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flip-v.svg b/public/img/icons/unicons/flip-v.svg new file mode 100644 index 00000000000..34c863910b1 --- /dev/null +++ b/public/img/icons/unicons/flip-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/flower.svg b/public/img/icons/unicons/flower.svg new file mode 100644 index 00000000000..c049f3f6829 --- /dev/null +++ b/public/img/icons/unicons/flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/focus-add.svg b/public/img/icons/unicons/focus-add.svg new file mode 100644 index 00000000000..8b262356da8 --- /dev/null +++ b/public/img/icons/unicons/focus-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/focus-target.svg b/public/img/icons/unicons/focus-target.svg new file mode 100644 index 00000000000..36af61a71d0 --- /dev/null +++ b/public/img/icons/unicons/focus-target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/focus.svg b/public/img/icons/unicons/focus.svg new file mode 100644 index 00000000000..386ce82978b --- /dev/null +++ b/public/img/icons/unicons/focus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-check.svg b/public/img/icons/unicons/folder-check.svg new file mode 100644 index 00000000000..3015ec07d9e --- /dev/null +++ b/public/img/icons/unicons/folder-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-download.svg b/public/img/icons/unicons/folder-download.svg new file mode 100644 index 00000000000..f9c0de2536f --- /dev/null +++ b/public/img/icons/unicons/folder-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-exclamation.svg b/public/img/icons/unicons/folder-exclamation.svg new file mode 100644 index 00000000000..29ca0b05431 --- /dev/null +++ b/public/img/icons/unicons/folder-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-heart.svg b/public/img/icons/unicons/folder-heart.svg new file mode 100644 index 00000000000..b7addc4346b --- /dev/null +++ b/public/img/icons/unicons/folder-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-info.svg b/public/img/icons/unicons/folder-info.svg new file mode 100644 index 00000000000..b37eab1bb6b --- /dev/null +++ b/public/img/icons/unicons/folder-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-lock.svg b/public/img/icons/unicons/folder-lock.svg new file mode 100644 index 00000000000..ee2c366a27d --- /dev/null +++ b/public/img/icons/unicons/folder-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-medical.svg b/public/img/icons/unicons/folder-medical.svg new file mode 100644 index 00000000000..8c0fba6aaed --- /dev/null +++ b/public/img/icons/unicons/folder-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-minus.svg b/public/img/icons/unicons/folder-minus.svg new file mode 100644 index 00000000000..856b9acf25c --- /dev/null +++ b/public/img/icons/unicons/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-network.svg b/public/img/icons/unicons/folder-network.svg new file mode 100644 index 00000000000..27ecb206ba8 --- /dev/null +++ b/public/img/icons/unicons/folder-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-open.svg b/public/img/icons/unicons/folder-open.svg new file mode 100644 index 00000000000..5ce79195e8e --- /dev/null +++ b/public/img/icons/unicons/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-plus.svg b/public/img/icons/unicons/folder-plus.svg new file mode 100644 index 00000000000..8c0fba6aaed --- /dev/null +++ b/public/img/icons/unicons/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-question.svg b/public/img/icons/unicons/folder-question.svg new file mode 100644 index 00000000000..f211841dda0 --- /dev/null +++ b/public/img/icons/unicons/folder-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-slash.svg b/public/img/icons/unicons/folder-slash.svg new file mode 100644 index 00000000000..7a6b8f6b1ac --- /dev/null +++ b/public/img/icons/unicons/folder-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-times.svg b/public/img/icons/unicons/folder-times.svg new file mode 100644 index 00000000000..4864355ab96 --- /dev/null +++ b/public/img/icons/unicons/folder-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder-upload.svg b/public/img/icons/unicons/folder-upload.svg new file mode 100644 index 00000000000..f911607d90e --- /dev/null +++ b/public/img/icons/unicons/folder-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/folder.svg b/public/img/icons/unicons/folder.svg new file mode 100644 index 00000000000..0127e9bda6a --- /dev/null +++ b/public/img/icons/unicons/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/font.svg b/public/img/icons/unicons/font.svg new file mode 100644 index 00000000000..fca165f8fb1 --- /dev/null +++ b/public/img/icons/unicons/font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/football-american.svg b/public/img/icons/unicons/football-american.svg new file mode 100644 index 00000000000..f50c79d6d83 --- /dev/null +++ b/public/img/icons/unicons/football-american.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/football-ball.svg b/public/img/icons/unicons/football-ball.svg new file mode 100644 index 00000000000..e9446dee694 --- /dev/null +++ b/public/img/icons/unicons/football-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/football.svg b/public/img/icons/unicons/football.svg new file mode 100644 index 00000000000..67ebd24a5a8 --- /dev/null +++ b/public/img/icons/unicons/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/forecastcloud-moon-tear.svg b/public/img/icons/unicons/forecastcloud-moon-tear.svg new file mode 100644 index 00000000000..6a94014879b --- /dev/null +++ b/public/img/icons/unicons/forecastcloud-moon-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/forwaded-call.svg b/public/img/icons/unicons/forwaded-call.svg new file mode 100644 index 00000000000..f61d55d7877 --- /dev/null +++ b/public/img/icons/unicons/forwaded-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/forward.svg b/public/img/icons/unicons/forward.svg new file mode 100644 index 00000000000..d0f27c5d589 --- /dev/null +++ b/public/img/icons/unicons/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/frown.svg b/public/img/icons/unicons/frown.svg new file mode 100644 index 00000000000..7a83728c894 --- /dev/null +++ b/public/img/icons/unicons/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/game-structure.svg b/public/img/icons/unicons/game-structure.svg new file mode 100644 index 00000000000..e795fd972be --- /dev/null +++ b/public/img/icons/unicons/game-structure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/gift.svg b/public/img/icons/unicons/gift.svg new file mode 100644 index 00000000000..f5ad39b01bc --- /dev/null +++ b/public/img/icons/unicons/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/github-alt.svg b/public/img/icons/unicons/github-alt.svg new file mode 100644 index 00000000000..8ea8b9ff801 --- /dev/null +++ b/public/img/icons/unicons/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/github.svg b/public/img/icons/unicons/github.svg new file mode 100644 index 00000000000..24024a647b9 --- /dev/null +++ b/public/img/icons/unicons/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/gitlab.svg b/public/img/icons/unicons/gitlab.svg new file mode 100644 index 00000000000..51ae5c8a521 --- /dev/null +++ b/public/img/icons/unicons/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/glass-martini-alt-slash.svg b/public/img/icons/unicons/glass-martini-alt-slash.svg new file mode 100644 index 00000000000..edec0a605c0 --- /dev/null +++ b/public/img/icons/unicons/glass-martini-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/glass-martini-alt.svg b/public/img/icons/unicons/glass-martini-alt.svg new file mode 100644 index 00000000000..34fb0307dd7 --- /dev/null +++ b/public/img/icons/unicons/glass-martini-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/glass-martini.svg b/public/img/icons/unicons/glass-martini.svg new file mode 100644 index 00000000000..7a4ffc4add0 --- /dev/null +++ b/public/img/icons/unicons/glass-martini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/glass-tea.svg b/public/img/icons/unicons/glass-tea.svg new file mode 100644 index 00000000000..bdab95b8200 --- /dev/null +++ b/public/img/icons/unicons/glass-tea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/glass.svg b/public/img/icons/unicons/glass.svg new file mode 100644 index 00000000000..444ca51474a --- /dev/null +++ b/public/img/icons/unicons/glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/globe.svg b/public/img/icons/unicons/globe.svg new file mode 100644 index 00000000000..714fd374c8e --- /dev/null +++ b/public/img/icons/unicons/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/gold.svg b/public/img/icons/unicons/gold.svg new file mode 100644 index 00000000000..f3fba2c1076 --- /dev/null +++ b/public/img/icons/unicons/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/golf-ball.svg b/public/img/icons/unicons/golf-ball.svg new file mode 100644 index 00000000000..1bf48a554a2 --- /dev/null +++ b/public/img/icons/unicons/golf-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/google-drive-alt.svg b/public/img/icons/unicons/google-drive-alt.svg new file mode 100644 index 00000000000..a84c8bafe5a --- /dev/null +++ b/public/img/icons/unicons/google-drive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/google-drive.svg b/public/img/icons/unicons/google-drive.svg new file mode 100644 index 00000000000..166736efff4 --- /dev/null +++ b/public/img/icons/unicons/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/google-hangouts-alt.svg b/public/img/icons/unicons/google-hangouts-alt.svg new file mode 100644 index 00000000000..6daa88dcd9d --- /dev/null +++ b/public/img/icons/unicons/google-hangouts-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/google-hangouts.svg b/public/img/icons/unicons/google-hangouts.svg new file mode 100644 index 00000000000..fbce5acf407 --- /dev/null +++ b/public/img/icons/unicons/google-hangouts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/google-play.svg b/public/img/icons/unicons/google-play.svg new file mode 100644 index 00000000000..517eb082f32 --- /dev/null +++ b/public/img/icons/unicons/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/google.svg b/public/img/icons/unicons/google.svg new file mode 100644 index 00000000000..80340154985 --- /dev/null +++ b/public/img/icons/unicons/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/graduation-cap.svg b/public/img/icons/unicons/graduation-cap.svg new file mode 100644 index 00000000000..c68f63d15a4 --- /dev/null +++ b/public/img/icons/unicons/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/graph-bar.svg b/public/img/icons/unicons/graph-bar.svg new file mode 100644 index 00000000000..af01d934918 --- /dev/null +++ b/public/img/icons/unicons/graph-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/grid.svg b/public/img/icons/unicons/grid.svg new file mode 100644 index 00000000000..7e329c615a5 --- /dev/null +++ b/public/img/icons/unicons/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/grids.svg b/public/img/icons/unicons/grids.svg new file mode 100644 index 00000000000..365b935e872 --- /dev/null +++ b/public/img/icons/unicons/grids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/grin-tongue-wink-alt.svg b/public/img/icons/unicons/grin-tongue-wink-alt.svg new file mode 100644 index 00000000000..34665870417 --- /dev/null +++ b/public/img/icons/unicons/grin-tongue-wink-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/grin-tongue-wink.svg b/public/img/icons/unicons/grin-tongue-wink.svg new file mode 100644 index 00000000000..79062e98f40 --- /dev/null +++ b/public/img/icons/unicons/grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/grin.svg b/public/img/icons/unicons/grin.svg new file mode 100644 index 00000000000..f8e6b593b70 --- /dev/null +++ b/public/img/icons/unicons/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/grip-horizontal-line.svg b/public/img/icons/unicons/grip-horizontal-line.svg new file mode 100644 index 00000000000..7e7357000be --- /dev/null +++ b/public/img/icons/unicons/grip-horizontal-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hard-hat.svg b/public/img/icons/unicons/hard-hat.svg new file mode 100644 index 00000000000..8b9c1886b89 --- /dev/null +++ b/public/img/icons/unicons/hard-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hdd.svg b/public/img/icons/unicons/hdd.svg new file mode 100644 index 00000000000..ed7d65b27c9 --- /dev/null +++ b/public/img/icons/unicons/hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/head-side-cough.svg b/public/img/icons/unicons/head-side-cough.svg new file mode 100644 index 00000000000..d64716f9d56 --- /dev/null +++ b/public/img/icons/unicons/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/head-side-mask.svg b/public/img/icons/unicons/head-side-mask.svg new file mode 100644 index 00000000000..84948bd01e2 --- /dev/null +++ b/public/img/icons/unicons/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/head-side.svg b/public/img/icons/unicons/head-side.svg new file mode 100644 index 00000000000..12f74b52453 --- /dev/null +++ b/public/img/icons/unicons/head-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/headphone-slash.svg b/public/img/icons/unicons/headphone-slash.svg new file mode 100644 index 00000000000..f3600225951 --- /dev/null +++ b/public/img/icons/unicons/headphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/headphones-alt.svg b/public/img/icons/unicons/headphones-alt.svg new file mode 100644 index 00000000000..41117fae79a --- /dev/null +++ b/public/img/icons/unicons/headphones-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/headphones.svg b/public/img/icons/unicons/headphones.svg new file mode 100644 index 00000000000..585407967fe --- /dev/null +++ b/public/img/icons/unicons/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heart-alt.svg b/public/img/icons/unicons/heart-alt.svg new file mode 100644 index 00000000000..9a0b8499217 --- /dev/null +++ b/public/img/icons/unicons/heart-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heart-break.svg b/public/img/icons/unicons/heart-break.svg new file mode 100644 index 00000000000..75bec55422d --- /dev/null +++ b/public/img/icons/unicons/heart-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heart-medical.svg b/public/img/icons/unicons/heart-medical.svg new file mode 100644 index 00000000000..8ad025bf2cc --- /dev/null +++ b/public/img/icons/unicons/heart-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heart-rate.svg b/public/img/icons/unicons/heart-rate.svg new file mode 100644 index 00000000000..ff779bb345c --- /dev/null +++ b/public/img/icons/unicons/heart-rate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heart-sign.svg b/public/img/icons/unicons/heart-sign.svg new file mode 100644 index 00000000000..ae38adf0800 --- /dev/null +++ b/public/img/icons/unicons/heart-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heart.svg b/public/img/icons/unicons/heart.svg new file mode 100644 index 00000000000..2d0107bcbfb --- /dev/null +++ b/public/img/icons/unicons/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/heartbeat.svg b/public/img/icons/unicons/heartbeat.svg new file mode 100644 index 00000000000..0667ff052f5 --- /dev/null +++ b/public/img/icons/unicons/heartbeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hindi-to-chinese.svg b/public/img/icons/unicons/hindi-to-chinese.svg new file mode 100644 index 00000000000..602169c45dd --- /dev/null +++ b/public/img/icons/unicons/hindi-to-chinese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hipchat.svg b/public/img/icons/unicons/hipchat.svg new file mode 100644 index 00000000000..c949ad9a4a1 --- /dev/null +++ b/public/img/icons/unicons/hipchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/history-alt.svg b/public/img/icons/unicons/history-alt.svg new file mode 100644 index 00000000000..10d42733580 --- /dev/null +++ b/public/img/icons/unicons/history-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/history.svg b/public/img/icons/unicons/history.svg new file mode 100644 index 00000000000..c85b770303f --- /dev/null +++ b/public/img/icons/unicons/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/home-alt.svg b/public/img/icons/unicons/home-alt.svg new file mode 100644 index 00000000000..798130de6d8 --- /dev/null +++ b/public/img/icons/unicons/home-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/home.svg b/public/img/icons/unicons/home.svg new file mode 100644 index 00000000000..a937bb665ac --- /dev/null +++ b/public/img/icons/unicons/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/horizontal-align-center.svg b/public/img/icons/unicons/horizontal-align-center.svg new file mode 100644 index 00000000000..f702b34e173 --- /dev/null +++ b/public/img/icons/unicons/horizontal-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/horizontal-align-left.svg b/public/img/icons/unicons/horizontal-align-left.svg new file mode 100644 index 00000000000..5f115c70403 --- /dev/null +++ b/public/img/icons/unicons/horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/horizontal-align-right.svg b/public/img/icons/unicons/horizontal-align-right.svg new file mode 100644 index 00000000000..7a9266d650c --- /dev/null +++ b/public/img/icons/unicons/horizontal-align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/horizontal-distribution-center.svg b/public/img/icons/unicons/horizontal-distribution-center.svg new file mode 100644 index 00000000000..face10165de --- /dev/null +++ b/public/img/icons/unicons/horizontal-distribution-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/horizontal-distribution-left.svg b/public/img/icons/unicons/horizontal-distribution-left.svg new file mode 100644 index 00000000000..309e0a8e7b0 --- /dev/null +++ b/public/img/icons/unicons/horizontal-distribution-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/horizontal-distribution-right.svg b/public/img/icons/unicons/horizontal-distribution-right.svg new file mode 100644 index 00000000000..0788c4f2dd3 --- /dev/null +++ b/public/img/icons/unicons/horizontal-distribution-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hospital-square-sign.svg b/public/img/icons/unicons/hospital-square-sign.svg new file mode 100644 index 00000000000..6fcce4da8b9 --- /dev/null +++ b/public/img/icons/unicons/hospital-square-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hospital-symbol.svg b/public/img/icons/unicons/hospital-symbol.svg new file mode 100644 index 00000000000..c990d053ae9 --- /dev/null +++ b/public/img/icons/unicons/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hospital.svg b/public/img/icons/unicons/hospital.svg new file mode 100644 index 00000000000..e3b51113d35 --- /dev/null +++ b/public/img/icons/unicons/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hourglass.svg b/public/img/icons/unicons/hourglass.svg new file mode 100644 index 00000000000..3a1946bfab6 --- /dev/null +++ b/public/img/icons/unicons/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/house-user.svg b/public/img/icons/unicons/house-user.svg new file mode 100644 index 00000000000..2827c0b6b02 --- /dev/null +++ b/public/img/icons/unicons/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/html3-alt.svg b/public/img/icons/unicons/html3-alt.svg new file mode 100644 index 00000000000..d4a2e60b958 --- /dev/null +++ b/public/img/icons/unicons/html3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/html3.svg b/public/img/icons/unicons/html3.svg new file mode 100644 index 00000000000..1855b17cec5 --- /dev/null +++ b/public/img/icons/unicons/html3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/html5-alt.svg b/public/img/icons/unicons/html5-alt.svg new file mode 100644 index 00000000000..454363815d8 --- /dev/null +++ b/public/img/icons/unicons/html5-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/html5.svg b/public/img/icons/unicons/html5.svg new file mode 100644 index 00000000000..76d539442bd --- /dev/null +++ b/public/img/icons/unicons/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/hunting.svg b/public/img/icons/unicons/hunting.svg new file mode 100644 index 00000000000..3aff6681a56 --- /dev/null +++ b/public/img/icons/unicons/hunting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/icons.svg b/public/img/icons/unicons/icons.svg new file mode 100644 index 00000000000..61a00b94298 --- /dev/null +++ b/public/img/icons/unicons/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/illustration.svg b/public/img/icons/unicons/illustration.svg new file mode 100644 index 00000000000..3cd33b75f77 --- /dev/null +++ b/public/img/icons/unicons/illustration.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-alt-slash.svg b/public/img/icons/unicons/image-alt-slash.svg new file mode 100644 index 00000000000..39cbbb01331 --- /dev/null +++ b/public/img/icons/unicons/image-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-block.svg b/public/img/icons/unicons/image-block.svg new file mode 100644 index 00000000000..389475f5198 --- /dev/null +++ b/public/img/icons/unicons/image-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-broken.svg b/public/img/icons/unicons/image-broken.svg new file mode 100644 index 00000000000..cb2f44e9181 --- /dev/null +++ b/public/img/icons/unicons/image-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-check.svg b/public/img/icons/unicons/image-check.svg new file mode 100644 index 00000000000..ff00249d6b8 --- /dev/null +++ b/public/img/icons/unicons/image-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-download.svg b/public/img/icons/unicons/image-download.svg new file mode 100644 index 00000000000..eebef1404ab --- /dev/null +++ b/public/img/icons/unicons/image-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-edit.svg b/public/img/icons/unicons/image-edit.svg new file mode 100644 index 00000000000..e06d36f4fa4 --- /dev/null +++ b/public/img/icons/unicons/image-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-lock.svg b/public/img/icons/unicons/image-lock.svg new file mode 100644 index 00000000000..05bbaf72e2e --- /dev/null +++ b/public/img/icons/unicons/image-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-minus.svg b/public/img/icons/unicons/image-minus.svg new file mode 100644 index 00000000000..174b6e0dd8d --- /dev/null +++ b/public/img/icons/unicons/image-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-plus.svg b/public/img/icons/unicons/image-plus.svg new file mode 100644 index 00000000000..18563f12178 --- /dev/null +++ b/public/img/icons/unicons/image-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-question.svg b/public/img/icons/unicons/image-question.svg new file mode 100644 index 00000000000..3f457034668 --- /dev/null +++ b/public/img/icons/unicons/image-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-redo.svg b/public/img/icons/unicons/image-redo.svg new file mode 100644 index 00000000000..2987416b677 --- /dev/null +++ b/public/img/icons/unicons/image-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-resize-landscape.svg b/public/img/icons/unicons/image-resize-landscape.svg new file mode 100644 index 00000000000..6532370c497 --- /dev/null +++ b/public/img/icons/unicons/image-resize-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-resize-square.svg b/public/img/icons/unicons/image-resize-square.svg new file mode 100644 index 00000000000..38766f2b8d4 --- /dev/null +++ b/public/img/icons/unicons/image-resize-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-search.svg b/public/img/icons/unicons/image-search.svg new file mode 100644 index 00000000000..5283d106118 --- /dev/null +++ b/public/img/icons/unicons/image-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-share.svg b/public/img/icons/unicons/image-share.svg new file mode 100644 index 00000000000..10f74623e71 --- /dev/null +++ b/public/img/icons/unicons/image-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-shield.svg b/public/img/icons/unicons/image-shield.svg new file mode 100644 index 00000000000..ef0210e8698 --- /dev/null +++ b/public/img/icons/unicons/image-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-slash.svg b/public/img/icons/unicons/image-slash.svg new file mode 100644 index 00000000000..573e5c0ab1f --- /dev/null +++ b/public/img/icons/unicons/image-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-times.svg b/public/img/icons/unicons/image-times.svg new file mode 100644 index 00000000000..c7555577ae6 --- /dev/null +++ b/public/img/icons/unicons/image-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-upload.svg b/public/img/icons/unicons/image-upload.svg new file mode 100644 index 00000000000..ba627e08b54 --- /dev/null +++ b/public/img/icons/unicons/image-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image-v.svg b/public/img/icons/unicons/image-v.svg new file mode 100644 index 00000000000..c9abb06ffe8 --- /dev/null +++ b/public/img/icons/unicons/image-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/image.svg b/public/img/icons/unicons/image.svg new file mode 100644 index 00000000000..15700482b0c --- /dev/null +++ b/public/img/icons/unicons/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/images.svg b/public/img/icons/unicons/images.svg new file mode 100644 index 00000000000..dbf9da48a6b --- /dev/null +++ b/public/img/icons/unicons/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/import.svg b/public/img/icons/unicons/import.svg new file mode 100644 index 00000000000..0eff75e6d76 --- /dev/null +++ b/public/img/icons/unicons/import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/inbox.svg b/public/img/icons/unicons/inbox.svg new file mode 100644 index 00000000000..cf35f3b9003 --- /dev/null +++ b/public/img/icons/unicons/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/incoming-call.svg b/public/img/icons/unicons/incoming-call.svg new file mode 100644 index 00000000000..751128a6602 --- /dev/null +++ b/public/img/icons/unicons/incoming-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/info-circle.svg b/public/img/icons/unicons/info-circle.svg new file mode 100644 index 00000000000..8047ca198c2 --- /dev/null +++ b/public/img/icons/unicons/info-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/info.svg b/public/img/icons/unicons/info.svg new file mode 100644 index 00000000000..ff73496d9be --- /dev/null +++ b/public/img/icons/unicons/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/instagram-alt.svg b/public/img/icons/unicons/instagram-alt.svg new file mode 100644 index 00000000000..11edadaef28 --- /dev/null +++ b/public/img/icons/unicons/instagram-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/instagram.svg b/public/img/icons/unicons/instagram.svg new file mode 100644 index 00000000000..fd2d9e13f3d --- /dev/null +++ b/public/img/icons/unicons/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/intercom-alt.svg b/public/img/icons/unicons/intercom-alt.svg new file mode 100644 index 00000000000..a071ce47e1b --- /dev/null +++ b/public/img/icons/unicons/intercom-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/intercom.svg b/public/img/icons/unicons/intercom.svg new file mode 100644 index 00000000000..fcdab02f01e --- /dev/null +++ b/public/img/icons/unicons/intercom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/invoice.svg b/public/img/icons/unicons/invoice.svg new file mode 100644 index 00000000000..a463608f51f --- /dev/null +++ b/public/img/icons/unicons/invoice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/italic.svg b/public/img/icons/unicons/italic.svg new file mode 100644 index 00000000000..2b571ac0465 --- /dev/null +++ b/public/img/icons/unicons/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/jackhammer.svg b/public/img/icons/unicons/jackhammer.svg new file mode 100644 index 00000000000..32575b41696 --- /dev/null +++ b/public/img/icons/unicons/jackhammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/java-script.svg b/public/img/icons/unicons/java-script.svg new file mode 100644 index 00000000000..cfb5216eab2 --- /dev/null +++ b/public/img/icons/unicons/java-script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/kayak.svg b/public/img/icons/unicons/kayak.svg new file mode 100644 index 00000000000..89af5fac1d7 --- /dev/null +++ b/public/img/icons/unicons/kayak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/key-skeleton-alt.svg b/public/img/icons/unicons/key-skeleton-alt.svg new file mode 100644 index 00000000000..e3c7f73e37a --- /dev/null +++ b/public/img/icons/unicons/key-skeleton-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/key-skeleton.svg b/public/img/icons/unicons/key-skeleton.svg new file mode 100644 index 00000000000..b3a77b4005f --- /dev/null +++ b/public/img/icons/unicons/key-skeleton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyboard-alt.svg b/public/img/icons/unicons/keyboard-alt.svg new file mode 100644 index 00000000000..994fed4c531 --- /dev/null +++ b/public/img/icons/unicons/keyboard-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyboard-hide.svg b/public/img/icons/unicons/keyboard-hide.svg new file mode 100644 index 00000000000..1d7897c8bc2 --- /dev/null +++ b/public/img/icons/unicons/keyboard-hide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyboard-show.svg b/public/img/icons/unicons/keyboard-show.svg new file mode 100644 index 00000000000..61a761d4ea9 --- /dev/null +++ b/public/img/icons/unicons/keyboard-show.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyboard.svg b/public/img/icons/unicons/keyboard.svg new file mode 100644 index 00000000000..06e3e2cf078 --- /dev/null +++ b/public/img/icons/unicons/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyhole-circle.svg b/public/img/icons/unicons/keyhole-circle.svg new file mode 100644 index 00000000000..7a2b3538507 --- /dev/null +++ b/public/img/icons/unicons/keyhole-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyhole-square-full.svg b/public/img/icons/unicons/keyhole-square-full.svg new file mode 100644 index 00000000000..c024821098d --- /dev/null +++ b/public/img/icons/unicons/keyhole-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/keyhole-square.svg b/public/img/icons/unicons/keyhole-square.svg new file mode 100644 index 00000000000..c04c20f3283 --- /dev/null +++ b/public/img/icons/unicons/keyhole-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/kid.svg b/public/img/icons/unicons/kid.svg new file mode 100644 index 00000000000..4cca4f13bec --- /dev/null +++ b/public/img/icons/unicons/kid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/label-alt.svg b/public/img/icons/unicons/label-alt.svg new file mode 100644 index 00000000000..152d21f00b7 --- /dev/null +++ b/public/img/icons/unicons/label-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/label.svg b/public/img/icons/unicons/label.svg new file mode 100644 index 00000000000..176643b58e6 --- /dev/null +++ b/public/img/icons/unicons/label.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lamp.svg b/public/img/icons/unicons/lamp.svg new file mode 100644 index 00000000000..d9715b43643 --- /dev/null +++ b/public/img/icons/unicons/lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/language.svg b/public/img/icons/unicons/language.svg new file mode 100644 index 00000000000..a90afc193ac --- /dev/null +++ b/public/img/icons/unicons/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/laptop-cloud.svg b/public/img/icons/unicons/laptop-cloud.svg new file mode 100644 index 00000000000..25d8be51493 --- /dev/null +++ b/public/img/icons/unicons/laptop-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/laptop-connection.svg b/public/img/icons/unicons/laptop-connection.svg new file mode 100644 index 00000000000..ee9993969eb --- /dev/null +++ b/public/img/icons/unicons/laptop-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/laptop.svg b/public/img/icons/unicons/laptop.svg new file mode 100644 index 00000000000..0634d68e861 --- /dev/null +++ b/public/img/icons/unicons/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/laughing.svg b/public/img/icons/unicons/laughing.svg new file mode 100644 index 00000000000..8fe80ffd5f8 --- /dev/null +++ b/public/img/icons/unicons/laughing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/layer-group-slash.svg b/public/img/icons/unicons/layer-group-slash.svg new file mode 100644 index 00000000000..0b623dd2cd8 --- /dev/null +++ b/public/img/icons/unicons/layer-group-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/layer-group.svg b/public/img/icons/unicons/layer-group.svg new file mode 100644 index 00000000000..5fa2364dd8c --- /dev/null +++ b/public/img/icons/unicons/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/layers-alt.svg b/public/img/icons/unicons/layers-alt.svg new file mode 100644 index 00000000000..7e02288ffb1 --- /dev/null +++ b/public/img/icons/unicons/layers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/layers-slash.svg b/public/img/icons/unicons/layers-slash.svg new file mode 100644 index 00000000000..dd16a79b171 --- /dev/null +++ b/public/img/icons/unicons/layers-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/layers.svg b/public/img/icons/unicons/layers.svg new file mode 100644 index 00000000000..7f90af89d2d --- /dev/null +++ b/public/img/icons/unicons/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/left-arrow-from-left.svg b/public/img/icons/unicons/left-arrow-from-left.svg new file mode 100644 index 00000000000..d22657eb946 --- /dev/null +++ b/public/img/icons/unicons/left-arrow-from-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/left-arrow-to-left.svg b/public/img/icons/unicons/left-arrow-to-left.svg new file mode 100644 index 00000000000..0304637e5b5 --- /dev/null +++ b/public/img/icons/unicons/left-arrow-to-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/left-indent-alt.svg b/public/img/icons/unicons/left-indent-alt.svg new file mode 100644 index 00000000000..18f1b49b64a --- /dev/null +++ b/public/img/icons/unicons/left-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/left-indent.svg b/public/img/icons/unicons/left-indent.svg new file mode 100644 index 00000000000..3cd3e9572d4 --- /dev/null +++ b/public/img/icons/unicons/left-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/left-to-right-text-direction.svg b/public/img/icons/unicons/left-to-right-text-direction.svg new file mode 100644 index 00000000000..ba755a023be --- /dev/null +++ b/public/img/icons/unicons/left-to-right-text-direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/letter-chinese-a.svg b/public/img/icons/unicons/letter-chinese-a.svg new file mode 100644 index 00000000000..475612f0182 --- /dev/null +++ b/public/img/icons/unicons/letter-chinese-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/letter-english-a.svg b/public/img/icons/unicons/letter-english-a.svg new file mode 100644 index 00000000000..73ec88c6d10 --- /dev/null +++ b/public/img/icons/unicons/letter-english-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/letter-hindi-a.svg b/public/img/icons/unicons/letter-hindi-a.svg new file mode 100644 index 00000000000..2bbd2becdae --- /dev/null +++ b/public/img/icons/unicons/letter-hindi-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/letter-japanese-a.svg b/public/img/icons/unicons/letter-japanese-a.svg new file mode 100644 index 00000000000..a4ceaa08cba --- /dev/null +++ b/public/img/icons/unicons/letter-japanese-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/life-ring.svg b/public/img/icons/unicons/life-ring.svg new file mode 100644 index 00000000000..9727a4349af --- /dev/null +++ b/public/img/icons/unicons/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lightbulb-alt.svg b/public/img/icons/unicons/lightbulb-alt.svg new file mode 100644 index 00000000000..dc1d1efbbe8 --- /dev/null +++ b/public/img/icons/unicons/lightbulb-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lightbulb.svg b/public/img/icons/unicons/lightbulb.svg new file mode 100644 index 00000000000..cd395b6caad --- /dev/null +++ b/public/img/icons/unicons/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/line-alt.svg b/public/img/icons/unicons/line-alt.svg new file mode 100644 index 00000000000..55d857e2251 --- /dev/null +++ b/public/img/icons/unicons/line-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/line-spacing.svg b/public/img/icons/unicons/line-spacing.svg new file mode 100644 index 00000000000..5fcf76fa692 --- /dev/null +++ b/public/img/icons/unicons/line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/line.svg b/public/img/icons/unicons/line.svg new file mode 100644 index 00000000000..012c4f38b99 --- /dev/null +++ b/public/img/icons/unicons/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/link-add.svg b/public/img/icons/unicons/link-add.svg new file mode 100644 index 00000000000..641986c9aee --- /dev/null +++ b/public/img/icons/unicons/link-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/link-alt.svg b/public/img/icons/unicons/link-alt.svg new file mode 100644 index 00000000000..726adeac1ba --- /dev/null +++ b/public/img/icons/unicons/link-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/link-broken.svg b/public/img/icons/unicons/link-broken.svg new file mode 100644 index 00000000000..6d09f33b337 --- /dev/null +++ b/public/img/icons/unicons/link-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/link-h.svg b/public/img/icons/unicons/link-h.svg new file mode 100644 index 00000000000..bef7f5b0d10 --- /dev/null +++ b/public/img/icons/unicons/link-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/link.svg b/public/img/icons/unicons/link.svg new file mode 100644 index 00000000000..e43871700df --- /dev/null +++ b/public/img/icons/unicons/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/linkedin-alt.svg b/public/img/icons/unicons/linkedin-alt.svg new file mode 100644 index 00000000000..d48cf468fb9 --- /dev/null +++ b/public/img/icons/unicons/linkedin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/linkedin.svg b/public/img/icons/unicons/linkedin.svg new file mode 100644 index 00000000000..354757512b1 --- /dev/null +++ b/public/img/icons/unicons/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/linux.svg b/public/img/icons/unicons/linux.svg new file mode 100644 index 00000000000..ea94fa804e7 --- /dev/null +++ b/public/img/icons/unicons/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lira-sign.svg b/public/img/icons/unicons/lira-sign.svg new file mode 100644 index 00000000000..d83306e8486 --- /dev/null +++ b/public/img/icons/unicons/lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/list-ol-alt.svg b/public/img/icons/unicons/list-ol-alt.svg new file mode 100644 index 00000000000..2faec11ddb3 --- /dev/null +++ b/public/img/icons/unicons/list-ol-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/list-ol.svg b/public/img/icons/unicons/list-ol.svg new file mode 100644 index 00000000000..c593877c8b5 --- /dev/null +++ b/public/img/icons/unicons/list-ol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/list-ui-alt.svg b/public/img/icons/unicons/list-ui-alt.svg new file mode 100644 index 00000000000..6b9d95d3374 --- /dev/null +++ b/public/img/icons/unicons/list-ui-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/list-ul.svg b/public/img/icons/unicons/list-ul.svg new file mode 100644 index 00000000000..75fcddf48e7 --- /dev/null +++ b/public/img/icons/unicons/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/location-arrow-alt.svg b/public/img/icons/unicons/location-arrow-alt.svg new file mode 100644 index 00000000000..1247746fbb9 --- /dev/null +++ b/public/img/icons/unicons/location-arrow-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/location-arrow.svg b/public/img/icons/unicons/location-arrow.svg new file mode 100644 index 00000000000..b21c6509239 --- /dev/null +++ b/public/img/icons/unicons/location-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/location-pin-alt.svg b/public/img/icons/unicons/location-pin-alt.svg new file mode 100644 index 00000000000..29c519d050f --- /dev/null +++ b/public/img/icons/unicons/location-pin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/location-point.svg b/public/img/icons/unicons/location-point.svg new file mode 100644 index 00000000000..1be622956b1 --- /dev/null +++ b/public/img/icons/unicons/location-point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lock-access.svg b/public/img/icons/unicons/lock-access.svg new file mode 100644 index 00000000000..4545207dbeb --- /dev/null +++ b/public/img/icons/unicons/lock-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lock-alt.svg b/public/img/icons/unicons/lock-alt.svg new file mode 100644 index 00000000000..9f2dedd63ce --- /dev/null +++ b/public/img/icons/unicons/lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lock-open-alt.svg b/public/img/icons/unicons/lock-open-alt.svg new file mode 100644 index 00000000000..0551710b92d --- /dev/null +++ b/public/img/icons/unicons/lock-open-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lock-slash.svg b/public/img/icons/unicons/lock-slash.svg new file mode 100644 index 00000000000..233acf8bba1 --- /dev/null +++ b/public/img/icons/unicons/lock-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lock.svg b/public/img/icons/unicons/lock.svg new file mode 100644 index 00000000000..3ca5d82e36e --- /dev/null +++ b/public/img/icons/unicons/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lottiefiles-alt.svg b/public/img/icons/unicons/lottiefiles-alt.svg new file mode 100644 index 00000000000..e83455edf94 --- /dev/null +++ b/public/img/icons/unicons/lottiefiles-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/lottiefiles.svg b/public/img/icons/unicons/lottiefiles.svg new file mode 100644 index 00000000000..e04ab37778b --- /dev/null +++ b/public/img/icons/unicons/lottiefiles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/luggage-cart.svg b/public/img/icons/unicons/luggage-cart.svg new file mode 100644 index 00000000000..3bf5cdff822 --- /dev/null +++ b/public/img/icons/unicons/luggage-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mailbox-alt.svg b/public/img/icons/unicons/mailbox-alt.svg new file mode 100644 index 00000000000..3760ff122f0 --- /dev/null +++ b/public/img/icons/unicons/mailbox-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mailbox.svg b/public/img/icons/unicons/mailbox.svg new file mode 100644 index 00000000000..c869984335a --- /dev/null +++ b/public/img/icons/unicons/mailbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-alt.svg b/public/img/icons/unicons/map-marker-alt.svg new file mode 100644 index 00000000000..bb64d402850 --- /dev/null +++ b/public/img/icons/unicons/map-marker-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-edit.svg b/public/img/icons/unicons/map-marker-edit.svg new file mode 100644 index 00000000000..f65e543c1bd --- /dev/null +++ b/public/img/icons/unicons/map-marker-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-info.svg b/public/img/icons/unicons/map-marker-info.svg new file mode 100644 index 00000000000..b7adca33409 --- /dev/null +++ b/public/img/icons/unicons/map-marker-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-minus.svg b/public/img/icons/unicons/map-marker-minus.svg new file mode 100644 index 00000000000..55c2aa5b9f7 --- /dev/null +++ b/public/img/icons/unicons/map-marker-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-plus.svg b/public/img/icons/unicons/map-marker-plus.svg new file mode 100644 index 00000000000..b0b7202d71d --- /dev/null +++ b/public/img/icons/unicons/map-marker-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-question.svg b/public/img/icons/unicons/map-marker-question.svg new file mode 100644 index 00000000000..43b0c62205d --- /dev/null +++ b/public/img/icons/unicons/map-marker-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-shield.svg b/public/img/icons/unicons/map-marker-shield.svg new file mode 100644 index 00000000000..b95e4816069 --- /dev/null +++ b/public/img/icons/unicons/map-marker-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker-slash.svg b/public/img/icons/unicons/map-marker-slash.svg new file mode 100644 index 00000000000..5d0272d4815 --- /dev/null +++ b/public/img/icons/unicons/map-marker-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-marker.svg b/public/img/icons/unicons/map-marker.svg new file mode 100644 index 00000000000..4d8d8109015 --- /dev/null +++ b/public/img/icons/unicons/map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-pin-alt.svg b/public/img/icons/unicons/map-pin-alt.svg new file mode 100644 index 00000000000..5fc22cf3f0e --- /dev/null +++ b/public/img/icons/unicons/map-pin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map-pin.svg b/public/img/icons/unicons/map-pin.svg new file mode 100644 index 00000000000..14df04c6bb9 --- /dev/null +++ b/public/img/icons/unicons/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/map.svg b/public/img/icons/unicons/map.svg new file mode 100644 index 00000000000..9c072c510b5 --- /dev/null +++ b/public/img/icons/unicons/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mars.svg b/public/img/icons/unicons/mars.svg new file mode 100644 index 00000000000..0490e7d26ce --- /dev/null +++ b/public/img/icons/unicons/mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/master-card.svg b/public/img/icons/unicons/master-card.svg new file mode 100644 index 00000000000..1105bf0df6d --- /dev/null +++ b/public/img/icons/unicons/master-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/maximize-left.svg b/public/img/icons/unicons/maximize-left.svg new file mode 100644 index 00000000000..c9acf3d20b8 --- /dev/null +++ b/public/img/icons/unicons/maximize-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/medal.svg b/public/img/icons/unicons/medal.svg new file mode 100644 index 00000000000..a4606f279a9 --- /dev/null +++ b/public/img/icons/unicons/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/medical-drip.svg b/public/img/icons/unicons/medical-drip.svg new file mode 100644 index 00000000000..ef7f629a444 --- /dev/null +++ b/public/img/icons/unicons/medical-drip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/medical-square-full.svg b/public/img/icons/unicons/medical-square-full.svg new file mode 100644 index 00000000000..2b2e7897a02 --- /dev/null +++ b/public/img/icons/unicons/medical-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/medical-square.svg b/public/img/icons/unicons/medical-square.svg new file mode 100644 index 00000000000..a8ebd145936 --- /dev/null +++ b/public/img/icons/unicons/medical-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/medium-m.svg b/public/img/icons/unicons/medium-m.svg new file mode 100644 index 00000000000..8e086b0f58e --- /dev/null +++ b/public/img/icons/unicons/medium-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/medkit.svg b/public/img/icons/unicons/medkit.svg new file mode 100644 index 00000000000..2be7f4f93d9 --- /dev/null +++ b/public/img/icons/unicons/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/meeting-board.svg b/public/img/icons/unicons/meeting-board.svg new file mode 100644 index 00000000000..96284c7de40 --- /dev/null +++ b/public/img/icons/unicons/meeting-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/megaphone.svg b/public/img/icons/unicons/megaphone.svg new file mode 100644 index 00000000000..de53e5fcf35 --- /dev/null +++ b/public/img/icons/unicons/megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/meh-alt.svg b/public/img/icons/unicons/meh-alt.svg new file mode 100644 index 00000000000..d1c408a1847 --- /dev/null +++ b/public/img/icons/unicons/meh-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/meh-closed-eye.svg b/public/img/icons/unicons/meh-closed-eye.svg new file mode 100644 index 00000000000..afc796dec8b --- /dev/null +++ b/public/img/icons/unicons/meh-closed-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/meh.svg b/public/img/icons/unicons/meh.svg new file mode 100644 index 00000000000..50c924caa48 --- /dev/null +++ b/public/img/icons/unicons/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/message.svg b/public/img/icons/unicons/message.svg new file mode 100644 index 00000000000..e127f808248 --- /dev/null +++ b/public/img/icons/unicons/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/metro.svg b/public/img/icons/unicons/metro.svg new file mode 100644 index 00000000000..17a3e278e0a --- /dev/null +++ b/public/img/icons/unicons/metro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/microphone-slash.svg b/public/img/icons/unicons/microphone-slash.svg new file mode 100644 index 00000000000..a2c30be94e6 --- /dev/null +++ b/public/img/icons/unicons/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/microphone.svg b/public/img/icons/unicons/microphone.svg new file mode 100644 index 00000000000..b24c6c943d2 --- /dev/null +++ b/public/img/icons/unicons/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/microscope.svg b/public/img/icons/unicons/microscope.svg new file mode 100644 index 00000000000..6759bea7e10 --- /dev/null +++ b/public/img/icons/unicons/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/microsoft.svg b/public/img/icons/unicons/microsoft.svg new file mode 100644 index 00000000000..9c68120a1b1 --- /dev/null +++ b/public/img/icons/unicons/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/minus-circle.svg b/public/img/icons/unicons/minus-circle.svg new file mode 100644 index 00000000000..95f0d31db2b --- /dev/null +++ b/public/img/icons/unicons/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/minus-path.svg b/public/img/icons/unicons/minus-path.svg new file mode 100644 index 00000000000..747a636a774 --- /dev/null +++ b/public/img/icons/unicons/minus-path.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/minus-square-full.svg b/public/img/icons/unicons/minus-square-full.svg new file mode 100644 index 00000000000..5958d87ab9d --- /dev/null +++ b/public/img/icons/unicons/minus-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/minus-square.svg b/public/img/icons/unicons/minus-square.svg new file mode 100644 index 00000000000..c221682decc --- /dev/null +++ b/public/img/icons/unicons/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/minus.svg b/public/img/icons/unicons/minus.svg new file mode 100644 index 00000000000..1431a2752b4 --- /dev/null +++ b/public/img/icons/unicons/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/missed-call.svg b/public/img/icons/unicons/missed-call.svg new file mode 100644 index 00000000000..86404cecd10 --- /dev/null +++ b/public/img/icons/unicons/missed-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mobile-android-alt.svg b/public/img/icons/unicons/mobile-android-alt.svg new file mode 100644 index 00000000000..5bbed561bc8 --- /dev/null +++ b/public/img/icons/unicons/mobile-android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mobile-android.svg b/public/img/icons/unicons/mobile-android.svg new file mode 100644 index 00000000000..19662540cf6 --- /dev/null +++ b/public/img/icons/unicons/mobile-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mobile-vibrate.svg b/public/img/icons/unicons/mobile-vibrate.svg new file mode 100644 index 00000000000..3be068afdb1 --- /dev/null +++ b/public/img/icons/unicons/mobile-vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/modem.svg b/public/img/icons/unicons/modem.svg new file mode 100644 index 00000000000..01ba062d51d --- /dev/null +++ b/public/img/icons/unicons/modem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-bill-slash.svg b/public/img/icons/unicons/money-bill-slash.svg new file mode 100644 index 00000000000..273e3e17703 --- /dev/null +++ b/public/img/icons/unicons/money-bill-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-bill-stack.svg b/public/img/icons/unicons/money-bill-stack.svg new file mode 100644 index 00000000000..724ea1704ba --- /dev/null +++ b/public/img/icons/unicons/money-bill-stack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-bill.svg b/public/img/icons/unicons/money-bill.svg new file mode 100644 index 00000000000..b32dcde4d29 --- /dev/null +++ b/public/img/icons/unicons/money-bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-insert.svg b/public/img/icons/unicons/money-insert.svg new file mode 100644 index 00000000000..43c943243eb --- /dev/null +++ b/public/img/icons/unicons/money-insert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-stack.svg b/public/img/icons/unicons/money-stack.svg new file mode 100644 index 00000000000..26e06d38959 --- /dev/null +++ b/public/img/icons/unicons/money-stack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-withdraw.svg b/public/img/icons/unicons/money-withdraw.svg new file mode 100644 index 00000000000..c6cbe2c4f89 --- /dev/null +++ b/public/img/icons/unicons/money-withdraw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/money-withdrawal.svg b/public/img/icons/unicons/money-withdrawal.svg new file mode 100644 index 00000000000..d988f66b37d --- /dev/null +++ b/public/img/icons/unicons/money-withdrawal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/moneybag-alt.svg b/public/img/icons/unicons/moneybag-alt.svg new file mode 100644 index 00000000000..1216fe39124 --- /dev/null +++ b/public/img/icons/unicons/moneybag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/moneybag.svg b/public/img/icons/unicons/moneybag.svg new file mode 100644 index 00000000000..337311549b1 --- /dev/null +++ b/public/img/icons/unicons/moneybag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/monitor-heart-rate.svg b/public/img/icons/unicons/monitor-heart-rate.svg new file mode 100644 index 00000000000..56f6a2c7ee2 --- /dev/null +++ b/public/img/icons/unicons/monitor-heart-rate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/monitor.svg b/public/img/icons/unicons/monitor.svg new file mode 100644 index 00000000000..2510a7f1997 --- /dev/null +++ b/public/img/icons/unicons/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/moon-eclipse.svg b/public/img/icons/unicons/moon-eclipse.svg new file mode 100644 index 00000000000..eeab8a9b0ff --- /dev/null +++ b/public/img/icons/unicons/moon-eclipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/moon.svg b/public/img/icons/unicons/moon.svg new file mode 100644 index 00000000000..dce131c927f --- /dev/null +++ b/public/img/icons/unicons/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/moonset.svg b/public/img/icons/unicons/moonset.svg new file mode 100644 index 00000000000..c13f1c7b8ec --- /dev/null +++ b/public/img/icons/unicons/moonset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mountains-sun.svg b/public/img/icons/unicons/mountains-sun.svg new file mode 100644 index 00000000000..6ff47aff7a9 --- /dev/null +++ b/public/img/icons/unicons/mountains-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mountains.svg b/public/img/icons/unicons/mountains.svg new file mode 100644 index 00000000000..64f9b5dd124 --- /dev/null +++ b/public/img/icons/unicons/mountains.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mouse-alt-2.svg b/public/img/icons/unicons/mouse-alt-2.svg new file mode 100644 index 00000000000..a5a1fc6ce3d --- /dev/null +++ b/public/img/icons/unicons/mouse-alt-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mouse-alt.svg b/public/img/icons/unicons/mouse-alt.svg new file mode 100644 index 00000000000..dfbf4c14d5e --- /dev/null +++ b/public/img/icons/unicons/mouse-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/mouse.svg b/public/img/icons/unicons/mouse.svg new file mode 100644 index 00000000000..3083cfd633f --- /dev/null +++ b/public/img/icons/unicons/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/multiply.svg b/public/img/icons/unicons/multiply.svg new file mode 100644 index 00000000000..f1432176da4 --- /dev/null +++ b/public/img/icons/unicons/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/music-note.svg b/public/img/icons/unicons/music-note.svg new file mode 100644 index 00000000000..b4326467acb --- /dev/null +++ b/public/img/icons/unicons/music-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/music-tune-slash.svg b/public/img/icons/unicons/music-tune-slash.svg new file mode 100644 index 00000000000..56af3c57c60 --- /dev/null +++ b/public/img/icons/unicons/music-tune-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/music.svg b/public/img/icons/unicons/music.svg new file mode 100644 index 00000000000..bf24f5e1faf --- /dev/null +++ b/public/img/icons/unicons/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/n-a.svg b/public/img/icons/unicons/n-a.svg new file mode 100644 index 00000000000..a3bfe5072a0 --- /dev/null +++ b/public/img/icons/unicons/n-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/navigator.svg b/public/img/icons/unicons/navigator.svg new file mode 100644 index 00000000000..63508c7793a --- /dev/null +++ b/public/img/icons/unicons/navigator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/nerd.svg b/public/img/icons/unicons/nerd.svg new file mode 100644 index 00000000000..2c6b292e813 --- /dev/null +++ b/public/img/icons/unicons/nerd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/newspaper.svg b/public/img/icons/unicons/newspaper.svg new file mode 100644 index 00000000000..a54486d92e4 --- /dev/null +++ b/public/img/icons/unicons/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ninja.svg b/public/img/icons/unicons/ninja.svg new file mode 100644 index 00000000000..ea3f77ede16 --- /dev/null +++ b/public/img/icons/unicons/ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/no-entry.svg b/public/img/icons/unicons/no-entry.svg new file mode 100644 index 00000000000..6bda430d059 --- /dev/null +++ b/public/img/icons/unicons/no-entry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/notebooks.svg b/public/img/icons/unicons/notebooks.svg new file mode 100644 index 00000000000..618939853b4 --- /dev/null +++ b/public/img/icons/unicons/notebooks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/notes.svg b/public/img/icons/unicons/notes.svg new file mode 100644 index 00000000000..62b7c52b43d --- /dev/null +++ b/public/img/icons/unicons/notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/object-group.svg b/public/img/icons/unicons/object-group.svg new file mode 100644 index 00000000000..cb295809039 --- /dev/null +++ b/public/img/icons/unicons/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/object-ungroup.svg b/public/img/icons/unicons/object-ungroup.svg new file mode 100644 index 00000000000..c86af38cf1f --- /dev/null +++ b/public/img/icons/unicons/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/octagon.svg b/public/img/icons/unicons/octagon.svg new file mode 100644 index 00000000000..b13dd410d17 --- /dev/null +++ b/public/img/icons/unicons/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/okta.svg b/public/img/icons/unicons/okta.svg new file mode 100644 index 00000000000..f48ff1bc573 --- /dev/null +++ b/public/img/icons/unicons/okta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/opera-alt.svg b/public/img/icons/unicons/opera-alt.svg new file mode 100644 index 00000000000..be5a1e76ee9 --- /dev/null +++ b/public/img/icons/unicons/opera-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/opera.svg b/public/img/icons/unicons/opera.svg new file mode 100644 index 00000000000..da6e1ee5e2f --- /dev/null +++ b/public/img/icons/unicons/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/outgoing-call.svg b/public/img/icons/unicons/outgoing-call.svg new file mode 100644 index 00000000000..d7520f7e3bc --- /dev/null +++ b/public/img/icons/unicons/outgoing-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/package.svg b/public/img/icons/unicons/package.svg new file mode 100644 index 00000000000..58327595ce9 --- /dev/null +++ b/public/img/icons/unicons/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/padlock.svg b/public/img/icons/unicons/padlock.svg new file mode 100644 index 00000000000..42055ac3d2e --- /dev/null +++ b/public/img/icons/unicons/padlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pagelines.svg b/public/img/icons/unicons/pagelines.svg new file mode 100644 index 00000000000..67b9d7015df --- /dev/null +++ b/public/img/icons/unicons/pagelines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pagerduty.svg b/public/img/icons/unicons/pagerduty.svg new file mode 100644 index 00000000000..9a7ac015f0f --- /dev/null +++ b/public/img/icons/unicons/pagerduty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/paint-tool.svg b/public/img/icons/unicons/paint-tool.svg new file mode 100644 index 00000000000..41612cbda9b --- /dev/null +++ b/public/img/icons/unicons/paint-tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/palette.svg b/public/img/icons/unicons/palette.svg new file mode 100644 index 00000000000..12d5e2f8132 --- /dev/null +++ b/public/img/icons/unicons/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/panel-add.svg b/public/img/icons/unicons/panel-add.svg new file mode 100644 index 00000000000..bb1706b3e02 --- /dev/null +++ b/public/img/icons/unicons/panel-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/panorama-h-alt.svg b/public/img/icons/unicons/panorama-h-alt.svg new file mode 100644 index 00000000000..ab8b19cb301 --- /dev/null +++ b/public/img/icons/unicons/panorama-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/panorama-h.svg b/public/img/icons/unicons/panorama-h.svg new file mode 100644 index 00000000000..fd3a9ebae1d --- /dev/null +++ b/public/img/icons/unicons/panorama-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/panorama-v.svg b/public/img/icons/unicons/panorama-v.svg new file mode 100644 index 00000000000..0ba9770a871 --- /dev/null +++ b/public/img/icons/unicons/panorama-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/paperclip.svg b/public/img/icons/unicons/paperclip.svg new file mode 100644 index 00000000000..8b90eff0295 --- /dev/null +++ b/public/img/icons/unicons/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/paragraph.svg b/public/img/icons/unicons/paragraph.svg new file mode 100644 index 00000000000..422c44fe9cb --- /dev/null +++ b/public/img/icons/unicons/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/parcel.svg b/public/img/icons/unicons/parcel.svg new file mode 100644 index 00000000000..4be7d82bea4 --- /dev/null +++ b/public/img/icons/unicons/parcel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/parking-circle.svg b/public/img/icons/unicons/parking-circle.svg new file mode 100644 index 00000000000..3a7d1341ec7 --- /dev/null +++ b/public/img/icons/unicons/parking-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/parking-square.svg b/public/img/icons/unicons/parking-square.svg new file mode 100644 index 00000000000..cee7b358449 --- /dev/null +++ b/public/img/icons/unicons/parking-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pathfinder-unite.svg b/public/img/icons/unicons/pathfinder-unite.svg new file mode 100644 index 00000000000..da16fde20ba --- /dev/null +++ b/public/img/icons/unicons/pathfinder-unite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pathfinder.svg b/public/img/icons/unicons/pathfinder.svg new file mode 100644 index 00000000000..4aa1c3adb1d --- /dev/null +++ b/public/img/icons/unicons/pathfinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pause-circle.svg b/public/img/icons/unicons/pause-circle.svg new file mode 100644 index 00000000000..98f7effb946 --- /dev/null +++ b/public/img/icons/unicons/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pause.svg b/public/img/icons/unicons/pause.svg new file mode 100644 index 00000000000..06fb2270365 --- /dev/null +++ b/public/img/icons/unicons/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/paypal.svg b/public/img/icons/unicons/paypal.svg new file mode 100644 index 00000000000..b2fc3f9396e --- /dev/null +++ b/public/img/icons/unicons/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pen.svg b/public/img/icons/unicons/pen.svg new file mode 100644 index 00000000000..e10bfd8c9b3 --- /dev/null +++ b/public/img/icons/unicons/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pentagon.svg b/public/img/icons/unicons/pentagon.svg new file mode 100644 index 00000000000..409d8177fda --- /dev/null +++ b/public/img/icons/unicons/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/percentage.svg b/public/img/icons/unicons/percentage.svg new file mode 100644 index 00000000000..ace24e2d770 --- /dev/null +++ b/public/img/icons/unicons/percentage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/phone-alt.svg b/public/img/icons/unicons/phone-alt.svg new file mode 100644 index 00000000000..4496fa1b0d4 --- /dev/null +++ b/public/img/icons/unicons/phone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/phone-pause.svg b/public/img/icons/unicons/phone-pause.svg new file mode 100644 index 00000000000..b1177e8017f --- /dev/null +++ b/public/img/icons/unicons/phone-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/phone-slash.svg b/public/img/icons/unicons/phone-slash.svg new file mode 100644 index 00000000000..847c48ef2e8 --- /dev/null +++ b/public/img/icons/unicons/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/phone-times.svg b/public/img/icons/unicons/phone-times.svg new file mode 100644 index 00000000000..cbaaf588037 --- /dev/null +++ b/public/img/icons/unicons/phone-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/phone-volume.svg b/public/img/icons/unicons/phone-volume.svg new file mode 100644 index 00000000000..4f4529d8bc7 --- /dev/null +++ b/public/img/icons/unicons/phone-volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/phone.svg b/public/img/icons/unicons/phone.svg new file mode 100644 index 00000000000..778036250f2 --- /dev/null +++ b/public/img/icons/unicons/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/picture.svg b/public/img/icons/unicons/picture.svg new file mode 100644 index 00000000000..9e17ba0ebbc --- /dev/null +++ b/public/img/icons/unicons/picture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pizza-slice.svg b/public/img/icons/unicons/pizza-slice.svg new file mode 100644 index 00000000000..ee2332796e1 --- /dev/null +++ b/public/img/icons/unicons/pizza-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plane-arrival.svg b/public/img/icons/unicons/plane-arrival.svg new file mode 100644 index 00000000000..2619a81d504 --- /dev/null +++ b/public/img/icons/unicons/plane-arrival.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plane-departure.svg b/public/img/icons/unicons/plane-departure.svg new file mode 100644 index 00000000000..ff10e8c670d --- /dev/null +++ b/public/img/icons/unicons/plane-departure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plane-fly.svg b/public/img/icons/unicons/plane-fly.svg new file mode 100644 index 00000000000..abf3b1c4078 --- /dev/null +++ b/public/img/icons/unicons/plane-fly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plane.svg b/public/img/icons/unicons/plane.svg new file mode 100644 index 00000000000..39fd8c8b4b8 --- /dev/null +++ b/public/img/icons/unicons/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/play-circle.svg b/public/img/icons/unicons/play-circle.svg new file mode 100644 index 00000000000..6c06e6c6f5c --- /dev/null +++ b/public/img/icons/unicons/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/play.svg b/public/img/icons/unicons/play.svg new file mode 100644 index 00000000000..98d8d491daf --- /dev/null +++ b/public/img/icons/unicons/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plug.svg b/public/img/icons/unicons/plug.svg new file mode 100644 index 00000000000..9abe3b8e69a --- /dev/null +++ b/public/img/icons/unicons/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plus-circle.svg b/public/img/icons/unicons/plus-circle.svg new file mode 100644 index 00000000000..77a9425985c --- /dev/null +++ b/public/img/icons/unicons/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plus-square.svg b/public/img/icons/unicons/plus-square.svg new file mode 100644 index 00000000000..3876d5201bb --- /dev/null +++ b/public/img/icons/unicons/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/plus.svg b/public/img/icons/unicons/plus.svg new file mode 100644 index 00000000000..399f74920d5 --- /dev/null +++ b/public/img/icons/unicons/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/podium.svg b/public/img/icons/unicons/podium.svg new file mode 100644 index 00000000000..9c78b32b52e --- /dev/null +++ b/public/img/icons/unicons/podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/polygon.svg b/public/img/icons/unicons/polygon.svg new file mode 100644 index 00000000000..05fcefc9a1f --- /dev/null +++ b/public/img/icons/unicons/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/post-stamp.svg b/public/img/icons/unicons/post-stamp.svg new file mode 100644 index 00000000000..050c67eec78 --- /dev/null +++ b/public/img/icons/unicons/post-stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/postcard.svg b/public/img/icons/unicons/postcard.svg new file mode 100644 index 00000000000..55c07a3bcc3 --- /dev/null +++ b/public/img/icons/unicons/postcard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pound-circle.svg b/public/img/icons/unicons/pound-circle.svg new file mode 100644 index 00000000000..5dba6f1e5a1 --- /dev/null +++ b/public/img/icons/unicons/pound-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pound.svg b/public/img/icons/unicons/pound.svg new file mode 100644 index 00000000000..68ad8e87e03 --- /dev/null +++ b/public/img/icons/unicons/pound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/power.svg b/public/img/icons/unicons/power.svg new file mode 100644 index 00000000000..71986c63085 --- /dev/null +++ b/public/img/icons/unicons/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/prescription-bottle.svg b/public/img/icons/unicons/prescription-bottle.svg new file mode 100644 index 00000000000..71fb244cbc7 --- /dev/null +++ b/public/img/icons/unicons/prescription-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-check.svg b/public/img/icons/unicons/presentation-check.svg new file mode 100644 index 00000000000..2468ad56d3a --- /dev/null +++ b/public/img/icons/unicons/presentation-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-edit.svg b/public/img/icons/unicons/presentation-edit.svg new file mode 100644 index 00000000000..c8b7091fb0f --- /dev/null +++ b/public/img/icons/unicons/presentation-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-line.svg b/public/img/icons/unicons/presentation-line.svg new file mode 100644 index 00000000000..2d83f0757f7 --- /dev/null +++ b/public/img/icons/unicons/presentation-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-lines-alt.svg b/public/img/icons/unicons/presentation-lines-alt.svg new file mode 100644 index 00000000000..9ee00a3ddc8 --- /dev/null +++ b/public/img/icons/unicons/presentation-lines-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-minus.svg b/public/img/icons/unicons/presentation-minus.svg new file mode 100644 index 00000000000..5f26fd709d4 --- /dev/null +++ b/public/img/icons/unicons/presentation-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-play.svg b/public/img/icons/unicons/presentation-play.svg new file mode 100644 index 00000000000..bcb27f2502e --- /dev/null +++ b/public/img/icons/unicons/presentation-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-plus.svg b/public/img/icons/unicons/presentation-plus.svg new file mode 100644 index 00000000000..76e44f02877 --- /dev/null +++ b/public/img/icons/unicons/presentation-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation-times.svg b/public/img/icons/unicons/presentation-times.svg new file mode 100644 index 00000000000..0a485ff2034 --- /dev/null +++ b/public/img/icons/unicons/presentation-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/presentation.svg b/public/img/icons/unicons/presentation.svg new file mode 100644 index 00000000000..32b993c46b5 --- /dev/null +++ b/public/img/icons/unicons/presentation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/previous.svg b/public/img/icons/unicons/previous.svg new file mode 100644 index 00000000000..1547eb9f2f8 --- /dev/null +++ b/public/img/icons/unicons/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pricetag-alt.svg b/public/img/icons/unicons/pricetag-alt.svg new file mode 100644 index 00000000000..d07f542727a --- /dev/null +++ b/public/img/icons/unicons/pricetag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/print-slash.svg b/public/img/icons/unicons/print-slash.svg new file mode 100644 index 00000000000..556285df311 --- /dev/null +++ b/public/img/icons/unicons/print-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/print.svg b/public/img/icons/unicons/print.svg new file mode 100644 index 00000000000..0ecd0b9c9df --- /dev/null +++ b/public/img/icons/unicons/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/process.svg b/public/img/icons/unicons/process.svg new file mode 100644 index 00000000000..b2f6516ab42 --- /dev/null +++ b/public/img/icons/unicons/process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/processor.svg b/public/img/icons/unicons/processor.svg new file mode 100644 index 00000000000..561e270946d --- /dev/null +++ b/public/img/icons/unicons/processor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/programming-language.svg b/public/img/icons/unicons/programming-language.svg new file mode 100644 index 00000000000..bcf6699aaa6 --- /dev/null +++ b/public/img/icons/unicons/programming-language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/pump.svg b/public/img/icons/unicons/pump.svg new file mode 100644 index 00000000000..d6a54f3e1e2 --- /dev/null +++ b/public/img/icons/unicons/pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/puzzle-piece.svg b/public/img/icons/unicons/puzzle-piece.svg new file mode 100644 index 00000000000..403ecab83cb --- /dev/null +++ b/public/img/icons/unicons/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/qrcode-scan.svg b/public/img/icons/unicons/qrcode-scan.svg new file mode 100644 index 00000000000..5a0e9bc9a7d --- /dev/null +++ b/public/img/icons/unicons/qrcode-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/question-circle.svg b/public/img/icons/unicons/question-circle.svg new file mode 100644 index 00000000000..fb077c98532 --- /dev/null +++ b/public/img/icons/unicons/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/question.svg b/public/img/icons/unicons/question.svg new file mode 100644 index 00000000000..e11ab847e98 --- /dev/null +++ b/public/img/icons/unicons/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rainbow.svg b/public/img/icons/unicons/rainbow.svg new file mode 100644 index 00000000000..7a063694372 --- /dev/null +++ b/public/img/icons/unicons/rainbow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/raindrops-alt.svg b/public/img/icons/unicons/raindrops-alt.svg new file mode 100644 index 00000000000..e7bffea38dd --- /dev/null +++ b/public/img/icons/unicons/raindrops-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/raindrops.svg b/public/img/icons/unicons/raindrops.svg new file mode 100644 index 00000000000..61c2c17f8f5 --- /dev/null +++ b/public/img/icons/unicons/raindrops.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/react.svg b/public/img/icons/unicons/react.svg new file mode 100644 index 00000000000..190e395a26f --- /dev/null +++ b/public/img/icons/unicons/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/receipt-alt.svg b/public/img/icons/unicons/receipt-alt.svg new file mode 100644 index 00000000000..657adfba2b7 --- /dev/null +++ b/public/img/icons/unicons/receipt-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/receipt.svg b/public/img/icons/unicons/receipt.svg new file mode 100644 index 00000000000..7961669fe90 --- /dev/null +++ b/public/img/icons/unicons/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/record-audio.svg b/public/img/icons/unicons/record-audio.svg new file mode 100644 index 00000000000..6f6a8154d18 --- /dev/null +++ b/public/img/icons/unicons/record-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/reddit-alien-alt.svg b/public/img/icons/unicons/reddit-alien-alt.svg new file mode 100644 index 00000000000..95f86d62e44 --- /dev/null +++ b/public/img/icons/unicons/reddit-alien-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/redo.svg b/public/img/icons/unicons/redo.svg new file mode 100644 index 00000000000..6f7f8246c8a --- /dev/null +++ b/public/img/icons/unicons/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/refresh.svg b/public/img/icons/unicons/refresh.svg new file mode 100644 index 00000000000..59291c95b0e --- /dev/null +++ b/public/img/icons/unicons/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/registered.svg b/public/img/icons/unicons/registered.svg new file mode 100644 index 00000000000..567c7377acc --- /dev/null +++ b/public/img/icons/unicons/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/repeat.svg b/public/img/icons/unicons/repeat.svg new file mode 100644 index 00000000000..7edc1116fa9 --- /dev/null +++ b/public/img/icons/unicons/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/restaurant.svg b/public/img/icons/unicons/restaurant.svg new file mode 100644 index 00000000000..41f1925d1a2 --- /dev/null +++ b/public/img/icons/unicons/restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/right-indent-alt.svg b/public/img/icons/unicons/right-indent-alt.svg new file mode 100644 index 00000000000..539613e4991 --- /dev/null +++ b/public/img/icons/unicons/right-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/right-to-left-text-direction.svg b/public/img/icons/unicons/right-to-left-text-direction.svg new file mode 100644 index 00000000000..8bb6c248883 --- /dev/null +++ b/public/img/icons/unicons/right-to-left-text-direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/robot.svg b/public/img/icons/unicons/robot.svg new file mode 100644 index 00000000000..8ee6c71ae1c --- /dev/null +++ b/public/img/icons/unicons/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rocket.svg b/public/img/icons/unicons/rocket.svg new file mode 100644 index 00000000000..ae71c119ce5 --- /dev/null +++ b/public/img/icons/unicons/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rope-way.svg b/public/img/icons/unicons/rope-way.svg new file mode 100644 index 00000000000..566c2e421bc --- /dev/null +++ b/public/img/icons/unicons/rope-way.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rotate-360.svg b/public/img/icons/unicons/rotate-360.svg new file mode 100644 index 00000000000..80ad8aa46e8 --- /dev/null +++ b/public/img/icons/unicons/rotate-360.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rss-alt.svg b/public/img/icons/unicons/rss-alt.svg new file mode 100644 index 00000000000..7fe7f26ed4a --- /dev/null +++ b/public/img/icons/unicons/rss-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rss-interface.svg b/public/img/icons/unicons/rss-interface.svg new file mode 100644 index 00000000000..d22faf7a718 --- /dev/null +++ b/public/img/icons/unicons/rss-interface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rss.svg b/public/img/icons/unicons/rss.svg new file mode 100644 index 00000000000..5d0c50c11d6 --- /dev/null +++ b/public/img/icons/unicons/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ruler-combined.svg b/public/img/icons/unicons/ruler-combined.svg new file mode 100644 index 00000000000..aab5576c1bd --- /dev/null +++ b/public/img/icons/unicons/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ruler.svg b/public/img/icons/unicons/ruler.svg new file mode 100644 index 00000000000..78d8e95db36 --- /dev/null +++ b/public/img/icons/unicons/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/rupee-sign.svg b/public/img/icons/unicons/rupee-sign.svg new file mode 100644 index 00000000000..e7e0d086ad3 --- /dev/null +++ b/public/img/icons/unicons/rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sad-cry.svg b/public/img/icons/unicons/sad-cry.svg new file mode 100644 index 00000000000..3fdce281422 --- /dev/null +++ b/public/img/icons/unicons/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sad-crying.svg b/public/img/icons/unicons/sad-crying.svg new file mode 100644 index 00000000000..1ac7645bf70 --- /dev/null +++ b/public/img/icons/unicons/sad-crying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sad-dizzy.svg b/public/img/icons/unicons/sad-dizzy.svg new file mode 100644 index 00000000000..ab121e7b00f --- /dev/null +++ b/public/img/icons/unicons/sad-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sad-squint.svg b/public/img/icons/unicons/sad-squint.svg new file mode 100644 index 00000000000..7fb6a6b5d2e --- /dev/null +++ b/public/img/icons/unicons/sad-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sad.svg b/public/img/icons/unicons/sad.svg new file mode 100644 index 00000000000..72e84b800fc --- /dev/null +++ b/public/img/icons/unicons/sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sanitizer-alt.svg b/public/img/icons/unicons/sanitizer-alt.svg new file mode 100644 index 00000000000..02b1aac796b --- /dev/null +++ b/public/img/icons/unicons/sanitizer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sanitizer.svg b/public/img/icons/unicons/sanitizer.svg new file mode 100644 index 00000000000..bc74faba013 --- /dev/null +++ b/public/img/icons/unicons/sanitizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/save.svg b/public/img/icons/unicons/save.svg new file mode 100644 index 00000000000..f40d3ac0bca --- /dev/null +++ b/public/img/icons/unicons/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/scaling-left.svg b/public/img/icons/unicons/scaling-left.svg new file mode 100644 index 00000000000..52de7b76936 --- /dev/null +++ b/public/img/icons/unicons/scaling-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/scaling-right.svg b/public/img/icons/unicons/scaling-right.svg new file mode 100644 index 00000000000..57ca633cb7e --- /dev/null +++ b/public/img/icons/unicons/scaling-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/scenery.svg b/public/img/icons/unicons/scenery.svg new file mode 100644 index 00000000000..0ebe431e191 --- /dev/null +++ b/public/img/icons/unicons/scenery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/schedule.svg b/public/img/icons/unicons/schedule.svg new file mode 100644 index 00000000000..3b4ee31b9a7 --- /dev/null +++ b/public/img/icons/unicons/schedule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/screw.svg b/public/img/icons/unicons/screw.svg new file mode 100644 index 00000000000..98289690a70 --- /dev/null +++ b/public/img/icons/unicons/screw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/scroll-h.svg b/public/img/icons/unicons/scroll-h.svg new file mode 100644 index 00000000000..0d5ca49a21d --- /dev/null +++ b/public/img/icons/unicons/scroll-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/scroll.svg b/public/img/icons/unicons/scroll.svg new file mode 100644 index 00000000000..4188e63869f --- /dev/null +++ b/public/img/icons/unicons/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/search-alt.svg b/public/img/icons/unicons/search-alt.svg new file mode 100644 index 00000000000..a94d4c32210 --- /dev/null +++ b/public/img/icons/unicons/search-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/search-minus.svg b/public/img/icons/unicons/search-minus.svg new file mode 100644 index 00000000000..2ce6e0aa784 --- /dev/null +++ b/public/img/icons/unicons/search-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/search-plus.svg b/public/img/icons/unicons/search-plus.svg new file mode 100644 index 00000000000..18f99d89c22 --- /dev/null +++ b/public/img/icons/unicons/search-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/search.svg b/public/img/icons/unicons/search.svg new file mode 100644 index 00000000000..39f5b14c3a9 --- /dev/null +++ b/public/img/icons/unicons/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/selfie.svg b/public/img/icons/unicons/selfie.svg new file mode 100644 index 00000000000..c0ae0e501a5 --- /dev/null +++ b/public/img/icons/unicons/selfie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/server-alt.svg b/public/img/icons/unicons/server-alt.svg new file mode 100644 index 00000000000..e026407d44a --- /dev/null +++ b/public/img/icons/unicons/server-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/server-connection.svg b/public/img/icons/unicons/server-connection.svg new file mode 100644 index 00000000000..c5e299e94cc --- /dev/null +++ b/public/img/icons/unicons/server-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/server-network-alt.svg b/public/img/icons/unicons/server-network-alt.svg new file mode 100644 index 00000000000..6bc112189a0 --- /dev/null +++ b/public/img/icons/unicons/server-network-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/server-network.svg b/public/img/icons/unicons/server-network.svg new file mode 100644 index 00000000000..3db3b2d1ea6 --- /dev/null +++ b/public/img/icons/unicons/server-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/server.svg b/public/img/icons/unicons/server.svg new file mode 100644 index 00000000000..16720738c27 --- /dev/null +++ b/public/img/icons/unicons/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/servers.svg b/public/img/icons/unicons/servers.svg new file mode 100644 index 00000000000..bae348e6c31 --- /dev/null +++ b/public/img/icons/unicons/servers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/servicemark.svg b/public/img/icons/unicons/servicemark.svg new file mode 100644 index 00000000000..d05c5ee741e --- /dev/null +++ b/public/img/icons/unicons/servicemark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/setting.svg b/public/img/icons/unicons/setting.svg new file mode 100644 index 00000000000..4d2af2baa98 --- /dev/null +++ b/public/img/icons/unicons/setting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/share-alt.svg b/public/img/icons/unicons/share-alt.svg new file mode 100644 index 00000000000..d153312fd96 --- /dev/null +++ b/public/img/icons/unicons/share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/share.svg b/public/img/icons/unicons/share.svg new file mode 100644 index 00000000000..880ccfa59a7 --- /dev/null +++ b/public/img/icons/unicons/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shield-check.svg b/public/img/icons/unicons/shield-check.svg new file mode 100644 index 00000000000..15b906afdf9 --- /dev/null +++ b/public/img/icons/unicons/shield-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shield-exclamation.svg b/public/img/icons/unicons/shield-exclamation.svg new file mode 100644 index 00000000000..273b02b114b --- /dev/null +++ b/public/img/icons/unicons/shield-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shield-plus.svg b/public/img/icons/unicons/shield-plus.svg new file mode 100644 index 00000000000..e410a40aa1f --- /dev/null +++ b/public/img/icons/unicons/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shield-question.svg b/public/img/icons/unicons/shield-question.svg new file mode 100644 index 00000000000..f59e3e294bf --- /dev/null +++ b/public/img/icons/unicons/shield-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shield-slash.svg b/public/img/icons/unicons/shield-slash.svg new file mode 100644 index 00000000000..314a118857a --- /dev/null +++ b/public/img/icons/unicons/shield-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shield.svg b/public/img/icons/unicons/shield.svg new file mode 100644 index 00000000000..736f02a06d5 --- /dev/null +++ b/public/img/icons/unicons/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ship.svg b/public/img/icons/unicons/ship.svg new file mode 100644 index 00000000000..98f744c87ac --- /dev/null +++ b/public/img/icons/unicons/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shop.svg b/public/img/icons/unicons/shop.svg new file mode 100644 index 00000000000..429898c76ec --- /dev/null +++ b/public/img/icons/unicons/shop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shopping-bag.svg b/public/img/icons/unicons/shopping-bag.svg new file mode 100644 index 00000000000..fa86e81e7b6 --- /dev/null +++ b/public/img/icons/unicons/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shopping-basket.svg b/public/img/icons/unicons/shopping-basket.svg new file mode 100644 index 00000000000..c2dab16c4dd --- /dev/null +++ b/public/img/icons/unicons/shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shopping-cart-alt.svg b/public/img/icons/unicons/shopping-cart-alt.svg new file mode 100644 index 00000000000..974e30f1cfb --- /dev/null +++ b/public/img/icons/unicons/shopping-cart-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shopping-cart.svg b/public/img/icons/unicons/shopping-cart.svg new file mode 100644 index 00000000000..91635831b5e --- /dev/null +++ b/public/img/icons/unicons/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shovel.svg b/public/img/icons/unicons/shovel.svg new file mode 100644 index 00000000000..5a2b2297eca --- /dev/null +++ b/public/img/icons/unicons/shovel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shrink.svg b/public/img/icons/unicons/shrink.svg new file mode 100644 index 00000000000..dca99922c23 --- /dev/null +++ b/public/img/icons/unicons/shrink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shuffle.svg b/public/img/icons/unicons/shuffle.svg new file mode 100644 index 00000000000..5abfc2bf1d4 --- /dev/null +++ b/public/img/icons/unicons/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shutter-alt.svg b/public/img/icons/unicons/shutter-alt.svg new file mode 100644 index 00000000000..6c9179679d9 --- /dev/null +++ b/public/img/icons/unicons/shutter-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/shutter.svg b/public/img/icons/unicons/shutter.svg new file mode 100644 index 00000000000..b6b65c0ad7c --- /dev/null +++ b/public/img/icons/unicons/shutter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sick.svg b/public/img/icons/unicons/sick.svg new file mode 100644 index 00000000000..b5c3e1baea1 --- /dev/null +++ b/public/img/icons/unicons/sick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sigma.svg b/public/img/icons/unicons/sigma.svg new file mode 100644 index 00000000000..0098f028263 --- /dev/null +++ b/public/img/icons/unicons/sigma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sign-alt.svg b/public/img/icons/unicons/sign-alt.svg new file mode 100644 index 00000000000..2120e680d12 --- /dev/null +++ b/public/img/icons/unicons/sign-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sign-in-alt.svg b/public/img/icons/unicons/sign-in-alt.svg new file mode 100644 index 00000000000..41707d0ef25 --- /dev/null +++ b/public/img/icons/unicons/sign-in-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sign-left.svg b/public/img/icons/unicons/sign-left.svg new file mode 100644 index 00000000000..94b4ac4f21c --- /dev/null +++ b/public/img/icons/unicons/sign-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sign-out-alt.svg b/public/img/icons/unicons/sign-out-alt.svg new file mode 100644 index 00000000000..39494d8e47f --- /dev/null +++ b/public/img/icons/unicons/sign-out-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sign-right.svg b/public/img/icons/unicons/sign-right.svg new file mode 100644 index 00000000000..5eb35c43b4a --- /dev/null +++ b/public/img/icons/unicons/sign-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/signal-alt-3.svg b/public/img/icons/unicons/signal-alt-3.svg new file mode 100644 index 00000000000..bd80f55b226 --- /dev/null +++ b/public/img/icons/unicons/signal-alt-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/signal-alt.svg b/public/img/icons/unicons/signal-alt.svg new file mode 100644 index 00000000000..424ee553ff0 --- /dev/null +++ b/public/img/icons/unicons/signal-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/signal.svg b/public/img/icons/unicons/signal.svg new file mode 100644 index 00000000000..95523452c22 --- /dev/null +++ b/public/img/icons/unicons/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/signin.svg b/public/img/icons/unicons/signin.svg new file mode 100644 index 00000000000..a3ac7e9b9b3 --- /dev/null +++ b/public/img/icons/unicons/signin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/signout.svg b/public/img/icons/unicons/signout.svg new file mode 100644 index 00000000000..4009a2654bb --- /dev/null +++ b/public/img/icons/unicons/signout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/silence.svg b/public/img/icons/unicons/silence.svg new file mode 100644 index 00000000000..f87e6c38818 --- /dev/null +++ b/public/img/icons/unicons/silence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/silent-squint.svg b/public/img/icons/unicons/silent-squint.svg new file mode 100644 index 00000000000..ee01d94cf23 --- /dev/null +++ b/public/img/icons/unicons/silent-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sim-card.svg b/public/img/icons/unicons/sim-card.svg new file mode 100644 index 00000000000..b2ff02b7715 --- /dev/null +++ b/public/img/icons/unicons/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sitemap.svg b/public/img/icons/unicons/sitemap.svg new file mode 100644 index 00000000000..3c5cd8d91dd --- /dev/null +++ b/public/img/icons/unicons/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/skip-forward-alt.svg b/public/img/icons/unicons/skip-forward-alt.svg new file mode 100644 index 00000000000..b31c5f8a88e --- /dev/null +++ b/public/img/icons/unicons/skip-forward-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/skip-forward-circle.svg b/public/img/icons/unicons/skip-forward-circle.svg new file mode 100644 index 00000000000..ba9efe0d534 --- /dev/null +++ b/public/img/icons/unicons/skip-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/skip-forward.svg b/public/img/icons/unicons/skip-forward.svg new file mode 100644 index 00000000000..46e4595fb13 --- /dev/null +++ b/public/img/icons/unicons/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/skype-alt.svg b/public/img/icons/unicons/skype-alt.svg new file mode 100644 index 00000000000..a4eb11610f8 --- /dev/null +++ b/public/img/icons/unicons/skype-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/skype.svg b/public/img/icons/unicons/skype.svg new file mode 100644 index 00000000000..e0f0cc6618c --- /dev/null +++ b/public/img/icons/unicons/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/slack-alt.svg b/public/img/icons/unicons/slack-alt.svg new file mode 100644 index 00000000000..150ae8689db --- /dev/null +++ b/public/img/icons/unicons/slack-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/slack.svg b/public/img/icons/unicons/slack.svg new file mode 100644 index 00000000000..edf70d18bdb --- /dev/null +++ b/public/img/icons/unicons/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/slider-h-range.svg b/public/img/icons/unicons/slider-h-range.svg new file mode 100644 index 00000000000..27b9a2d24ba --- /dev/null +++ b/public/img/icons/unicons/slider-h-range.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/slider-h.svg b/public/img/icons/unicons/slider-h.svg new file mode 100644 index 00000000000..38f08f6ff30 --- /dev/null +++ b/public/img/icons/unicons/slider-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sliders-v-alt.svg b/public/img/icons/unicons/sliders-v-alt.svg new file mode 100644 index 00000000000..868914ed2bc --- /dev/null +++ b/public/img/icons/unicons/sliders-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sliders-v.svg b/public/img/icons/unicons/sliders-v.svg new file mode 100644 index 00000000000..72900a40684 --- /dev/null +++ b/public/img/icons/unicons/sliders-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile-beam.svg b/public/img/icons/unicons/smile-beam.svg new file mode 100644 index 00000000000..23d9b577f4a --- /dev/null +++ b/public/img/icons/unicons/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile-dizzy.svg b/public/img/icons/unicons/smile-dizzy.svg new file mode 100644 index 00000000000..b4cb029a155 --- /dev/null +++ b/public/img/icons/unicons/smile-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile-squint-wink-alt.svg b/public/img/icons/unicons/smile-squint-wink-alt.svg new file mode 100644 index 00000000000..7a31e08ec6c --- /dev/null +++ b/public/img/icons/unicons/smile-squint-wink-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile-squint-wink.svg b/public/img/icons/unicons/smile-squint-wink.svg new file mode 100644 index 00000000000..7113fe4025d --- /dev/null +++ b/public/img/icons/unicons/smile-squint-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile-wink-alt.svg b/public/img/icons/unicons/smile-wink-alt.svg new file mode 100644 index 00000000000..ac7fee59184 --- /dev/null +++ b/public/img/icons/unicons/smile-wink-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile-wink.svg b/public/img/icons/unicons/smile-wink.svg new file mode 100644 index 00000000000..94d1856c6a2 --- /dev/null +++ b/public/img/icons/unicons/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/smile.svg b/public/img/icons/unicons/smile.svg new file mode 100644 index 00000000000..10cbe5eff0d --- /dev/null +++ b/public/img/icons/unicons/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/snapchat-alt.svg b/public/img/icons/unicons/snapchat-alt.svg new file mode 100644 index 00000000000..14bedf6814b --- /dev/null +++ b/public/img/icons/unicons/snapchat-alt.svg @@ -0,0 +1 @@ +Snapchat \ No newline at end of file diff --git a/public/img/icons/unicons/snapchat-ghost.svg b/public/img/icons/unicons/snapchat-ghost.svg new file mode 100644 index 00000000000..ff83a4010c4 --- /dev/null +++ b/public/img/icons/unicons/snapchat-ghost.svg @@ -0,0 +1 @@ +Artboard 10 copy 6 \ No newline at end of file diff --git a/public/img/icons/unicons/snapchat-square.svg b/public/img/icons/unicons/snapchat-square.svg new file mode 100644 index 00000000000..b814cc57388 --- /dev/null +++ b/public/img/icons/unicons/snapchat-square.svg @@ -0,0 +1 @@ +Artboard 9 copy 6 \ No newline at end of file diff --git a/public/img/icons/unicons/snow-flake.svg b/public/img/icons/unicons/snow-flake.svg new file mode 100644 index 00000000000..8331caa5c32 --- /dev/null +++ b/public/img/icons/unicons/snow-flake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/snowflake-alt.svg b/public/img/icons/unicons/snowflake-alt.svg new file mode 100644 index 00000000000..88f64a25fd0 --- /dev/null +++ b/public/img/icons/unicons/snowflake-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/snowflake.svg b/public/img/icons/unicons/snowflake.svg new file mode 100644 index 00000000000..efce5051738 --- /dev/null +++ b/public/img/icons/unicons/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/social-distancing.svg b/public/img/icons/unicons/social-distancing.svg new file mode 100644 index 00000000000..79556403363 --- /dev/null +++ b/public/img/icons/unicons/social-distancing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sort-amount-down.svg b/public/img/icons/unicons/sort-amount-down.svg new file mode 100644 index 00000000000..f120ee0115b --- /dev/null +++ b/public/img/icons/unicons/sort-amount-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sort-amount-up.svg b/public/img/icons/unicons/sort-amount-up.svg new file mode 100644 index 00000000000..076ebf98af2 --- /dev/null +++ b/public/img/icons/unicons/sort-amount-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sort.svg b/public/img/icons/unicons/sort.svg new file mode 100644 index 00000000000..5e84f0ac412 --- /dev/null +++ b/public/img/icons/unicons/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sorting.svg b/public/img/icons/unicons/sorting.svg new file mode 100644 index 00000000000..a4b64d0b1a2 --- /dev/null +++ b/public/img/icons/unicons/sorting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/space-key.svg b/public/img/icons/unicons/space-key.svg new file mode 100644 index 00000000000..9e980bab957 --- /dev/null +++ b/public/img/icons/unicons/space-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/spade.svg b/public/img/icons/unicons/spade.svg new file mode 100644 index 00000000000..0bbc135c4f6 --- /dev/null +++ b/public/img/icons/unicons/spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sperms.svg b/public/img/icons/unicons/sperms.svg new file mode 100644 index 00000000000..64211c5705d --- /dev/null +++ b/public/img/icons/unicons/sperms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/spin.svg b/public/img/icons/unicons/spin.svg new file mode 100644 index 00000000000..e62116df757 --- /dev/null +++ b/public/img/icons/unicons/spin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/spinner-alt.svg b/public/img/icons/unicons/spinner-alt.svg new file mode 100644 index 00000000000..d197db9dfeb --- /dev/null +++ b/public/img/icons/unicons/spinner-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/spinner.svg b/public/img/icons/unicons/spinner.svg new file mode 100644 index 00000000000..dbc7f48a55c --- /dev/null +++ b/public/img/icons/unicons/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/square-full.svg b/public/img/icons/unicons/square-full.svg new file mode 100644 index 00000000000..c7e13a963aa --- /dev/null +++ b/public/img/icons/unicons/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/square-shape.svg b/public/img/icons/unicons/square-shape.svg new file mode 100644 index 00000000000..960560f6553 --- /dev/null +++ b/public/img/icons/unicons/square-shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/square.svg b/public/img/icons/unicons/square.svg new file mode 100644 index 00000000000..c7e13a963aa --- /dev/null +++ b/public/img/icons/unicons/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/squint.svg b/public/img/icons/unicons/squint.svg new file mode 100644 index 00000000000..52356958a8c --- /dev/null +++ b/public/img/icons/unicons/squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/star-half-alt.svg b/public/img/icons/unicons/star-half-alt.svg new file mode 100644 index 00000000000..0924414e83b --- /dev/null +++ b/public/img/icons/unicons/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/star.svg b/public/img/icons/unicons/star.svg new file mode 100644 index 00000000000..7fc7a836a7e --- /dev/null +++ b/public/img/icons/unicons/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/step-backward-alt.svg b/public/img/icons/unicons/step-backward-alt.svg new file mode 100644 index 00000000000..4e38e256f0b --- /dev/null +++ b/public/img/icons/unicons/step-backward-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/step-backward-circle.svg b/public/img/icons/unicons/step-backward-circle.svg new file mode 100644 index 00000000000..f136c848970 --- /dev/null +++ b/public/img/icons/unicons/step-backward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/step-backward.svg b/public/img/icons/unicons/step-backward.svg new file mode 100644 index 00000000000..b8832353209 --- /dev/null +++ b/public/img/icons/unicons/step-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/step-forward.svg b/public/img/icons/unicons/step-forward.svg new file mode 100644 index 00000000000..eb1ca86d91c --- /dev/null +++ b/public/img/icons/unicons/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/stethoscope-alt.svg b/public/img/icons/unicons/stethoscope-alt.svg new file mode 100644 index 00000000000..46dbd3c1e48 --- /dev/null +++ b/public/img/icons/unicons/stethoscope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/stethoscope.svg b/public/img/icons/unicons/stethoscope.svg new file mode 100644 index 00000000000..c7f02148a7f --- /dev/null +++ b/public/img/icons/unicons/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/stop-circle.svg b/public/img/icons/unicons/stop-circle.svg new file mode 100644 index 00000000000..653dd755c5a --- /dev/null +++ b/public/img/icons/unicons/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/stopwatch-slash.svg b/public/img/icons/unicons/stopwatch-slash.svg new file mode 100644 index 00000000000..e220fda992a --- /dev/null +++ b/public/img/icons/unicons/stopwatch-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/stopwatch.svg b/public/img/icons/unicons/stopwatch.svg new file mode 100644 index 00000000000..042caabbcfe --- /dev/null +++ b/public/img/icons/unicons/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/store-alt.svg b/public/img/icons/unicons/store-alt.svg new file mode 100644 index 00000000000..57bb1c291b9 --- /dev/null +++ b/public/img/icons/unicons/store-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/store-slash.svg b/public/img/icons/unicons/store-slash.svg new file mode 100644 index 00000000000..3522b00ac28 --- /dev/null +++ b/public/img/icons/unicons/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/store.svg b/public/img/icons/unicons/store.svg new file mode 100644 index 00000000000..216e66a4f4f --- /dev/null +++ b/public/img/icons/unicons/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/streering.svg b/public/img/icons/unicons/streering.svg new file mode 100644 index 00000000000..29075811ea6 --- /dev/null +++ b/public/img/icons/unicons/streering.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/stretcher.svg b/public/img/icons/unicons/stretcher.svg new file mode 100644 index 00000000000..2949c4d48e6 --- /dev/null +++ b/public/img/icons/unicons/stretcher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/subject.svg b/public/img/icons/unicons/subject.svg new file mode 100644 index 00000000000..122181eb9c5 --- /dev/null +++ b/public/img/icons/unicons/subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/subway-alt.svg b/public/img/icons/unicons/subway-alt.svg new file mode 100644 index 00000000000..ccb70ea7842 --- /dev/null +++ b/public/img/icons/unicons/subway-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/subway.svg b/public/img/icons/unicons/subway.svg new file mode 100644 index 00000000000..948b28ff36b --- /dev/null +++ b/public/img/icons/unicons/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/suitcase-alt.svg b/public/img/icons/unicons/suitcase-alt.svg new file mode 100644 index 00000000000..9beddb6819f --- /dev/null +++ b/public/img/icons/unicons/suitcase-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/suitcase.svg b/public/img/icons/unicons/suitcase.svg new file mode 100644 index 00000000000..09c806384b2 --- /dev/null +++ b/public/img/icons/unicons/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sun.svg b/public/img/icons/unicons/sun.svg new file mode 100644 index 00000000000..7002f027e61 --- /dev/null +++ b/public/img/icons/unicons/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sunset.svg b/public/img/icons/unicons/sunset.svg new file mode 100644 index 00000000000..86effd9292c --- /dev/null +++ b/public/img/icons/unicons/sunset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/surprise.svg b/public/img/icons/unicons/surprise.svg new file mode 100644 index 00000000000..597c0b8f9a1 --- /dev/null +++ b/public/img/icons/unicons/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/swatchbook.svg b/public/img/icons/unicons/swatchbook.svg new file mode 100644 index 00000000000..fff4dca0868 --- /dev/null +++ b/public/img/icons/unicons/swatchbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/swiggy.svg b/public/img/icons/unicons/swiggy.svg new file mode 100644 index 00000000000..7feaf0053c9 --- /dev/null +++ b/public/img/icons/unicons/swiggy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/swimmer.svg b/public/img/icons/unicons/swimmer.svg new file mode 100644 index 00000000000..9774dcf06b9 --- /dev/null +++ b/public/img/icons/unicons/swimmer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sync-exclamation.svg b/public/img/icons/unicons/sync-exclamation.svg new file mode 100644 index 00000000000..7b2951e1386 --- /dev/null +++ b/public/img/icons/unicons/sync-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sync-slash.svg b/public/img/icons/unicons/sync-slash.svg new file mode 100644 index 00000000000..a4e908a513a --- /dev/null +++ b/public/img/icons/unicons/sync-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/sync.svg b/public/img/icons/unicons/sync.svg new file mode 100644 index 00000000000..efb196ca58a --- /dev/null +++ b/public/img/icons/unicons/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/syringe.svg b/public/img/icons/unicons/syringe.svg new file mode 100644 index 00000000000..c52b8b57a82 --- /dev/null +++ b/public/img/icons/unicons/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/table-tennis.svg b/public/img/icons/unicons/table-tennis.svg new file mode 100644 index 00000000000..c7df0988153 --- /dev/null +++ b/public/img/icons/unicons/table-tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/table.svg b/public/img/icons/unicons/table.svg new file mode 100644 index 00000000000..9d733a3450a --- /dev/null +++ b/public/img/icons/unicons/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tablet.svg b/public/img/icons/unicons/tablet.svg new file mode 100644 index 00000000000..ec866d1f031 --- /dev/null +++ b/public/img/icons/unicons/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tablets.svg b/public/img/icons/unicons/tablets.svg new file mode 100644 index 00000000000..8fa4505240e --- /dev/null +++ b/public/img/icons/unicons/tablets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tachometer-fast-alt.svg b/public/img/icons/unicons/tachometer-fast-alt.svg new file mode 100644 index 00000000000..21d6b78abe4 --- /dev/null +++ b/public/img/icons/unicons/tachometer-fast-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tachometer-fast.svg b/public/img/icons/unicons/tachometer-fast.svg new file mode 100644 index 00000000000..7e48907b4aa --- /dev/null +++ b/public/img/icons/unicons/tachometer-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tag-alt.svg b/public/img/icons/unicons/tag-alt.svg new file mode 100644 index 00000000000..992db25baf9 --- /dev/null +++ b/public/img/icons/unicons/tag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tag.svg b/public/img/icons/unicons/tag.svg new file mode 100644 index 00000000000..6c8af9ea651 --- /dev/null +++ b/public/img/icons/unicons/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tape.svg b/public/img/icons/unicons/tape.svg new file mode 100644 index 00000000000..60d28a47459 --- /dev/null +++ b/public/img/icons/unicons/tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/taxi.svg b/public/img/icons/unicons/taxi.svg new file mode 100644 index 00000000000..dbe6f4db5da --- /dev/null +++ b/public/img/icons/unicons/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tear.svg b/public/img/icons/unicons/tear.svg new file mode 100644 index 00000000000..0842dd4d049 --- /dev/null +++ b/public/img/icons/unicons/tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/telegram-alt.svg b/public/img/icons/unicons/telegram-alt.svg new file mode 100644 index 00000000000..46aaad98400 --- /dev/null +++ b/public/img/icons/unicons/telegram-alt.svg @@ -0,0 +1 @@ +telegram \ No newline at end of file diff --git a/public/img/icons/unicons/telegram.svg b/public/img/icons/unicons/telegram.svg new file mode 100644 index 00000000000..b8c4cedae5f --- /dev/null +++ b/public/img/icons/unicons/telegram.svg @@ -0,0 +1 @@ +Telegram Glyph \ No newline at end of file diff --git a/public/img/icons/unicons/telescope.svg b/public/img/icons/unicons/telescope.svg new file mode 100644 index 00000000000..fa952654a01 --- /dev/null +++ b/public/img/icons/unicons/telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature-empty.svg b/public/img/icons/unicons/temperature-empty.svg new file mode 100644 index 00000000000..e5a69a1b6ac --- /dev/null +++ b/public/img/icons/unicons/temperature-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature-half.svg b/public/img/icons/unicons/temperature-half.svg new file mode 100644 index 00000000000..b2c52bd039f --- /dev/null +++ b/public/img/icons/unicons/temperature-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature-minus.svg b/public/img/icons/unicons/temperature-minus.svg new file mode 100644 index 00000000000..3906d5d35a6 --- /dev/null +++ b/public/img/icons/unicons/temperature-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature-plus.svg b/public/img/icons/unicons/temperature-plus.svg new file mode 100644 index 00000000000..13a167cb9d3 --- /dev/null +++ b/public/img/icons/unicons/temperature-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature-quarter.svg b/public/img/icons/unicons/temperature-quarter.svg new file mode 100644 index 00000000000..4da7f352af8 --- /dev/null +++ b/public/img/icons/unicons/temperature-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature-three-quarter.svg b/public/img/icons/unicons/temperature-three-quarter.svg new file mode 100644 index 00000000000..29f3d53dd38 --- /dev/null +++ b/public/img/icons/unicons/temperature-three-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/temperature.svg b/public/img/icons/unicons/temperature.svg new file mode 100644 index 00000000000..421a7bf7803 --- /dev/null +++ b/public/img/icons/unicons/temperature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tennis-ball.svg b/public/img/icons/unicons/tennis-ball.svg new file mode 100644 index 00000000000..0f1d9f12b45 --- /dev/null +++ b/public/img/icons/unicons/tennis-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/text-fields.svg b/public/img/icons/unicons/text-fields.svg new file mode 100644 index 00000000000..edce4350562 --- /dev/null +++ b/public/img/icons/unicons/text-fields.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/text-size.svg b/public/img/icons/unicons/text-size.svg new file mode 100644 index 00000000000..c1a344cae04 --- /dev/null +++ b/public/img/icons/unicons/text-size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/text-strike-through.svg b/public/img/icons/unicons/text-strike-through.svg new file mode 100644 index 00000000000..b9ec5c15c6b --- /dev/null +++ b/public/img/icons/unicons/text-strike-through.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/text.svg b/public/img/icons/unicons/text.svg new file mode 100644 index 00000000000..54873935a03 --- /dev/null +++ b/public/img/icons/unicons/text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/th-large.svg b/public/img/icons/unicons/th-large.svg new file mode 100644 index 00000000000..a9c752afcac --- /dev/null +++ b/public/img/icons/unicons/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/th-slash.svg b/public/img/icons/unicons/th-slash.svg new file mode 100644 index 00000000000..f3c3d23e3fb --- /dev/null +++ b/public/img/icons/unicons/th-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/th.svg b/public/img/icons/unicons/th.svg new file mode 100644 index 00000000000..1a9e479a6c1 --- /dev/null +++ b/public/img/icons/unicons/th.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/thermometer.svg b/public/img/icons/unicons/thermometer.svg new file mode 100644 index 00000000000..b25c7ca964b --- /dev/null +++ b/public/img/icons/unicons/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/thumbs-down.svg b/public/img/icons/unicons/thumbs-down.svg new file mode 100644 index 00000000000..ff8a48d935c --- /dev/null +++ b/public/img/icons/unicons/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/thumbs-up.svg b/public/img/icons/unicons/thumbs-up.svg new file mode 100644 index 00000000000..acd0bf3d1bb --- /dev/null +++ b/public/img/icons/unicons/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/thunderstorm-moon.svg b/public/img/icons/unicons/thunderstorm-moon.svg new file mode 100644 index 00000000000..fe7d2fc279f --- /dev/null +++ b/public/img/icons/unicons/thunderstorm-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/thunderstorm-sun.svg b/public/img/icons/unicons/thunderstorm-sun.svg new file mode 100644 index 00000000000..694a6ceaec5 --- /dev/null +++ b/public/img/icons/unicons/thunderstorm-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/thunderstorm.svg b/public/img/icons/unicons/thunderstorm.svg new file mode 100644 index 00000000000..61bb5d7721a --- /dev/null +++ b/public/img/icons/unicons/thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/ticket.svg b/public/img/icons/unicons/ticket.svg new file mode 100644 index 00000000000..7f9f2c5155a --- /dev/null +++ b/public/img/icons/unicons/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/times-circle.svg b/public/img/icons/unicons/times-circle.svg new file mode 100644 index 00000000000..cef7d52cce1 --- /dev/null +++ b/public/img/icons/unicons/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/times-square.svg b/public/img/icons/unicons/times-square.svg new file mode 100644 index 00000000000..f4cf17a45bd --- /dev/null +++ b/public/img/icons/unicons/times-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/times.svg b/public/img/icons/unicons/times.svg new file mode 100644 index 00000000000..11e673b5f78 --- /dev/null +++ b/public/img/icons/unicons/times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/toggle-off.svg b/public/img/icons/unicons/toggle-off.svg new file mode 100644 index 00000000000..694299f7c41 --- /dev/null +++ b/public/img/icons/unicons/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/toggle-on.svg b/public/img/icons/unicons/toggle-on.svg new file mode 100644 index 00000000000..046e640849d --- /dev/null +++ b/public/img/icons/unicons/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/toilet-paper.svg b/public/img/icons/unicons/toilet-paper.svg new file mode 100644 index 00000000000..aa23251aaf2 --- /dev/null +++ b/public/img/icons/unicons/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/top-arrow-from-top.svg b/public/img/icons/unicons/top-arrow-from-top.svg new file mode 100644 index 00000000000..6087a3d9d14 --- /dev/null +++ b/public/img/icons/unicons/top-arrow-from-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/top-arrow-to-top.svg b/public/img/icons/unicons/top-arrow-to-top.svg new file mode 100644 index 00000000000..8d868e8b003 --- /dev/null +++ b/public/img/icons/unicons/top-arrow-to-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tornado.svg b/public/img/icons/unicons/tornado.svg new file mode 100644 index 00000000000..c7815c27cb8 --- /dev/null +++ b/public/img/icons/unicons/tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trademark-circle.svg b/public/img/icons/unicons/trademark-circle.svg new file mode 100644 index 00000000000..a7b5881568e --- /dev/null +++ b/public/img/icons/unicons/trademark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trademark.svg b/public/img/icons/unicons/trademark.svg new file mode 100644 index 00000000000..955ec0b93a3 --- /dev/null +++ b/public/img/icons/unicons/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/traffic-barrier.svg b/public/img/icons/unicons/traffic-barrier.svg new file mode 100644 index 00000000000..a3bedd9e05e --- /dev/null +++ b/public/img/icons/unicons/traffic-barrier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/traffic-light.svg b/public/img/icons/unicons/traffic-light.svg new file mode 100644 index 00000000000..10923acba9a --- /dev/null +++ b/public/img/icons/unicons/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/transaction.svg b/public/img/icons/unicons/transaction.svg new file mode 100644 index 00000000000..6909ea4d2b2 --- /dev/null +++ b/public/img/icons/unicons/transaction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trash-alt.svg b/public/img/icons/unicons/trash-alt.svg new file mode 100644 index 00000000000..54bef88545d --- /dev/null +++ b/public/img/icons/unicons/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trash.svg b/public/img/icons/unicons/trash.svg new file mode 100644 index 00000000000..e8804cede5b --- /dev/null +++ b/public/img/icons/unicons/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trees.svg b/public/img/icons/unicons/trees.svg new file mode 100644 index 00000000000..9293888cd6f --- /dev/null +++ b/public/img/icons/unicons/trees.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/triangle.svg b/public/img/icons/unicons/triangle.svg new file mode 100644 index 00000000000..9258e6e11a1 --- /dev/null +++ b/public/img/icons/unicons/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trophy.svg b/public/img/icons/unicons/trophy.svg new file mode 100644 index 00000000000..b961d0e086a --- /dev/null +++ b/public/img/icons/unicons/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/trowel.svg b/public/img/icons/unicons/trowel.svg new file mode 100644 index 00000000000..e2dcbb6dc53 --- /dev/null +++ b/public/img/icons/unicons/trowel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/truck-loading.svg b/public/img/icons/unicons/truck-loading.svg new file mode 100644 index 00000000000..489595abfe7 --- /dev/null +++ b/public/img/icons/unicons/truck-loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/truck.svg b/public/img/icons/unicons/truck.svg new file mode 100644 index 00000000000..1c2706bfc4b --- /dev/null +++ b/public/img/icons/unicons/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tumblr-alt.svg b/public/img/icons/unicons/tumblr-alt.svg new file mode 100644 index 00000000000..714f65d71b4 --- /dev/null +++ b/public/img/icons/unicons/tumblr-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tumblr-square.svg b/public/img/icons/unicons/tumblr-square.svg new file mode 100644 index 00000000000..9ef79a6f0fb --- /dev/null +++ b/public/img/icons/unicons/tumblr-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tumblr.svg b/public/img/icons/unicons/tumblr.svg new file mode 100644 index 00000000000..b885dea7497 --- /dev/null +++ b/public/img/icons/unicons/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tv-retro-slash.svg b/public/img/icons/unicons/tv-retro-slash.svg new file mode 100644 index 00000000000..3278c6a845c --- /dev/null +++ b/public/img/icons/unicons/tv-retro-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/tv-retro.svg b/public/img/icons/unicons/tv-retro.svg new file mode 100644 index 00000000000..de2004b914a --- /dev/null +++ b/public/img/icons/unicons/tv-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/twitter-alt.svg b/public/img/icons/unicons/twitter-alt.svg new file mode 100644 index 00000000000..69ad23ac759 --- /dev/null +++ b/public/img/icons/unicons/twitter-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/twitter.svg b/public/img/icons/unicons/twitter.svg new file mode 100644 index 00000000000..8089fd657af --- /dev/null +++ b/public/img/icons/unicons/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/umbrella.svg b/public/img/icons/unicons/umbrella.svg new file mode 100644 index 00000000000..fcd07b74ed2 --- /dev/null +++ b/public/img/icons/unicons/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/unamused.svg b/public/img/icons/unicons/unamused.svg new file mode 100644 index 00000000000..fa06815ff78 --- /dev/null +++ b/public/img/icons/unicons/unamused.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/underline.svg b/public/img/icons/unicons/underline.svg new file mode 100644 index 00000000000..f273668df68 --- /dev/null +++ b/public/img/icons/unicons/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/university.svg b/public/img/icons/unicons/university.svg new file mode 100644 index 00000000000..3fce80a1531 --- /dev/null +++ b/public/img/icons/unicons/university.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/unlock-alt.svg b/public/img/icons/unicons/unlock-alt.svg new file mode 100644 index 00000000000..0dffa4bd529 --- /dev/null +++ b/public/img/icons/unicons/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/unlock.svg b/public/img/icons/unicons/unlock.svg new file mode 100644 index 00000000000..67864413a35 --- /dev/null +++ b/public/img/icons/unicons/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/upload-alt.svg b/public/img/icons/unicons/upload-alt.svg new file mode 100644 index 00000000000..c2afb1fe063 --- /dev/null +++ b/public/img/icons/unicons/upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/upload.svg b/public/img/icons/unicons/upload.svg new file mode 100644 index 00000000000..ac85cdff001 --- /dev/null +++ b/public/img/icons/unicons/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/usd-circle.svg b/public/img/icons/unicons/usd-circle.svg new file mode 100644 index 00000000000..ffc2f3ddd8e --- /dev/null +++ b/public/img/icons/unicons/usd-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/usd-square.svg b/public/img/icons/unicons/usd-square.svg new file mode 100644 index 00000000000..c7fb9a800e0 --- /dev/null +++ b/public/img/icons/unicons/usd-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-arrows.svg b/public/img/icons/unicons/user-arrows.svg new file mode 100644 index 00000000000..91612a70103 --- /dev/null +++ b/public/img/icons/unicons/user-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-check.svg b/public/img/icons/unicons/user-check.svg new file mode 100644 index 00000000000..76b147038f0 --- /dev/null +++ b/public/img/icons/unicons/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-circle.svg b/public/img/icons/unicons/user-circle.svg new file mode 100644 index 00000000000..d13264c0d19 --- /dev/null +++ b/public/img/icons/unicons/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-exclamation.svg b/public/img/icons/unicons/user-exclamation.svg new file mode 100644 index 00000000000..cc15e15e6dd --- /dev/null +++ b/public/img/icons/unicons/user-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-location.svg b/public/img/icons/unicons/user-location.svg new file mode 100644 index 00000000000..72663461369 --- /dev/null +++ b/public/img/icons/unicons/user-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-md.svg b/public/img/icons/unicons/user-md.svg new file mode 100644 index 00000000000..76635ef404e --- /dev/null +++ b/public/img/icons/unicons/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-minus.svg b/public/img/icons/unicons/user-minus.svg new file mode 100644 index 00000000000..31998c6303a --- /dev/null +++ b/public/img/icons/unicons/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-nurse.svg b/public/img/icons/unicons/user-nurse.svg new file mode 100644 index 00000000000..dbf23f041cd --- /dev/null +++ b/public/img/icons/unicons/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-plus.svg b/public/img/icons/unicons/user-plus.svg new file mode 100644 index 00000000000..2f94312afb9 --- /dev/null +++ b/public/img/icons/unicons/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-square.svg b/public/img/icons/unicons/user-square.svg new file mode 100644 index 00000000000..270dfdd0b5f --- /dev/null +++ b/public/img/icons/unicons/user-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user-times.svg b/public/img/icons/unicons/user-times.svg new file mode 100644 index 00000000000..8bb66cfcb53 --- /dev/null +++ b/public/img/icons/unicons/user-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/user.svg b/public/img/icons/unicons/user.svg new file mode 100644 index 00000000000..2236c900d99 --- /dev/null +++ b/public/img/icons/unicons/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/users-alt.svg b/public/img/icons/unicons/users-alt.svg new file mode 100644 index 00000000000..93184b9dcb6 --- /dev/null +++ b/public/img/icons/unicons/users-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/utensils-alt.svg b/public/img/icons/unicons/utensils-alt.svg new file mode 100644 index 00000000000..5ae00f934bc --- /dev/null +++ b/public/img/icons/unicons/utensils-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/utensils.svg b/public/img/icons/unicons/utensils.svg new file mode 100644 index 00000000000..3be83fd453b --- /dev/null +++ b/public/img/icons/unicons/utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vector-square-alt.svg b/public/img/icons/unicons/vector-square-alt.svg new file mode 100644 index 00000000000..08bcc0796a1 --- /dev/null +++ b/public/img/icons/unicons/vector-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vector-square.svg b/public/img/icons/unicons/vector-square.svg new file mode 100644 index 00000000000..7c7fd6f1bce --- /dev/null +++ b/public/img/icons/unicons/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/venus.svg b/public/img/icons/unicons/venus.svg new file mode 100644 index 00000000000..16fb91a607f --- /dev/null +++ b/public/img/icons/unicons/venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vertical-align-bottom.svg b/public/img/icons/unicons/vertical-align-bottom.svg new file mode 100644 index 00000000000..de486c4f1c2 --- /dev/null +++ b/public/img/icons/unicons/vertical-align-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vertical-align-center.svg b/public/img/icons/unicons/vertical-align-center.svg new file mode 100644 index 00000000000..0720428e4e3 --- /dev/null +++ b/public/img/icons/unicons/vertical-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vertical-align-top.svg b/public/img/icons/unicons/vertical-align-top.svg new file mode 100644 index 00000000000..d2a5d96169e --- /dev/null +++ b/public/img/icons/unicons/vertical-align-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vertical-distribute-bottom.svg b/public/img/icons/unicons/vertical-distribute-bottom.svg new file mode 100644 index 00000000000..e2df0ae698d --- /dev/null +++ b/public/img/icons/unicons/vertical-distribute-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vertical-distribution-center.svg b/public/img/icons/unicons/vertical-distribution-center.svg new file mode 100644 index 00000000000..c255f9ffdad --- /dev/null +++ b/public/img/icons/unicons/vertical-distribution-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vertical-distribution-top.svg b/public/img/icons/unicons/vertical-distribution-top.svg new file mode 100644 index 00000000000..0ffa3b06cc1 --- /dev/null +++ b/public/img/icons/unicons/vertical-distribution-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/video-question.svg b/public/img/icons/unicons/video-question.svg new file mode 100644 index 00000000000..5aac3a58384 --- /dev/null +++ b/public/img/icons/unicons/video-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/video-slash.svg b/public/img/icons/unicons/video-slash.svg new file mode 100644 index 00000000000..16c66964dd8 --- /dev/null +++ b/public/img/icons/unicons/video-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/video.svg b/public/img/icons/unicons/video.svg new file mode 100644 index 00000000000..961d625a9cb --- /dev/null +++ b/public/img/icons/unicons/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/virus-slash.svg b/public/img/icons/unicons/virus-slash.svg new file mode 100644 index 00000000000..f2cf8453372 --- /dev/null +++ b/public/img/icons/unicons/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/visual-studio.svg b/public/img/icons/unicons/visual-studio.svg new file mode 100644 index 00000000000..5a6d80377ce --- /dev/null +++ b/public/img/icons/unicons/visual-studio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vk-alt.svg b/public/img/icons/unicons/vk-alt.svg new file mode 100644 index 00000000000..8d1df612535 --- /dev/null +++ b/public/img/icons/unicons/vk-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vk.svg b/public/img/icons/unicons/vk.svg new file mode 100644 index 00000000000..66dc206a146 --- /dev/null +++ b/public/img/icons/unicons/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/voicemail-rectangle.svg b/public/img/icons/unicons/voicemail-rectangle.svg new file mode 100644 index 00000000000..61cf5c5542b --- /dev/null +++ b/public/img/icons/unicons/voicemail-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/voicemail.svg b/public/img/icons/unicons/voicemail.svg new file mode 100644 index 00000000000..83c6745a20e --- /dev/null +++ b/public/img/icons/unicons/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/volleyball.svg b/public/img/icons/unicons/volleyball.svg new file mode 100644 index 00000000000..39f2750997f --- /dev/null +++ b/public/img/icons/unicons/volleyball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/volume-down.svg b/public/img/icons/unicons/volume-down.svg new file mode 100644 index 00000000000..57b8e0e8efd --- /dev/null +++ b/public/img/icons/unicons/volume-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/volume-mute.svg b/public/img/icons/unicons/volume-mute.svg new file mode 100644 index 00000000000..66b7a152248 --- /dev/null +++ b/public/img/icons/unicons/volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/volume-off.svg b/public/img/icons/unicons/volume-off.svg new file mode 100644 index 00000000000..6acb25f7c28 --- /dev/null +++ b/public/img/icons/unicons/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/volume-up.svg b/public/img/icons/unicons/volume-up.svg new file mode 100644 index 00000000000..850a7af5501 --- /dev/null +++ b/public/img/icons/unicons/volume-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/volume.svg b/public/img/icons/unicons/volume.svg new file mode 100644 index 00000000000..768de6c09d7 --- /dev/null +++ b/public/img/icons/unicons/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vuejs-alt.svg b/public/img/icons/unicons/vuejs-alt.svg new file mode 100644 index 00000000000..ed5ab1578f3 --- /dev/null +++ b/public/img/icons/unicons/vuejs-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/vuejs.svg b/public/img/icons/unicons/vuejs.svg new file mode 100644 index 00000000000..57de8001a28 --- /dev/null +++ b/public/img/icons/unicons/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wall.svg b/public/img/icons/unicons/wall.svg new file mode 100644 index 00000000000..3d2c850e428 --- /dev/null +++ b/public/img/icons/unicons/wall.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wallet.svg b/public/img/icons/unicons/wallet.svg new file mode 100644 index 00000000000..84bce73fd71 --- /dev/null +++ b/public/img/icons/unicons/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/watch-alt.svg b/public/img/icons/unicons/watch-alt.svg new file mode 100644 index 00000000000..c3497fec5ed --- /dev/null +++ b/public/img/icons/unicons/watch-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/watch.svg b/public/img/icons/unicons/watch.svg new file mode 100644 index 00000000000..5915483676f --- /dev/null +++ b/public/img/icons/unicons/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/water-drop-slash.svg b/public/img/icons/unicons/water-drop-slash.svg new file mode 100644 index 00000000000..446123ec8bd --- /dev/null +++ b/public/img/icons/unicons/water-drop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/water-glass.svg b/public/img/icons/unicons/water-glass.svg new file mode 100644 index 00000000000..e419fedec4a --- /dev/null +++ b/public/img/icons/unicons/water-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/water.svg b/public/img/icons/unicons/water.svg new file mode 100644 index 00000000000..1bc0eb419cd --- /dev/null +++ b/public/img/icons/unicons/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/web-grid-alt.svg b/public/img/icons/unicons/web-grid-alt.svg new file mode 100644 index 00000000000..9cfa46033b8 --- /dev/null +++ b/public/img/icons/unicons/web-grid-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/web-grid.svg b/public/img/icons/unicons/web-grid.svg new file mode 100644 index 00000000000..de270f803b1 --- /dev/null +++ b/public/img/icons/unicons/web-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/web-section-alt.svg b/public/img/icons/unicons/web-section-alt.svg new file mode 100644 index 00000000000..2ac16c2db81 --- /dev/null +++ b/public/img/icons/unicons/web-section-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/web-section.svg b/public/img/icons/unicons/web-section.svg new file mode 100644 index 00000000000..2dda3cb04db --- /dev/null +++ b/public/img/icons/unicons/web-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/webcam.svg b/public/img/icons/unicons/webcam.svg new file mode 100644 index 00000000000..cedd4565e63 --- /dev/null +++ b/public/img/icons/unicons/webcam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/weight.svg b/public/img/icons/unicons/weight.svg new file mode 100644 index 00000000000..dfb0c42ab2f --- /dev/null +++ b/public/img/icons/unicons/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/whatsapp-alt.svg b/public/img/icons/unicons/whatsapp-alt.svg new file mode 100644 index 00000000000..e2b238ccebd --- /dev/null +++ b/public/img/icons/unicons/whatsapp-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/whatsapp.svg b/public/img/icons/unicons/whatsapp.svg new file mode 100644 index 00000000000..5b2b7683816 --- /dev/null +++ b/public/img/icons/unicons/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wheel-barrow.svg b/public/img/icons/unicons/wheel-barrow.svg new file mode 100644 index 00000000000..db9ff03c9b0 --- /dev/null +++ b/public/img/icons/unicons/wheel-barrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wheelchair-alt.svg b/public/img/icons/unicons/wheelchair-alt.svg new file mode 100644 index 00000000000..6ae3ea1a84a --- /dev/null +++ b/public/img/icons/unicons/wheelchair-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wheelchair.svg b/public/img/icons/unicons/wheelchair.svg new file mode 100644 index 00000000000..b8a45e2a946 --- /dev/null +++ b/public/img/icons/unicons/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wifi-router.svg b/public/img/icons/unicons/wifi-router.svg new file mode 100644 index 00000000000..a0e97fc1650 --- /dev/null +++ b/public/img/icons/unicons/wifi-router.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wifi-slash.svg b/public/img/icons/unicons/wifi-slash.svg new file mode 100644 index 00000000000..327f95cc35d --- /dev/null +++ b/public/img/icons/unicons/wifi-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wifi.svg b/public/img/icons/unicons/wifi.svg new file mode 100644 index 00000000000..7b51637c7fe --- /dev/null +++ b/public/img/icons/unicons/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wind-moon.svg b/public/img/icons/unicons/wind-moon.svg new file mode 100644 index 00000000000..9c5734924bc --- /dev/null +++ b/public/img/icons/unicons/wind-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wind-sun.svg b/public/img/icons/unicons/wind-sun.svg new file mode 100644 index 00000000000..fa1481ceb33 --- /dev/null +++ b/public/img/icons/unicons/wind-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wind.svg b/public/img/icons/unicons/wind.svg new file mode 100644 index 00000000000..3473b1b456d --- /dev/null +++ b/public/img/icons/unicons/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/window-grid.svg b/public/img/icons/unicons/window-grid.svg new file mode 100644 index 00000000000..8dc57c6aa97 --- /dev/null +++ b/public/img/icons/unicons/window-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/window-maximize.svg b/public/img/icons/unicons/window-maximize.svg new file mode 100644 index 00000000000..1058e1211d1 --- /dev/null +++ b/public/img/icons/unicons/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/window-section.svg b/public/img/icons/unicons/window-section.svg new file mode 100644 index 00000000000..028e5d396c4 --- /dev/null +++ b/public/img/icons/unicons/window-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/window.svg b/public/img/icons/unicons/window.svg new file mode 100644 index 00000000000..88831912f32 --- /dev/null +++ b/public/img/icons/unicons/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/windows.svg b/public/img/icons/unicons/windows.svg new file mode 100644 index 00000000000..959aa3744e9 --- /dev/null +++ b/public/img/icons/unicons/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/windsock.svg b/public/img/icons/unicons/windsock.svg new file mode 100644 index 00000000000..bb2708c6bda --- /dev/null +++ b/public/img/icons/unicons/windsock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/windy.svg b/public/img/icons/unicons/windy.svg new file mode 100644 index 00000000000..3926f5842a6 --- /dev/null +++ b/public/img/icons/unicons/windy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wordpress-simple.svg b/public/img/icons/unicons/wordpress-simple.svg new file mode 100644 index 00000000000..72affdf008a --- /dev/null +++ b/public/img/icons/unicons/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wordpress.svg b/public/img/icons/unicons/wordpress.svg new file mode 100644 index 00000000000..692b478cf2d --- /dev/null +++ b/public/img/icons/unicons/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wrap-text.svg b/public/img/icons/unicons/wrap-text.svg new file mode 100644 index 00000000000..5836bc2e233 --- /dev/null +++ b/public/img/icons/unicons/wrap-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/wrench.svg b/public/img/icons/unicons/wrench.svg new file mode 100644 index 00000000000..d5a006f1de6 --- /dev/null +++ b/public/img/icons/unicons/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/x-add.svg b/public/img/icons/unicons/x-add.svg new file mode 100644 index 00000000000..59e4f743b4c --- /dev/null +++ b/public/img/icons/unicons/x-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/x.svg b/public/img/icons/unicons/x.svg new file mode 100644 index 00000000000..56e7e84f16a --- /dev/null +++ b/public/img/icons/unicons/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/yen-circle.svg b/public/img/icons/unicons/yen-circle.svg new file mode 100644 index 00000000000..5539c20bea0 --- /dev/null +++ b/public/img/icons/unicons/yen-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/yen.svg b/public/img/icons/unicons/yen.svg new file mode 100644 index 00000000000..5bd7b0567ea --- /dev/null +++ b/public/img/icons/unicons/yen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/yin-yang.svg b/public/img/icons/unicons/yin-yang.svg new file mode 100644 index 00000000000..7ebcffaaf58 --- /dev/null +++ b/public/img/icons/unicons/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/icons/unicons/youtube.svg b/public/img/icons/unicons/youtube.svg new file mode 100644 index 00000000000..1ef0d17c199 --- /dev/null +++ b/public/img/icons/unicons/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/scripts/copy-unicons.js b/scripts/copy-unicons.js deleted file mode 100644 index a512e19c193..00000000000 --- a/scripts/copy-unicons.js +++ /dev/null @@ -1,23 +0,0 @@ -const fs = require('fs-extra'); -const path = require('path'); - -const iconsDir = path.resolve(__dirname, '../public/img/icons/'); -const lineDestDir = path.join(iconsDir, 'unicons'); - -if (!fs.pathExistsSync(lineDestDir)) { - let uniconSourceDir = path.join( - path.dirname(require.resolve('iconscout-unicons-tarball/package.json')), - 'unicons/svg/line' - ); - fs.copySync(uniconSourceDir, lineDestDir); -} - -let solidDestDir = path.join(iconsDir, 'solid'); - -if (!fs.pathExistsSync(solidDestDir)) { - let uniconSourceDir = path.join( - path.dirname(require.resolve('iconscout-unicons-tarball/package.json')), - 'unicons/svg/solid' - ); - fs.copySync(uniconSourceDir, solidDestDir); -} diff --git a/yarn.lock b/yarn.lock index 06802637aef..01883927656 100644 --- a/yarn.lock +++ b/yarn.lock @@ -21889,7 +21889,6 @@ __metadata: html-webpack-plugin: 5.5.0 http-server: 14.1.1 husky: 8.0.1 - iconscout-unicons-tarball: "https://github.com/grafana/icons/tarball/63056cd833ba7ee4e94904492b3a8c0cabc38d28" immer: 9.0.15 immutable: 4.1.0 jest: 28.1.3 @@ -22860,13 +22859,6 @@ __metadata: languageName: node linkType: hard -"iconscout-unicons-tarball@https://github.com/grafana/icons/tarball/63056cd833ba7ee4e94904492b3a8c0cabc38d28": - version: 1.0.0 - resolution: "iconscout-unicons-tarball@https://github.com/grafana/icons.git#commit=63056cd833ba7ee4e94904492b3a8c0cabc38d28" - checksum: 9e2ffe79d686e5c811e594a1c813e0e9b6a42c12850d93fb353e81d1445ce7a71480083e7d4c66399705103ad6ec5736d0352439d4f9d282505991c2f39e599f - languageName: node - linkType: hard - "iconv-lite@npm:0.4, iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.24, iconv-lite@npm:^0.4.4, iconv-lite@npm:^0.4.8": version: 0.4.24 resolution: "iconv-lite@npm:0.4.24"