merge
2
.github/workflows/build.yml
vendored
|
@ -57,7 +57,7 @@ jobs:
|
|||
- name: Install Node.js, NPM and Yarn
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 20.9.0
|
||||
node-version: 20.19.0
|
||||
|
||||
- name: Install Webpack
|
||||
run: npm install --save-dev webpack-cli --legacy-peer-deps
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
[](https://anytype.io)
|
||||
# Anytype
|
||||
Official Anytype client for MacOS, Linux, and Windows.
|
||||
|
||||
|
|
BIN
dist/extension/img/icon128x128.png
vendored
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 17 KiB |
BIN
dist/extension/img/icon16x16.png
vendored
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 805 B |
BIN
dist/extension/img/icon32x32.png
vendored
Before Width: | Height: | Size: 785 B After Width: | Height: | Size: 2.1 KiB |
BIN
dist/img/help/onboarding/primitives/0.png
vendored
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
dist/img/help/onboarding/primitives/1.png
vendored
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
dist/img/help/onboarding/primitives/2.png
vendored
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
dist/img/help/onboarding/primitives/3.png
vendored
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
dist/img/help/onboarding/primitives/4.png
vendored
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
dist/img/help/onboarding/primitives/dark/0.png
vendored
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
dist/img/help/onboarding/primitives/dark/1.png
vendored
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
dist/img/help/onboarding/primitives/dark/2.png
vendored
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
dist/img/help/onboarding/primitives/dark/3.png
vendored
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
dist/img/help/onboarding/primitives/dark/4.png
vendored
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
dist/img/icon/app/1024x1024.png
vendored
Before Width: | Height: | Size: 251 KiB After Width: | Height: | Size: 669 KiB |
BIN
dist/img/icon/app/128x128.png
vendored
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 17 KiB |
BIN
dist/img/icon/app/16x16.png
vendored
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 805 B |
BIN
dist/img/icon/app/256x256.png
vendored
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 54 KiB |
BIN
dist/img/icon/app/32x32.png
vendored
Before Width: | Height: | Size: 785 B After Width: | Height: | Size: 2.1 KiB |
BIN
dist/img/icon/app/512x512.png
vendored
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 184 KiB |
BIN
dist/img/icon/app/64x64.png
vendored
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 5.4 KiB |
7
dist/workers/graph.js
vendored
|
@ -226,6 +226,11 @@ updateForces = () => {
|
|||
|
||||
updateOrphans();
|
||||
|
||||
// Filter types
|
||||
if (settings.filterTypes && settings.filterTypes.length) {
|
||||
nodes = nodes.filter(d => !settings.filterTypes.includes(d.type));
|
||||
};
|
||||
|
||||
// Filter links
|
||||
if (!settings.link) {
|
||||
edges = edges.filter(d => d.isDouble ? intersect(d.types, types) : d.type != EdgeType.Link);
|
||||
|
@ -299,7 +304,7 @@ updateForces = () => {
|
|||
};
|
||||
|
||||
updateSettings = (param) => {
|
||||
const updateKeys = [ 'link', 'relation', 'orphan', 'local', 'depth', 'cluster' ];
|
||||
const updateKeys = [ 'link', 'relation', 'orphan', 'local', 'depth', 'cluster', 'filterTypes' ];
|
||||
|
||||
let needUpdate = false;
|
||||
let needFocus = false;
|
||||
|
|
|
@ -19,7 +19,6 @@ if (is.windows) {
|
|||
};
|
||||
|
||||
storage.setDataPath(app.getPath('userData'));
|
||||
//Store.initRenderer();
|
||||
|
||||
const Api = require('./electron/js/api.js');
|
||||
const ConfigManager = require('./electron/js/config.js');
|
||||
|
@ -31,6 +30,8 @@ const Util = require('./electron/js/util.js');
|
|||
const Cors = require('./electron/json/cors.json');
|
||||
const csp = [];
|
||||
|
||||
MenuManager.store = store;
|
||||
|
||||
for (let i in Cors) {
|
||||
csp.push([ i ].concat(Cors[i]).join(' '));
|
||||
};
|
||||
|
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 841 B After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 184 KiB |
Before Width: | Height: | Size: 179 B After Width: | Height: | Size: 249 B |
Before Width: | Height: | Size: 226 B After Width: | Height: | Size: 254 B |
Before Width: | Height: | Size: 707 B After Width: | Height: | Size: 688 B |
Before Width: | Height: | Size: 183 B After Width: | Height: | Size: 254 B |
Before Width: | Height: | Size: 251 KiB After Width: | Height: | Size: 669 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 805 B |
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 785 B After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 184 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 5.4 KiB |
|
@ -89,8 +89,7 @@ class Api {
|
|||
ConfigManager.set({ hideTray: !show }, () => {
|
||||
Util.send(win, 'config', ConfigManager.config);
|
||||
|
||||
MenuManager.initMenu();
|
||||
MenuManager.initTray();
|
||||
this.initMenu(win);
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -192,11 +191,15 @@ class Api {
|
|||
setInterfaceLang (win, lang) {
|
||||
ConfigManager.set({ interfaceLang: lang }, () => {
|
||||
WindowManager.reloadAll();
|
||||
MenuManager.initMenu();
|
||||
MenuManager.initTray();
|
||||
this.initMenu(win);
|
||||
});
|
||||
};
|
||||
|
||||
initMenu (win) {
|
||||
MenuManager.initMenu();
|
||||
MenuManager.initTray();
|
||||
};
|
||||
|
||||
setSpellingLang (win, languages) {
|
||||
languages = languages || [];
|
||||
|
||||
|
@ -246,16 +249,16 @@ class Api {
|
|||
};
|
||||
|
||||
moveNetworkConfig (win, src) {
|
||||
if (path.extname(src) != 'yml') {
|
||||
return { err: 'Invalid file' };
|
||||
if (!path.extname(src).match(/yml|yaml/i)) {
|
||||
return { error: `Invalid file extension: ${path.extname(src)}. Required YAML` };
|
||||
};
|
||||
|
||||
const dst = path.join(Util.defaultUserDataPath(), 'config.yaml');
|
||||
try {
|
||||
fs.copyFileSync(src, dst);
|
||||
return { path: dst };
|
||||
} catch (err) {
|
||||
return { err };
|
||||
} catch (e) {
|
||||
return { error: e.message };
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -6,17 +6,65 @@ const ConfigManager = require('./config.js');
|
|||
const Util = require('./util.js');
|
||||
const Separator = { type: 'separator' };
|
||||
|
||||
const DEFAULT_SHORTCUTS = {
|
||||
createObject: [ 'CmdOrCtrl', 'N' ],
|
||||
undo: [ 'CmdOrCtrl', 'Z' ],
|
||||
redo: [ 'CmdOrCtrl', 'Shift', 'Z' ],
|
||||
selectAll: [ 'CmdOrCtrl', 'A' ],
|
||||
searchText: [ 'CmdOrCtrl', 'F' ],
|
||||
print: [ 'CmdOrCtrl', 'P' ],
|
||||
newWindow: [ 'CmdOrCtrl', 'Shift', 'N' ],
|
||||
zoomIn: [ 'CmdOrCtrl', '=' ],
|
||||
zoomOut: [ 'CmdOrCtrl', '-' ],
|
||||
zoomReset: [ 'CmdOrCtrl', '0' ],
|
||||
toggleFullscreen: [ 'CmdOrCtrl', 'Shift', 'F' ],
|
||||
shortcut: [ 'Ctrl', 'Space' ],
|
||||
};
|
||||
|
||||
class MenuManager {
|
||||
|
||||
win = null;
|
||||
menu = null;
|
||||
tray = null;
|
||||
store = null;
|
||||
|
||||
setWindow (win) {
|
||||
this.win = win;
|
||||
};
|
||||
|
||||
initShortcuts () {
|
||||
this.shortcuts = this.store.get('shortcuts') || {};
|
||||
};
|
||||
|
||||
getAccelerator (id) {
|
||||
let keys = this.shortcuts[id];
|
||||
|
||||
if (undefined === keys) {
|
||||
return (DEFAULT_SHORTCUTS[id] || []).join('+');
|
||||
};
|
||||
|
||||
keys = keys || [];
|
||||
|
||||
const ret = [];
|
||||
for (const key of keys) {
|
||||
if (key == 'ctrl') {
|
||||
ret.push('CmdOrCtrl');
|
||||
} else
|
||||
if (key == 'shift') {
|
||||
ret.push('Shift');
|
||||
} else
|
||||
if (key == 'alt') {
|
||||
ret.push('Alt');
|
||||
} else {
|
||||
ret.push(key.toUpperCase());
|
||||
};
|
||||
};
|
||||
return ret.join('+');
|
||||
};
|
||||
|
||||
initMenu () {
|
||||
this.initShortcuts();
|
||||
|
||||
const { config } = ConfigManager;
|
||||
const Api = require('./api.js');
|
||||
const WindowManager = require('./window.js');
|
||||
|
@ -53,7 +101,7 @@ class MenuManager {
|
|||
{
|
||||
role: 'fileMenu', label: Util.translate('electronMenuFile'),
|
||||
submenu: [
|
||||
{ label: Util.translate('commonNewObject'), accelerator: 'CmdOrCtrl+N', click: () => Util.send(this.win, 'commandGlobal', 'createObject') },
|
||||
{ label: Util.translate('commonNewObject'), accelerator: this.getAccelerator('createObject'), click: () => Util.send(this.win, 'commandGlobal', 'createObject') },
|
||||
{ label: Util.translate('commonNewSpace'), click: () => Util.send(this.win, 'commandGlobal', 'createSpace') },
|
||||
|
||||
Separator,
|
||||
|
@ -106,7 +154,7 @@ class MenuManager {
|
|||
label: Util.translate('electronMenuEdit'),
|
||||
submenu: [
|
||||
{
|
||||
label: Util.translate('electronMenuUndo'), accelerator: 'CmdOrCtrl+Z',
|
||||
label: Util.translate('electronMenuUndo'), accelerator: this.getAccelerator('undo'),
|
||||
click: () => {
|
||||
if (this.win) {
|
||||
this.win.webContents.undo();
|
||||
|
@ -115,7 +163,7 @@ class MenuManager {
|
|||
}
|
||||
},
|
||||
{
|
||||
label: Util.translate('electronMenuRedo'), accelerator: 'CmdOrCtrl+Shift+Z',
|
||||
label: Util.translate('electronMenuRedo'), accelerator: this.getAccelerator('redo'),
|
||||
click: () => {
|
||||
if (this.win) {
|
||||
this.win.webContents.redo();
|
||||
|
@ -141,7 +189,7 @@ class MenuManager {
|
|||
Separator,
|
||||
|
||||
{
|
||||
label: Util.translate('electronMenuSelectAll'), accelerator: 'CmdOrCtrl+A',
|
||||
label: Util.translate('electronMenuSelectAll'), accelerator: this.getAccelerator('selectAll'),
|
||||
click: () => {
|
||||
if (this.win) {
|
||||
this.win.webContents.selectAll();
|
||||
|
@ -149,26 +197,26 @@ class MenuManager {
|
|||
};
|
||||
}
|
||||
},
|
||||
{ label: Util.translate('electronMenuSearch'), accelerator: 'CmdOrCtrl+F', click: () => Util.send(this.win, 'commandGlobal', 'search') },
|
||||
{ label: Util.translate('electronMenuSearch'), accelerator: this.getAccelerator('searchText'), click: () => Util.send(this.win, 'commandGlobal', 'search') },
|
||||
|
||||
Separator,
|
||||
|
||||
{ label: Util.translate('electronMenuPrint'), accelerator: 'CmdOrCtrl+P', click: () => Util.send(this.win, 'commandGlobal', 'print') },
|
||||
{ label: Util.translate('electronMenuPrint'), accelerator: this.getAccelerator('print'), click: () => Util.send(this.win, 'commandGlobal', 'print') },
|
||||
]
|
||||
},
|
||||
{
|
||||
role: 'windowMenu', label: Util.translate('electronMenuWindow'),
|
||||
submenu: [
|
||||
{ label: Util.translate('electronMenuNewWindow'), accelerator: 'CmdOrCtrl+Shift+N', click: () => WindowManager.createMain({ isChild: true }) },
|
||||
{ label: Util.translate('electronMenuNewWindow'), accelerator: this.getAccelerator('newWindow'), click: () => WindowManager.createMain({ isChild: true }) },
|
||||
|
||||
Separator,
|
||||
|
||||
{ role: 'minimize', label: Util.translate('electronMenuMinimise') },
|
||||
{ label: Util.translate('electronMenuZoomIn'), accelerator: 'CmdOrCtrl+=', click: () => Api.setZoom(this.win, this.win.webContents.getZoomLevel() + 1) },
|
||||
{ label: Util.translate('electronMenuZoomOut'), accelerator: 'CmdOrCtrl+-', click: () => Api.setZoom(this.win, this.win.webContents.getZoomLevel() - 1) },
|
||||
{ label: Util.translate('electronMenuZoomDefault'), accelerator: 'CmdOrCtrl+0', click: () => Api.setZoom(this.win, 0) },
|
||||
{ label: Util.translate('electronMenuZoomIn'), accelerator: this.getAccelerator('zoomIn'), click: () => Api.setZoom(this.win, this.win.webContents.getZoomLevel() + 1) },
|
||||
{ label: Util.translate('electronMenuZoomOut'), accelerator: this.getAccelerator('zoomOut'), click: () => Api.setZoom(this.win, this.win.webContents.getZoomLevel() - 1) },
|
||||
{ label: Util.translate('electronMenuZoomDefault'), accelerator: this.getAccelerator('zoomReset'), click: () => Api.setZoom(this.win, 0) },
|
||||
{
|
||||
label: Util.translate('electronMenuFullscreen'), accelerator: 'CmdOrCtrl+Shift+F', type: 'checkbox', checked: this.win.isFullScreen(),
|
||||
label: Util.translate('electronMenuFullscreen'), accelerator: this.getAccelerator('toggleFullscreen'), type: 'checkbox', checked: this.win.isFullScreen(),
|
||||
click: () => this.win.setFullScreen(!this.win.isFullScreen())
|
||||
},
|
||||
{ label: Util.translate('electronMenuReload'), accelerator: 'CmdOrCtrl+R', click: () => this.win.reload() }
|
||||
|
@ -182,7 +230,7 @@ class MenuManager {
|
|||
click: () => Util.send(this.win, 'popup', 'help', { data: { document: 'whatsNew' } })
|
||||
},
|
||||
{
|
||||
label: Util.translate('electronMenuShortcuts'), accelerator: 'Ctrl+Space',
|
||||
label: Util.translate('electronMenuShortcuts'), accelerator: this.getAccelerator('shortcut'),
|
||||
click: () => Util.send(this.win, 'commandGlobal', 'shortcut')
|
||||
},
|
||||
|
||||
|
@ -355,7 +403,7 @@ class MenuManager {
|
|||
|
||||
Separator,
|
||||
|
||||
{ label: Util.translate('electronMenuNewWindow'), accelerator: 'CmdOrCtrl+Shift+N', click: () => WindowManager.createMain({ isChild: true }) },
|
||||
{ label: Util.translate('electronMenuNewWindow'), accelerator: this.getAccelerator('newWindow'), click: () => WindowManager.createMain({ isChild: true }) },
|
||||
|
||||
Separator,
|
||||
|
||||
|
@ -455,7 +503,7 @@ class MenuManager {
|
|||
Separator,
|
||||
|
||||
{
|
||||
label: Util.translate('commonNewObject'), accelerator: 'CmdOrCtrl+N', click: () => {
|
||||
label: Util.translate('commonNewObject'), accelerator:this.getAccelerator('createObject'), click: () => {
|
||||
this.winShow();
|
||||
Util.send(this.win, 'commandGlobal', 'createObject');
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ contextBridge.exposeInMainWorld('Electron', {
|
|||
isPackaged: app.isPackaged,
|
||||
userPath: () => app.getPath('userData'),
|
||||
tmpPath,
|
||||
downloadPath: () => app.getPath('downloads'),
|
||||
logPath: () => path.join(app.getPath('userData'), 'logs'),
|
||||
dirName: fp => path.dirname(fp),
|
||||
filePath: (...args) => path.join(...args),
|
||||
|
|
|
@ -41,7 +41,7 @@ class UpdateManager {
|
|||
this.clearTimeout();
|
||||
|
||||
Util.log('info', 'Update available: ' + JSON.stringify(info, null, 3));
|
||||
Util.send(this.win, 'update-available', this.autoUpdate);
|
||||
Util.send(this.win, 'update-available', this.autoUpdate, info);
|
||||
|
||||
if (this.autoUpdate) {
|
||||
this.download();
|
||||
|
@ -76,7 +76,7 @@ class UpdateManager {
|
|||
Util.send(this.win, 'download-progress', progress);
|
||||
});
|
||||
|
||||
autoUpdater.on('update-downloaded', (info) => {
|
||||
autoUpdater.on('update-downloaded', info => {
|
||||
const Api = require('./api.js');
|
||||
|
||||
this.isUpdating = false;
|
||||
|
@ -87,7 +87,7 @@ class UpdateManager {
|
|||
if (!this.autoUpdate) {
|
||||
Api.exit(this.win, '', true);
|
||||
} else {
|
||||
Util.send(this.win, 'update-confirm');
|
||||
Util.send(this.win, 'update-confirm', this.autoUpdate, info);
|
||||
};
|
||||
});
|
||||
};
|
||||
|
|
|
@ -153,7 +153,7 @@ const Create = observer(class Create extends React.Component<I.PageComponent, St
|
|||
const node = $(this.node);
|
||||
const filters: I.Filter[] = [
|
||||
{ relationKey: 'resolvedLayout', condition: I.FilterCondition.In, value: U.Object.getPageLayouts() },
|
||||
{ relationKey: 'type.uniqueKey', condition: I.FilterCondition.NotEqual, value: J.Constant.typeKey.template },
|
||||
{ relationKey: 'type.uniqueKey', condition: I.FilterCondition.NotIn, value: [ J.Constant.typeKey.template ] }
|
||||
];
|
||||
|
||||
S.Menu.open('searchObject', {
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.40.0-rc7
|
||||
0.40.12
|
37
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "anytype",
|
||||
"version": "0.45.9-alpha",
|
||||
"version": "0.45.47-beta",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "anytype",
|
||||
"version": "0.45.9-alpha",
|
||||
"version": "0.45.47-beta",
|
||||
"hasInstallScript": true,
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
|
@ -21,6 +21,7 @@
|
|||
"@sentry/cli": "^2.18.1",
|
||||
"@sindresorhus/slugify": "^2.2.1",
|
||||
"@types/emoji-mart": "^3.0.13",
|
||||
"@types/react-transition-group": "^4.4.12",
|
||||
"@viz-js/viz": "^3.2.4",
|
||||
"amplitude-js": "^5.11.0",
|
||||
"array-move": "^2.2.2",
|
||||
|
@ -72,6 +73,7 @@
|
|||
"react-router-dom": "^5.3.4",
|
||||
"react-sortable-hoc": "^2.0.0",
|
||||
"react-virtualized": "^9.22.5",
|
||||
"react-transition-group": "^4.4.5",
|
||||
"regedit": "^5.1.3",
|
||||
"sanitize-filename": "^1.6.3",
|
||||
"selection-ranges": "^3.0.3",
|
||||
|
@ -2760,6 +2762,15 @@
|
|||
"@types/react-router": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/react-transition-group": {
|
||||
"version": "4.4.12",
|
||||
"resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz",
|
||||
"integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==",
|
||||
"license": "MIT",
|
||||
"peerDependencies": {
|
||||
"@types/react": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/responselike": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz",
|
||||
|
@ -6928,9 +6939,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/electron": {
|
||||
"version": "34.3.0",
|
||||
"resolved": "https://registry.npmjs.org/electron/-/electron-34.3.0.tgz",
|
||||
"integrity": "sha512-I238qRnYTAsuwJ/rS7HGaFNY4NNKAcjX8nlj7mnNmj1TK3z4HvNoD1r7Zud81DYDFx8AITuLd76EPrEnnfF9Bg==",
|
||||
"version": "34.3.3",
|
||||
"resolved": "https://registry.npmjs.org/electron/-/electron-34.3.3.tgz",
|
||||
"integrity": "sha512-7m1FiO1mwc1K/UqqnnkG7Ik/kAngDzmLfHwcl+xaWgCQ+Sts9rlEqzOh6g1GHhDqebrbs4bO/aU+NDi32fCciQ==",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
@ -17172,6 +17183,22 @@
|
|||
"react-dom": "^16.3.0 || ^17.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/react-transition-group": {
|
||||
"version": "4.4.5",
|
||||
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
|
||||
"integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
|
||||
"license": "BSD-3-Clause",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.5.5",
|
||||
"dom-helpers": "^5.0.1",
|
||||
"loose-envify": "^1.4.0",
|
||||
"prop-types": "^15.6.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16.6.0",
|
||||
"react-dom": ">=16.6.0"
|
||||
}
|
||||
},
|
||||
"node_modules/react-virtualized": {
|
||||
"version": "9.22.6",
|
||||
"resolved": "https://registry.npmjs.org/react-virtualized/-/react-virtualized-9.22.6.tgz",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "anytype",
|
||||
"version": "0.45.9-alpha",
|
||||
"version": "0.45.47-beta",
|
||||
"description": "Anytype",
|
||||
"main": "electron.js",
|
||||
"scripts": {
|
||||
|
@ -101,6 +101,7 @@
|
|||
"@sentry/cli": "^2.18.1",
|
||||
"@sindresorhus/slugify": "^2.2.1",
|
||||
"@types/emoji-mart": "^3.0.13",
|
||||
"@types/react-transition-group": "^4.4.12",
|
||||
"@viz-js/viz": "^3.2.4",
|
||||
"amplitude-js": "^5.11.0",
|
||||
"array-move": "^2.2.2",
|
||||
|
@ -152,6 +153,7 @@
|
|||
"react-router-dom": "^5.3.4",
|
||||
"react-sortable-hoc": "^2.0.0",
|
||||
"react-virtualized": "^9.22.5",
|
||||
"react-transition-group": "^4.4.5",
|
||||
"regedit": "^5.1.3",
|
||||
"sanitize-filename": "^1.6.3",
|
||||
"selection-ranges": "^3.0.3",
|
||||
|
|
3
src/img/arrow/chat.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path d="M5.5 7.75L10 12.25L14.5 7.75" stroke="#252525" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 207 B |
3
src/img/icon/chat/navigation/mention.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.4619 17C9.25381 17 8.18584 16.8439 7.25804 16.5318C6.33023 16.2235 5.55048 15.7683 4.91878 15.1664C4.28708 14.5645 3.80936 13.827 3.48562 12.9538C3.16187 12.0807 3 11.0812 3 9.95541C3 8.86677 3.16385 7.89331 3.49154 7.03503C3.82318 6.17675 4.30288 5.44851 4.93063 4.85032C5.56232 4.24841 6.32826 3.78954 7.22843 3.47373C8.13254 3.15791 9.1551 3 10.2961 3C11.4055 3 12.3768 3.17091 13.2098 3.51274C14.0468 3.85085 14.7456 4.30971 15.3063 4.88933C15.8708 5.46523 16.2933 6.11359 16.5736 6.83439C16.8579 7.5552 17 8.2983 17 9.06369C17 9.60244 16.9724 10.1486 16.9171 10.7022C16.8618 11.2558 16.7453 11.7649 16.5677 12.2293C16.39 12.69 16.1156 13.0616 15.7445 13.344C15.3773 13.6263 14.8799 13.7675 14.2521 13.7675C13.9757 13.7675 13.6717 13.7266 13.3401 13.6449C13.0085 13.5632 12.7143 13.4275 12.4577 13.2381C12.2011 13.0486 12.0491 12.7941 12.0017 12.4745H11.9306C11.8359 12.69 11.6898 12.8944 11.4924 13.0876C11.2989 13.2808 11.0443 13.435 10.7284 13.5502C10.4165 13.6653 10.0355 13.7155 9.58545 13.7006C9.07219 13.6821 8.62014 13.5743 8.22927 13.3774C7.83841 13.1768 7.51072 12.9055 7.24619 12.5637C6.98562 12.2182 6.78821 11.8187 6.65398 11.3654C6.52369 10.9084 6.45854 10.4161 6.45854 9.88854C6.45854 9.38694 6.53751 8.92808 6.69543 8.51194C6.85336 8.09581 7.07248 7.73169 7.35279 7.41959C7.63706 7.10748 7.9687 6.85855 8.34772 6.67277C8.73068 6.48328 9.14326 6.36624 9.58545 6.32166C9.98026 6.2845 10.3395 6.30122 10.6633 6.37182C10.987 6.43869 11.2535 6.54087 11.4628 6.67834C11.672 6.8121 11.8043 6.96072 11.8596 7.1242H11.9306V6.5H13.1861V11.5382C13.1861 11.8503 13.2789 12.1253 13.4645 12.3631C13.65 12.6009 13.9205 12.7197 14.2758 12.7197C14.6785 12.7197 14.9865 12.5897 15.1997 12.3296C15.4168 12.0695 15.5649 11.6683 15.6438 11.1258C15.7267 10.5833 15.7682 9.88854 15.7682 9.0414C15.7682 8.54352 15.6951 8.05308 15.5491 7.57006C15.4069 7.08333 15.1898 6.62819 14.8976 6.20462C14.6094 5.78105 14.2442 5.40764 13.802 5.08439C13.3598 4.76115 12.8407 4.50849 12.2445 4.32643C11.6523 4.14066 10.9791 4.04777 10.225 4.04777C9.29724 4.04777 8.46616 4.18339 7.73181 4.45462C7.00141 4.72213 6.37958 5.11412 5.86633 5.63057C5.35702 6.14331 4.96813 6.76752 4.69966 7.50319C4.43514 8.23514 4.30288 9.06741 4.30288 10C4.30288 10.9475 4.43514 11.789 4.69966 12.5247C4.96813 13.2604 5.36294 13.8808 5.88409 14.3861C6.40919 14.8915 7.05866 15.2742 7.83249 15.5342C8.60632 15.798 9.49859 15.9299 10.5093 15.9299C10.9436 15.9299 11.372 15.8909 11.7944 15.8129C12.2169 15.7349 12.59 15.6494 12.9137 15.5565C13.2375 15.4636 13.4704 15.3949 13.6125 15.3503L13.9442 16.3758C13.6994 16.4724 13.3796 16.569 12.9848 16.6656C12.5939 16.7622 12.1754 16.8421 11.7293 16.9053C11.2871 16.9684 10.8646 17 10.4619 17ZM9.77496 12.5637C10.304 12.5637 10.7324 12.4634 11.0601 12.2627C11.3878 12.0621 11.6266 11.7593 11.7766 11.3543C11.9267 10.9493 12.0017 10.4384 12.0017 9.82166C12.0017 9.19745 11.9188 8.71072 11.753 8.36147C11.5871 8.01221 11.3424 7.76699 11.0186 7.6258C10.6949 7.48461 10.2961 7.41401 9.82233 7.41401C9.37225 7.41401 8.98731 7.52548 8.66751 7.74841C8.35166 7.96762 8.10886 8.26115 7.93909 8.62898C7.77327 8.9931 7.69036 9.39066 7.69036 9.82166C7.69036 10.2972 7.75747 10.745 7.89171 11.1648C8.02594 11.5809 8.24506 11.9191 8.54907 12.1791C8.85307 12.4355 9.2617 12.5637 9.77496 12.5637Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
|
@ -1,7 +1,8 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 4.25H12V5.74828H3V4.25Z" fill="#B6B6B6"/>
|
||||
<path d="M3 9.25H12V10.7483H3V9.25Z" fill="#B6B6B6"/>
|
||||
<path d="M3 14.25H12V15.7483H3V14.25Z" fill="#B6B6B6"/>
|
||||
<circle cx="15.5" cy="4.99902" r="1.5" fill="#B6B6B6"/>
|
||||
<circle cx="15.5" cy="14.999" r="1.5" fill="#B6B6B6"/>
|
||||
<path d="M2 5C2 4.17157 2.67157 3.5 3.5 3.5C4.32843 3.5 5 4.17157 5 5C5 5.82843 4.32843 6.5 3.5 6.5C2.67157 6.5 2 5.82843 2 5Z" fill="#B6B6B6"/>
|
||||
<path d="M2 10C2 9.17157 2.67157 8.5 3.5 8.5C4.32843 8.5 5 9.17157 5 10C5 10.8284 4.32843 11.5 3.5 11.5C2.67157 11.5 2 10.8284 2 10Z" fill="#B6B6B6"/>
|
||||
<path d="M2 15C2 14.1716 2.67157 13.5 3.5 13.5C4.32843 13.5 5 14.1716 5 15C5 15.8284 4.32843 16.5 3.5 16.5C2.67157 16.5 2 15.8284 2 15Z" fill="#B6B6B6"/>
|
||||
<path d="M7 5C7 4.58579 7.33579 4.25 7.75 4.25H17.25C17.6642 4.25 18 4.58579 18 5C18 5.41421 17.6642 5.75 17.25 5.75H7.75C7.33579 5.75 7 5.41421 7 5Z" fill="#B6B6B6"/>
|
||||
<path d="M7 10C7 9.58579 7.33579 9.25 7.75 9.25H17.25C17.6642 9.25 18 9.58579 18 10C18 10.4142 17.6642 10.75 17.25 10.75H7.75C7.33579 10.75 7 10.4142 7 10Z" fill="#B6B6B6"/>
|
||||
<path d="M7 15C7 14.5858 7.33579 14.25 7.75 14.25H17.25C17.6642 14.25 18 14.5858 18 15C18 15.4142 17.6642 15.75 17.25 15.75H7.75C7.33579 15.75 7 15.4142 7 15Z" fill="#B6B6B6"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 1 KiB |
3
src/img/icon/header/settings/anyName.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path d="M10.3646 17C10.638 15.4323 11.75 13.4635 13.8646 11.8776C14.9036 11.0938 15.9609 10.5833 17 10.3646V9.59896C14.9401 9.10677 12.9167 7.72135 11.6224 5.84375C10.9661 4.89583 10.5469 3.96615 10.3646 3H9.59896C9.28906 4.84115 7.86719 6.88281 5.9349 8.25C4.98698 8.92448 4.0026 9.38021 3 9.59896V10.3646C5.02344 10.7839 7.375 12.5885 8.54167 14.4297C9.125 15.3594 9.47136 16.2161 9.59896 17H10.3646Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 529 B |
3
src/img/icon/header/settings/info.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM8.43251 9.62059H7.14081V9.52145C7.14856 8.14871 7.54422 7.72545 8.2308 7.30601C8.70016 7.01621 9.0609 6.65014 9.0609 6.1163C9.0609 5.51764 8.58379 5.12869 7.9903 5.12869C7.44337 5.12869 6.91583 5.47188 6.88092 6.18875H5.5C5.53879 4.73975 6.64042 4 7.99806 4C9.47983 4 10.5 4.80839 10.5 6.09724C10.5 6.97045 10.0539 7.54242 9.34019 7.96187C8.70791 8.34318 8.44026 8.71306 8.43251 9.52145V9.62059ZM8.673 11.1611C8.66912 11.6263 8.27735 12 7.81963 12C7.34639 12 6.96237 11.6263 6.96625 11.1611C6.96237 10.7035 7.34639 10.3298 7.81963 10.3298C8.27735 10.3298 8.66912 10.7035 8.673 11.1611Z" fill="#868686" fill-opacity="0.7"/>
|
||||
</svg>
|
After Width: | Height: | Size: 884 B |
3
src/img/icon/menu/action/reset.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.74932 10C4.74932 6.54822 7.54754 3.75 10.9993 3.75C14.4511 3.75 17.2493 6.54822 17.2493 10C17.2493 13.4518 14.4511 16.25 10.9993 16.25C9.42305 16.25 7.98307 15.6665 6.88361 14.7037L5.89584 15.8325C7.25917 17.0264 9.04475 17.75 10.9993 17.75C15.2795 17.75 18.7493 14.2802 18.7493 10C18.7493 5.71979 15.2795 2.25 10.9993 2.25C6.71911 2.25 3.24932 5.71979 3.24932 10V10.6913L1.07677 8.51679L0.015625 9.57696L3.46563 13.0301L3.9962 13.5611L4.52677 13.0301L7.97677 9.57696L6.91563 8.51679L4.74932 10.6851V10Z" fill="#B6B6B6"/>
|
||||
</svg>
|
After Width: | Height: | Size: 681 B |
3
src/img/icon/migration/back.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path d="M12 4L6 10L12 16" stroke="#737373" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 195 B |
11
src/img/icon/migration/data.svg
Normal file
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
|
||||
<g clip-path="url(#clip0_9319_25895)">
|
||||
<circle cx="20" cy="20" r="20" fill="#744FB2"/>
|
||||
<path d="M19.9874 21.8575C12.7033 21.8575 7 19.2112 7 15.8397C7 12.5827 12.7033 10 19.9874 10C27.284 10 33 12.5827 33 15.8397C33 19.2112 27.284 21.8575 19.9874 21.8575ZM19.9874 30C12.6527 30 7 26.6921 7 22.6336V19.6438C9.50389 22.1374 14.4864 23.6005 19.9874 23.6005C25.5263 23.6005 30.5088 22.1247 33 19.6438V22.6336C33 26.6921 27.3346 30 19.9874 30Z" fill="#232323"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_9319_25895">
|
||||
<rect width="40" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 729 B |
|
@ -1,43 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72" fill="none">
|
||||
<rect x="10" width="26" height="2" fill="#D4D4D4"/>
|
||||
<rect x="6" y="2" width="4" height="2" fill="#D4D4D4"/>
|
||||
<rect x="4" y="4" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="2" y="6" width="2" height="4" fill="#D4D4D4"/>
|
||||
<rect y="10" width="2" height="26" fill="#D4D4D4"/>
|
||||
<rect width="26" height="2" transform="matrix(1 0 0 -1 10 72)" fill="#D4D4D4"/>
|
||||
<rect width="4" height="2" transform="matrix(1 0 0 -1 6 70)" fill="#D4D4D4"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 4 68)" fill="#D4D4D4"/>
|
||||
<rect width="2" height="4" transform="matrix(1 0 0 -1 2 66)" fill="#D4D4D4"/>
|
||||
<rect width="2" height="26" transform="matrix(1 0 0 -1 0 62)" fill="#D4D4D4"/>
|
||||
<rect width="26" height="2" transform="matrix(-1 0 0 1 62 0)" fill="#D4D4D4"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 66 2)" fill="#D4D4D4"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 68 4)" fill="#D4D4D4"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 70 6)" fill="#D4D4D4"/>
|
||||
<rect width="2" height="26" transform="matrix(-1 0 0 1 72 10)" fill="#D4D4D4"/>
|
||||
<rect x="62" y="72" width="26" height="2" transform="rotate(180 62 72)" fill="#D4D4D4"/>
|
||||
<rect x="66" y="70" width="4" height="2" transform="rotate(180 66 70)" fill="#D4D4D4"/>
|
||||
<rect x="68" y="68" width="2" height="2" transform="rotate(180 68 68)" fill="#D4D4D4"/>
|
||||
<rect x="70" y="66" width="2" height="4" transform="rotate(180 70 66)" fill="#D4D4D4"/>
|
||||
<rect x="72" y="62" width="2" height="26" transform="rotate(180 72 62)" fill="#D4D4D4"/>
|
||||
<rect x="25" y="45" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="43" y="43" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="45" y="45" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="41" y="41" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="39" y="39" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="37" y="37" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="33" y="33" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="31" y="31" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="29" y="29" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="27" y="27" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="25" y="25" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="27" y="43" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="29" y="41" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="31" y="39" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="33" y="37" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="35" y="35" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="37" y="33" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="39" y="31" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="41" y="29" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="43" y="27" width="2" height="2" fill="#D4D4D4"/>
|
||||
<rect x="45" y="25" width="2" height="2" fill="#D4D4D4"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none">
|
||||
<rect x="46" y="63" width="8" height="8" rx="2" fill="#74321E"/>
|
||||
<path d="M46.074 31.0714C46.0336 29.9396 46.9401 29 48.0727 29H51.9273C53.0599 29 53.9664 29.9395 53.926 31.0714L53.0689 55.0714C53.0304 56.1475 52.1469 57 51.0702 57H48.9298C47.8531 57 46.9696 56.1475 46.9311 55.0714L46.074 31.0714Z" fill="#74321E"/>
|
||||
<circle cx="50" cy="50" r="38" stroke="#74321E" stroke-width="12"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 504 B |
BIN
src/img/icon/migration/init.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
11
src/img/icon/migration/process.svg
Normal file
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
|
||||
<g clip-path="url(#clip0_9319_25892)">
|
||||
<circle cx="20" cy="20" r="20" fill="#5065C3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 5C19.1716 5 18.5 5.67157 18.5 6.5V13.5C18.5 14.3284 19.1716 15 20 15C20.8284 15 21.5 14.3284 21.5 13.5V6.5C21.5 5.67157 20.8284 5 20 5ZM6.5 18.5C5.67157 18.5 5 19.1716 5 20C5 20.8284 5.67157 21.5 6.5 21.5H13.5C14.3284 21.5 15 20.8284 15 20C15 19.1716 14.3284 18.5 13.5 18.5H6.5ZM23.465 16.5353C22.8792 15.9495 22.8792 14.9997 23.465 14.4139L28.4147 9.4642C29.0005 8.87842 29.9502 8.87842 30.536 9.4642C31.1218 10.05 31.1218 10.9997 30.536 11.5855L25.5863 16.5353C25.0005 17.1211 24.0507 17.1211 23.465 16.5353ZM25.1818 23.0607C24.596 22.4749 23.6462 22.4749 23.0604 23.0607C22.4746 23.6464 22.4746 24.5962 23.0604 25.182L28.0102 30.1317C28.596 30.7175 29.5457 30.7175 30.1315 30.1317C30.7173 29.5459 30.7173 28.5962 30.1315 28.0104L25.1818 23.0607ZM9.46473 9.46496C10.0505 8.87917 11.0003 8.87917 11.5861 9.46496L16.5358 14.4147C17.1216 15.0005 17.1216 15.9502 16.5358 16.536C15.95 17.1218 15.0003 17.1218 14.4145 16.536L9.46473 11.5863C8.87894 11.0005 8.87894 10.0507 9.46473 9.46496ZM16.536 25.5861C17.1218 25.0003 17.1218 24.0505 16.536 23.4647C15.9502 22.8789 15.0005 22.8789 14.4147 23.4647L9.46495 28.4145C8.87916 29.0003 8.87916 29.95 9.46495 30.5358C10.0507 31.1216 11.0005 31.1216 11.5863 30.5358L16.536 25.5861ZM26 20C26 19.1716 26.6716 18.5 27.5 18.5H34.5C35.3284 18.5 36 19.1716 36 20C36 20.8284 35.3284 21.5 34.5 21.5H27.5C26.6716 21.5 26 20.8284 26 20ZM20 25C19.1716 25 18.5 25.6716 18.5 26.5V33.5C18.5 34.3284 19.1716 35 20 35C20.8284 35 21.5 34.3284 21.5 33.5V26.5C21.5 25.6716 20.8284 25 20 25Z" fill="#232323"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_9319_25892">
|
||||
<rect width="40" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -1,60 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 0H36V70H10V68H4V62H2V10H4V4H10V0Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M62 0H36V70H62V68H68V62H70V10H68V4H62V0Z" fill="white"/>
|
||||
<rect x="10" width="26" height="2" fill="black"/>
|
||||
<rect x="6" y="2" width="4" height="2" fill="black"/>
|
||||
<rect x="4" y="4" width="2" height="2" fill="black"/>
|
||||
<rect x="2" y="6" width="2" height="4" fill="black"/>
|
||||
<rect y="10" width="2" height="26" fill="black"/>
|
||||
<rect width="26" height="2" transform="matrix(1 0 0 -1 10 72)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(1 0 0 -1 6 70)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 4 68)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(1 0 0 -1 2 66)" fill="black"/>
|
||||
<rect width="2" height="26" transform="matrix(1 0 0 -1 0 62)" fill="black"/>
|
||||
<rect width="26" height="2" transform="matrix(-1 0 0 1 62 0)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 66 2)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 68 4)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 70 6)" fill="black"/>
|
||||
<rect width="2" height="26" transform="matrix(-1 0 0 1 72 10)" fill="black"/>
|
||||
<rect x="62" y="72" width="26" height="2" transform="rotate(180 62 72)" fill="black"/>
|
||||
<rect x="66" y="70" width="4" height="2" transform="rotate(180 66 70)" fill="black"/>
|
||||
<rect x="68" y="68" width="2" height="2" transform="rotate(180 68 68)" fill="black"/>
|
||||
<rect x="70" y="66" width="2" height="4" transform="rotate(180 70 66)" fill="black"/>
|
||||
<rect x="72" y="62" width="2" height="26" transform="rotate(180 72 62)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 62 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 60 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 58 40)" fill="black"/>
|
||||
<rect width="2" height="14" transform="matrix(-1 0 0 1 56 30)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 54 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48 34)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 54 26)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52 24)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 22)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48 20)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 46 18)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(-1 0 0 1 42 16)" fill="black"/>
|
||||
<rect x="24" y="20" width="2" height="2" fill="black"/>
|
||||
<rect x="26" y="18" width="4" height="2" fill="black"/>
|
||||
<rect x="30" y="16" width="6" height="2" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 8 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 10 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 12 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 14 32)" fill="black"/>
|
||||
<rect width="2" height="14" transform="matrix(1 0 0 -1 16 42)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 18 32)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 20 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 22 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 24 38)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(1 0 0 -1 18 46)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 20 48)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 22 50)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 24 52)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(1 0 0 -1 26 54)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(1 0 0 -1 30 56)" fill="black"/>
|
||||
<rect x="48" y="52" width="2" height="2" transform="rotate(-180 48 52)" fill="black"/>
|
||||
<rect x="46" y="54" width="4" height="2" transform="rotate(-180 46 54)" fill="black"/>
|
||||
<rect x="42" y="56" width="6" height="2" transform="rotate(-180 42 56)" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.6 KiB |
4
src/img/icon/onboarding/primitives/arrow.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36" fill="none">
|
||||
<rect width="36" height="36" rx="18" fill="black" fill-opacity="0.11"/>
|
||||
<path d="M20 13.5L15.5 18L20 22.5" stroke="#252525" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 279 B |
4
src/img/icon/onboarding/primitives/close.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.46967 4.46967C4.76256 4.17678 5.23744 4.17678 5.53033 4.46967L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L4.46967 5.53033C4.17678 5.23744 4.17678 4.76256 4.46967 4.46967Z" fill="#252525"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5303 4.46967C15.2374 4.17678 14.7626 4.17678 14.4697 4.46967L4.46967 14.4697C4.17678 14.7626 4.17678 15.2374 4.46967 15.5303C4.76256 15.8232 5.23744 15.8232 5.53033 15.5303L15.5303 5.53033C15.8232 5.23744 15.8232 4.76256 15.5303 4.46967Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 729 B |
19
src/img/icon/payment/ice.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="121" viewBox="0 0 120 121" fill="none">
|
||||
<circle cx="44.0625" cy="44.0625" r="44.0625" transform="matrix(0 1 1 0 0 0.5)" fill="url(#paint0_radial_8833_17357)"/>
|
||||
<circle cx="26.25" cy="26.25" r="26.25" transform="matrix(0 1 1 0 67.5 68)" fill="url(#paint1_radial_8833_17357)"/>
|
||||
<circle cx="35.625" cy="35.625" r="35.625" transform="matrix(0 1 1 0 33.75 34.25)" fill="url(#paint2_radial_8833_17357)"/>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_8833_17357" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(44.0625 44.0625) rotate(90) scale(44.0625)">
|
||||
<stop offset="0.41" stop-color="#91D3FF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#91D3FF"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_8833_17357" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.25 26.25) rotate(90) scale(26.25)">
|
||||
<stop offset="0.41" stop-color="#91D3FF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#91D3FF"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_8833_17357" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(35.625 35.625) rotate(90) scale(35.625)">
|
||||
<stop offset="0.41" stop-color="#91D3FF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#91D3FF"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
5
src/img/icon/plus/joinSpace.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="10" cy="10" r="8" fill="#252525"/>
|
||||
<rect x="9.25" y="6" width="1.5" height="8" rx="0.75" fill="white"/>
|
||||
<rect x="6" y="10.75" width="1.5" height="8" rx="0.75" transform="rotate(-90 6 10.75)" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 321 B |
|
@ -1,238 +1,4 @@
|
|||
<svg width="96" height="72" viewBox="0 0 96 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M59.5 -0.00927734L23.5 35.9907L59.5 71.9907L95.5 35.9907L59.5 -0.00927734Z" fill="white"/>
|
||||
<rect x="63.5" y="3.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="61.5" y="1.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="59.5" y="-0.00927734" width="2" height="2" fill="#252525"/>
|
||||
<rect x="69.5" y="9.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="67.5" y="7.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="65.5" y="5.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="75.5" y="15.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="73.5" y="13.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="71.5" y="11.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="81.5" y="21.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="79.5" y="19.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="77.5" y="17.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="87.5" y="27.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="85.5" y="25.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="83.5" y="23.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="93.5" y="33.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="91.5" y="31.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="89.5" y="29.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 63.5 68.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 61.5 70.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 59.5 72.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 69.5 62.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 67.5 64.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 65.5 66.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 75.5 56.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 73.5 58.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 71.5 60.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 81.5 50.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 79.5 52.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 77.5 54.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 87.5 44.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 85.5 46.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 83.5 48.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 93.5 38.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 91.5 40.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 89.5 42.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 55.5 3.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 57.5 1.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 59.5 -0.00927734)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 49.5 9.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 51.5 7.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 53.5 5.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 43.5 15.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 45.5 13.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 47.5 11.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 37.5 21.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 39.5 19.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 41.5 17.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 31.5 27.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 33.5 25.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 35.5 23.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 25.5 33.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 27.5 31.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 29.5 29.9907)" fill="#252525"/>
|
||||
<rect x="55.5" y="68.0093" width="2" height="2" transform="rotate(180 55.5 68.0093)" fill="#252525"/>
|
||||
<rect x="57.5" y="70.0093" width="2" height="2" transform="rotate(180 57.5 70.0093)" fill="#252525"/>
|
||||
<rect x="59.5" y="72.0093" width="2" height="2" transform="rotate(180 59.5 72.0093)" fill="#252525"/>
|
||||
<rect x="49.5" y="62.0093" width="2" height="2" transform="rotate(180 49.5 62.0093)" fill="#252525"/>
|
||||
<rect x="51.5" y="64.0093" width="2" height="2" transform="rotate(180 51.5 64.0093)" fill="#252525"/>
|
||||
<rect x="53.5" y="66.0093" width="2" height="2" transform="rotate(180 53.5 66.0093)" fill="#252525"/>
|
||||
<rect x="43.5" y="56.0093" width="2" height="2" transform="rotate(180 43.5 56.0093)" fill="#252525"/>
|
||||
<rect x="45.5" y="58.0093" width="2" height="2" transform="rotate(180 45.5 58.0093)" fill="#252525"/>
|
||||
<rect x="47.5" y="60.0093" width="2" height="2" transform="rotate(180 47.5 60.0093)" fill="#252525"/>
|
||||
<rect x="37.5" y="50.0093" width="2" height="2" transform="rotate(180 37.5 50.0093)" fill="#252525"/>
|
||||
<rect x="39.5" y="52.0093" width="2" height="2" transform="rotate(180 39.5 52.0093)" fill="#252525"/>
|
||||
<rect x="41.5" y="54.0093" width="2" height="2" transform="rotate(180 41.5 54.0093)" fill="#252525"/>
|
||||
<rect x="31.5" y="44.0093" width="2" height="2" transform="rotate(180 31.5 44.0093)" fill="#252525"/>
|
||||
<rect x="33.5" y="46.0093" width="2" height="2" transform="rotate(180 33.5 46.0093)" fill="#252525"/>
|
||||
<rect x="35.5" y="48.0093" width="2" height="2" transform="rotate(180 35.5 48.0093)" fill="#252525"/>
|
||||
<rect x="25.5" y="38.0093" width="2" height="2" transform="rotate(180 25.5 38.0093)" fill="#252525"/>
|
||||
<rect x="27.5" y="40.0093" width="2" height="2" transform="rotate(180 27.5 40.0093)" fill="#252525"/>
|
||||
<rect x="29.5" y="42.0093" width="2" height="2" transform="rotate(180 29.5 42.0093)" fill="#252525"/>
|
||||
<path d="M48.5 -0.00927734L12.5 35.9907L48.5 71.9907L84.5 35.9907L48.5 -0.00927734Z" fill="white"/>
|
||||
<rect x="52.5" y="3.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="50.5" y="1.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="48.5" y="-0.00927734" width="2" height="2" fill="#252525"/>
|
||||
<rect x="58.5" y="9.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="56.5" y="7.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="54.5" y="5.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="64.5" y="15.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="62.5" y="13.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="60.5" y="11.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="70.5" y="21.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="68.5" y="19.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="66.5" y="17.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="76.5" y="27.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="74.5" y="25.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="72.5" y="23.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="82.5" y="33.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="80.5" y="31.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="78.5" y="29.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 52.5 68.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 50.5 70.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 48.5 72.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 58.5 62.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 56.5 64.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 54.5 66.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 64.5 56.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 62.5 58.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 60.5 60.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 70.5 50.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 68.5 52.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 66.5 54.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 76.5 44.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 74.5 46.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 72.5 48.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 82.5 38.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 80.5 40.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 78.5 42.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44.5 3.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46.5 1.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48.5 -0.00927734)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38.5 9.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 40.5 7.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 42.5 5.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32.5 15.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34.5 13.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36.5 11.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 21.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 19.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 17.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 27.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 25.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 23.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 33.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 31.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 29.9907)" fill="#252525"/>
|
||||
<rect x="44.5" y="68.0093" width="2" height="2" transform="rotate(180 44.5 68.0093)" fill="#252525"/>
|
||||
<rect x="46.5" y="70.0093" width="2" height="2" transform="rotate(180 46.5 70.0093)" fill="#252525"/>
|
||||
<rect x="48.5" y="72.0093" width="2" height="2" transform="rotate(180 48.5 72.0093)" fill="#252525"/>
|
||||
<rect x="38.5" y="62.0093" width="2" height="2" transform="rotate(180 38.5 62.0093)" fill="#252525"/>
|
||||
<rect x="40.5" y="64.0093" width="2" height="2" transform="rotate(180 40.5 64.0093)" fill="#252525"/>
|
||||
<rect x="42.5" y="66.0093" width="2" height="2" transform="rotate(180 42.5 66.0093)" fill="#252525"/>
|
||||
<rect x="32.5" y="56.0093" width="2" height="2" transform="rotate(180 32.5 56.0093)" fill="#252525"/>
|
||||
<rect x="34.5" y="58.0093" width="2" height="2" transform="rotate(180 34.5 58.0093)" fill="#252525"/>
|
||||
<rect x="36.5" y="60.0093" width="2" height="2" transform="rotate(180 36.5 60.0093)" fill="#252525"/>
|
||||
<rect x="26.5" y="50.0093" width="2" height="2" transform="rotate(180 26.5 50.0093)" fill="#252525"/>
|
||||
<rect x="28.5" y="52.0093" width="2" height="2" transform="rotate(180 28.5 52.0093)" fill="#252525"/>
|
||||
<rect x="30.5" y="54.0093" width="2" height="2" transform="rotate(180 30.5 54.0093)" fill="#252525"/>
|
||||
<rect x="20.5" y="44.0093" width="2" height="2" transform="rotate(180 20.5 44.0093)" fill="#252525"/>
|
||||
<rect x="22.5" y="46.0093" width="2" height="2" transform="rotate(180 22.5 46.0093)" fill="#252525"/>
|
||||
<rect x="24.5" y="48.0093" width="2" height="2" transform="rotate(180 24.5 48.0093)" fill="#252525"/>
|
||||
<rect x="14.5" y="38.0093" width="2" height="2" transform="rotate(180 14.5 38.0093)" fill="#252525"/>
|
||||
<rect x="16.5" y="40.0093" width="2" height="2" transform="rotate(180 16.5 40.0093)" fill="#252525"/>
|
||||
<rect x="18.5" y="42.0093" width="2" height="2" transform="rotate(180 18.5 42.0093)" fill="#252525"/>
|
||||
<path d="M36.5 -0.00927734L0.5 35.9907L36.5 71.9907L72.5 35.9907L36.5 -0.00927734Z" fill="white"/>
|
||||
<rect x="40.5" y="3.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="38.5" y="1.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="36.5" y="-0.00927734" width="2" height="2" fill="#252525"/>
|
||||
<rect x="46.5" y="9.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="44.5" y="7.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="42.5" y="5.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="52.5" y="15.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="50.5" y="13.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="48.5" y="11.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="58.5" y="21.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="56.5" y="19.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="54.5" y="17.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="64.5" y="27.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="62.5" y="25.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="60.5" y="23.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="70.5" y="33.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="68.5" y="31.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="66.5" y="29.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 40.5 68.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 38.5 70.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 36.5 72.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 46.5 62.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 44.5 64.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 42.5 66.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 52.5 56.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 50.5 58.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 48.5 60.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 58.5 50.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 56.5 52.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 54.5 54.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 64.5 44.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 62.5 46.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 60.5 48.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 70.5 38.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 68.5 40.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 66.5 42.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32.5 3.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34.5 1.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36.5 -0.00927734)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 9.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 7.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 5.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 15.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 13.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 11.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 21.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 19.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 17.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 8.5 27.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 10.5 25.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 12.5 23.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 2.5 33.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 4.5 31.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 6.5 29.9907)" fill="#252525"/>
|
||||
<rect x="32.5" y="68.0093" width="2" height="2" transform="rotate(180 32.5 68.0093)" fill="#252525"/>
|
||||
<rect x="34.5" y="70.0093" width="2" height="2" transform="rotate(180 34.5 70.0093)" fill="#252525"/>
|
||||
<rect x="36.5" y="72.0093" width="2" height="2" transform="rotate(180 36.5 72.0093)" fill="#252525"/>
|
||||
<rect x="26.5" y="62.0093" width="2" height="2" transform="rotate(180 26.5 62.0093)" fill="#252525"/>
|
||||
<rect x="28.5" y="64.0093" width="2" height="2" transform="rotate(180 28.5 64.0093)" fill="#252525"/>
|
||||
<rect x="30.5" y="66.0093" width="2" height="2" transform="rotate(180 30.5 66.0093)" fill="#252525"/>
|
||||
<rect x="20.5" y="56.0093" width="2" height="2" transform="rotate(180 20.5 56.0093)" fill="#252525"/>
|
||||
<rect x="22.5" y="58.0093" width="2" height="2" transform="rotate(180 22.5 58.0093)" fill="#252525"/>
|
||||
<rect x="24.5" y="60.0093" width="2" height="2" transform="rotate(180 24.5 60.0093)" fill="#252525"/>
|
||||
<rect x="14.5" y="50.0093" width="2" height="2" transform="rotate(180 14.5 50.0093)" fill="#252525"/>
|
||||
<rect x="16.5" y="52.0093" width="2" height="2" transform="rotate(180 16.5 52.0093)" fill="#252525"/>
|
||||
<rect x="18.5" y="54.0093" width="2" height="2" transform="rotate(180 18.5 54.0093)" fill="#252525"/>
|
||||
<rect x="8.5" y="44.0093" width="2" height="2" transform="rotate(180 8.5 44.0093)" fill="#252525"/>
|
||||
<rect x="10.5" y="46.0093" width="2" height="2" transform="rotate(180 10.5 46.0093)" fill="#252525"/>
|
||||
<rect x="12.5" y="48.0093" width="2" height="2" transform="rotate(180 12.5 48.0093)" fill="#252525"/>
|
||||
<rect x="2.5" y="38.0093" width="2" height="2" transform="rotate(180 2.5 38.0093)" fill="#252525"/>
|
||||
<rect x="4.5" y="40.0093" width="2" height="2" transform="rotate(180 4.5 40.0093)" fill="#252525"/>
|
||||
<rect x="6.5" y="42.0093" width="2" height="2" transform="rotate(180 6.5 42.0093)" fill="#252525"/>
|
||||
<rect x="30.25" y="20.0532" width="12" height="2" fill="#252525"/>
|
||||
<rect x="28.5" y="21.9907" width="16" height="2" fill="#252525"/>
|
||||
<rect x="26.5" y="23.9907" width="8" height="2" fill="#252525"/>
|
||||
<rect x="38.5" y="23.9907" width="8" height="2" fill="#252525"/>
|
||||
<rect x="26.5" y="25.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="26.5" y="27.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="40.5" y="25.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="40.5" y="27.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="40.5" y="29.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="38.5" y="31.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="36.5" y="33.9907" width="8" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="35.9907" width="8" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="37.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="39.9907" width="6" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="45.6782" width="6" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="47.6782" width="6" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="49.6167" width="6" height="2" fill="#252525"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M28 52C41.1858 52 51.875 41.3108 51.875 28.125C51.875 14.9392 41.1858 4.25 28 4.25C14.8142 4.25 4.125 14.9392 4.125 28.125C4.125 41.3108 14.8142 52 28 52ZM55.875 28.125C55.875 43.5199 43.3949 56 28 56C12.6051 56 0.125 43.5199 0.125 28.125C0.125 12.7301 12.6051 0.25 28 0.25C43.3949 0.25 55.875 12.7301 55.875 28.125Z" fill="#FFB522"/>
|
||||
<path d="M27.1602 34.2148C25.9492 34.2148 25.4219 33.3164 25.4219 32.2031V31.6562C25.4219 29.0195 26.6523 27.2812 29.3281 25.6797C31.5938 24.293 32.4727 23.0234 32.4727 21.0312C32.4727 18.4922 30.5586 16.7734 27.6875 16.7734C25.0898 16.7734 23.3711 18.082 22.7266 20.4258C22.3945 21.6172 21.9648 21.9883 21.0859 21.9883C20.0898 21.9883 19.543 21.4023 19.543 20.3867C19.543 19.5469 19.6992 18.8828 20.0508 18.1211C21.2031 15.3477 24.0742 13.7266 27.8242 13.7266C32.668 13.7266 36.1055 16.6758 36.1055 20.8555C36.1055 23.9219 34.5234 26.0312 32.0234 27.5352C29.543 29 28.8398 30.0938 28.8398 32.1445C28.8398 33.375 28.3711 34.2148 27.1602 34.2148ZM27.1406 42.3203C25.8906 42.3203 24.9141 41.3438 24.9141 40.0938C24.9141 38.8242 25.8906 37.8672 27.1406 37.8672C28.4102 37.8672 29.3672 38.8242 29.3672 40.0938C29.3672 41.3438 28.4102 42.3203 27.1406 42.3203Z" fill="#FFB522"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1,102 +1,7 @@
|
|||
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="18" y="4" width="10" height="64" fill="white"/>
|
||||
<rect x="18" y="4" width="10" height="64" fill="white"/>
|
||||
<rect width="8" height="68" transform="matrix(-1 0 0 1 36 2)" fill="white"/>
|
||||
<rect width="8" height="68" transform="matrix(-1 0 0 1 36 2)" fill="white"/>
|
||||
<rect x="14" y="8" width="4" height="54" fill="white"/>
|
||||
<rect x="14" y="8" width="4" height="54" fill="white"/>
|
||||
<rect x="10" y="10" width="4" height="44" fill="white"/>
|
||||
<rect x="10" y="10" width="4" height="44" fill="white"/>
|
||||
<rect x="6" y="14" width="4" height="38" fill="white"/>
|
||||
<rect x="6" y="14" width="4" height="38" fill="white"/>
|
||||
<rect x="2" y="22" width="4" height="26" fill="white"/>
|
||||
<rect x="2" y="22" width="4" height="26" fill="white"/>
|
||||
<rect width="10" height="64" transform="matrix(-1 0 0 1 54 4)" fill="white"/>
|
||||
<rect width="10" height="64" transform="matrix(-1 0 0 1 54 4)" fill="white"/>
|
||||
<rect x="36" y="2" width="8" height="68" fill="white"/>
|
||||
<rect x="36" y="2" width="8" height="68" fill="white"/>
|
||||
<rect width="4" height="54" transform="matrix(-1 0 0 1 58 8)" fill="white"/>
|
||||
<rect width="4" height="54" transform="matrix(-1 0 0 1 58 8)" fill="white"/>
|
||||
<rect width="4" height="44" transform="matrix(-1 0 0 1 62 10)" fill="white"/>
|
||||
<rect width="4" height="44" transform="matrix(-1 0 0 1 62 10)" fill="white"/>
|
||||
<rect width="4" height="38" transform="matrix(-1 0 0 1 66 14)" fill="white"/>
|
||||
<rect width="4" height="38" transform="matrix(-1 0 0 1 66 14)" fill="white"/>
|
||||
<rect width="4" height="26" transform="matrix(-1 0 0 1 70 22)" fill="white"/>
|
||||
<rect width="4" height="26" transform="matrix(-1 0 0 1 70 22)" fill="white"/>
|
||||
<rect x="14" y="52" width="2" height="10" fill="black"/>
|
||||
<rect x="16" y="50" width="2" height="2" fill="black"/>
|
||||
<rect x="18" y="48" width="4" height="2" fill="black"/>
|
||||
<rect x="22" y="46" width="6" height="2" fill="black"/>
|
||||
<rect x="28" y="44" width="8" height="2" fill="black"/>
|
||||
<rect x="28" y="52" width="2" height="10" fill="black"/>
|
||||
<rect x="20" y="66" width="2" height="2" fill="black"/>
|
||||
<rect x="18" y="66" width="2" height="2" fill="black"/>
|
||||
<rect x="22" y="68" width="6" height="2" fill="black"/>
|
||||
<rect x="28" y="70" width="8" height="2" fill="black"/>
|
||||
<rect x="16" y="62" width="2" height="4" fill="black"/>
|
||||
<rect y="28" width="2" height="16" fill="black"/>
|
||||
<rect x="2" y="22" width="2" height="6.0625" fill="black"/>
|
||||
<rect x="4" y="18" width="2" height="4" fill="black"/>
|
||||
<rect x="6" y="14" width="2" height="4" fill="black"/>
|
||||
<rect x="8" y="12" width="2" height="2" fill="black"/>
|
||||
<rect x="10" y="10" width="2" height="2" fill="black"/>
|
||||
<rect x="12" y="8" width="2" height="2" fill="black"/>
|
||||
<rect x="14" y="6" width="4" height="2" fill="black"/>
|
||||
<rect x="18" y="4" width="4" height="2" fill="black"/>
|
||||
<rect x="22" y="2" width="6" height="2" fill="black"/>
|
||||
<rect x="28" width="8" height="2" fill="black"/>
|
||||
<rect x="4" y="48" width="2" height="4" fill="black"/>
|
||||
<rect x="6" y="52" width="4" height="2" fill="black"/>
|
||||
<rect x="10" y="54" width="4" height="2" fill="black"/>
|
||||
<rect x="2" y="44" width="2" height="4" fill="black"/>
|
||||
<rect x="2" y="40" width="2" height="2" fill="black"/>
|
||||
<rect x="4" y="36" width="2" height="4" fill="black"/>
|
||||
<rect x="6" y="22" width="2" height="14" fill="black"/>
|
||||
<rect x="18" y="16" width="2" height="12" fill="black"/>
|
||||
<rect x="20" y="28" width="2" height="4" fill="black"/>
|
||||
<rect x="20" y="12" width="2" height="4" fill="black"/>
|
||||
<rect x="24" y="34" width="4" height="2" fill="black"/>
|
||||
<rect x="24" y="8" width="4" height="2" fill="black"/>
|
||||
<rect x="28" y="36" width="8" height="2" fill="black"/>
|
||||
<rect x="28" y="6" width="8" height="2" fill="black"/>
|
||||
<rect x="22" y="32" width="2" height="2" fill="black"/>
|
||||
<rect x="22" y="10" width="2" height="2" fill="black"/>
|
||||
<rect width="2" height="10" transform="matrix(-1 0 0 1 58 52)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 56 50)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 54 48)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(-1 0 0 1 50 46)" fill="black"/>
|
||||
<rect width="8" height="2" transform="matrix(-1 0 0 1 44 44)" fill="black"/>
|
||||
<rect width="2" height="10" transform="matrix(-1 0 0 1 44 52)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52 66)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 54 66)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(-1 0 0 1 50 68)" fill="black"/>
|
||||
<rect width="8" height="2" transform="matrix(-1 0 0 1 44 70)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 56 62)" fill="black"/>
|
||||
<rect width="2" height="16" transform="matrix(-1 0 0 1 72 28)" fill="black"/>
|
||||
<rect width="2" height="6.0625" transform="matrix(-1 0 0 1 70 22)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 68 18)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 66 14)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64 12)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 62 10)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 60 8)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 58 6)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 54 4)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(-1 0 0 1 50 2)" fill="black"/>
|
||||
<rect width="8" height="2" transform="matrix(-1 0 0 1 44 0)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 68 48)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 66 52)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 62 54)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 70 44)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 70 40)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 68 36)" fill="black"/>
|
||||
<rect width="2" height="14" transform="matrix(-1 0 0 1 66 22)" fill="black"/>
|
||||
<rect width="2" height="12" transform="matrix(-1 0 0 1 54 16)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 52 28)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 52 12)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 48 34)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 48 8)" fill="black"/>
|
||||
<rect width="8" height="2" transform="matrix(-1 0 0 1 44 36)" fill="black"/>
|
||||
<rect width="8" height="2" transform="matrix(-1 0 0 1 44 6)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 32)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 10)" fill="black"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none">
|
||||
<path d="M3.00034 28.2893L3.00039 28.3068C3.00016 33.5984 4.90758 37.0144 8.57898 39.287C9.08109 39.5979 9.62161 39.8906 10.2015 40.1647C10.0671 40.7525 9.99996 41.365 10 42C10 42.4622 10.0262 42.9244 10.0786 43.3845C3.35953 40.659 7.23903e-05 35.7367 0.00038625 28.3067C-0.0725306 15.7014 10.1818 0 27.9999 0C45.7385 0 56 14.155 56 28.3067C56 36.8264 52.6188 41.5001 45.8564 43.8706C45.9521 43.2504 46 42.6252 46 42C46 41.5271 45.9726 41.0725 45.9179 40.6358C46.4895 40.3954 47.0221 40.1349 47.517 39.8534C49.3818 38.793 50.6916 37.4431 51.5693 35.6961C52.467 33.9091 53 31.5297 53 28.3067C53 15.5103 43.7953 3 27.9999 3C12.2123 3 2.93477 16.9555 3.00034 28.2893Z" fill="#F55522"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 42C9.99967 36 16 32 27.9988 32C40 32 46 35 46 42C46 49 41 56 27.9988 56C14.9976 56 10.0005 49 10 42ZM13 42.5C12.9997 38 18 35 27.999 35C38 35 43 37.25 43 42.5C43 47.75 38.8333 53 27.999 53C17.1647 53 13.0004 47.75 13 42.5Z" fill="#F55522"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.05469 36.8658C3.71859 39.7338 6.39322 41.8897 10.0786 43.3846C10.0262 42.9244 10 42.4622 10 42C9.99967 36 16 32 27.9988 32C40 32 46 35 46 42C46 42.6252 45.9521 43.2504 45.8564 43.8706C49.8953 42.4548 52.7281 40.2173 54.3547 36.8296L52.4472 35C52.4472 35 48.302 30.9386 47.4593 24.3978C46.6226 17.9038 48.4472 12 48.4472 12H51.1013C46.4232 4.98689 38.5287 0 27.9999 0C17.7546 0 10.01 5.19115 5.29146 12H7.99994C7.99994 12 9.8245 17.9038 8.98786 24.3978C8.14518 30.9386 3.99994 35 3.99994 35L2.05469 36.8658ZM28 29C35.1797 29 41 23.1797 41 16C41 8.8203 35.1797 3 28 3C20.8203 3 15 8.8203 15 16C15 23.1797 20.8203 29 28 29Z" fill="#F55522"/>
|
||||
<rect x="22" y="40" width="3" height="8" rx="1.5" fill="#F55522"/>
|
||||
<rect x="31" y="40" width="3" height="8" rx="1.5" fill="#F55522"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 1.9 KiB |
|
@ -1,83 +1,6 @@
|
|||
<svg width="68" height="72" viewBox="0 0 68 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="6" width="54.7915" height="69.3257" fill="white"/>
|
||||
<rect x="6" width="54.7915" height="69.3257" fill="white"/>
|
||||
<rect x="6" width="54.7915" height="69.3257" fill="white"/>
|
||||
<rect x="2" y="21.9995" width="64" height="48.0005" fill="white"/>
|
||||
<rect x="2" y="21.9995" width="64" height="48.0005" fill="white"/>
|
||||
<rect x="2" y="21.9995" width="64" height="48.0005" fill="white"/>
|
||||
<rect x="6" y="2.00568" width="2" height="26" fill="black"/>
|
||||
<rect x="6" width="56" height="2" fill="black"/>
|
||||
<rect x="60" y="2" width="2" height="26" fill="black"/>
|
||||
<rect x="27.9961" y="32" width="12" height="2" transform="rotate(-0.0773959 27.9961 32)" fill="black"/>
|
||||
<rect x="18" y="20" width="2" height="4" fill="black"/>
|
||||
<rect x="22" y="28.0304" width="2" height="2" fill="black"/>
|
||||
<rect x="20" y="24" width="2" height="4" fill="black"/>
|
||||
<rect x="24" y="29.9893" width="4" height="2" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 50 19.9995)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46 28.0299)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 48 23.9995)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 44 29.9888)" fill="black"/>
|
||||
<rect x="25.9961" y="10" width="2" height="4" fill="black"/>
|
||||
<rect x="40" y="10" width="2" height="4" fill="black"/>
|
||||
<rect width="2" height="46" transform="matrix(1 0 0 -1 0 70)" fill="black"/>
|
||||
<rect width="64" height="2" transform="matrix(1 0 0 -1 2 72)" fill="black"/>
|
||||
<rect width="2" height="46" transform="matrix(1 0 0 -1 66 70)" fill="black"/>
|
||||
<rect x="6" y="27.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="4" y="26.0057" width="2" height="2" fill="black"/>
|
||||
<rect x="2" y="24.0057" width="2" height="2" fill="black"/>
|
||||
<rect x="2" y="22.0057" width="2" height="2" fill="black"/>
|
||||
<rect x="4" y="20.0057" width="2" height="2" fill="black"/>
|
||||
<rect x="12" y="34.0242" width="2" height="2" fill="black"/>
|
||||
<rect x="10" y="32.0301" width="2" height="2" fill="black"/>
|
||||
<rect x="8" y="30.0301" width="2" height="2" fill="black"/>
|
||||
<rect x="18" y="40.0184" width="2" height="2" fill="black"/>
|
||||
<rect x="16" y="38.0242" width="2" height="2" fill="black"/>
|
||||
<rect x="14" y="36.0242" width="2" height="2" fill="black"/>
|
||||
<rect x="24" y="46.0125" width="2" height="2" fill="black"/>
|
||||
<rect x="22" y="44.0184" width="2" height="2" fill="black"/>
|
||||
<rect x="20" y="42.0184" width="2" height="2" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 62 27.9941)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64 26)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 66 24)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 66 21.9995)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64 20.0059)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 56 34.0186)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 58 32.0244)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 60 30.0244)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 40.0127)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52 38.0186)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 54 36.0186)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44 46.0068)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46 44.0127)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48 42.0127)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 4 68)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 6 66)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 8 64)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 10 62)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 12 60)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14 58)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16 56)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18 54)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20 52)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22 50)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24 48)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26 46)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28 44)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30 42)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 34 40)" fill="black"/>
|
||||
<rect x="46" y="49.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="44" y="47.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="42" y="45.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="40" y="43.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="38" y="41.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="34" y="39.9998" width="4" height="2" fill="black"/>
|
||||
<rect x="52" y="55.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="50" y="53.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="48" y="51.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="58" y="61.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="56" y="59.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="54" y="57.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="64" y="67.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="62" y="65.9998" width="2" height="2" fill="black"/>
|
||||
<rect x="60" y="63.9998" width="2" height="2" fill="black"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none">
|
||||
<path d="M14.4249 17.6126C13.1955 17.0341 13.3072 15.2497 14.5992 14.8291L51.1968 2.91371C52.3629 2.53403 53.4671 3.63824 53.0874 4.80441L41.1719 41.4017C40.7512 42.6937 38.9669 42.8054 38.3884 41.576L32.3952 28.8406C32.153 28.326 32.2227 27.7188 32.5751 27.2724L41.733 15.6724C42.4677 14.7417 41.2591 13.5331 40.3285 14.2678L28.7284 23.4258C28.2821 23.7782 27.6748 23.8478 27.1603 23.6057L14.4249 17.6126Z" fill="#2AA7EE"/>
|
||||
<path d="M7.00001 48.001L24 31.001" stroke="#2AA7EE" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M3 38.001L14 27.001" stroke="#2AA7EE" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17 52.001L28 41.001" stroke="#2AA7EE" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 890 B |
|
@ -1,79 +1,3 @@
|
|||
<svg width="69" height="73" viewBox="0 0 69 73" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="6.5" y="0.5" width="54.7915" height="69.3257" fill="white"/>
|
||||
<rect x="6.5" y="0.5" width="54.7915" height="69.3257" fill="white"/>
|
||||
<rect x="6.5" y="0.5" width="54.7915" height="69.3257" fill="white"/>
|
||||
<rect x="2.5" y="22.5" width="64" height="48.0005" fill="white"/>
|
||||
<rect x="2.5" y="22.5" width="64" height="48.0005" fill="white"/>
|
||||
<rect x="2.5" y="22.5" width="64" height="48.0005" fill="white"/>
|
||||
<rect x="6.5" y="2.5" width="2" height="26" fill="black"/>
|
||||
<rect x="6.5" y="0.5" width="56" height="2" fill="black"/>
|
||||
<rect x="60.5" y="2.5" width="2" height="26" fill="black"/>
|
||||
<rect width="12" height="2" transform="matrix(0.999999 0.00135081 0.00135081 -0.999999 28.5 24.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 22.5 28.4688)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(1 0 0 -1 24.5 26.5156)" fill="black"/>
|
||||
<rect x="46.5" y="28.4688" width="2" height="2" transform="rotate(180 46.5 28.4688)" fill="black"/>
|
||||
<rect x="44.5" y="26.5156" width="4" height="2" transform="rotate(180 44.5 26.5156)" fill="black"/>
|
||||
<rect x="26.5" y="10.5" width="2" height="4" fill="black"/>
|
||||
<rect x="40.5" y="10.5" width="2" height="4" fill="black"/>
|
||||
<rect width="2" height="46" transform="matrix(1 0 0 -1 0.5 70.5)" fill="black"/>
|
||||
<rect width="64" height="2" transform="matrix(1 0 0 -1 2.5 72.5)" fill="black"/>
|
||||
<rect width="2" height="46" transform="matrix(1 0 0 -1 66.5 70.5)" fill="black"/>
|
||||
<rect x="6.5" y="28.4922" width="2" height="2" fill="black"/>
|
||||
<rect x="4.5" y="26.5" width="2" height="2" fill="black"/>
|
||||
<rect x="2.5" y="24.5" width="2" height="2" fill="black"/>
|
||||
<rect x="2.5" y="22.5" width="2" height="2" fill="black"/>
|
||||
<rect x="4.5" y="20.5" width="2" height="2" fill="black"/>
|
||||
<rect x="12.5" y="34.5312" width="2" height="2" fill="black"/>
|
||||
<rect x="10.5" y="32.5312" width="2" height="2" fill="black"/>
|
||||
<rect x="8.5" y="30.5312" width="2" height="2" fill="black"/>
|
||||
<rect x="18.5" y="40.5156" width="2" height="2" fill="black"/>
|
||||
<rect x="16.5" y="38.5234" width="2" height="2" fill="black"/>
|
||||
<rect x="14.5" y="36.5234" width="2" height="2" fill="black"/>
|
||||
<rect x="24.5" y="46.5078" width="2" height="2" fill="black"/>
|
||||
<rect x="22.5" y="44.5156" width="2" height="2" fill="black"/>
|
||||
<rect x="20.5" y="42.5156" width="2" height="2" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 62.5 28.4844)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64.5 26.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 66.5 24.4922)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 66.5 22.4922)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64.5 20.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 56.5 34.5156)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 58.5 32.5156)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 60.5 30.5156)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50.5 40.5078)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52.5 38.5156)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 54.5 36.5156)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44.5 46.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46.5 44.5078)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48.5 42.5078)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 4.5 68.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 6.5 66.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 8.5 64.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 10.5 62.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 12.5 60.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 58.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 56.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 54.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 52.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 50.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 48.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 46.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 44.5)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 42.5)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 34.5 40.5)" fill="black"/>
|
||||
<rect x="46.5" y="50.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="44.5" y="48.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="42.5" y="46.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="40.5" y="44.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="38.5" y="42.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="34.5" y="40.4998" width="4" height="2" fill="black"/>
|
||||
<rect x="52.5" y="56.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="50.5" y="54.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="48.5" y="52.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="58.5" y="62.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="56.5" y="60.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="54.5" y="58.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="64.5" y="68.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="62.5" y="66.4998" width="2" height="2" fill="black"/>
|
||||
<rect x="60.5" y="64.4998" width="2" height="2" fill="black"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.74013 22.0422C6.2532 21.2195 5.10141 21.1124 4.46515 21.825C1.63227 24.9981 -2.50858 32.4766 1.9918 43.1826C6.23426 53.2756 18.0345 56 27.9824 56C37.9273 55.9878 52.0075 51 52.0075 39C52.0233 35.0886 50.5059 31.5 46.3695 26.4661C45.2886 25.1526 44.9061 22.7532 46.3692 21.3787C47.5439 20.2752 49.0436 19.4402 50.5103 18.6237C53.0795 17.1932 55.5474 15.8192 55.9888 13.157C56.078 12.6192 55.6207 12.1796 55.0758 12.1595C52.8466 12.0774 50.8869 11.7134 48.999 11.1096C47.725 5.19915 42.9981 0 35.9908 0C28.8896 0 21.9761 6.02402 21.9761 14C21.9761 18.3456 24.7805 22.4831 27.9198 25C29.3025 26.1086 28.7445 28.0313 27.0126 28.0313L18.9417 28C13.999 28 9.36916 26.25 6.74013 22.0422ZM41.9971 13C43.1028 13 43.9992 11.8807 43.9992 10.5C43.9992 9.11929 43.1028 8 41.9971 8C40.8914 8 39.995 9.11929 39.995 10.5C39.995 11.8807 40.8914 13 41.9971 13Z" fill="#FFB522"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 1,020 B |
|
@ -1,60 +1,3 @@
|
|||
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 0H36V70H10V68H4V62H2V10H4V4H10V0Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M62 0H36V70H62V68H68V62H70V10H68V4H62V0Z" fill="white"/>
|
||||
<rect x="10" width="26" height="2" fill="black"/>
|
||||
<rect x="6" y="2" width="4" height="2" fill="black"/>
|
||||
<rect x="4" y="4" width="2" height="2" fill="black"/>
|
||||
<rect x="2" y="6" width="2" height="4" fill="black"/>
|
||||
<rect y="10" width="2" height="26" fill="black"/>
|
||||
<rect width="26" height="2" transform="matrix(1 0 0 -1 10 72)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(1 0 0 -1 6 70)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 4 68)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(1 0 0 -1 2 66)" fill="black"/>
|
||||
<rect width="2" height="26" transform="matrix(1 0 0 -1 0 62)" fill="black"/>
|
||||
<rect width="26" height="2" transform="matrix(-1 0 0 1 62 0)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 66 2)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 68 4)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 70 6)" fill="black"/>
|
||||
<rect width="2" height="26" transform="matrix(-1 0 0 1 72 10)" fill="black"/>
|
||||
<rect x="62" y="72" width="26" height="2" transform="rotate(180 62 72)" fill="black"/>
|
||||
<rect x="66" y="70" width="4" height="2" transform="rotate(180 66 70)" fill="black"/>
|
||||
<rect x="68" y="68" width="2" height="2" transform="rotate(180 68 68)" fill="black"/>
|
||||
<rect x="70" y="66" width="2" height="4" transform="rotate(180 70 66)" fill="black"/>
|
||||
<rect x="72" y="62" width="2" height="26" transform="rotate(180 72 62)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 64 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 62 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 60 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 58 40)" fill="black"/>
|
||||
<rect width="2" height="14" transform="matrix(-1 0 0 1 56 30)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 54 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48 34)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 54 26)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 52 24)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 50 22)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48 20)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(-1 0 0 1 46 18)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(-1 0 0 1 42 16)" fill="black"/>
|
||||
<rect x="24" y="20" width="2" height="2" fill="black"/>
|
||||
<rect x="26" y="18" width="4" height="2" fill="black"/>
|
||||
<rect x="30" y="16" width="6" height="2" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 8 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 10 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 12 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 14 32)" fill="black"/>
|
||||
<rect width="2" height="14" transform="matrix(1 0 0 -1 16 42)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 18 32)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 20 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 22 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 24 38)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(1 0 0 -1 18 46)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 20 48)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 22 50)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 24 52)" fill="black"/>
|
||||
<rect width="4" height="2" transform="matrix(1 0 0 -1 26 54)" fill="black"/>
|
||||
<rect width="6" height="2" transform="matrix(1 0 0 -1 30 56)" fill="black"/>
|
||||
<rect x="48" y="52" width="2" height="2" transform="rotate(-180 48 52)" fill="black"/>
|
||||
<rect x="46" y="54" width="4" height="2" transform="rotate(-180 46 54)" fill="black"/>
|
||||
<rect x="42" y="56" width="6" height="2" transform="rotate(-180 42 56)" fill="black"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="57" viewBox="0 0 56 57" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.52591 8.14413C0 11.1389 0 15.0593 0 22.9V34.1C0 41.9407 0 45.8611 1.52591 48.8559C2.86814 51.4901 5.00986 53.6319 7.64413 54.9741C10.6389 56.5 14.5593 56.5 22.4 56.5H33.6C41.4407 56.5 45.3611 56.5 48.3559 54.9741C50.9901 53.6319 53.1319 51.4901 54.4741 48.8559C56 45.8611 56 41.9407 56 34.1V22.9C56 15.0593 56 11.1389 54.4741 8.14413C53.1319 5.50986 50.9901 3.36814 48.3559 2.02591C45.3611 0.5 41.4407 0.5 33.6 0.5H22.4C14.5593 0.5 10.6389 0.5 7.64413 2.02591C5.00986 3.36814 2.86814 5.50986 1.52591 8.14413ZM43.2812 34.1951C43.9583 32.4139 44.2969 30.518 44.2969 28.5076C44.2969 26.3514 43.8906 24.3253 43.0781 22.4295C42.276 20.5232 41.1771 18.867 39.7812 17.4607C39.3854 16.992 38.9271 16.768 38.4062 16.7889C37.8854 16.8097 37.4583 16.9868 37.125 17.3201C36.8333 17.6118 36.6615 17.9816 36.6094 18.4295C36.5677 18.8774 36.75 19.3462 37.1562 19.8357C38.2604 20.9503 39.1302 22.2524 39.7656 23.742C40.401 25.2316 40.7188 26.8201 40.7188 28.5076C40.7188 30.018 40.4688 31.4503 39.9688 32.8045C39.4792 34.1482 38.7917 35.3722 37.9062 36.4764C37.0208 37.5701 35.9792 38.4972 34.7812 39.2576C33.5833 40.0076 32.2812 40.5389 30.875 40.8514V38.8826C30.875 38.4972 30.7812 38.2055 30.5938 38.0076C30.4167 37.7993 30.1875 37.7003 29.9062 37.7107C29.625 37.7212 29.3385 37.8305 29.0469 38.0389L23.9375 41.7576C23.6042 42.0076 23.4323 42.3045 23.4219 42.6482C23.4219 43.0024 23.5938 43.3045 23.9375 43.5545L29.0312 47.2732C29.3333 47.492 29.625 47.6014 29.9062 47.6014C30.1875 47.6118 30.4167 47.518 30.5938 47.3201C30.7812 47.1222 30.875 46.8253 30.875 46.4295V44.5389C32.7812 44.1951 34.5469 43.5441 36.1719 42.5857C37.8073 41.6378 39.2292 40.4503 40.4375 39.0232C41.6562 37.5857 42.6042 35.9764 43.2812 34.1951ZM12.7188 22.8201C12.0417 24.6014 11.7031 26.4972 11.7031 28.5076C11.7031 30.6535 12.1042 32.6795 12.9062 34.5857C13.7083 36.4816 14.8073 38.1378 16.2031 39.5545C16.6094 40.0232 17.0729 40.242 17.5938 40.2107C18.1146 40.1899 18.5417 40.0128 18.875 39.6795C19.1562 39.3982 19.3229 39.0337 19.375 38.5857C19.4271 38.1378 19.25 37.6639 18.8438 37.1639C17.7396 36.0597 16.8698 34.7628 16.2344 33.2732C15.599 31.7837 15.2812 30.1951 15.2812 28.5076C15.2812 26.9972 15.526 25.5701 16.0156 24.2264C16.5052 22.8722 17.1927 21.6482 18.0781 20.5545C18.974 19.4503 20.0208 18.5232 21.2188 17.7732C22.4167 17.0128 23.7188 16.4764 25.125 16.1639V18.1326C25.125 18.518 25.2135 18.8149 25.3906 19.0232C25.5781 19.2212 25.8125 19.3149 26.0938 19.3045C26.375 19.2941 26.6615 19.1847 26.9531 18.9764L32.0625 15.2576C32.4062 15.0076 32.5781 14.7107 32.5781 14.367C32.5781 14.0128 32.4062 13.7107 32.0625 13.4607L26.9531 9.72637C26.6615 9.50762 26.375 9.39824 26.0938 9.39824C25.8125 9.38783 25.5781 9.48158 25.3906 9.67949C25.2135 9.87741 25.125 10.1795 25.125 10.5857V12.4764C23.2188 12.8097 21.4531 13.4555 19.8281 14.4139C18.2031 15.3618 16.7812 16.5545 15.5625 17.992C14.3438 19.4191 13.3958 21.0285 12.7188 22.8201Z" fill="#5DD400"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 3 KiB |
|
@ -1,101 +1,3 @@
|
|||
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="54" y="68" width="52" height="48" transform="rotate(180 54 68)" fill="white"/>
|
||||
<rect x="52" y="70" width="44" height="52" transform="rotate(180 52 70)" fill="white"/>
|
||||
<rect x="62" y="60" width="52" height="48" transform="rotate(180 62 60)" fill="white"/>
|
||||
<rect x="60" y="62" width="44" height="52" transform="rotate(180 60 62)" fill="white"/>
|
||||
<rect x="70" y="52" width="52" height="48" transform="rotate(180 70 52)" fill="white"/>
|
||||
<rect x="68" y="54" width="44" height="52" transform="rotate(180 68 54)" fill="white"/>
|
||||
<rect x="12" y="44" width="2" height="2" fill="black"/>
|
||||
<rect x="12" y="44" width="2" height="2" fill="black"/>
|
||||
<rect x="12" y="44" width="2" height="2" fill="black"/>
|
||||
<rect x="14" y="46" width="2" height="2" fill="black"/>
|
||||
<rect x="14" y="46" width="2" height="2" fill="black"/>
|
||||
<rect x="14" y="46" width="2" height="2" fill="black"/>
|
||||
<rect x="16" y="48" width="2" height="2" fill="black"/>
|
||||
<rect x="16" y="48" width="2" height="2" fill="black"/>
|
||||
<rect x="16" y="48" width="2" height="2" fill="black"/>
|
||||
<rect x="18" y="50" width="2" height="2" fill="black"/>
|
||||
<rect x="18" y="50" width="2" height="2" fill="black"/>
|
||||
<rect x="18" y="50" width="2" height="2" fill="black"/>
|
||||
<rect x="20" y="52" width="2" height="2" fill="black"/>
|
||||
<rect x="20" y="52" width="2" height="2" fill="black"/>
|
||||
<rect x="20" y="52" width="2" height="2" fill="black"/>
|
||||
<rect x="22" y="54" width="2" height="2" fill="black"/>
|
||||
<rect x="22" y="54" width="2" height="2" fill="black"/>
|
||||
<rect x="22" y="54" width="2" height="2" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36 42)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36 42)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36 42)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34 44)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34 44)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34 44)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32 46)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32 46)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32 46)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30 48)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30 48)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30 48)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28 50)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28 50)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28 50)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26 52)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26 52)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26 52)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24 54)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24 54)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24 54)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46 32)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46 32)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46 32)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44 34)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 42 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 42 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 42 36)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 40 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 40 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 40 38)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38 40)" fill="black"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38 40)" fill="black"/>
|
||||
<rect y="24" width="2" height="20" fill="black"/>
|
||||
<rect x="2" y="20" width="2" height="4" fill="black"/>
|
||||
<rect x="4" y="20" width="2" height="4" transform="rotate(-90 4 20)" fill="black"/>
|
||||
<rect x="8" y="18" width="2" height="20" transform="rotate(-90 8 18)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(1 0 0 -1 0 64)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(1 0 0 -1 2 68)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(0 1 1 0 4 68)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(0 1 1 0 8 70)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(-1 0 0 1 56 24)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 54 20)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(0 -1 -1 0 52 20)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(0 -1 -1 0 48 18)" fill="black"/>
|
||||
<rect x="56" y="64" width="2" height="20" transform="rotate(180 56 64)" fill="black"/>
|
||||
<rect x="54" y="68" width="2" height="4" transform="rotate(180 54 68)" fill="black"/>
|
||||
<rect x="52" y="68" width="2" height="4" transform="rotate(90 52 68)" fill="black"/>
|
||||
<rect x="48" y="70" width="2" height="20" transform="rotate(90 48 70)" fill="black"/>
|
||||
<rect x="10" y="12" width="2" height="4" fill="black"/>
|
||||
<rect x="12" y="12" width="2" height="4" transform="rotate(-90 12 12)" fill="black"/>
|
||||
<rect x="16" y="10" width="2" height="20" transform="rotate(-90 16 10)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(-1 0 0 1 64 16)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 62 12)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(0 -1 -1 0 60 12)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(0 -1 -1 0 56 10)" fill="black"/>
|
||||
<rect x="64" y="56" width="2" height="20" transform="rotate(180 64 56)" fill="black"/>
|
||||
<rect x="62" y="60" width="2" height="4" transform="rotate(180 62 60)" fill="black"/>
|
||||
<rect x="60" y="60" width="2" height="4" transform="rotate(90 60 60)" fill="black"/>
|
||||
<rect x="18" y="4" width="2" height="4" fill="black"/>
|
||||
<rect x="20" y="4" width="2" height="4" transform="rotate(-90 20 4)" fill="black"/>
|
||||
<rect x="24" y="2" width="2" height="20" transform="rotate(-90 24 2)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(-1 0 0 1 72 8)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(-1 0 0 1 70 4)" fill="black"/>
|
||||
<rect width="2" height="4" transform="matrix(0 -1 -1 0 68 4)" fill="black"/>
|
||||
<rect width="2" height="20" transform="matrix(0 -1 -1 0 64 2)" fill="black"/>
|
||||
<rect x="72" y="48" width="2" height="20" transform="rotate(180 72 48)" fill="black"/>
|
||||
<rect x="70" y="52" width="2" height="4" transform="rotate(180 70 52)" fill="black"/>
|
||||
<rect x="68" y="52" width="2" height="4" transform="rotate(90 68 52)" fill="black"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.52591 7.64413C0 10.6389 0 14.5593 0 22.4V33.6C0 41.4407 0 45.3611 1.52591 48.3559C2.86814 50.9901 5.00986 53.1319 7.64413 54.4741C10.6389 56 14.5593 56 22.4 56H33.6C41.4407 56 45.3611 56 48.3559 54.4741C50.9901 53.1319 53.1319 50.9901 54.4741 48.3559C56 45.3611 56 41.4407 56 33.6V22.4C56 14.5593 56 10.6389 54.4741 7.64413C53.1319 5.00986 50.9901 2.86814 48.3559 1.52591C45.3611 0 41.4407 0 33.6 0H22.4C14.5593 0 10.6389 0 7.64413 1.52591C5.00986 2.86814 2.86814 5.00986 1.52591 7.64413ZM28.0078 10.0703C30.2343 10.0703 32.3378 10.4512 34.3183 11.2129C36.2988 11.9629 38.08 13.0176 39.6621 14.377C41.2441 15.7363 42.5507 17.3301 43.582 19.1582C44.625 20.9746 45.3222 22.9492 45.6738 25.082H48.1875C48.6093 25.082 48.9257 25.1699 49.1367 25.3457C49.3476 25.5098 49.4472 25.7324 49.4355 26.0137C49.4355 26.2832 49.3183 26.582 49.0839 26.9102L45.164 32.5C44.871 32.9102 44.5371 33.1152 44.1621 33.1152C43.7871 33.1035 43.4589 32.8984 43.1777 32.5L39.2402 26.8926C39.0175 26.5762 38.9062 26.2832 38.9062 26.0137C38.8945 25.7324 38.9941 25.5098 39.205 25.3457C39.416 25.1699 39.7265 25.082 40.1367 25.082H42.6152C42.2871 23.3711 41.6835 21.7832 40.8046 20.3184C39.9257 18.8535 38.8359 17.582 37.5351 16.5039C36.2343 15.4141 34.7753 14.5703 33.1581 13.9727C31.541 13.3633 29.8242 13.0586 28.0078 13.0586C25.8164 13.0586 23.7656 13.5039 21.8554 14.3945C19.9335 15.2734 18.2812 16.4688 16.8984 17.9805C16.5468 18.3789 16.1894 18.5898 15.8261 18.6133C15.4628 18.625 15.1347 18.5312 14.8417 18.332C14.5136 18.0859 14.3144 17.7402 14.2441 17.2949C14.1621 16.8496 14.3027 16.4277 14.666 16.0293C16.3066 14.1895 18.2812 12.7363 20.5898 11.6699C22.8984 10.6035 25.371 10.0703 28.0078 10.0703ZM28.0078 45.9297C25.7812 45.9297 23.6777 45.5547 21.6972 44.8047C19.7167 44.043 17.9355 42.9824 16.3535 41.623C14.7714 40.252 13.4589 38.6582 12.416 36.8418C11.373 35.0254 10.6816 33.0508 10.3417 30.918H7.8105C7.38862 30.918 7.07221 30.8359 6.86128 30.6719C6.65034 30.4961 6.55073 30.2734 6.56245 30.0039C6.56245 29.7227 6.67964 29.418 6.91401 29.0898L10.8515 23.5C11.1445 23.0898 11.4785 22.8848 11.8535 22.8848C12.2285 22.8848 12.5566 23.0898 12.8378 23.5L16.7753 29.1074C16.998 29.4238 17.1152 29.7227 17.1269 30.0039C17.1269 30.2734 17.0214 30.4961 16.8105 30.6719C16.5996 30.8359 16.289 30.918 15.8789 30.918H13.4003C13.7285 32.6289 14.332 34.2168 15.2109 35.6816C16.0898 37.1465 17.1796 38.4238 18.4804 39.5137C19.7812 40.5918 21.2402 41.4355 22.8574 42.0449C24.4746 42.6426 26.1914 42.9414 28.0078 42.9414C30.1992 42.9414 32.2558 42.502 34.1777 41.623C36.0878 40.7324 37.7285 39.5254 39.0996 38.002C39.4628 37.6152 39.8261 37.416 40.1894 37.4043C40.5527 37.3809 40.875 37.4688 41.1562 37.668C41.4843 37.9141 41.6894 38.2598 41.7714 38.7051C41.8535 39.1504 41.7128 39.5723 41.3496 39.9707C39.7089 41.8105 37.7343 43.2637 35.4257 44.3301C33.1171 45.3965 30.6445 45.9297 28.0078 45.9297ZM26.9297 35.0547C26.3568 35.0547 25.8854 34.8385 25.5156 34.4062L21.4922 29.6641C21.3151 29.4714 21.1927 29.2865 21.125 29.1094C21.0625 28.9271 21.0312 28.7344 21.0312 28.5312C21.0312 28.0833 21.1823 27.7109 21.4844 27.4141C21.7865 27.1172 22.1693 26.9688 22.6328 26.9688C23.1276 26.9688 23.5391 27.1589 23.8672 27.5391L26.8984 31.1719L32.9531 21.6641C33.1458 21.3672 33.349 21.1589 33.5625 21.0391C33.7812 20.9141 34.0469 20.8516 34.3594 20.8516C34.8125 20.8516 35.1927 21 35.5 21.2969C35.8125 21.5885 35.9688 21.9583 35.9688 22.4062C35.9688 22.5677 35.9401 22.737 35.8828 22.9141C35.8255 23.0859 35.737 23.2604 35.6172 23.4375L28.4062 34.3047C28.0729 34.8047 27.5807 35.0547 26.9297 35.0547Z" fill="#5DD400"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 3.7 KiB |
|
@ -1,225 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="96" height="72" viewBox="0 0 96 72" fill="none">
|
||||
<path d="M59.5 0L23.5 35.9907L59.5 71.9815L95.5 35.9907L59.5 0Z" fill="#252525"/>
|
||||
<rect x="63.5" y="3.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="61.5" y="1.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="59.5" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="69.5" y="9.99805" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="67.5" y="7.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="65.5" y="5.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="75.5" y="15.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="73.5" y="13.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="71.5" y="11.9971" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="81.5" y="21.9951" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="79.5" y="19.9951" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="77.5" y="17.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="87.5" y="27.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="85.5" y="25.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="83.5" y="23.9932" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="93.5" y="33.9912" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="91.5" y="31.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="89.5" y="29.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 63.5 68.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 61.5 70.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 59.5 72)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 69.5 62.002)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 67.5 64.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 65.5 66.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 75.5 56.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 73.5 58.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 71.5 60.0029)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 81.5 50.0049)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 79.5 52.0049)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 77.5 54.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 87.5 44.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 85.5 46.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 83.5 48.0068)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 93.5 38.0088)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 91.5 40.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 89.5 42.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 55.5 3.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 57.5 1.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 59.5 0)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 49.5 9.99805)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 51.5 7.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 53.5 5.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 43.5 15.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 45.5 13.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 47.5 11.9971)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 37.5 21.9951)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 39.5 19.9951)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 41.5 17.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 31.5 27.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 33.5 25.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 35.5 23.9932)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 25.5 33.9912)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 27.5 31.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 29.5 29.9922)" fill="#DCDCDC"/>
|
||||
<rect x="55.5" y="68.001" width="2" height="2" transform="rotate(180 55.5 68.001)" fill="#DCDCDC"/>
|
||||
<rect x="57.5" y="70.001" width="2" height="2" transform="rotate(180 57.5 70.001)" fill="#DCDCDC"/>
|
||||
<rect x="59.5" y="72" width="2" height="2" transform="rotate(180 59.5 72)" fill="#DCDCDC"/>
|
||||
<rect x="49.5" y="62.002" width="2" height="2" transform="rotate(180 49.5 62.002)" fill="#DCDCDC"/>
|
||||
<rect x="51.5" y="64.001" width="2" height="2" transform="rotate(180 51.5 64.001)" fill="#DCDCDC"/>
|
||||
<rect x="53.5" y="66.001" width="2" height="2" transform="rotate(180 53.5 66.001)" fill="#DCDCDC"/>
|
||||
<rect x="43.5" y="56.0039" width="2" height="2" transform="rotate(180 43.5 56.0039)" fill="#DCDCDC"/>
|
||||
<rect x="45.5" y="58.0039" width="2" height="2" transform="rotate(180 45.5 58.0039)" fill="#DCDCDC"/>
|
||||
<rect x="47.5" y="60.0029" width="2" height="2" transform="rotate(180 47.5 60.0029)" fill="#DCDCDC"/>
|
||||
<rect x="37.5" y="50.0049" width="2" height="2" transform="rotate(180 37.5 50.0049)" fill="#DCDCDC"/>
|
||||
<rect x="39.5" y="52.0049" width="2" height="2" transform="rotate(180 39.5 52.0049)" fill="#DCDCDC"/>
|
||||
<rect x="41.5" y="54.0039" width="2" height="2" transform="rotate(180 41.5 54.0039)" fill="#DCDCDC"/>
|
||||
<rect x="31.5" y="44.0078" width="2" height="2" transform="rotate(180 31.5 44.0078)" fill="#DCDCDC"/>
|
||||
<rect x="33.5" y="46.0078" width="2" height="2" transform="rotate(180 33.5 46.0078)" fill="#DCDCDC"/>
|
||||
<rect x="35.5" y="48.0068" width="2" height="2" transform="rotate(180 35.5 48.0068)" fill="#DCDCDC"/>
|
||||
<rect x="25.5" y="38.0088" width="2" height="2" transform="rotate(180 25.5 38.0088)" fill="#DCDCDC"/>
|
||||
<rect x="27.5" y="40.0078" width="2" height="2" transform="rotate(180 27.5 40.0078)" fill="#DCDCDC"/>
|
||||
<rect x="29.5" y="42.0078" width="2" height="2" transform="rotate(180 29.5 42.0078)" fill="#DCDCDC"/>
|
||||
<path d="M48.5 0L12.5 35.9907L48.5 71.9815L84.5 35.9907L48.5 0Z" fill="#252525"/>
|
||||
<rect x="52.5" y="3.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="50.5" y="1.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="48.5" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="58.5" y="9.99805" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="56.5" y="7.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="54.5" y="5.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="64.5" y="15.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="62.5" y="13.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="60.5" y="11.9971" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="70.5" y="21.9951" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="68.5" y="19.9951" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="66.5" y="17.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="76.5" y="27.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="74.5" y="25.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="72.5" y="23.9932" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="82.5" y="33.9912" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="80.5" y="31.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="78.5" y="29.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 52.5 68.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 50.5 70.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 48.5 72)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 58.5 62.002)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 56.5 64.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 54.5 66.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 64.5 56.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 62.5 58.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 60.5 60.0029)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 70.5 50.0049)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 68.5 52.0049)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 66.5 54.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 76.5 44.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 74.5 46.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 72.5 48.0068)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 82.5 38.0088)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 80.5 40.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 78.5 42.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44.5 3.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46.5 1.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48.5 0)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38.5 9.99805)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 40.5 7.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 42.5 5.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32.5 15.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34.5 13.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36.5 11.9971)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 21.9951)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 19.9951)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 17.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 27.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 25.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 23.9932)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 33.9912)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 31.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 29.9922)" fill="#DCDCDC"/>
|
||||
<rect x="44.5" y="68.001" width="2" height="2" transform="rotate(180 44.5 68.001)" fill="#DCDCDC"/>
|
||||
<rect x="46.5" y="70.001" width="2" height="2" transform="rotate(180 46.5 70.001)" fill="#DCDCDC"/>
|
||||
<rect x="48.5" y="72" width="2" height="2" transform="rotate(180 48.5 72)" fill="#DCDCDC"/>
|
||||
<rect x="38.5" y="62.002" width="2" height="2" transform="rotate(180 38.5 62.002)" fill="#DCDCDC"/>
|
||||
<rect x="40.5" y="64.001" width="2" height="2" transform="rotate(180 40.5 64.001)" fill="#DCDCDC"/>
|
||||
<rect x="42.5" y="66.001" width="2" height="2" transform="rotate(180 42.5 66.001)" fill="#DCDCDC"/>
|
||||
<rect x="32.5" y="56.0039" width="2" height="2" transform="rotate(180 32.5 56.0039)" fill="#DCDCDC"/>
|
||||
<rect x="34.5" y="58.0039" width="2" height="2" transform="rotate(180 34.5 58.0039)" fill="#DCDCDC"/>
|
||||
<rect x="36.5" y="60.0029" width="2" height="2" transform="rotate(180 36.5 60.0029)" fill="#DCDCDC"/>
|
||||
<rect x="26.5" y="50.0049" width="2" height="2" transform="rotate(180 26.5 50.0049)" fill="#DCDCDC"/>
|
||||
<rect x="28.5" y="52.0049" width="2" height="2" transform="rotate(180 28.5 52.0049)" fill="#DCDCDC"/>
|
||||
<rect x="30.5" y="54.0039" width="2" height="2" transform="rotate(180 30.5 54.0039)" fill="#DCDCDC"/>
|
||||
<rect x="20.5" y="44.0078" width="2" height="2" transform="rotate(180 20.5 44.0078)" fill="#DCDCDC"/>
|
||||
<rect x="22.5" y="46.0078" width="2" height="2" transform="rotate(180 22.5 46.0078)" fill="#DCDCDC"/>
|
||||
<rect x="24.5" y="48.0068" width="2" height="2" transform="rotate(180 24.5 48.0068)" fill="#DCDCDC"/>
|
||||
<rect x="14.5" y="38.0088" width="2" height="2" transform="rotate(180 14.5 38.0088)" fill="#DCDCDC"/>
|
||||
<rect x="16.5" y="40.0078" width="2" height="2" transform="rotate(180 16.5 40.0078)" fill="#DCDCDC"/>
|
||||
<rect x="18.5" y="42.0078" width="2" height="2" transform="rotate(180 18.5 42.0078)" fill="#DCDCDC"/>
|
||||
<path d="M36.5 0L0.5 35.9907L36.5 71.9815L72.5 35.9907L36.5 0Z" fill="#252525"/>
|
||||
<rect x="40.5" y="3.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="38.5" y="1.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="36.5" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="46.5" y="9.99805" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="44.5" y="7.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="42.5" y="5.99902" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="52.5" y="15.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="50.5" y="13.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="48.5" y="11.9971" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="58.5" y="21.9951" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="56.5" y="19.9951" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="54.5" y="17.9961" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="64.5" y="27.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="62.5" y="25.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="60.5" y="23.9932" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="70.5" y="33.9912" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="68.5" y="31.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect x="66.5" y="29.9922" width="2" height="2" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 40.5 68.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 38.5 70.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 36.5 72)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 46.5 62.002)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 44.5 64.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 42.5 66.001)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 52.5 56.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 50.5 58.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 48.5 60.0029)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 58.5 50.0049)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 56.5 52.0049)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 54.5 54.0039)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 64.5 44.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 62.5 46.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 60.5 48.0068)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 70.5 38.0088)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 68.5 40.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 66.5 42.0078)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32.5 3.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34.5 1.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36.5 0)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 9.99805)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 7.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 5.99902)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 15.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 13.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 11.9971)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 21.9951)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 19.9951)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 17.9961)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 8.5 27.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 10.5 25.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 12.5 23.9932)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 2.5 33.9912)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 4.5 31.9922)" fill="#DCDCDC"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 6.5 29.9922)" fill="#DCDCDC"/>
|
||||
<rect x="32.5" y="68.001" width="2" height="2" transform="rotate(180 32.5 68.001)" fill="#DCDCDC"/>
|
||||
<rect x="34.5" y="70.001" width="2" height="2" transform="rotate(180 34.5 70.001)" fill="#DCDCDC"/>
|
||||
<rect x="36.5" y="72" width="2" height="2" transform="rotate(180 36.5 72)" fill="#DCDCDC"/>
|
||||
<rect x="26.5" y="62.002" width="2" height="2" transform="rotate(180 26.5 62.002)" fill="#DCDCDC"/>
|
||||
<rect x="28.5" y="64.001" width="2" height="2" transform="rotate(180 28.5 64.001)" fill="#DCDCDC"/>
|
||||
<rect x="30.5" y="66.001" width="2" height="2" transform="rotate(180 30.5 66.001)" fill="#DCDCDC"/>
|
||||
<rect x="20.5" y="56.0039" width="2" height="2" transform="rotate(180 20.5 56.0039)" fill="#DCDCDC"/>
|
||||
<rect x="22.5" y="58.0039" width="2" height="2" transform="rotate(180 22.5 58.0039)" fill="#DCDCDC"/>
|
||||
<rect x="24.5" y="60.0029" width="2" height="2" transform="rotate(180 24.5 60.0029)" fill="#DCDCDC"/>
|
||||
<rect x="14.5" y="50.0049" width="2" height="2" transform="rotate(180 14.5 50.0049)" fill="#DCDCDC"/>
|
||||
<rect x="16.5" y="52.0049" width="2" height="2" transform="rotate(180 16.5 52.0049)" fill="#DCDCDC"/>
|
||||
<rect x="18.5" y="54.0039" width="2" height="2" transform="rotate(180 18.5 54.0039)" fill="#DCDCDC"/>
|
||||
<rect x="8.5" y="44.0078" width="2" height="2" transform="rotate(180 8.5 44.0078)" fill="#DCDCDC"/>
|
||||
<rect x="10.5" y="46.0078" width="2" height="2" transform="rotate(180 10.5 46.0078)" fill="#DCDCDC"/>
|
||||
<rect x="12.5" y="48.0068" width="2" height="2" transform="rotate(180 12.5 48.0068)" fill="#DCDCDC"/>
|
||||
<rect x="2.5" y="38.0088" width="2" height="2" transform="rotate(180 2.5 38.0088)" fill="#DCDCDC"/>
|
||||
<rect x="4.5" y="40.0078" width="2" height="2" transform="rotate(180 4.5 40.0078)" fill="#DCDCDC"/>
|
||||
<rect x="6.5" y="42.0078" width="2" height="2" transform="rotate(180 6.5 42.0078)" fill="#DCDCDC"/>
|
||||
<rect x="33.5" y="23.0039" width="6" height="15.9959" fill="#DCDCDC"/>
|
||||
<rect x="33.5" y="42.999" width="6" height="2" fill="#DCDCDC"/>
|
||||
<rect x="33.5" y="44.998" width="6" height="2" fill="#DCDCDC"/>
|
||||
<rect x="33.5" y="46.998" width="6" height="2" fill="#DCDCDC"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M28 53C41.7381 53 52.875 41.8631 52.875 28.125C52.875 14.3869 41.7381 3.25 28 3.25C14.2619 3.25 3.125 14.3869 3.125 28.125C3.125 41.8631 14.2619 53 28 53ZM55.875 28.125C55.875 43.5199 43.3949 56 28 56C12.6051 56 0.125 43.5199 0.125 28.125C0.125 12.7301 12.6051 0.25 28 0.25C43.3949 0.25 55.875 12.7301 55.875 28.125Z" fill="#FFB522"/>
|
||||
<path d="M28 33.043C27.043 33.043 26.4766 32.418 26.457 31.4219L26.2617 15.3477C26.2617 14.293 27.0234 13.5898 28 13.5898C28.9766 13.5898 29.7383 14.293 29.7383 15.3477L29.543 31.4219C29.5234 32.418 28.957 33.043 28 33.043ZM28 42.3203C26.75 42.3203 25.7734 41.3438 25.7734 40.0938C25.7734 38.8242 26.75 37.8672 28 37.8672C29.2695 37.8672 30.2266 38.8242 30.2266 40.0938C30.2266 41.3438 29.2695 42.3203 28 42.3203Z" fill="#FFB522"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 921 B |
|
@ -1,225 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="96" height="72" viewBox="0 0 96 72" fill="none">
|
||||
<path d="M59.5 -0.00927734L23.5 35.9907L59.5 71.9907L95.5 35.9907L59.5 -0.00927734Z" fill="white"/>
|
||||
<rect x="63.5" y="3.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="61.5" y="1.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="59.5" y="-0.00927734" width="2" height="2" fill="#252525"/>
|
||||
<rect x="69.5" y="9.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="67.5" y="7.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="65.5" y="5.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="75.5" y="15.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="73.5" y="13.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="71.5" y="11.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="81.5" y="21.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="79.5" y="19.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="77.5" y="17.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="87.5" y="27.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="85.5" y="25.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="83.5" y="23.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="93.5" y="33.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="91.5" y="31.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="89.5" y="29.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 63.5 68.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 61.5 70.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 59.5 72.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 69.5 62.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 67.5 64.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 65.5 66.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 75.5 56.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 73.5 58.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 71.5 60.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 81.5 50.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 79.5 52.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 77.5 54.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 87.5 44.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 85.5 46.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 83.5 48.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 93.5 38.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 91.5 40.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 89.5 42.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 55.5 3.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 57.5 1.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 59.5 -0.00927734)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 49.5 9.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 51.5 7.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 53.5 5.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 43.5 15.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 45.5 13.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 47.5 11.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 37.5 21.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 39.5 19.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 41.5 17.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 31.5 27.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 33.5 25.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 35.5 23.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 25.5 33.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 27.5 31.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 29.5 29.9907)" fill="#252525"/>
|
||||
<rect x="55.5" y="68.0093" width="2" height="2" transform="rotate(180 55.5 68.0093)" fill="#252525"/>
|
||||
<rect x="57.5" y="70.0093" width="2" height="2" transform="rotate(180 57.5 70.0093)" fill="#252525"/>
|
||||
<rect x="59.5" y="72.0093" width="2" height="2" transform="rotate(180 59.5 72.0093)" fill="#252525"/>
|
||||
<rect x="49.5" y="62.0093" width="2" height="2" transform="rotate(180 49.5 62.0093)" fill="#252525"/>
|
||||
<rect x="51.5" y="64.0093" width="2" height="2" transform="rotate(180 51.5 64.0093)" fill="#252525"/>
|
||||
<rect x="53.5" y="66.0093" width="2" height="2" transform="rotate(180 53.5 66.0093)" fill="#252525"/>
|
||||
<rect x="43.5" y="56.0093" width="2" height="2" transform="rotate(180 43.5 56.0093)" fill="#252525"/>
|
||||
<rect x="45.5" y="58.0093" width="2" height="2" transform="rotate(180 45.5 58.0093)" fill="#252525"/>
|
||||
<rect x="47.5" y="60.0093" width="2" height="2" transform="rotate(180 47.5 60.0093)" fill="#252525"/>
|
||||
<rect x="37.5" y="50.0093" width="2" height="2" transform="rotate(180 37.5 50.0093)" fill="#252525"/>
|
||||
<rect x="39.5" y="52.0093" width="2" height="2" transform="rotate(180 39.5 52.0093)" fill="#252525"/>
|
||||
<rect x="41.5" y="54.0093" width="2" height="2" transform="rotate(180 41.5 54.0093)" fill="#252525"/>
|
||||
<rect x="31.5" y="44.0093" width="2" height="2" transform="rotate(180 31.5 44.0093)" fill="#252525"/>
|
||||
<rect x="33.5" y="46.0093" width="2" height="2" transform="rotate(180 33.5 46.0093)" fill="#252525"/>
|
||||
<rect x="35.5" y="48.0093" width="2" height="2" transform="rotate(180 35.5 48.0093)" fill="#252525"/>
|
||||
<rect x="25.5" y="38.0093" width="2" height="2" transform="rotate(180 25.5 38.0093)" fill="#252525"/>
|
||||
<rect x="27.5" y="40.0093" width="2" height="2" transform="rotate(180 27.5 40.0093)" fill="#252525"/>
|
||||
<rect x="29.5" y="42.0093" width="2" height="2" transform="rotate(180 29.5 42.0093)" fill="#252525"/>
|
||||
<path d="M48.5 -0.00927734L12.5 35.9907L48.5 71.9907L84.5 35.9907L48.5 -0.00927734Z" fill="white"/>
|
||||
<rect x="52.5" y="3.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="50.5" y="1.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="48.5" y="-0.00927734" width="2" height="2" fill="#252525"/>
|
||||
<rect x="58.5" y="9.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="56.5" y="7.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="54.5" y="5.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="64.5" y="15.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="62.5" y="13.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="60.5" y="11.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="70.5" y="21.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="68.5" y="19.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="66.5" y="17.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="76.5" y="27.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="74.5" y="25.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="72.5" y="23.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="82.5" y="33.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="80.5" y="31.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="78.5" y="29.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 52.5 68.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 50.5 70.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 48.5 72.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 58.5 62.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 56.5 64.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 54.5 66.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 64.5 56.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 62.5 58.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 60.5 60.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 70.5 50.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 68.5 52.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 66.5 54.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 76.5 44.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 74.5 46.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 72.5 48.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 82.5 38.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 80.5 40.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 78.5 42.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 44.5 3.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 46.5 1.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 48.5 -0.00927734)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 38.5 9.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 40.5 7.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 42.5 5.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32.5 15.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34.5 13.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36.5 11.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 21.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 19.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 17.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 27.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 25.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 23.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 33.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 31.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 29.9907)" fill="#252525"/>
|
||||
<rect x="44.5" y="68.0093" width="2" height="2" transform="rotate(180 44.5 68.0093)" fill="#252525"/>
|
||||
<rect x="46.5" y="70.0093" width="2" height="2" transform="rotate(180 46.5 70.0093)" fill="#252525"/>
|
||||
<rect x="48.5" y="72.0093" width="2" height="2" transform="rotate(180 48.5 72.0093)" fill="#252525"/>
|
||||
<rect x="38.5" y="62.0093" width="2" height="2" transform="rotate(180 38.5 62.0093)" fill="#252525"/>
|
||||
<rect x="40.5" y="64.0093" width="2" height="2" transform="rotate(180 40.5 64.0093)" fill="#252525"/>
|
||||
<rect x="42.5" y="66.0093" width="2" height="2" transform="rotate(180 42.5 66.0093)" fill="#252525"/>
|
||||
<rect x="32.5" y="56.0093" width="2" height="2" transform="rotate(180 32.5 56.0093)" fill="#252525"/>
|
||||
<rect x="34.5" y="58.0093" width="2" height="2" transform="rotate(180 34.5 58.0093)" fill="#252525"/>
|
||||
<rect x="36.5" y="60.0093" width="2" height="2" transform="rotate(180 36.5 60.0093)" fill="#252525"/>
|
||||
<rect x="26.5" y="50.0093" width="2" height="2" transform="rotate(180 26.5 50.0093)" fill="#252525"/>
|
||||
<rect x="28.5" y="52.0093" width="2" height="2" transform="rotate(180 28.5 52.0093)" fill="#252525"/>
|
||||
<rect x="30.5" y="54.0093" width="2" height="2" transform="rotate(180 30.5 54.0093)" fill="#252525"/>
|
||||
<rect x="20.5" y="44.0093" width="2" height="2" transform="rotate(180 20.5 44.0093)" fill="#252525"/>
|
||||
<rect x="22.5" y="46.0093" width="2" height="2" transform="rotate(180 22.5 46.0093)" fill="#252525"/>
|
||||
<rect x="24.5" y="48.0093" width="2" height="2" transform="rotate(180 24.5 48.0093)" fill="#252525"/>
|
||||
<rect x="14.5" y="38.0093" width="2" height="2" transform="rotate(180 14.5 38.0093)" fill="#252525"/>
|
||||
<rect x="16.5" y="40.0093" width="2" height="2" transform="rotate(180 16.5 40.0093)" fill="#252525"/>
|
||||
<rect x="18.5" y="42.0093" width="2" height="2" transform="rotate(180 18.5 42.0093)" fill="#252525"/>
|
||||
<path d="M36.5 -0.00927734L0.5 35.9907L36.5 71.9907L72.5 35.9907L36.5 -0.00927734Z" fill="white"/>
|
||||
<rect x="40.5" y="3.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="38.5" y="1.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="36.5" y="-0.00927734" width="2" height="2" fill="#252525"/>
|
||||
<rect x="46.5" y="9.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="44.5" y="7.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="42.5" y="5.99072" width="2" height="2" fill="#252525"/>
|
||||
<rect x="52.5" y="15.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="50.5" y="13.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="48.5" y="11.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="58.5" y="21.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="56.5" y="19.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="54.5" y="17.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="64.5" y="27.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="62.5" y="25.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="60.5" y="23.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="70.5" y="33.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="68.5" y="31.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect x="66.5" y="29.9907" width="2" height="2" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 40.5 68.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 38.5 70.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 36.5 72.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 46.5 62.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 44.5 64.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 42.5 66.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 52.5 56.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 50.5 58.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 48.5 60.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 58.5 50.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 56.5 52.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 54.5 54.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 64.5 44.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 62.5 46.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 60.5 48.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 70.5 38.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 68.5 40.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(1 0 0 -1 66.5 42.0093)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 32.5 3.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 34.5 1.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 36.5 -0.00927734)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 26.5 9.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 28.5 7.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 30.5 5.99072)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 20.5 15.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 22.5 13.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 24.5 11.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 14.5 21.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 16.5 19.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 18.5 17.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 8.5 27.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 10.5 25.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 12.5 23.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 2.5 33.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 4.5 31.9907)" fill="#252525"/>
|
||||
<rect width="2" height="2" transform="matrix(-1 0 0 1 6.5 29.9907)" fill="#252525"/>
|
||||
<rect x="32.5" y="68.0093" width="2" height="2" transform="rotate(180 32.5 68.0093)" fill="#252525"/>
|
||||
<rect x="34.5" y="70.0093" width="2" height="2" transform="rotate(180 34.5 70.0093)" fill="#252525"/>
|
||||
<rect x="36.5" y="72.0093" width="2" height="2" transform="rotate(180 36.5 72.0093)" fill="#252525"/>
|
||||
<rect x="26.5" y="62.0093" width="2" height="2" transform="rotate(180 26.5 62.0093)" fill="#252525"/>
|
||||
<rect x="28.5" y="64.0093" width="2" height="2" transform="rotate(180 28.5 64.0093)" fill="#252525"/>
|
||||
<rect x="30.5" y="66.0093" width="2" height="2" transform="rotate(180 30.5 66.0093)" fill="#252525"/>
|
||||
<rect x="20.5" y="56.0093" width="2" height="2" transform="rotate(180 20.5 56.0093)" fill="#252525"/>
|
||||
<rect x="22.5" y="58.0093" width="2" height="2" transform="rotate(180 22.5 58.0093)" fill="#252525"/>
|
||||
<rect x="24.5" y="60.0093" width="2" height="2" transform="rotate(180 24.5 60.0093)" fill="#252525"/>
|
||||
<rect x="14.5" y="50.0093" width="2" height="2" transform="rotate(180 14.5 50.0093)" fill="#252525"/>
|
||||
<rect x="16.5" y="52.0093" width="2" height="2" transform="rotate(180 16.5 52.0093)" fill="#252525"/>
|
||||
<rect x="18.5" y="54.0093" width="2" height="2" transform="rotate(180 18.5 54.0093)" fill="#252525"/>
|
||||
<rect x="8.5" y="44.0093" width="2" height="2" transform="rotate(180 8.5 44.0093)" fill="#252525"/>
|
||||
<rect x="10.5" y="46.0093" width="2" height="2" transform="rotate(180 10.5 46.0093)" fill="#252525"/>
|
||||
<rect x="12.5" y="48.0093" width="2" height="2" transform="rotate(180 12.5 48.0093)" fill="#252525"/>
|
||||
<rect x="2.5" y="38.0093" width="2" height="2" transform="rotate(180 2.5 38.0093)" fill="#252525"/>
|
||||
<rect x="4.5" y="40.0093" width="2" height="2" transform="rotate(180 4.5 40.0093)" fill="#252525"/>
|
||||
<rect x="6.5" y="42.0093" width="2" height="2" transform="rotate(180 6.5 42.0093)" fill="#252525"/>
|
||||
<rect x="33.5" y="23.0044" width="6" height="15.9959" fill="#252525"/>
|
||||
<rect x="33.5" y="42.999" width="6" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="44.9985" width="6" height="2" fill="#252525"/>
|
||||
<rect x="33.5" y="46.998" width="6" height="2" fill="#252525"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 19 KiB |
3
src/img/icon/settings/chat.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.93066 17.1943C4.66634 17.1943 4.49772 17.1077 4.4248 16.9346C4.35645 16.766 4.38835 16.5951 4.52051 16.4219C4.6071 16.3079 4.73014 16.1553 4.88965 15.9639C5.05371 15.777 5.22233 15.5719 5.39551 15.3486C5.56868 15.1253 5.71908 14.9089 5.84668 14.6992C5.87402 14.6491 5.87858 14.6012 5.86035 14.5557C5.84668 14.5055 5.81478 14.4668 5.76465 14.4395C5.03548 14.0475 4.4043 13.5804 3.87109 13.0381C3.34245 12.4912 2.93457 11.8896 2.64746 11.2334C2.36491 10.5771 2.22363 9.88444 2.22363 9.15527C2.22363 8.29395 2.42188 7.4873 2.81836 6.73535C3.2194 5.9834 3.77311 5.32487 4.47949 4.75977C5.19043 4.1901 6.0153 3.74577 6.9541 3.42676C7.8929 3.10319 8.90006 2.94141 9.97559 2.94141C11.0511 2.94141 12.0583 3.10319 12.9971 3.42676C13.9359 3.74577 14.7585 4.1901 15.4648 4.75977C16.1758 5.32487 16.7295 5.9834 17.126 6.73535C17.527 7.4873 17.7275 8.29395 17.7275 9.15527C17.7275 9.83431 17.6022 10.4837 17.3516 11.1035C17.1009 11.7233 16.7386 12.293 16.2646 12.8125C15.7907 13.3275 15.2165 13.7764 14.542 14.1592C13.8721 14.542 13.1156 14.8382 12.2725 15.0479C11.4294 15.2575 10.5156 15.3623 9.53125 15.3623C9.49023 15.3623 9.44694 15.36 9.40137 15.3555C9.35579 15.3555 9.31022 15.3532 9.26465 15.3486C9.21908 15.3486 9.17122 15.3577 9.12109 15.376C9.07096 15.3942 9.01628 15.4238 8.95703 15.4648C8.66536 15.6745 8.3304 15.8796 7.95215 16.0801C7.57845 16.2852 7.19792 16.472 6.81055 16.6406C6.42773 16.8092 6.06999 16.9437 5.7373 17.0439C5.40462 17.1442 5.13574 17.1943 4.93066 17.1943Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
5
src/img/icon/settings/space/bin.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.04076 6.35156H4.03906L6.01172 15.1523L13.9941 15.1582L15.9648 6.35156H15.9592C15.6111 7.84276 13.0758 9 10 9C6.92415 9 4.38888 7.84276 4.04076 6.35156Z" fill="#252525"/>
|
||||
<ellipse cx="10" cy="15" rx="4" ry="2" fill="#252525"/>
|
||||
<path d="M15.5 6C15.5 6.53701 15.0517 7.15779 14.019 7.67411C13.0163 8.17547 11.5961 8.5 10 8.5C8.40394 8.5 6.98369 8.17547 5.98097 7.67411C4.94833 7.15779 4.5 6.53701 4.5 6C4.5 5.46299 4.94833 4.84221 5.98097 4.32589C6.98369 3.82453 8.40394 3.5 10 3.5C11.5961 3.5 13.0163 3.82453 14.019 4.32589C15.0517 4.84221 15.5 5.46299 15.5 6Z" stroke="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 746 B |
8
src/img/icon/settings/space/relation.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 5C2 4.17157 2.67157 3.5 3.5 3.5C4.32843 3.5 5 4.17157 5 5C5 5.82843 4.32843 6.5 3.5 6.5C2.67157 6.5 2 5.82843 2 5Z" fill="#252525"/>
|
||||
<path d="M2 10C2 9.17157 2.67157 8.5 3.5 8.5C4.32843 8.5 5 9.17157 5 10C5 10.8284 4.32843 11.5 3.5 11.5C2.67157 11.5 2 10.8284 2 10Z" fill="#252525"/>
|
||||
<path d="M2 15C2 14.1716 2.67157 13.5 3.5 13.5C4.32843 13.5 5 14.1716 5 15C5 15.8284 4.32843 16.5 3.5 16.5C2.67157 16.5 2 15.8284 2 15Z" fill="#252525"/>
|
||||
<path d="M7 5C7 4.58579 7.33579 4.25 7.75 4.25H17.25C17.6642 4.25 18 4.58579 18 5C18 5.41421 17.6642 5.75 17.25 5.75H7.75C7.33579 5.75 7 5.41421 7 5Z" fill="#252525"/>
|
||||
<path d="M7 10C7 9.58579 7.33579 9.25 7.75 9.25H17.25C17.6642 9.25 18 9.58579 18 10C18 10.4142 17.6642 10.75 17.25 10.75H7.75C7.33579 10.75 7 10.4142 7 10Z" fill="#252525"/>
|
||||
<path d="M7 15C7 14.5858 7.33579 14.25 7.75 14.25H17.25C17.6642 14.25 18 14.5858 18 15C18 15.4142 17.6642 15.75 17.25 15.75H7.75C7.33579 15.75 7 15.4142 7 15Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
3
src/img/icon/settings/space/type.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path d="M2.65231 17.3477C2.30375 16.9991 2.08379 16.6337 1.99242 16.2513C1.89766 15.8655 1.90612 15.4949 2.0178 15.1396C2.12947 14.7775 2.32236 14.4594 2.59647 14.1853C2.76906 14.0127 2.9518 13.8807 3.14469 13.7894C3.3342 13.6946 3.55247 13.6185 3.7995 13.5609C4.033 13.5034 4.17514 13.4086 4.2259 13.2767C4.28004 13.1413 4.24451 13.011 4.1193 12.8858L2.24114 11.0077C1.74369 10.5102 1.49665 10.006 1.50003 9.49498C1.50342 8.97722 1.75891 8.46453 2.26652 7.95692L3.62184 6.60161C3.74367 6.47978 3.87226 6.44594 4.00762 6.50009C4.14299 6.54746 4.23943 6.6879 4.29696 6.9214C4.35449 7.17521 4.42894 7.39855 4.52031 7.59145C4.61168 7.77757 4.74366 7.95692 4.91624 8.12951C5.19035 8.40362 5.50845 8.59651 5.87055 8.70819C6.22926 8.81648 6.59981 8.82494 6.98221 8.73357C7.368 8.63881 7.73347 8.41885 8.07865 8.07367C8.42382 7.7285 8.64209 7.36471 8.73346 6.98232C8.82822 6.59653 8.81976 6.22598 8.70808 5.87065C8.59641 5.50856 8.40352 5.19045 8.12941 4.91635C7.95682 4.74376 7.77747 4.61178 7.59134 4.52041C7.40184 4.42566 7.18018 4.34952 6.92638 4.29199C6.69288 4.23446 6.55075 4.1397 6.49998 4.00773C6.44922 3.86898 6.48476 3.73869 6.60658 3.61687L7.9619 2.26155C8.46612 1.75732 8.97712 1.50352 9.49488 1.50014C10.0093 1.49337 10.5152 1.73871 11.0126 2.23617L12.8908 4.11432C13.016 4.23953 13.1446 4.27676 13.2766 4.226C13.4119 4.17185 13.5067 4.02972 13.5608 3.79961C13.6217 3.54919 13.6996 3.32922 13.7943 3.13972C13.8857 2.94682 14.016 2.76578 14.1852 2.59657C14.4627 2.31908 14.7808 2.12619 15.1395 2.0179C15.4982 1.90284 15.8704 1.89269 16.2562 1.98744C16.6386 2.07881 17.0041 2.29878 17.3527 2.64733C17.6978 2.99251 17.9178 3.35799 18.0126 3.74377C18.1039 4.12617 18.0938 4.49842 17.9821 4.86051C17.8704 5.21584 17.6758 5.53225 17.3984 5.80974C17.2291 5.97894 17.0498 6.11092 16.8603 6.20568C16.6674 6.29704 16.4457 6.37319 16.1953 6.4341C15.9652 6.48824 15.8231 6.583 15.7689 6.71836C15.7182 6.85034 15.7554 6.97893 15.8806 7.10414L17.7588 8.9823C18.2596 9.48314 18.5066 9.99075 18.4999 10.5051C18.4931 11.0195 18.2376 11.5288 17.7334 12.033L16.3781 13.3883C16.2562 13.5102 16.1276 13.5474 15.9923 13.5C15.8603 13.4493 15.7655 13.3071 15.708 13.0736C15.6505 12.8198 15.5743 12.5982 15.4796 12.4087C15.3882 12.2225 15.2562 12.0432 15.0837 11.8706C14.8095 11.5965 14.4914 11.4036 14.1293 11.2919C13.7706 11.1769 13.4001 11.1684 13.0177 11.2665C12.6353 11.3579 12.2715 11.5762 11.9263 11.9214C11.5812 12.2665 11.3612 12.632 11.2664 13.0178C11.1717 13.3968 11.1801 13.7674 11.2918 14.1295C11.4035 14.4915 11.5964 14.8096 11.8705 15.0838C12.0431 15.2563 12.2224 15.3883 12.4086 15.4797C12.6014 15.5711 12.8248 15.6455 13.0786 15.703C13.3121 15.7606 13.4525 15.857 13.4999 15.9924C13.5507 16.1244 13.5151 16.2513 13.3933 16.3731L12.038 17.7284C11.5304 18.236 11.0194 18.4932 10.505 18.5C9.99403 18.5034 9.48811 18.2546 8.98727 17.7538L7.10912 15.8756C6.98391 15.7504 6.85362 15.7149 6.71826 15.769C6.58628 15.8198 6.49153 15.9619 6.434 16.1954C6.37647 16.4425 6.30202 16.6624 6.21065 16.8553C6.11589 17.0448 5.98222 17.2259 5.80964 17.3985C5.53553 17.6726 5.21912 17.8671 4.86041 17.9822C4.5017 18.0905 4.13114 18.099 3.74874 18.0076C3.36296 17.9128 2.99748 17.6929 2.65231 17.3477Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
3
src/img/icon/settings/widget.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.99636 2C10.3969 2 10.7319 2.335 10.7319 2.73555V4.97132C10.7319 5.36459 10.3969 5.69959 9.99636 5.69959C9.6031 5.69959 9.26809 5.36459 9.26809 4.97132V2.73555C9.26809 2.335 9.6031 2 9.99636 2ZM13.0405 6.96677C12.7638 6.68275 12.7565 6.20938 13.0405 5.93264L14.6063 4.36686C14.883 4.08284 15.3564 4.08284 15.6331 4.35958C15.9172 4.6436 15.9172 5.11698 15.6404 5.39372L14.0746 6.95949C13.7979 7.24351 13.3173 7.24351 13.0405 6.96677ZM6.94492 6.96677C6.66818 7.24351 6.19481 7.23623 5.91807 6.95949L4.36686 5.38644C4.09012 5.10969 4.09012 4.63632 4.36686 4.35958C4.6436 4.08284 5.11698 4.09012 5.401 4.36686L6.95221 5.93264C7.22895 6.20938 7.22895 6.68275 6.94492 6.96677ZM2 9.99636C2 9.6031 2.335 9.26809 2.72827 9.26809H4.97132C5.37187 9.26809 5.70687 9.6031 5.70687 9.99636C5.70687 10.3896 5.37187 10.7246 4.97132 10.7246H2.72827C2.335 10.7246 2 10.3896 2 9.99636ZM18 9.99636C18 10.3896 17.665 10.7246 17.2645 10.7246H15.0287C14.6354 10.7246 14.3004 10.3896 14.3004 9.99636C14.3004 9.6031 14.6354 9.26809 15.0287 9.26809H17.2645C17.665 9.26809 18 9.6031 18 9.99636ZM4.34502 15.6186C4.07556 15.3418 4.07556 14.8685 4.35958 14.5917L5.92535 13.0405C6.20209 12.7638 6.67547 12.7638 6.95221 13.0405C7.22895 13.3245 7.22895 13.7906 6.94492 14.0746L5.38644 15.6331C5.10241 15.9099 4.62904 15.9026 4.34502 15.6186ZM9.99636 14.3004C10.3969 14.3004 10.7319 14.6354 10.7319 15.0287V17.2645C10.7319 17.665 10.3969 18 9.99636 18C9.6031 18 9.26809 17.665 9.26809 17.2645V15.0287C9.26809 14.6354 9.6031 14.3004 9.99636 14.3004ZM9.71715 8.30979C9.32663 7.91926 8.69346 7.91926 8.30294 8.30979C7.91241 8.70031 7.91241 9.33347 8.30294 9.724L15.374 16.7951C15.7645 17.1856 16.3977 17.1856 16.7882 16.7951C17.1787 16.4045 17.1787 15.7714 16.7882 15.3809L9.71715 8.30979Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
4
src/img/icon/sidebar/question.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="10" cy="10" r="9" fill="#EBEBEB"/>
|
||||
<path d="M8.83736 12.0078H10.4929V11.8786C10.5028 10.8246 10.8459 10.3423 11.6562 9.84517C12.571 9.2983 13.1428 8.55256 13.1428 7.41406C13.1428 5.73367 11.8352 4.67969 9.93608 4.67969C8.19602 4.67969 6.78409 5.64418 6.73438 7.53338H8.50426C8.54901 6.59872 9.22514 6.15128 9.92614 6.15128C10.6868 6.15128 11.2983 6.65838 11.2983 7.43892C11.2983 8.13494 10.8359 8.61222 10.2344 8.99006C9.3544 9.53693 8.8473 10.0888 8.83736 11.8786V12.0078ZM9.70739 15.1101C10.294 15.1101 10.7962 14.6229 10.8011 14.0163C10.7962 13.4197 10.294 12.9325 9.70739 12.9325C9.10085 12.9325 8.60866 13.4197 8.61364 14.0163C8.60866 14.6229 9.10085 15.1101 9.70739 15.1101Z" fill="#949494"/>
|
||||
</svg>
|
After Width: | Height: | Size: 813 B |
3
src/img/icon/toast/check.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5 10L9 14.5L15 5.5" stroke="white" stroke-width="1.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 168 B |
3
src/img/icon/type/default/contact.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 19 18" fill="none">
|
||||
<path d="M13.4375 0.5625H5.5625C4.96596 0.563151 4.39404 0.800413 3.97223 1.22223C3.55041 1.64404 3.31315 2.21596 3.3125 2.8125V15.1875C3.31315 15.784 3.55041 16.356 3.97223 16.7778C4.39404 17.1996 4.96596 17.4368 5.5625 17.4375H13.4375C14.034 17.4368 14.606 17.1996 15.0278 16.7778C15.4496 16.356 15.6868 15.784 15.6875 15.1875V2.8125C15.6868 2.21596 15.4496 1.64404 15.0278 1.22223C14.606 0.800413 14.034 0.563151 13.4375 0.5625ZM12.2239 10.0023C12.49 10.2895 12.6201 10.6759 12.5892 11.09C12.5284 11.9148 11.8994 12.5859 11.1875 12.5859C10.4756 12.5859 9.84559 11.9148 9.78547 11.09C9.75523 10.6717 9.88426 10.2846 10.149 10.0002C10.4137 9.71578 10.7797 9.5625 11.1875 9.5625C11.3813 9.55971 11.5736 9.59738 11.7521 9.67311C11.9305 9.74884 12.0912 9.86096 12.2239 10.0023ZM7.25 2.8125C7.25 2.66332 7.30926 2.52024 7.41475 2.41475C7.52024 2.30926 7.66332 2.25 7.8125 2.25H11.1875C11.3367 2.25 11.4798 2.30926 11.5852 2.41475C11.6907 2.52024 11.75 2.66332 11.75 2.8125C11.75 2.96168 11.6907 3.10476 11.5852 3.21025C11.4798 3.31574 11.3367 3.375 11.1875 3.375H7.8125C7.66332 3.375 7.52024 3.31574 7.41475 3.21025C7.30926 3.10476 7.25 2.96168 7.25 2.8125ZM13.8945 15.6034C13.854 15.6503 13.8037 15.6877 13.7472 15.713C13.6906 15.7384 13.6292 15.751 13.5672 15.75H8.80777C8.74582 15.751 8.68439 15.7384 8.62784 15.713C8.57129 15.6877 8.52098 15.6503 8.48047 15.6034C8.43654 15.5508 8.40501 15.489 8.38822 15.4225C8.37142 15.356 8.36979 15.2867 8.38344 15.2195C8.4977 14.6021 8.85383 14.0836 9.41352 13.7197C9.91062 13.3966 10.5406 13.2188 11.1875 13.2188C11.8344 13.2188 12.4644 13.3966 12.9615 13.7197C13.5212 14.0836 13.8773 14.6021 13.9916 15.2195C14.0052 15.2867 14.0036 15.356 13.9868 15.4225C13.97 15.489 13.9385 15.5508 13.8945 15.6034Z" fill="_COLOR_VAR_"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -1,9 +1,5 @@
|
|||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.97869 13.0931C5.7048 13.4964 4.50486 12.2974 4.90725 11.0231L5.41284 9.42209C5.49117 9.17404 5.62881 8.94879 5.81386 8.7659L11.6477 3H3.5C2.11929 3 1 4.11929 1 5.5V14.5C1 15.8807 2.11929 17 3.5 17H12.5C13.8807 17 15 15.8807 15 14.5V6.35333L9.23482 12.1855C9.05227 12.3702 8.8275 12.5077 8.57988 12.5861L6.97869 13.0931ZM14.7696 4.45036C14.7699 4.45088 14.7701 4.45141 14.7704 4.45194L8.16805 11.131C8.15664 11.1426 8.14259 11.1512 8.12712 11.1561L6.52593 11.663C6.50996 11.6681 6.49412 11.6704 6.47877 11.6702C6.4934 11.6701 6.50846 11.6678 6.52363 11.663L8.12481 11.1561C8.14029 11.1512 8.15434 11.1426 8.16575 11.131L14.7696 4.45036Z" fill="_COLOR_VAR_"/>
|
||||
<mask id="path-2-outside-1_5841_49683" maskUnits="userSpaceOnUse" x="4.32812" y="-0.25" width="14" height="14" fill="black">
|
||||
<rect fill="white" x="4.32812" y="-0.25" width="14" height="14"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.33532 11.4748L6.84092 9.87377C6.84581 9.85827 6.85442 9.84419 6.86598 9.83276L13.3711 3.40342L14.5949 4.62717L8.16575 11.131C8.15434 11.1426 8.14029 11.1512 8.12481 11.1561L6.52363 11.663C6.40782 11.6997 6.29874 11.5907 6.33532 11.4748ZM15.1221 4.09377L16.0018 3.20384C16.3319 2.86996 16.3304 2.33224 15.9985 2.00019C15.6665 1.66804 15.1286 1.6664 14.7946 1.99651L13.9045 2.8762L15.1221 4.09377Z"/>
|
||||
</mask>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.33532 11.4748L6.84092 9.87377C6.84581 9.85827 6.85442 9.84419 6.86598 9.83276L13.3711 3.40342L14.5949 4.62717L8.16575 11.131C8.15434 11.1426 8.14029 11.1512 8.12481 11.1561L6.52363 11.663C6.40782 11.6997 6.29874 11.5907 6.33532 11.4748ZM15.1221 4.09377L16.0018 3.20384C16.3319 2.86996 16.3304 2.33224 15.9985 2.00019C15.6665 1.66804 15.1286 1.6664 14.7946 1.99651L13.9045 2.8762L15.1221 4.09377Z" fill="_COLOR_VAR_"/>
|
||||
<path d="M6.84092 9.87377L8.27129 10.3255L8.2713 10.3255L6.84092 9.87377ZM6.33532 11.4748L7.76569 11.9265L7.76569 11.9265L6.33532 11.4748ZM6.86598 9.83276L7.92038 10.8996L7.92041 10.8996L6.86598 9.83276ZM13.3711 3.40342L14.4318 2.34276L13.3773 1.2883L12.3167 2.33656L13.3711 3.40342ZM14.5949 4.62717L15.6616 5.68168L16.7101 4.62106L15.6555 3.56651L14.5949 4.62717ZM8.16575 11.131L7.09897 10.0765L7.09897 10.0765L8.16575 11.131ZM8.12481 11.1561L7.67207 9.72602L7.67205 9.72602L8.12481 11.1561ZM6.52363 11.663L6.97639 13.0931L6.9764 13.093L6.52363 11.663ZM15.1221 4.09377L14.0615 5.15444L15.1283 6.22124L16.1889 5.14829L15.1221 4.09377ZM16.0018 3.20384L17.0686 4.25835L17.0686 4.25835L16.0018 3.20384ZM15.9985 2.00019L17.0594 0.939786L17.0594 0.939785L15.9985 2.00019ZM14.7946 1.99651L13.7402 0.929657L13.7402 0.929657L14.7946 1.99651ZM13.9045 2.8762L12.8501 1.80934L11.777 2.86997L12.8439 3.93686L13.9045 2.8762ZM5.41054 9.42207L4.90494 11.0231L7.76569 11.9265L8.27129 10.3255L5.41054 9.42207ZM5.81158 8.76588C5.62652 8.94877 5.48887 9.17402 5.41054 9.42209L8.2713 10.3255C8.20276 10.5425 8.08232 10.7396 7.92038 10.8996L5.81158 8.76588ZM12.3167 2.33656L5.81155 8.7659L7.92041 10.8996L14.4255 4.47028L12.3167 2.33656ZM15.6555 3.56651L14.4318 2.34276L12.3104 4.46408L13.5342 5.68783L15.6555 3.56651ZM9.23252 12.1855L15.6616 5.68168L13.5281 3.57266L7.09897 10.0765L9.23252 12.1855ZM8.57756 12.5861C8.82518 12.5077 9.04997 12.3702 9.23252 12.1855L7.09897 10.0765C7.25871 9.91492 7.45539 9.79462 7.67207 9.72602L8.57756 12.5861ZM6.9764 13.093L8.57758 12.5861L7.67205 9.72602L6.07087 10.233L6.9764 13.093ZM4.90494 11.0231C4.50256 12.2974 5.7025 13.4964 6.97639 13.0931L6.07087 10.233C7.11314 9.90299 8.09492 10.884 7.76569 11.9265L4.90494 11.0231ZM16.1889 5.14829L17.0686 4.25835L14.9351 2.14933L14.0553 3.03926L16.1889 5.14829ZM17.0686 4.25835C17.9786 3.33782 17.9745 1.85527 17.0594 0.939786L14.9376 3.06059C14.6863 2.8092 14.6852 2.4021 14.9351 2.14933L17.0686 4.25835ZM17.0594 0.939785C16.1441 0.0240366 14.661 0.019512 13.7402 0.929657L15.849 3.06337C15.5962 3.31329 15.1889 3.31205 14.9376 3.06059L17.0594 0.939785ZM13.7402 0.929657L12.8501 1.80934L14.959 3.94305L15.849 3.06337L13.7402 0.929657ZM12.8439 3.93686L14.0615 5.15444L16.1828 3.03311L14.9652 1.81554L12.8439 3.93686Z" fill="white" mask="url(#path-2-outside-1_5841_49683)"/>
|
||||
</svg>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5667 3H3.5C2.11929 3 1 4.11929 1 5.5V14.5C1 15.8807 2.11929 17 3.5 17H12.5C13.8807 17 15 15.8807 15 14.5V6.2772L9.4067 11.9355C9.22415 12.1202 8.99937 12.2577 8.75176 12.3361L7.15058 12.843C5.87669 13.2464 4.67674 12.0474 5.07912 10.7731L5.58472 9.17209C5.66305 8.92404 5.80069 8.69879 5.98573 8.5159L11.5667 3Z" fill="_COLOR_VAR_"/>
|
||||
<path d="M6.33922 11.4748L6.84482 9.87377C6.84972 9.85827 6.85832 9.84419 6.86989 9.83276L13.375 3.40342L14.5988 4.62717L8.16965 11.131C8.15824 11.1426 8.14419 11.1512 8.12872 11.1561L6.52754 11.663C6.41173 11.6997 6.30264 11.5907 6.33922 11.4748Z" fill="_COLOR_VAR_"/>
|
||||
<path d="M15.126 4.09377L16.0057 3.20384C16.3358 2.86996 16.3343 2.33224 16.0024 2.00019C15.6704 1.66804 15.1325 1.6664 14.7985 1.99651L13.9084 2.8762L15.126 4.09377Z" fill="_COLOR_VAR_"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 948 B |
7
src/img/icon/type/layout.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 15.625C3 15.4179 3.16789 15.25 3.375 15.25H16.625C16.8321 15.25 17 15.4179 17 15.625V16.375C17 16.5821 16.8321 16.75 16.625 16.75H3.375C3.16789 16.75 3 16.5821 3 16.375V15.625Z" fill="#B6B6B6"/>
|
||||
<path d="M3 11.625C3 11.4179 3.16789 11.25 3.375 11.25H16.625C16.8321 11.25 17 11.4179 17 11.625V12.375C17 12.5821 16.8321 12.75 16.625 12.75H3.375C3.16789 12.75 3 12.5821 3 12.375V11.625Z" fill="#B6B6B6"/>
|
||||
<path d="M11 7.625C11 7.41789 11.1679 7.25 11.375 7.25H16.625C16.8321 7.25 17 7.41789 17 7.625V8.375C17 8.58211 16.8321 8.75 16.625 8.75H11.375C11.1679 8.75 11 8.58211 11 8.375V7.625Z" fill="#B6B6B6"/>
|
||||
<path d="M11 3.625C11 3.41789 11.1679 3.25 11.375 3.25H16.625C16.8321 3.25 17 3.41789 17 3.625V4.375C17 4.58211 16.8321 4.75 16.625 4.75H11.375C11.1679 4.75 11 4.58211 11 4.375V3.625Z" fill="#B6B6B6"/>
|
||||
<path d="M3 4.25C3 3.55964 3.55964 3 4.25 3H7.75C8.44036 3 9 3.55964 9 4.25V7.75C9 8.44036 8.44036 9 7.75 9H4.25C3.55964 9 3 8.44036 3 7.75V4.25Z" fill="#B6B6B6"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +1,3 @@
|
|||
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.5 8.5L10.5 12.5L6.5 8.5" stroke="#B6B6B6" stroke-linecap="round"/>
|
||||
<path d="M14.5 8.5L10.5 12.5L6.5 8.5" stroke="#252525" stroke-linecap="round"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 182 B |
|
@ -1,6 +1,4 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<ellipse cx="13.5" cy="5.5" rx="2.25" ry="2.5" fill="#252525"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.72754 11.046C10.9779 11.9536 11.8313 13.3749 11.9777 15H17.2501C17.6644 15 18.0001 14.6642 18.0001 14.25V13.5C18.0001 11.0147 15.9854 9 13.5001 9C11.9202 9 10.5304 9.81424 9.72754 11.046Z" fill="#252525"/>
|
||||
<path d="M2 15.5C2 13.0147 4.01472 11 6.5 11C8.98528 11 11 13.0147 11 15.5V16.2188C11 16.633 10.6642 16.9688 10.25 16.9688H2.75C2.33579 16.9688 2 16.633 2 16.2188V15.5Z" fill="#252525"/>
|
||||
<ellipse cx="6.5" cy="7.5" rx="2.25" ry="2.5" fill="#252525"/>
|
||||
</svg>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.75 5C12.75 6.65685 11.5188 8 10 8C8.48122 8 7.25 6.65685 7.25 5C7.25 3.34315 8.48122 2 10 2C11.5188 2 12.75 3.34315 12.75 5ZM4 15C4 11.6863 6.68629 9 10 9C11.3503 9 12.5965 9.44607 13.5991 10.1989C11.5196 10.8047 10 12.7249 10 15C10 15.7111 10.1484 16.3875 10.416 17H5.6C4.71635 17 4 16.2837 4 15.4V15Z" fill="#252525"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 19C17.2091 19 19 17.2091 19 15C19 12.7909 17.2091 11 15 11C12.7909 11 11 12.7909 11 15C11 17.2091 12.7909 19 15 19ZM15 17.5C14.5858 17.5 14.25 17.1642 14.25 16.75V15.75H13.25C12.8358 15.75 12.5 15.4142 12.5 15C12.5 14.5858 12.8358 14.25 13.25 14.25H14.25V13.25C14.25 12.8358 14.5858 12.5 15 12.5C15.4142 12.5 15.75 12.8358 15.75 13.25V14.25H16.75C17.1642 14.25 17.5 14.5858 17.5 15C17.5 15.4142 17.1642 15.75 16.75 15.75H15.75V16.75C15.75 17.1642 15.4142 17.5 15 17.5Z" fill="#252525"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 675 B After Width: | Height: | Size: 1,016 B |
|
@ -1,3 +1,3 @@
|
|||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 3.75879C9.58579 3.75879 9.25 4.09458 9.25 4.50879V10.0088H3.75C3.33579 10.0088 3 10.3446 3 10.7588C3 11.173 3.33579 11.5088 3.75 11.5088H9.25V17.0088C9.25 17.423 9.58579 17.7588 10 17.7588C10.4142 17.7588 10.75 17.423 10.75 17.0088V11.5088H16.25C16.6642 11.5088 17 11.173 17 10.7588C17 10.3446 16.6642 10.0088 16.25 10.0088H10.75V4.50879C10.75 4.09458 10.4142 3.75879 10 3.75879Z" fill="#B6B6B6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 3.75879C9.58579 3.75879 9.25 4.09458 9.25 4.50879V10.0088H3.75C3.33579 10.0088 3 10.3446 3 10.7588C3 11.173 3.33579 11.5088 3.75 11.5088H9.25V17.0088C9.25 17.423 9.58579 17.7588 10 17.7588C10.4142 17.7588 10.75 17.423 10.75 17.0088V11.5088H16.25C16.6642 11.5088 17 11.173 17 10.7588C17 10.3446 16.6642 10.0088 16.25 10.0088H10.75V4.50879C10.75 4.09458 10.4142 3.75879 10 3.75879Z" fill="#252525"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 553 B After Width: | Height: | Size: 553 B |
|
@ -1,4 +1,4 @@
|
|||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3794 12.2588L16.3179 16.1972C16.5607 16.4401 16.5607 16.8338 16.3179 17.0767C16.075 17.3195 15.6813 17.3195 15.4384 17.0767L11.5 13.1382L12.3794 12.2588Z" fill="#B6B6B6"/>
|
||||
<circle cx="8.75" cy="9.50879" r="4.625" stroke="#B6B6B6" stroke-width="1.25"/>
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="9" cy="9" r="5" stroke="#252525" stroke-width="2"/>
|
||||
<path d="M12 13.4141L13.4142 11.9998L16.9497 15.5354C17.3403 15.9259 17.3403 16.5591 16.9497 16.9496C16.5592 17.3401 15.9261 17.3401 15.5355 16.9496L12 13.4141Z" fill="#252525"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 345 B |
4
src/img/icon/widget/system/all.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2" y="6.99994" width="11" height="11" rx="5.5" fill="#252525"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 2.99994C8.11929 2.99994 7 4.11923 7 5.49994V6.01894C7.16502 6.00639 7.33176 6 7.5 6C11.0899 6 14 8.91015 14 12.5C14 12.6682 13.9936 12.8349 13.9811 12.9999H14.5C15.8807 12.9999 17 11.8807 17 10.4999V5.49994C17 4.11923 15.8807 2.99994 14.5 2.99994H9.5Z" fill="#252525"/>
|
||||
</svg>
|
After Width: | Height: | Size: 499 B |
|
@ -1,5 +1,5 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.04076 6.35156H4.03906L6.01172 15.1523L13.9941 15.1582L15.9648 6.35156H15.9592C15.6111 7.84276 13.0758 9 10 9C6.92415 9 4.38888 7.84276 4.04076 6.35156Z" fill="#B6B6B6"/>
|
||||
<ellipse cx="10" cy="15" rx="4" ry="2" fill="#B6B6B6"/>
|
||||
<path d="M15.5 6C15.5 6.53701 15.0517 7.15779 14.019 7.67411C13.0163 8.17547 11.5961 8.5 10 8.5C8.40394 8.5 6.98369 8.17547 5.98097 7.67411C4.94833 7.15779 4.5 6.53701 4.5 6C4.5 5.46299 4.94833 4.84221 5.98097 4.32589C6.98369 3.82453 8.40394 3.5 10 3.5C11.5961 3.5 13.0163 3.82453 14.019 4.32589C15.0517 4.84221 15.5 5.46299 15.5 6Z" stroke="#B6B6B6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.04076 6.35156H4.03906L6.01172 15.1523L13.9941 15.1582L15.9648 6.35156H15.9592C15.6111 7.84276 13.0758 9 10 9C6.92415 9 4.38888 7.84276 4.04076 6.35156Z" fill="#252525"/>
|
||||
<ellipse cx="10" cy="15" rx="4" ry="2" fill="#252525"/>
|
||||
<path d="M15.5 6C15.5 6.53701 15.0517 7.15779 14.019 7.67411C13.0163 8.17547 11.5961 8.5 10 8.5C8.40394 8.5 6.98369 8.17547 5.98097 7.67411C4.94833 7.15779 4.5 6.53701 4.5 6C4.5 5.46299 4.94833 4.84221 5.98097 4.32589C6.98369 3.82453 8.40394 3.5 10 3.5C11.5961 3.5 13.0163 3.82453 14.019 4.32589C15.0517 4.84221 15.5 5.46299 15.5 6Z" stroke="#252525"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 734 B |
|
@ -1,4 +1,4 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10 4C4.05 4 1 10 1 10C1 10 4 16 10 16C15.9688 16 19 10 19 10C19 10 15.95 4 10 4Z" fill="#B6B6B6"/>
|
||||
<path d="M10 4C4.05 4 1 10 1 10C1 10 4 16 10 16C15.9688 16 19 10 19 10C19 10 15.95 4 10 4Z" fill="#252525"/>
|
||||
<circle cx="10" cy="10" r="3.5" stroke="white"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 261 B |
|
@ -1,3 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.43824L13.8525 2.58579C14.6335 1.80474 15.8998 1.80474 16.6809 2.58579L17.5858 3.49069C18.3668 4.27174 18.3668 5.53807 17.5858 6.31912L15.7333 8.17157L12 4.43824ZM2 18.1716L3.39286 13.0644L11.2857 5.17157L15 8.88586L7.10714 16.7787L2 18.1716Z" fill="#B6B6B6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.43824L13.8525 2.58579C14.6335 1.80474 15.8998 1.80474 16.6809 2.58579L17.5858 3.49069C18.3668 4.27174 18.3668 5.53807 17.5858 6.31912L15.7333 8.17157L12 4.43824ZM2 18.1716L3.39286 13.0644L11.2857 5.17157L15 8.88586L7.10714 16.7787L2 18.1716Z" fill="#252525"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 417 B After Width: | Height: | Size: 417 B |
|
@ -1,3 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.37648 1.42153C9.60218 0.85949 10.3978 0.859491 10.6235 1.42153L12.5736 6.27753C12.6697 6.51686 12.8943 6.68007 13.1516 6.69752L18.3725 7.05152C18.9768 7.09249 19.2227 7.8492 18.7579 8.23753L14.7422 11.5927C14.5442 11.7581 14.4584 12.0221 14.5214 12.2723L15.798 17.347C15.9458 17.9344 15.3021 18.4021 14.7892 18.08L10.3573 15.2977C10.1388 15.1605 9.86117 15.1605 9.64274 15.2977L5.21084 18.08C4.69789 18.4021 4.0542 17.9344 4.20196 17.347L5.47864 12.2723C5.54156 12.0221 5.45576 11.7581 5.25784 11.5927L1.2421 8.23753C0.777317 7.8492 1.02319 7.09249 1.62746 7.05152L6.84838 6.69752C7.10571 6.68007 7.33033 6.51686 7.42645 6.27753L9.37648 1.42153Z" fill="#B6B6B6"/>
|
||||
<path d="M9.37648 1.42153C9.60218 0.85949 10.3978 0.859491 10.6235 1.42153L12.5736 6.27753C12.6697 6.51686 12.8943 6.68007 13.1516 6.69752L18.3725 7.05152C18.9768 7.09249 19.2227 7.8492 18.7579 8.23753L14.7422 11.5927C14.5442 11.7581 14.4584 12.0221 14.5214 12.2723L15.798 17.347C15.9458 17.9344 15.3021 18.4021 14.7892 18.08L10.3573 15.2977C10.1388 15.1605 9.86117 15.1605 9.64274 15.2977L5.21084 18.08C4.69789 18.4021 4.0542 17.9344 4.20196 17.347L5.47864 12.2723C5.54156 12.0221 5.45576 11.7581 5.25784 11.5927L1.2421 8.23753C0.777317 7.8492 1.02319 7.09249 1.62746 7.05152L6.84838 6.69752C7.10571 6.68007 7.33033 6.51686 7.42645 6.27753L9.37648 1.42153Z" fill="#252525"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 779 B After Width: | Height: | Size: 779 B |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 45 KiB |
144
src/img/logo/star.svg
Normal file
|
@ -0,0 +1,144 @@
|
|||
<svg width="216" height="216" viewBox="0 0 216 216" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_f_7414_1457)">
|
||||
<circle cx="108" cy="108" r="48" fill="#2350F2"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_f_7414_1457)">
|
||||
<circle cx="108" cy="108" r="24" fill="#2286E4"/>
|
||||
</g>
|
||||
<g opacity="0.4" filter="url(#filter2_f_7414_1457)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.42 111.58L29.25 108L104.42 104.42L108 29.25L111.58 104.42L186.75 108L111.58 111.58L108 186.75L104.42 111.58Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter3_f_7414_1457)">
|
||||
<path d="M108 109.5L25.5 108L108 106.5L190.5 108L108 109.5Z" fill="url(#paint0_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g filter="url(#filter4_f_7414_1457)">
|
||||
<path d="M106.5 108L108 25.5L109.5 108L108 190.5L106.5 108Z" fill="url(#paint1_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g filter="url(#filter5_f_7414_1457)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.117 109.055L100.956 137.347L108.034 108.765L79.7431 100.604L108.324 107.682L116.485 79.391L109.408 107.972L137.699 116.133L109.117 109.055Z" fill="url(#paint2_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g filter="url(#filter6_f_7414_1457)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.925 109.134L93.7201 134.349L107.954 108.573L82.7393 93.3678L108.515 107.602L123.72 82.3872L109.486 108.163L134.701 123.368L108.925 109.134Z" fill="url(#paint3_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g opacity="0.5" filter="url(#filter7_f_7414_1457)">
|
||||
<path d="M108.397 108.398L72.4675 143.532L107.602 107.602L143.532 72.4677L108.397 108.398Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.5" filter="url(#filter8_f_7414_1457)">
|
||||
<path d="M107.603 108.398L143.533 143.532L108.398 107.602L72.4683 72.4677L107.603 108.398Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter9_f_7414_1457)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.515 109.135L82.7394 123.369L107.954 108.163L93.72 82.3877L108.925 107.603L134.701 93.3687L109.486 108.574L123.72 134.349L108.515 109.135Z" fill="url(#paint4_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g filter="url(#filter10_f_7414_1457)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.72 109.161L87.5071 129.581L107.927 108.368L87.5072 87.1549L108.72 107.575L129.934 87.1549L109.513 108.368L129.934 129.581L108.72 109.161Z" fill="url(#paint5_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g filter="url(#filter11_f_7414_1457)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.324 109.055L79.7431 116.133L108.034 107.972L100.956 79.3907L109.117 107.682L137.699 100.604L109.408 108.765L116.485 137.346L108.324 109.055Z" fill="url(#paint6_radial_7414_1457)"/>
|
||||
</g>
|
||||
<g filter="url(#filter12_f_7414_1457)">
|
||||
<circle cx="108" cy="108" r="18" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter13_f_7414_1457)">
|
||||
<circle cx="108" cy="108" r="12" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_7414_1457" x="0.75" y="0.75" width="214.5" height="214.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="29.625" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_7414_1457" x="60" y="60" width="96" height="96" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_7414_1457" x="25.125" y="25.125" width="165.75" height="165.75" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.0625" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter3_f_7414_1457" x="24.75" y="105.75" width="166.5" height="4.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.375" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter4_f_7414_1457" x="105.75" y="24.75" width="4.5" height="166.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.375" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter5_f_7414_1457" x="78.2432" y="77.8906" width="60.9551" height="60.9561" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter6_f_7414_1457" x="81.2393" y="80.8867" width="54.9619" height="54.9619" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter7_f_7414_1457" x="70.9678" y="70.9678" width="74.0635" height="74.0645" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter8_f_7414_1457" x="70.9688" y="70.9678" width="74.0635" height="74.0645" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter9_f_7414_1457" x="81.2393" y="80.8877" width="54.9619" height="54.9619" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter10_f_7414_1457" x="86.0068" y="85.6553" width="45.4268" height="45.4258" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter11_f_7414_1457" x="78.2432" y="77.8906" width="60.9551" height="60.9561" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter12_f_7414_1457" x="70" y="70" width="76" height="76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="10" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<filter id="filter13_f_7414_1457" x="84" y="84" width="48" height="48" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_7414_1457"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108 108) rotate(90) scale(1.5 82.5)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108 108) rotate(90) scale(82.5 1.5)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0.5"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.721 108.369) rotate(105) scale(30)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.72 108.368) rotate(120) scale(30)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint4_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.72 108.368) rotate(150) scale(30)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint5_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.72 108.368) rotate(135) scale(30)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint6_radial_7414_1457" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.721 108.368) rotate(165) scale(30)">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 9.7 KiB |
BIN
src/img/logo/symbol.png
Normal file
After Width: | Height: | Size: 17 KiB |
|
@ -1,11 +0,0 @@
|
|||
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="72" height="72" rx="16" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M47 23V14H19.0312V23H47ZM47 23V58H56V23H47ZM28.5 58C36.5081 58 43 51.5081 43 43.5C43 35.4919 36.5081 29 28.5 29C20.4919 29 14 35.4919 14 43.5C14 51.5081 20.4919 58 28.5 58Z" fill="url(#paint0_linear_7050_7920)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_7050_7920" x1="14" y1="14" x2="34.8367" y2="65.88" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.499975" stop-color="white"/>
|
||||
<stop offset="0.663679" stop-color="#FFEDBE"/>
|
||||
<stop offset="0.839339" stop-color="#FFBCC3"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 706 B |
3
src/img/theme/dark/arrow/chat.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path d="M5.5 7.75L10 12.25L14.5 7.75" stroke="#f8f8f8" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 207 B |
3
src/img/theme/dark/icon/chat/navigation/mention.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.4619 17C9.25381 17 8.18584 16.8439 7.25804 16.5318C6.33023 16.2235 5.55048 15.7683 4.91878 15.1664C4.28708 14.5645 3.80936 13.827 3.48562 12.9538C3.16187 12.0807 3 11.0812 3 9.95541C3 8.86677 3.16385 7.89331 3.49154 7.03503C3.82318 6.17675 4.30288 5.44851 4.93063 4.85032C5.56232 4.24841 6.32826 3.78954 7.22843 3.47373C8.13254 3.15791 9.1551 3 10.2961 3C11.4055 3 12.3768 3.17091 13.2098 3.51274C14.0468 3.85085 14.7456 4.30971 15.3063 4.88933C15.8708 5.46523 16.2933 6.11359 16.5736 6.83439C16.8579 7.5552 17 8.2983 17 9.06369C17 9.60244 16.9724 10.1486 16.9171 10.7022C16.8618 11.2558 16.7453 11.7649 16.5677 12.2293C16.39 12.69 16.1156 13.0616 15.7445 13.344C15.3773 13.6263 14.8799 13.7675 14.2521 13.7675C13.9757 13.7675 13.6717 13.7266 13.3401 13.6449C13.0085 13.5632 12.7143 13.4275 12.4577 13.2381C12.2011 13.0486 12.0491 12.7941 12.0017 12.4745H11.9306C11.8359 12.69 11.6898 12.8944 11.4924 13.0876C11.2989 13.2808 11.0443 13.435 10.7284 13.5502C10.4165 13.6653 10.0355 13.7155 9.58545 13.7006C9.07219 13.6821 8.62014 13.5743 8.22927 13.3774C7.83841 13.1768 7.51072 12.9055 7.24619 12.5637C6.98562 12.2182 6.78821 11.8187 6.65398 11.3654C6.52369 10.9084 6.45854 10.4161 6.45854 9.88854C6.45854 9.38694 6.53751 8.92808 6.69543 8.51194C6.85336 8.09581 7.07248 7.73169 7.35279 7.41959C7.63706 7.10748 7.9687 6.85855 8.34772 6.67277C8.73068 6.48328 9.14326 6.36624 9.58545 6.32166C9.98026 6.2845 10.3395 6.30122 10.6633 6.37182C10.987 6.43869 11.2535 6.54087 11.4628 6.67834C11.672 6.8121 11.8043 6.96072 11.8596 7.1242H11.9306V6.5H13.1861V11.5382C13.1861 11.8503 13.2789 12.1253 13.4645 12.3631C13.65 12.6009 13.9205 12.7197 14.2758 12.7197C14.6785 12.7197 14.9865 12.5897 15.1997 12.3296C15.4168 12.0695 15.5649 11.6683 15.6438 11.1258C15.7267 10.5833 15.7682 9.88854 15.7682 9.0414C15.7682 8.54352 15.6951 8.05308 15.5491 7.57006C15.4069 7.08333 15.1898 6.62819 14.8976 6.20462C14.6094 5.78105 14.2442 5.40764 13.802 5.08439C13.3598 4.76115 12.8407 4.50849 12.2445 4.32643C11.6523 4.14066 10.9791 4.04777 10.225 4.04777C9.29724 4.04777 8.46616 4.18339 7.73181 4.45462C7.00141 4.72213 6.37958 5.11412 5.86633 5.63057C5.35702 6.14331 4.96813 6.76752 4.69966 7.50319C4.43514 8.23514 4.30288 9.06741 4.30288 10C4.30288 10.9475 4.43514 11.789 4.69966 12.5247C4.96813 13.2604 5.36294 13.8808 5.88409 14.3861C6.40919 14.8915 7.05866 15.2742 7.83249 15.5342C8.60632 15.798 9.49859 15.9299 10.5093 15.9299C10.9436 15.9299 11.372 15.8909 11.7944 15.8129C12.2169 15.7349 12.59 15.6494 12.9137 15.5565C13.2375 15.4636 13.4704 15.3949 13.6125 15.3503L13.9442 16.3758C13.6994 16.4724 13.3796 16.569 12.9848 16.6656C12.5939 16.7622 12.1754 16.8421 11.7293 16.9053C11.2871 16.9684 10.8646 17 10.4619 17ZM9.77496 12.5637C10.304 12.5637 10.7324 12.4634 11.0601 12.2627C11.3878 12.0621 11.6266 11.7593 11.7766 11.3543C11.9267 10.9493 12.0017 10.4384 12.0017 9.82166C12.0017 9.19745 11.9188 8.71072 11.753 8.36147C11.5871 8.01221 11.3424 7.76699 11.0186 7.6258C10.6949 7.48461 10.2961 7.41401 9.82233 7.41401C9.37225 7.41401 8.98731 7.52548 8.66751 7.74841C8.35166 7.96762 8.10886 8.26115 7.93909 8.62898C7.77327 8.9931 7.69036 9.39066 7.69036 9.82166C7.69036 10.2972 7.75747 10.745 7.89171 11.1648C8.02594 11.5809 8.24506 11.9191 8.54907 12.1791C8.85307 12.4355 9.2617 12.5637 9.77496 12.5637Z" fill="#f8f8f8"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
3
src/img/theme/dark/icon/header/settings/anyName.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path d="M10.3646 17C10.638 15.4323 11.75 13.4635 13.8646 11.8776C14.9036 11.0938 15.9609 10.5833 17 10.3646V9.59896C14.9401 9.10677 12.9167 7.72135 11.6224 5.84375C10.9661 4.89583 10.5469 3.96615 10.3646 3H9.59896C9.28906 4.84115 7.86719 6.88281 5.9349 8.25C4.98698 8.92448 4.0026 9.38021 3 9.59896V10.3646C5.02344 10.7839 7.375 12.5885 8.54167 14.4297C9.125 15.3594 9.47136 16.2161 9.59896 17H10.3646Z" fill="#737373"/>
|
||||
</svg>
|
After Width: | Height: | Size: 529 B |
4
src/img/theme/dark/icon/onboarding/primitives/arrow.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36" fill="none">
|
||||
<rect width="36" height="36" rx="18" fill="white" fill-opacity="0.11"/>
|
||||
<path d="M20 13.5L15.5 18L20 22.5" stroke="#F8F8F8" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 279 B |
5
src/img/theme/dark/icon/settings/space/bin.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.04076 6.35156H4.03906L6.01172 15.1523L13.9941 15.1582L15.9648 6.35156H15.9592C15.6111 7.84276 13.0758 9 10 9C6.92415 9 4.38888 7.84276 4.04076 6.35156Z" fill="#D4D4D4"/>
|
||||
<ellipse cx="10" cy="15" rx="4" ry="2" fill="#D4D4D4"/>
|
||||
<path d="M15.5 6C15.5 6.53701 15.0517 7.15779 14.019 7.67411C13.0163 8.17547 11.5961 8.5 10 8.5C8.40394 8.5 6.98369 8.17547 5.98097 7.67411C4.94833 7.15779 4.5 6.53701 4.5 6C4.5 5.46299 4.94833 4.84221 5.98097 4.32589C6.98369 3.82453 8.40394 3.5 10 3.5C11.5961 3.5 13.0163 3.82453 14.019 4.32589C15.0517 4.84221 15.5 5.46299 15.5 6Z" stroke="#D4D4D4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 746 B |