refactor: add icons package (#1078)
4
.eslintrc.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"extends": ["./node_modules/@standardnotes/config/src/.eslintrc"],
|
||||
"ignorePatterns": [".eslintrc.js", "*.webpack.*.js", "webpack-defaults.js", "jest.config.js", "__mocks__"]
|
||||
}
|
||||
@@ -11,15 +11,15 @@
|
||||
"node": ">=12.19.0 <17.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"bootstrap": "lerna bootstrap",
|
||||
"lint": "lerna run lint --parallel",
|
||||
"test": "lerna run test --parallel",
|
||||
"clean": "lerna run clean",
|
||||
"build": "lerna run build",
|
||||
"build:web": "lerna run build --scope=@standardnotes/web",
|
||||
"build:icons": "lerna run build --scope=@standardnotes/icons",
|
||||
"build:toast": "lerna run build --scope=@standardnotes/toast",
|
||||
"build:styles": "lerna run build --scope=@standardnotes/styles",
|
||||
"build:web:front": "yarn build:toast && yarn build:styles && yarn build:web",
|
||||
"build:web": "lerna run build --scope=@standardnotes/web",
|
||||
"build:web:front": "yarn build:icons && yarn build:toast && yarn build:styles && yarn build:web",
|
||||
"build:web:back": "lerna run build --scope=@standardnotes/web-server",
|
||||
"build:web:all": "yarn build:web:front && yarn build:web:back",
|
||||
"start:server:web": "lerna run start --scope=@standardnotes/web-server",
|
||||
@@ -42,7 +42,7 @@
|
||||
"@typescript-eslint/parser": "^5.20.0",
|
||||
"eslint": "^8.17.0",
|
||||
"husky": "^7.0.4",
|
||||
"lerna": "^3.22.1",
|
||||
"lerna": "^5.1.1",
|
||||
"lint-staged": "^13.0.1",
|
||||
"prettier": "^2.6.2",
|
||||
"typescript": "^4.7.3",
|
||||
|
||||
@@ -3,39 +3,12 @@
|
||||
"node": true,
|
||||
"commonjs": true
|
||||
},
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:@typescript-eslint/eslint-recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"prettier",
|
||||
"../../node_modules/@standardnotes/config/src/.eslintrc"
|
||||
],
|
||||
"parser": "@typescript-eslint/parser",
|
||||
"ignorePatterns": ["test", "scripts", ".eslintrc", "tsconfig.json", "node_modules", "*.webpack.*.js"],
|
||||
"extends": ["../../.eslintrc.json"],
|
||||
"rules": {
|
||||
/** Style */
|
||||
"quotes": ["error", "single", { "avoidEscape": true }],
|
||||
|
||||
/** Preferences */
|
||||
"no-console": "off",
|
||||
"accessor-pairs": 0,
|
||||
"no-nonoctal-decimal-escape": 0,
|
||||
"no-unsafe-optional-chaining": 0,
|
||||
"@typescript-eslint/explicit-function-return-type": 0,
|
||||
"@typescript-eslint/no-use-before-define": ["error", "nofunc"],
|
||||
"@typescript-eslint/no-non-null-assertion": 0,
|
||||
"@typescript-eslint/no-explicit-any": 0,
|
||||
"@typescript-eslint/no-var-requires": 0,
|
||||
/**
|
||||
* The following rules are disabled because they are already implemented
|
||||
* in the TypeScript configuration, or vice-versa
|
||||
*/
|
||||
"no-unused-vars": 0,
|
||||
"no-useless-constructor": 0,
|
||||
"no-unused-expressions": 0,
|
||||
"@typescript-eslint/camelcase": 0
|
||||
"no-console": "warn",
|
||||
"@typescript-eslint/no-explicit-any": "warn",
|
||||
"@typescript-eslint/no-var-requires": "off"
|
||||
},
|
||||
"plugins": ["@typescript-eslint"],
|
||||
"globals": {
|
||||
"zip": true
|
||||
}
|
||||
|
||||
@@ -1,8 +1,3 @@
|
||||
node_modules/
|
||||
dist/
|
||||
app/dist/
|
||||
test/data/tmp/
|
||||
web/
|
||||
.github
|
||||
codeqldb
|
||||
*.js
|
||||
test/data/tmp/
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"trailingComma": "all",
|
||||
"printWidth": 120,
|
||||
"semi": false
|
||||
}
|
||||
@@ -1,16 +1,16 @@
|
||||
import { App, Shell } from 'electron'
|
||||
import { action, makeObservable, observable } from 'mobx'
|
||||
import { MessageType } from '../test/TestIpcMessage'
|
||||
import { createExtensionsServer } from './javascripts/Main/ExtensionsServer'
|
||||
import { isLinux, isMac, isWindows } from './javascripts/Main/Types/Platforms'
|
||||
import { Keychain } from './javascripts/Main/Keychain/Keychain'
|
||||
import { Store, StoreKeys } from './javascripts/Main/Store'
|
||||
import { AppName, initializeStrings } from './javascripts/Main/Strings'
|
||||
import { createWindowState, WindowState } from './javascripts/Main/Window'
|
||||
import { Keychain } from './javascripts/Main/Keychain/Keychain'
|
||||
import { isDev, isTesting } from './javascripts/Main/Utils/Utils'
|
||||
import { Urls, Paths } from './javascripts/Main/Types/Paths'
|
||||
import { action, makeObservable, observable } from 'mobx'
|
||||
import { Paths, Urls } from './javascripts/Main/Types/Paths'
|
||||
import { isLinux, isMac, isWindows } from './javascripts/Main/Types/Platforms'
|
||||
import { UpdateState } from './javascripts/Main/UpdateManager'
|
||||
import { handleTestMessage } from './javascripts/Main/Utils/Testing'
|
||||
import { MessageType } from '../test/TestIpcMessage'
|
||||
import { isDev, isTesting } from './javascripts/Main/Utils/Utils'
|
||||
import { createWindowState, WindowState } from './javascripts/Main/Window'
|
||||
|
||||
const deepLinkScheme = 'standardnotes'
|
||||
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
import { app, ipcMain, shell } from 'electron'
|
||||
import path from 'path'
|
||||
import fs from 'fs-extra'
|
||||
import log from 'electron-log'
|
||||
import fs from 'fs-extra'
|
||||
import path from 'path'
|
||||
import './@types/modules'
|
||||
import { initializeApplication } from './application'
|
||||
import { isSnap } from './javascripts/Main/Types/Constants'
|
||||
import { isTesting } from './javascripts/Main/Utils/Utils'
|
||||
import { setupTesting } from './javascripts/Main/Utils/Testing'
|
||||
import { CommandLineArgs } from './javascripts/Shared/CommandLineArgs'
|
||||
import { Store, StoreKeys } from './javascripts/Main/Store'
|
||||
import { Paths } from './javascripts/Main/Types/Paths'
|
||||
import { enableExperimentalFeaturesForFileAccessFix } from './enableExperimentalWebFeatures'
|
||||
import { Store, StoreKeys } from './javascripts/Main/Store'
|
||||
import { isSnap } from './javascripts/Main/Types/Constants'
|
||||
import { Paths } from './javascripts/Main/Types/Paths'
|
||||
import { setupTesting } from './javascripts/Main/Utils/Testing'
|
||||
import { isTesting } from './javascripts/Main/Utils/Utils'
|
||||
import { CommandLineArgs } from './javascripts/Shared/CommandLineArgs'
|
||||
|
||||
enableExperimentalFeaturesForFileAccessFix()
|
||||
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
import { dialog, WebContents, shell } from 'electron'
|
||||
import { dialog, shell, WebContents } from 'electron'
|
||||
import { promises as fs } from 'fs'
|
||||
import path from 'path'
|
||||
import { AppMessageType, MessageType } from '../../../../test/TestIpcMessage'
|
||||
import { AppState } from '../../../application'
|
||||
import { MessageToWebApp } from '../../Shared/IpcMessages'
|
||||
import { BackupsManagerInterface } from './BackupsManagerInterface'
|
||||
import { StoreKeys } from '../Store'
|
||||
import { backups as str } from '../Strings'
|
||||
import { Paths } from '../Types/Paths'
|
||||
import {
|
||||
deleteDir,
|
||||
deleteDirContents,
|
||||
@@ -13,11 +15,9 @@ import {
|
||||
moveFiles,
|
||||
openDirectoryPicker,
|
||||
} from '../Utils/FileUtils'
|
||||
import { Paths } from '../Types/Paths'
|
||||
import { StoreKeys } from '../Store'
|
||||
import { backups as str } from '../Strings'
|
||||
import { handleTestMessage, send } from '../Utils/Testing'
|
||||
import { isTesting, last } from '../Utils/Utils'
|
||||
import { BackupsManagerInterface } from './BackupsManagerInterface'
|
||||
|
||||
function log(...message: any) {
|
||||
console.log('BackupsManager:', ...message)
|
||||
|
||||
@@ -3,9 +3,9 @@ import http, { IncomingMessage, ServerResponse } from 'http'
|
||||
import mime from 'mime-types'
|
||||
import path from 'path'
|
||||
import { URL } from 'url'
|
||||
import { FileDoesNotExist } from './Utils/FileUtils'
|
||||
import { Paths } from './Types/Paths'
|
||||
import { extensions as str } from './Strings'
|
||||
import { Paths } from './Types/Paths'
|
||||
import { FileDoesNotExist } from './Utils/FileUtils'
|
||||
|
||||
const Protocol = 'http'
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { FileBackupsDevice, FileBackupsMapping } from '@web/Application/Device/DesktopSnjsExports'
|
||||
import { AppState } from 'app/application'
|
||||
import { shell } from 'electron'
|
||||
import { StoreKeys } from '../Store'
|
||||
import {
|
||||
ensureDirectoryExists,
|
||||
@@ -10,7 +11,6 @@ import {
|
||||
writeJSONFile,
|
||||
} from '../Utils/FileUtils'
|
||||
import { FileDownloader } from './FileDownloader'
|
||||
import { shell } from 'electron'
|
||||
|
||||
export const FileBackupsConstantsV1 = {
|
||||
Version: '1.0.0',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { WriteStream, createWriteStream } from 'fs'
|
||||
import { createWriteStream, WriteStream } from 'fs'
|
||||
import { downloadData } from './FileNetworking'
|
||||
|
||||
export class FileDownloader {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import axios, { AxiosRequestHeaders, AxiosResponseHeaders } from 'axios'
|
||||
import { WriteStream } from 'fs'
|
||||
import axios, { AxiosResponseHeaders, AxiosRequestHeaders } from 'axios'
|
||||
|
||||
export async function downloadData(
|
||||
writeStream: WriteStream,
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import { app, BrowserWindow, ipcMain } from 'electron'
|
||||
import keytar from 'keytar'
|
||||
import { isLinux } from '../Types/Platforms'
|
||||
import { MessageToMainProcess } from '../../Shared/IpcMessages'
|
||||
import { Store, StoreKeys } from '../Store'
|
||||
import { AppName } from '../Strings'
|
||||
import { keychainAccessIsUserConfigurable } from '../Types/Constants'
|
||||
import { Paths, Urls } from '../Types/Paths'
|
||||
import { isLinux } from '../Types/Platforms'
|
||||
import { isDev, isTesting } from '../Utils/Utils'
|
||||
import { MessageToMainProcess } from '../../Shared/IpcMessages'
|
||||
import { Urls, Paths } from '../Types/Paths'
|
||||
import { Store, StoreKeys } from '../Store'
|
||||
import { KeychainInterface } from './KeychainInterface'
|
||||
|
||||
const ServiceName = isTesting() ? AppName + ' (Testing)' : isDev() ? AppName + ' (Development)' : AppName
|
||||
|
||||
@@ -10,17 +10,17 @@ import {
|
||||
WebContents,
|
||||
} from 'electron'
|
||||
import { autorun } from 'mobx'
|
||||
import { autoUpdatingAvailable } from '../Types/Constants'
|
||||
import { isLinux, isMac } from '../Types/Platforms'
|
||||
import { Store, StoreKeys } from '../Store'
|
||||
import { appMenu as str, contextMenu } from '../Strings'
|
||||
import { handleTestMessage } from '../Utils/Testing'
|
||||
import { TrayManager } from '../TrayManager'
|
||||
import { SpellcheckerManager } from './../SpellcheckerManager'
|
||||
import { BackupsManagerInterface } from './../Backups/BackupsManagerInterface'
|
||||
import { MessageType } from './../../../../test/TestIpcMessage'
|
||||
import { autoUpdatingAvailable } from '../Types/Constants'
|
||||
import { isLinux, isMac } from '../Types/Platforms'
|
||||
import { checkForUpdate, openChangelog, showUpdateInstallationDialog } from '../UpdateManager'
|
||||
import { handleTestMessage } from '../Utils/Testing'
|
||||
import { isDev, isTesting } from '../Utils/Utils'
|
||||
import { MessageType } from './../../../../test/TestIpcMessage'
|
||||
import { BackupsManagerInterface } from './../Backups/BackupsManagerInterface'
|
||||
import { SpellcheckerManager } from './../SpellcheckerManager'
|
||||
import { MenuManagerInterface } from './MenuManagerInterface'
|
||||
|
||||
export const enum MenuId {
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
import compareVersions from 'compare-versions'
|
||||
import log from 'electron-log'
|
||||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
import { MessageToWebApp } from '../../Shared/IpcMessages'
|
||||
import { AppName } from '../Strings'
|
||||
import { Paths } from '../Types/Paths'
|
||||
import {
|
||||
debouncedJSONDiskWriter,
|
||||
deleteDir,
|
||||
@@ -11,12 +14,9 @@ import {
|
||||
FileDoesNotExist,
|
||||
readJSONFile,
|
||||
} from '../Utils/FileUtils'
|
||||
import { downloadFile, getJSON } from './Networking'
|
||||
import { Paths } from '../Types/Paths'
|
||||
import { AppName } from '../Strings'
|
||||
import { timeout } from '../Utils/Utils'
|
||||
import log from 'electron-log'
|
||||
import { Component, MappingFile, PackageManagerInterface, SyncTask, PackageInfo } from './PackageManagerInterface'
|
||||
import { downloadFile, getJSON } from './Networking'
|
||||
import { Component, MappingFile, PackageInfo, PackageManagerInterface, SyncTask } from './PackageManagerInterface'
|
||||
|
||||
function logMessage(...message: any) {
|
||||
log.info('PackageManager:', ...message)
|
||||
|
||||
@@ -4,14 +4,14 @@ import { Store, StoreKeys } from '../Store'
|
||||
const path = require('path')
|
||||
const rendererPath = path.join('file://', __dirname, '/renderer.js')
|
||||
|
||||
import { FileBackupsDevice, FileBackupsMapping } from '@web/Application/Device/DesktopSnjsExports'
|
||||
import { app, BrowserWindow } from 'electron'
|
||||
import { KeychainInterface } from '../Keychain/KeychainInterface'
|
||||
import { BackupsManagerInterface } from '../Backups/BackupsManagerInterface'
|
||||
import { PackageManagerInterface, Component } from '../Packages/PackageManagerInterface'
|
||||
import { KeychainInterface } from '../Keychain/KeychainInterface'
|
||||
import { MenuManagerInterface } from '../Menus/MenuManagerInterface'
|
||||
import { Component, PackageManagerInterface } from '../Packages/PackageManagerInterface'
|
||||
import { SearchManagerInterface } from '../Search/SearchManagerInterface'
|
||||
import { RemoteDataInterface } from './DataInterface'
|
||||
import { MenuManagerInterface } from '../Menus/MenuManagerInterface'
|
||||
import { FileBackupsDevice, FileBackupsMapping } from '@web/Application/Device/DesktopSnjsExports'
|
||||
|
||||
/**
|
||||
* Read https://github.com/electron/remote to understand how electron/remote works.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* eslint-disable no-inline-comments */
|
||||
import { isMac } from './Types/Platforms'
|
||||
import { Store, StoreKeys } from './Store'
|
||||
import { isMac } from './Types/Platforms'
|
||||
import { isDev } from './Utils/Utils'
|
||||
|
||||
export enum Language {
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
import { MessageType } from '../../../test/TestIpcMessage'
|
||||
import { Language } from './SpellcheckerManager'
|
||||
import { ensureIsBoolean, isTesting, isDev, isBoolean } from './Utils/Utils'
|
||||
import { FileDoesNotExist } from './Utils/FileUtils'
|
||||
import { BackupsDirectoryName } from './Backups/BackupsManager'
|
||||
import { Language } from './SpellcheckerManager'
|
||||
import { FileDoesNotExist } from './Utils/FileUtils'
|
||||
import { handleTestMessage } from './Utils/Testing'
|
||||
import { ensureIsBoolean, isBoolean, isDev, isTesting } from './Utils/Utils'
|
||||
|
||||
const app = process.type === 'browser' ? require('electron').app : require('@electron/remote').app
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { Strings } from './types'
|
||||
import { createEnglishStrings } from './english'
|
||||
import { isDev } from '../Utils/Utils'
|
||||
import { createEnglishStrings } from './english'
|
||||
import { Strings } from './types'
|
||||
|
||||
export function createFrenchStrings(): Strings {
|
||||
const fallback = createEnglishStrings()
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { isDev } from '../Utils/Utils'
|
||||
import { createEnglishStrings } from './english'
|
||||
import { createFrenchStrings } from './french'
|
||||
import { Strings } from './types'
|
||||
import { isDev } from '../Utils/Utils'
|
||||
|
||||
let strings: Strings
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { Menu, Tray } from 'electron'
|
||||
import path from 'path'
|
||||
import { isLinux, isWindows } from './Types/Platforms'
|
||||
import { Store, StoreKeys } from './Store'
|
||||
import { AppName, tray as str } from './Strings'
|
||||
import { isLinux, isWindows } from './Types/Platforms'
|
||||
import { isDev } from './Utils/Utils'
|
||||
|
||||
const icon = path.join(__dirname, '/icon/Icon-256x256.png')
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import path from 'path'
|
||||
import index from '../../../index.html'
|
||||
import grantLinuxPasswordsAccess from '../../../grantLinuxPasswordsAccess.html'
|
||||
import decryptScript from 'decrypt/dist/decrypt.html'
|
||||
import { app } from 'electron'
|
||||
import path from 'path'
|
||||
import grantLinuxPasswordsAccess from '../../../grantLinuxPasswordsAccess.html'
|
||||
import index from '../../../index.html'
|
||||
|
||||
function url(fileName: string): string {
|
||||
if ('APP_RELATIVE_PATH' in process.env) {
|
||||
|
||||
@@ -3,12 +3,12 @@ import { BrowserWindow, dialog, shell } from 'electron'
|
||||
import electronLog from 'electron-log'
|
||||
import { autoUpdater } from 'electron-updater'
|
||||
import { action, autorun, computed, makeObservable, observable } from 'mobx'
|
||||
import { autoUpdatingAvailable } from './Types/Constants'
|
||||
import { MessageType } from '../../../test/TestIpcMessage'
|
||||
import { AppState } from '../../application'
|
||||
import { BackupsManagerInterface } from './Backups/BackupsManagerInterface'
|
||||
import { StoreKeys } from './Store'
|
||||
import { updates as str } from './Strings'
|
||||
import { autoUpdatingAvailable } from './Types/Constants'
|
||||
import { handleTestMessage } from './Utils/Testing'
|
||||
import { isTesting } from './Utils/Utils'
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { dialog } from 'electron'
|
||||
import fs, { PathLike } from 'fs'
|
||||
import { debounce } from 'lodash'
|
||||
import path from 'path'
|
||||
import yauzl from 'yauzl'
|
||||
import { removeFromArray } from '../Utils/Utils'
|
||||
import { dialog } from 'electron'
|
||||
|
||||
export const FileDoesNotExist = 'ENOENT'
|
||||
export const FileAlreadyExists = 'EEXIST'
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import { clearSensitiveDirectories } from '@standardnotes/electron-clear-data'
|
||||
import { BrowserWindow, Rectangle, screen, Shell } from 'electron'
|
||||
import fs from 'fs'
|
||||
import { debounce } from 'lodash'
|
||||
@@ -7,23 +8,22 @@ import { AppState } from '../../application'
|
||||
import { MessageToWebApp } from '../Shared/IpcMessages'
|
||||
import { createBackupsManager } from './Backups/BackupsManager'
|
||||
import { BackupsManagerInterface } from './Backups/BackupsManagerInterface'
|
||||
import { FilesBackupManager } from './FileBackups/FileBackupsManager'
|
||||
import { Keychain } from './Keychain/Keychain'
|
||||
import { MenuManagerInterface } from './Menus/MenuManagerInterface'
|
||||
import { buildContextMenu, createMenuManager } from './Menus/Menus'
|
||||
import { initializePackageManager } from './Packages/PackageManager'
|
||||
import { isMac, isWindows } from './Types/Platforms'
|
||||
import { RemoteBridge } from './Remote/RemoteBridge'
|
||||
import { initializeSearchManager } from './Search/SearchManager'
|
||||
import { createSpellcheckerManager } from './SpellcheckerManager'
|
||||
import { Store, StoreKeys } from './Store'
|
||||
import { handleTestMessage, send } from './Utils/Testing'
|
||||
import { createTrayManager, TrayManager } from './TrayManager'
|
||||
import { Paths } from './Types/Paths'
|
||||
import { isMac, isWindows } from './Types/Platforms'
|
||||
import { checkForUpdate, setupUpdates } from './UpdateManager'
|
||||
import { handleTestMessage, send } from './Utils/Testing'
|
||||
import { isTesting, lowercaseDriveLetter } from './Utils/Utils'
|
||||
import { initializeZoomManager } from './ZoomManager'
|
||||
import { Paths } from './Types/Paths'
|
||||
import { clearSensitiveDirectories } from '@standardnotes/electron-clear-data'
|
||||
import { RemoteBridge } from './Remote/RemoteBridge'
|
||||
import { Keychain } from './Keychain/Keychain'
|
||||
import { MenuManagerInterface } from './Menus/MenuManagerInterface'
|
||||
import { FilesBackupManager } from './FileBackups/FileBackupsManager'
|
||||
|
||||
const WINDOW_DEFAULT_WIDTH = 1100
|
||||
const WINDOW_DEFAULT_HEIGHT = 800
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Component } from '../Main/Packages/PackageManagerInterface'
|
||||
import { FileBackupsDevice } from '@web/Application/Device/DesktopSnjsExports'
|
||||
import { Component } from '../Main/Packages/PackageManagerInterface'
|
||||
|
||||
export interface CrossProcessBridge extends FileBackupsDevice {
|
||||
get extServerHost(): string
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import {
|
||||
DesktopDeviceInterface,
|
||||
Environment,
|
||||
FileBackupsMapping,
|
||||
RawKeychainValue,
|
||||
} from '@web/Application/Device/DesktopSnjsExports'
|
||||
import { WebOrDesktopDevice } from '@web/Application/Device/WebOrDesktopDevice'
|
||||
import { Component } from '../Main/Packages/PackageManagerInterface'
|
||||
import {
|
||||
RawKeychainValue,
|
||||
Environment,
|
||||
DesktopDeviceInterface,
|
||||
FileBackupsMapping,
|
||||
} from '@web/Application/Device/DesktopSnjsExports'
|
||||
import { CrossProcessBridge } from './CrossProcessBridge'
|
||||
|
||||
const FallbackLocalStorageKey = 'keychain'
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { DesktopDevice } from './DesktopDevice'
|
||||
import { MessageToWebApp } from '../Shared/IpcMessages'
|
||||
import { DesktopClientRequiresWebMethods } from '@web/Application/Device/DesktopSnjsExports'
|
||||
import { StartApplication } from '@web/Application/Device/StartApplication'
|
||||
import { MessageToWebApp } from '../Shared/IpcMessages'
|
||||
import { CrossProcessBridge } from './CrossProcessBridge'
|
||||
import { DesktopDevice } from './DesktopDevice'
|
||||
|
||||
declare const DEFAULT_SYNC_SERVER: string
|
||||
declare const WEBSOCKET_URL: string
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@commitlint/config-conventional'],
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
const { merge } = require('webpack-merge');
|
||||
const common = require('./desktop.webpack.common.js');
|
||||
const { merge } = require('webpack-merge')
|
||||
const common = require('./desktop.webpack.common.js')
|
||||
|
||||
module.exports = (env) =>
|
||||
common({
|
||||
@@ -10,5 +10,5 @@ module.exports = (env) =>
|
||||
merge(config, {
|
||||
mode: 'development',
|
||||
devtool: 'inline-cheap-source-map',
|
||||
})
|
||||
);
|
||||
}),
|
||||
)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
const { merge } = require('webpack-merge');
|
||||
const common = require('./desktop.webpack.common.js');
|
||||
const { merge } = require('webpack-merge')
|
||||
const common = require('./desktop.webpack.common.js')
|
||||
|
||||
module.exports = (env) =>
|
||||
common(env).map((config) =>
|
||||
merge(config, {
|
||||
mode: 'production',
|
||||
devtool: 'source-map',
|
||||
})
|
||||
);
|
||||
}),
|
||||
)
|
||||
|
||||
@@ -68,6 +68,7 @@
|
||||
"husky": "^7.0.4",
|
||||
"mime-types": "^2.1.35",
|
||||
"pre-push": "^0.1.2",
|
||||
"prettier": "*",
|
||||
"proxyquire": "^2.1.3",
|
||||
"rimraf": "^3.0.2",
|
||||
"terser-webpack-plugin": "^5.3.1",
|
||||
|
||||
@@ -2,7 +2,7 @@ import { promises as fs } from 'fs'
|
||||
import path from 'path'
|
||||
|
||||
import anyTest, { TestFn } from 'ava'
|
||||
import { Driver, createDriver } from './driver'
|
||||
import { createDriver, Driver } from './driver'
|
||||
|
||||
const test = anyTest as TestFn<Driver>
|
||||
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
import { ChildProcess, spawn } from 'child_process'
|
||||
import electronPath, { MenuItem } from 'electron'
|
||||
import path from 'path'
|
||||
import { deleteDir, ensureDirectoryExists, readJSONFile } from '../app/javascripts/Main/Utils/fileUtils'
|
||||
import { Language } from '../app/javascripts/Main/spellcheckerManager'
|
||||
import { StoreKeys } from '../app/javascripts/Main/store'
|
||||
import { UpdateState } from '../app/javascripts/Main/updateManager'
|
||||
import { deleteDir, ensureDirectoryExists, readJSONFile } from '../app/javascripts/Main/Utils/fileUtils'
|
||||
import { CommandLineArgs } from '../app/javascripts/Shared/CommandLineArgs'
|
||||
import { AppMessageType, AppTestMessage, MessageType, TestIPCMessage, TestIPCMessageResult } from './TestIpcMessage'
|
||||
|
||||
|
||||
@@ -4,10 +4,10 @@ import http from 'http'
|
||||
import { AddressInfo } from 'net'
|
||||
import path from 'path'
|
||||
import proxyquire from 'proxyquire'
|
||||
import { ensureDirectoryExists } from '../app/javascripts/Main/Utils/FileUtils'
|
||||
import { initializeStrings } from '../app/javascripts/Main/strings'
|
||||
import { createTmpDir } from './testUtils'
|
||||
import { ensureDirectoryExists } from '../app/javascripts/Main/Utils/FileUtils'
|
||||
import makeFakePaths from './fakePaths'
|
||||
import { createTmpDir } from './testUtils'
|
||||
|
||||
const test = anyTest as TestFn<{
|
||||
server: http.Server
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import test, { TestFn } from 'ava'
|
||||
import test from 'ava'
|
||||
import { promises as fs } from 'fs'
|
||||
import path from 'path'
|
||||
import {
|
||||
|
||||
@@ -2,11 +2,11 @@ import test from 'ava'
|
||||
import { promises as fs } from 'fs'
|
||||
import path from 'path'
|
||||
import proxyquire from 'proxyquire'
|
||||
import { ensureDirectoryExists, readJSONFile } from '../app/javascripts/Main/Utils/FileUtils'
|
||||
import { createTmpDir } from './testUtils'
|
||||
import { AppName } from '../app/javascripts/Main/strings'
|
||||
import makeFakePaths from './fakePaths'
|
||||
import { PackageManagerInterface } from '../app/javascripts/Main/Packages/PackageManagerInterface'
|
||||
import { AppName } from '../app/javascripts/Main/strings'
|
||||
import { ensureDirectoryExists, readJSONFile } from '../app/javascripts/Main/Utils/FileUtils'
|
||||
import makeFakePaths from './fakePaths'
|
||||
import { createTmpDir } from './testUtils'
|
||||
|
||||
const tmpDir = createTmpDir(__filename)
|
||||
const FakePaths = makeFakePaths(tmpDir.path)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import anyTest, { TestFn } from 'ava'
|
||||
import { Driver, createDriver } from './driver'
|
||||
import { createDriver, Driver } from './driver'
|
||||
|
||||
const StoreKeys = {
|
||||
SelectedSpellCheckerLanguageCodes: 'selectedSpellCheckerLanguageCodes',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import anyTest, { TestFn, ExecutionContext } from 'ava'
|
||||
import anyTest, { ExecutionContext, TestFn } from 'ava'
|
||||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
import proxyquire from 'proxyquire'
|
||||
|
||||
1
packages/icons/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
dist
|
||||
26
packages/icons/CHANGELOG.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [1.1.8](https://github.com/standardnotes/icons/compare/v1.1.7...v1.1.8) (2022-05-25)
|
||||
|
||||
### [1.1.7](https://github.com/standardnotes/icons/compare/v1.1.6...v1.1.7) (2022-05-16)
|
||||
|
||||
### [1.1.6](https://github.com/standardnotes/icons/compare/v1.1.5...v1.1.6) (2022-05-16)
|
||||
|
||||
### [1.1.5](https://github.com/standardnotes/icons/compare/v1.1.4...v1.1.5) (2022-05-16)
|
||||
|
||||
### [1.1.4](https://github.com/standardnotes/icons/compare/v1.1.3...v1.1.4) (2022-05-16)
|
||||
|
||||
### [1.1.3](https://github.com/standardnotes/icons/compare/v1.1.2...v1.1.3) (2022-05-16)
|
||||
|
||||
### [1.1.2](https://github.com/standardnotes/icons/compare/v1.1.1...v1.1.2) (2022-05-16)
|
||||
|
||||
### [1.1.1](https://github.com/standardnotes/icons/compare/v1.1.0...v1.1.1) (2022-05-16)
|
||||
|
||||
## 1.1.0 (2022-05-16)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* initial commit ([67b0674](https://github.com/standardnotes/icons/commit/67b06747584eb7bde6da7cf4f1e1a02a8aebc933))
|
||||
37
packages/icons/package.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "@standardnotes/icons",
|
||||
"version": "1.2.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"start": "webpack-dev-server --config webpack.config.js",
|
||||
"watch": "webpack -w --config webpack.config.js",
|
||||
"build": "webpack --config webpack.config.js && yarn run tsc",
|
||||
"tsc": "tsc --project ./tsconfig.json"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.18.2",
|
||||
"@babel/plugin-transform-react-jsx": "^7.17.12",
|
||||
"@babel/plugin-transform-runtime": "^7.18.2",
|
||||
"@babel/preset-env": "^7.18.2",
|
||||
"@babel/preset-react": "^7.12.12",
|
||||
"@babel/preset-typescript": "^7.17.12",
|
||||
"@babel/runtime": "^7.18.2",
|
||||
"@svgr/webpack": "^6.2.1",
|
||||
"babel-loader": "^8.2.5",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"copy-webpack-plugin": "^11.0.0",
|
||||
"prettier": "*",
|
||||
"react": "^18.1.0",
|
||||
"react-dom": "^18.1.0",
|
||||
"ts-jest": "^28.0.3",
|
||||
"ts-loader": "^9.3.0",
|
||||
"typescript": "*",
|
||||
"webpack": "*",
|
||||
"webpack-cli": "*",
|
||||
"webpack-dev-server": "^4.9.0"
|
||||
}
|
||||
}
|
||||
3
packages/icons/src/Icons/arrow-down-checkmark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.4167 6.90759L10.2417 10.7326L14.0667 6.90759L15.2417 8.09093L10.2417 13.0909L5.2417 8.09093L6.4167 6.90759Z" fill="#181818"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 222 B |
3
packages/icons/src/Icons/blue-dot.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.37156 12.7469C12.5261 11.4593 14.0402 7.85996 12.7534 4.70768C11.4666 1.5554 7.86624 0.0438474 4.71174 1.33153C1.55723 2.61921 0.0431373 6.21851 1.32991 9.37079C2.61669 12.5231 6.21706 14.0346 9.37156 12.7469Z" fill="#BED7FE"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 324 B |
11
packages/icons/src/Icons/circle-55.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 55 55" fill="none" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<rect opacity="0.36" width="54.5639" height="54.5639" rx="27.282" fill="url(#pattern0)"/>
|
||||
<defs>
|
||||
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="0.0824721" height="0.0824721">
|
||||
<use xlink:href="#image0" transform="scale(0.00916356)"/>
|
||||
</pattern>
|
||||
<image id="image0" width="9" height="9"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAtSURBVHgB1dChDQAACAPBHwn23wVWAYMkxdKkVacKkF1jj80oyDfoFxgD1UdRPHMLOJmKMAEAAAAASUVORK5CYII="/>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 748 B |
245
packages/icons/src/Icons/create-account-illustration.svg
Normal file
@@ -0,0 +1,245 @@
|
||||
<svg
|
||||
width="320"
|
||||
height="292"
|
||||
viewBox="0 0 320 292"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
<path
|
||||
opacity="0.36"
|
||||
d="M28.293 250.445C28.293 250.445 147.618 182.328 291.708 250.445H28.293Z"
|
||||
fill="url(#pattern0)"
|
||||
/>
|
||||
<path
|
||||
d="M91.8025 33.6013L28.6904 47.8847C26.1046 48.4699 24.4827 51.0406 25.0679 53.6264L46.768 149.51C47.3532 152.096 49.9239 153.718 52.5098 153.132L115.622 138.849C118.208 138.264 119.83 135.693 119.244 133.107L97.5443 37.2238C96.959 34.6379 94.3884 33.0161 91.8025 33.6013Z"
|
||||
fill="#3F3D56"
|
||||
/>
|
||||
<path
|
||||
d="M31.2991 65.229C32.4831 65.229 33.4429 64.2692 33.4429 63.0852C33.4429 61.9012 32.4831 60.9414 31.2991 60.9414C30.1151 60.9414 29.1553 61.9012 29.1553 63.0852C29.1553 64.2692 30.1151 65.229 31.2991 65.229Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M33.4426 73.0904C34.6266 73.0904 35.5865 72.1306 35.5865 70.9466C35.5865 69.7626 34.6266 68.8027 33.4426 68.8027C32.2586 68.8027 31.2988 69.7626 31.2988 70.9466C31.2988 72.1306 32.2586 73.0904 33.4426 73.0904Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M47.3772 130.616C48.5612 130.616 49.521 129.656 49.521 128.472C49.521 127.288 48.5612 126.328 47.3772 126.328C46.1932 126.328 45.2334 127.288 45.2334 128.472C45.2334 129.656 46.1932 130.616 47.3772 130.616Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M49.5213 138.476C50.7053 138.476 51.6651 137.516 51.6651 136.332C51.6651 135.148 50.7053 134.188 49.5213 134.188C48.3373 134.188 47.3774 135.148 47.3774 136.332C47.3774 137.516 48.3373 138.476 49.5213 138.476Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M91.5362 73.4773L48.0181 83.3262L49.6596 90.5792L93.1777 80.7303L91.5362 73.4773Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M149.289 70.2477L76.813 86.6504L100.632 191.898L173.109 175.495L149.289 70.2477Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
d="M225.719 52.9509L153.243 69.3535L177.062 174.601L249.538 158.198L225.719 52.9509Z"
|
||||
fill="#3F3D56"
|
||||
/>
|
||||
<path
|
||||
d="M135.842 85.2683L92.3237 95.1172L93.9652 102.37L137.483 92.5213L135.842 85.2683Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M147.062 101.154L89.0376 114.286L89.448 116.099L147.472 102.968L147.062 101.154Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M148.019 105.386L89.9951 118.518L90.4055 120.331L148.43 107.199L148.019 105.386Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M148.977 109.616L90.9526 122.748L91.363 124.561L149.387 111.429L148.977 109.616Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M119.713 120.687L91.9102 126.979L92.3205 128.793L120.124 122.5L119.713 120.687Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M124.902 123.96L92.8682 131.21L93.2785 133.023L125.313 125.773L124.902 123.96Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M151.849 122.31L93.8252 135.441L94.2356 137.255L152.26 124.123L151.849 122.31Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M152.807 126.541L94.7832 139.673L95.1936 141.486L153.218 128.354L152.807 126.541Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M149.533 131.729L95.7402 143.903L96.1506 145.717L149.944 133.542L149.533 131.729Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M154.722 135.003L96.6982 148.135L97.1086 149.948L155.133 136.816L154.722 135.003Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
d="M127.876 145.526L97.6553 152.365L98.0656 154.178L128.287 147.339L127.876 145.526Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M209.358 132.168L177.324 139.418L177.735 141.231L209.769 133.981L209.358 132.168Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M236.306 130.517L178.282 143.648L178.692 145.462L236.716 132.33L236.306 130.517Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M237.263 134.747L179.239 147.879L179.65 149.692L237.674 136.56L237.263 134.747Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M233.99 139.936L180.197 152.11L180.607 153.924L234.4 141.749L233.99 139.936Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M239.178 143.209L181.154 156.341L181.565 158.154L239.589 145.022L239.178 143.209Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
d="M156.112 146.76L121.056 154.694L126.527 178.871L161.584 170.937L156.112 146.76Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M197.607 66.2068L162.551 74.1406L168.022 98.3174L203.079 90.3835L197.607 66.2068Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
opacity="0.3"
|
||||
d="M231.919 91.4812L196.863 99.415L202.334 123.592L237.391 115.658L231.919 91.4812Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<g opacity="0.5">
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M67.3864 214.327H66.3145V220.401H67.3864V214.327Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M69.8877 217.9V216.828H63.8135V217.9H69.8877Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
</g>
|
||||
<g opacity="0.5">
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M184.224 32H183.152V38.0742H184.224V32Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M186.726 35.573V34.5011H180.651V35.573H186.726Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
</g>
|
||||
<g opacity="0.5">
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M317.499 76.6631H316.427V82.7372H317.499V76.6631Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M320 80.2361V79.1642H313.926V80.2361H320Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M128.733 213.722C128.437 213.593 128.2 213.36 128.065 213.068C127.93 212.775 127.907 212.443 128.001 212.135C128.016 212.088 128.026 212.039 128.03 211.989C128.038 211.848 128.001 211.708 127.924 211.59C127.847 211.471 127.733 211.381 127.6 211.332C127.468 211.283 127.323 211.278 127.187 211.318C127.051 211.358 126.932 211.44 126.847 211.553C126.818 211.593 126.793 211.637 126.774 211.682C126.645 211.978 126.413 212.215 126.12 212.35C125.827 212.485 125.495 212.508 125.187 212.414C125.14 212.399 125.091 212.389 125.042 212.385C124.9 212.377 124.76 212.414 124.642 212.491C124.523 212.569 124.433 212.682 124.384 212.815C124.335 212.947 124.33 213.092 124.37 213.228C124.41 213.364 124.492 213.483 124.605 213.568C124.645 213.597 124.689 213.622 124.735 213.641C125.03 213.77 125.268 214.002 125.403 214.295C125.538 214.588 125.56 214.92 125.466 215.228C125.451 215.275 125.441 215.324 125.438 215.373C125.429 215.515 125.466 215.655 125.543 215.773C125.621 215.892 125.734 215.982 125.867 216.031C126 216.08 126.145 216.085 126.28 216.045C126.416 216.005 126.535 215.923 126.62 215.81C126.65 215.77 126.674 215.726 126.693 215.681C126.822 215.385 127.055 215.147 127.347 215.012C127.64 214.878 127.972 214.855 128.28 214.949C128.327 214.964 128.376 214.974 128.426 214.977C128.567 214.986 128.707 214.949 128.826 214.872C128.944 214.794 129.034 214.681 129.083 214.548C129.132 214.415 129.137 214.271 129.097 214.135C129.057 213.999 128.975 213.88 128.862 213.795C128.822 213.765 128.779 213.741 128.733 213.722Z"
|
||||
fill="#4D8AF0"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M180.97 258.26C180.674 258.131 180.436 257.898 180.301 257.606C180.167 257.313 180.144 256.981 180.238 256.673C180.253 256.626 180.263 256.577 180.267 256.527C180.275 256.386 180.238 256.246 180.161 256.128C180.083 256.009 179.97 255.919 179.837 255.87C179.705 255.821 179.56 255.816 179.424 255.856C179.288 255.896 179.169 255.978 179.084 256.091C179.054 256.131 179.03 256.175 179.011 256.22C178.882 256.516 178.649 256.754 178.357 256.888C178.064 257.023 177.732 257.046 177.424 256.952C177.377 256.937 177.328 256.927 177.278 256.923C177.137 256.915 176.997 256.952 176.879 257.029C176.76 257.107 176.67 257.22 176.621 257.353C176.572 257.485 176.567 257.63 176.607 257.766C176.647 257.902 176.729 258.021 176.842 258.106C176.882 258.136 176.926 258.16 176.971 258.179C177.267 258.308 177.505 258.541 177.639 258.833C177.774 259.126 177.797 259.458 177.703 259.766C177.688 259.813 177.678 259.862 177.674 259.911C177.666 260.053 177.703 260.193 177.78 260.311C177.858 260.43 177.971 260.52 178.104 260.569C178.236 260.618 178.381 260.623 178.517 260.583C178.653 260.543 178.772 260.461 178.857 260.348C178.887 260.308 178.911 260.264 178.93 260.219C179.059 259.923 179.292 259.685 179.584 259.55C179.877 259.416 180.209 259.393 180.517 259.487C180.564 259.502 180.613 259.512 180.662 259.516C180.804 259.524 180.944 259.487 181.062 259.41C181.181 259.332 181.271 259.219 181.32 259.086C181.369 258.954 181.374 258.809 181.334 258.673C181.294 258.537 181.212 258.418 181.099 258.333C181.059 258.303 181.015 258.279 180.97 258.26Z"
|
||||
fill="#4D8AF0"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M4.39143 107.5C4.09603 107.371 3.85826 107.139 3.72336 106.846C3.58846 106.553 3.56585 106.221 3.65985 105.913C3.67506 105.866 3.68465 105.817 3.6884 105.768C3.697 105.626 3.65989 105.486 3.58257 105.368C3.50525 105.249 3.39183 105.159 3.25912 105.11C3.1264 105.061 2.98145 105.056 2.84572 105.096C2.71 105.136 2.59072 105.218 2.50557 105.331C2.47628 105.371 2.45183 105.415 2.43271 105.461C2.30406 105.756 2.07128 105.994 1.77869 106.129C1.48609 106.264 1.15411 106.286 0.845929 106.192C0.798682 106.177 0.749803 106.167 0.700311 106.164C0.559115 106.155 0.41891 106.192 0.300455 106.269C0.181999 106.347 0.0915968 106.46 0.0426396 106.593C-0.00631764 106.726 -0.0112273 106.871 0.0286388 107.006C0.0685049 107.142 0.151028 107.261 0.263981 107.346C0.304058 107.376 0.347448 107.4 0.393253 107.419C0.688651 107.548 0.926428 107.781 1.06133 108.073C1.19623 108.366 1.21883 108.698 1.12483 109.006C1.10962 109.053 1.10003 109.102 1.09627 109.152C1.08768 109.293 1.12479 109.433 1.20211 109.552C1.27943 109.67 1.39285 109.76 1.52557 109.809C1.65828 109.858 1.80323 109.863 1.93896 109.823C2.07468 109.784 2.19395 109.701 2.27911 109.588C2.30839 109.548 2.33284 109.505 2.35196 109.459C2.48061 109.163 2.71339 108.926 3.00599 108.791C3.29858 108.656 3.63057 108.633 3.93875 108.727C3.986 108.742 4.03487 108.752 4.08436 108.756C4.22556 108.764 4.36576 108.727 4.48422 108.65C4.60267 108.573 4.69307 108.459 4.74203 108.327C4.79098 108.194 4.7959 108.049 4.75603 107.913C4.71617 107.777 4.63365 107.658 4.5207 107.573C4.48062 107.544 4.43723 107.519 4.39143 107.5Z"
|
||||
fill="#4D8AF0"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M313.529 161.788C313.234 161.66 312.996 161.427 312.861 161.134C312.726 160.842 312.704 160.51 312.798 160.201C312.813 160.154 312.822 160.105 312.826 160.056C312.835 159.915 312.798 159.774 312.72 159.656C312.643 159.537 312.53 159.447 312.397 159.398C312.264 159.349 312.119 159.344 311.983 159.384C311.848 159.424 311.728 159.506 311.643 159.619C311.614 159.66 311.59 159.703 311.57 159.749C311.442 160.044 311.209 160.282 310.916 160.417C310.624 160.552 310.292 160.574 309.984 160.48C309.936 160.465 309.887 160.455 309.838 160.452C309.697 160.443 309.557 160.48 309.438 160.558C309.32 160.635 309.229 160.748 309.18 160.881C309.131 161.014 309.126 161.159 309.166 161.294C309.206 161.43 309.289 161.549 309.402 161.635C309.442 161.664 309.485 161.688 309.531 161.707C309.826 161.836 310.064 162.069 310.199 162.361C310.334 162.654 310.357 162.986 310.263 163.294C310.247 163.341 310.238 163.39 310.234 163.44C310.225 163.581 310.262 163.721 310.34 163.84C310.417 163.958 310.531 164.049 310.663 164.097C310.796 164.146 310.941 164.151 311.077 164.111C311.212 164.072 311.332 163.989 311.417 163.876C311.446 163.836 311.471 163.793 311.49 163.747C311.618 163.451 311.851 163.214 312.144 163.079C312.436 162.944 312.768 162.921 313.076 163.015C313.124 163.031 313.173 163.04 313.222 163.044C313.363 163.052 313.503 163.015 313.622 162.938C313.74 162.861 313.831 162.747 313.88 162.615C313.929 162.482 313.934 162.337 313.894 162.201C313.854 162.065 313.771 161.946 313.658 161.861C313.618 161.832 313.575 161.807 313.529 161.788Z"
|
||||
fill="#4D8AF0"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M38.4446 196.819C39.6286 196.819 40.5884 195.859 40.5884 194.675C40.5884 193.491 39.6286 192.531 38.4446 192.531C37.2606 192.531 36.3008 193.491 36.3008 194.675C36.3008 195.859 37.2606 196.819 38.4446 196.819Z"
|
||||
fill="#F55F44"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M114.907 36.2876C116.091 36.2876 117.051 35.3278 117.051 34.1438C117.051 32.9598 116.091 32 114.907 32C113.723 32 112.764 32.9598 112.764 34.1438C112.764 35.3278 113.723 36.2876 114.907 36.2876Z"
|
||||
fill="#4D8AF0"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M165.716 197.766C166.9 197.766 167.86 196.806 167.86 195.622C167.86 194.438 166.9 193.479 165.716 193.479C164.532 193.479 163.572 194.438 163.572 195.622C163.572 196.806 164.532 197.766 165.716 197.766Z"
|
||||
fill="#47E6B1"
|
||||
/>
|
||||
<path
|
||||
opacity="0.5"
|
||||
d="M289.343 251.362C290.527 251.362 291.487 250.402 291.487 249.218C291.487 248.034 290.527 247.074 289.343 247.074C288.159 247.074 287.199 248.034 287.199 249.218C287.199 250.402 288.159 251.362 289.343 251.362Z"
|
||||
fill="#F55F44"
|
||||
/>
|
||||
<path
|
||||
d="M248.302 78.9783L185.189 93.2616C182.604 93.8469 180.982 96.4175 181.567 99.0034L203.267 194.887C203.852 197.473 206.423 199.094 209.009 198.509L272.121 184.226C274.707 183.641 276.329 181.07 275.743 178.484L254.043 82.6007C253.458 80.0149 250.887 78.393 248.302 78.9783Z"
|
||||
fill="#2B6FCF"
|
||||
/>
|
||||
<path
|
||||
d="M187.798 110.607C188.982 110.607 189.941 109.647 189.941 108.463C189.941 107.279 188.982 106.319 187.798 106.319C186.614 106.319 185.654 107.279 185.654 108.463C185.654 109.647 186.614 110.607 187.798 110.607Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M189.942 118.467C191.126 118.467 192.085 117.507 192.085 116.324C192.085 115.14 191.126 114.18 189.942 114.18C188.758 114.18 187.798 115.14 187.798 116.324C187.798 117.507 188.758 118.467 189.942 118.467Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M203.876 175.994C205.06 175.994 206.02 175.034 206.02 173.85C206.02 172.666 205.06 171.706 203.876 171.706C202.692 171.706 201.732 172.666 201.732 173.85C201.732 175.034 202.692 175.994 203.876 175.994Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M206.02 183.854C207.204 183.854 208.164 182.894 208.164 181.71C208.164 180.526 207.204 179.566 206.02 179.566C204.836 179.566 203.876 180.526 203.876 181.71C203.876 182.894 204.836 183.854 206.02 183.854Z"
|
||||
fill="white"
|
||||
/>
|
||||
<path
|
||||
d="M248.035 118.855L204.517 128.704L206.159 135.957L249.677 126.108L248.035 118.855Z"
|
||||
fill="#F5F5F5"
|
||||
/>
|
||||
<defs>
|
||||
<pattern
|
||||
id="pattern0"
|
||||
patternContentUnits="objectBoundingBox"
|
||||
width="0.0170833"
|
||||
height="0.148641"
|
||||
>
|
||||
<use xlink:href="#image0" transform="scale(0.00189815 0.0165157)" />
|
||||
</pattern>
|
||||
<image
|
||||
id="image0"
|
||||
width="9"
|
||||
height="9"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAtSURBVHgB1dChDQAACAPBHwn23wVWAYMkxdKkVacKkF1jj80oyDfoFxgD1UdRPHMLOJmKMAEAAAAASUVORK5CYII="
|
||||
/>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
12
packages/icons/src/Icons/diamond-with-horizontal-lines.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg viewBox="0 0 104 104" fill="none" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<rect opacity="0.36" y="52.0004" width="73.5394" height="73.5394" rx="8" transform="rotate(-45 0 52.0004)"
|
||||
fill="url(#pattern0)"/>
|
||||
<defs>
|
||||
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="0.0611917" height="0.0611917">
|
||||
<use xlink:href="#image0" transform="scale(0.00679907)"/>
|
||||
</pattern>
|
||||
<image id="image0" width="9" height="9"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAtSURBVHgB1dChDQAACAPBHwn23wVWAYMkxdKkVacKkF1jj80oyDfoFxgD1UdRPHMLOJmKMAEAAAAASUVORK5CYII="/>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 801 B |
4
packages/icons/src/Icons/ic-accessibility.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M17.5 7.50008H12.5V18.3334H10.8333V13.3334H9.16667V18.3334H7.5V7.50008H2.5V5.83342H17.5V7.50008ZM10 1.66675C10.442 1.66675 10.866 1.84234 11.1785 2.1549C11.4911 2.46746 11.6667 2.89139 11.6667 3.33342C11.6667 3.77544 11.4911 4.19937 11.1785 4.51193C10.866 4.82449 10.442 5.00008 10 5.00008C9.075 5.00008 8.33333 4.25008 8.33333 3.33342C8.33333 2.40841 9.075 1.66675 10 1.66675Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 476 B |
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18.3333 2.5H1.66667C0.758333 2.53333 0.0333333 3.25833 0 4.16667V15.8333C0.0333333 16.7417 0.758333 17.4667 1.66667 17.5H18.3333C19.2417 17.4667 19.9667 16.7417 20 15.8333V4.16667C19.9667 3.25833 19.2417 2.53333 18.3333 2.5ZM18.3333 15.8333H1.66667V4.16667H18.3333V15.8333ZM11.6667 14.1667V13.125C11.6667 11.7417 8.88333 11.0417 7.5 11.0417C6.11667 11.0417 3.33333 11.7417 3.33333 13.125V14.1667H11.6667ZM7.5 5.83333C6.94747 5.83333 6.41756 6.05283 6.02686 6.44353C5.63616 6.83423 5.41667 7.36413 5.41667 7.91667C5.41667 8.19025 5.47055 8.46116 5.57525 8.71392C5.67995 8.96669 5.83341 9.19635 6.02686 9.38981C6.41756 9.78051 6.94747 10 7.5 10C7.77359 10 8.0445 9.94611 8.29726 9.84142C8.55002 9.73672 8.77968 9.58326 8.97314 9.38981C9.16659 9.19635 9.32005 8.96669 9.42475 8.71392C9.52945 8.46116 9.58333 8.19025 9.58333 7.91667C9.58333 7.64308 9.52945 7.37217 9.42475 7.11941C9.32005 6.86665 9.16659 6.63698 8.97314 6.44353C8.77968 6.25007 8.55002 6.09661 8.29726 5.99192C8.0445 5.88722 7.77359 5.83333 7.5 5.83333ZM11.6667 5.83333V6.66667H16.6667V5.83333H11.6667ZM11.6667 7.5V8.33333H16.6667V7.5H11.6667ZM11.6667 9.16667V10H15V9.16667H11.6667Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
packages/icons/src/Icons/ic-account-circle.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.0001 16.0001C7.91675 16.0001 6.07508 14.9334 5.00008 13.3334C5.02508 11.6667 8.33342 10.7501 10.0001 10.7501C11.6667 10.7501 14.9751 11.6667 15.0001 13.3334C13.9251 14.9334 12.0834 16.0001 10.0001 16.0001ZM10.0001 4.16675C10.6631 4.16675 11.299 4.43014 11.7679 4.89898C12.2367 5.36782 12.5001 6.00371 12.5001 6.66675C12.5001 7.32979 12.2367 7.96568 11.7679 8.43452C11.299 8.90336 10.6631 9.16675 10.0001 9.16675C9.33704 9.16675 8.70116 8.90336 8.23232 8.43452C7.76347 7.96568 7.50008 7.32979 7.50008 6.66675C7.50008 6.00371 7.76347 5.36782 8.23232 4.89898C8.70116 4.43014 9.33704 4.16675 10.0001 4.16675ZM10.0001 1.66675C8.90573 1.66675 7.8221 1.8823 6.81105 2.30109C5.80001 2.71987 4.88135 3.3337 4.10753 4.10753C2.54472 5.67033 1.66675 7.78995 1.66675 10.0001C1.66675 12.2102 2.54472 14.3298 4.10753 15.8926C4.88135 16.6665 5.80001 17.2803 6.81105 17.6991C7.8221 18.1179 8.90573 18.3334 10.0001 18.3334C12.2102 18.3334 14.3298 17.4554 15.8926 15.8926C17.4554 14.3298 18.3334 12.2102 18.3334 10.0001C18.3334 5.39175 14.5834 1.66675 10.0001 1.66675Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
4
packages/icons/src/Icons/ic-account-variant.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="16" cy="16" r="16" fill="#DFE1E4"/>
|
||||
<path d="M16 5C17.7239 5 19.3772 5.68482 20.5962 6.90381C21.8152 8.12279 22.5 9.77609 22.5 11.5C22.5 13.2239 21.8152 14.8772 20.5962 16.0962C19.3772 17.3152 17.7239 18 16 18C14.2761 18 12.6228 17.3152 11.4038 16.0962C10.1848 14.8772 9.5 13.2239 9.5 11.5C9.5 9.77609 10.1848 8.12279 11.4038 6.90381C12.6228 5.68482 14.2761 5 16 5ZM16 19.625C20.3387 19.625 29 21.7863 29 26.125V32H3V26.125C3 21.7863 11.6613 19.625 16 19.625Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 555 B |
3
packages/icons/src/Icons/ic-add-bold.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.385 11.385H15.615C16.3799 11.385 17 10.7649 17 10C17 9.23507 16.3799 8.61497 15.615 8.61497H11.385V4.38503C11.385 3.6201 10.7649 3 10 3C9.23507 3 8.61497 3.6201 8.61497 4.38503V8.61497H4.38503C3.6201 8.61497 3 9.23507 3 10C3 10.7649 3.6201 11.385 4.38503 11.385H8.61497V15.615C8.61497 16.3799 9.23507 17 10 17C10.7649 17 11.385 16.3799 11.385 15.615V11.385Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 494 B |
3
packages/icons/src/Icons/ic-add-text.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.66675 13.3333H8.33342V11.6667H1.66675V13.3333ZM15.0001 11.6667V8.33333H13.3334V11.6667H10.0001V13.3333H13.3334V16.6667H15.0001V13.3333H18.3334V11.6667H15.0001ZM11.6667 5H1.66675V6.66667H11.6667V5ZM11.6667 8.33333H1.66675V10H11.6667V8.33333Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 336 B |
3
packages/icons/src/Icons/ic-add.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.5999 8.00002C13.5999 8.44185 13.2417 8.80002 12.7999 8.80002H8.7999V12.8C8.7999 13.2419 8.44173 13.6 7.9999 13.6C7.55807 13.6 7.1999 13.2419 7.1999 12.8V8.80002H3.1999C2.75807 8.80002 2.3999 8.44185 2.3999 8.00002C2.3999 7.5582 2.75807 7.20002 3.1999 7.20002H7.1999V3.20002C7.1999 2.7582 7.55807 2.40002 7.9999 2.40002C8.44173 2.40002 8.7999 2.7582 8.7999 3.20002V7.20002H12.7999C13.2417 7.20002 13.5999 7.5582 13.5999 8.00002Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 525 B |
4
packages/icons/src/Icons/ic-archive.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.4444 12.3333H12.3333C12.3333 12.9522 12.0875 13.5457 11.6499 13.9832C11.2123 14.4208 10.6188 14.6667 10 14.6667C9.38116 14.6667 8.78767 14.4208 8.35008 13.9832C7.9125 13.5457 7.66667 12.9522 7.66667 12.3333H4.55556V4.55556H15.4444V12.3333ZM15.4444 3H4.55556C3.69222 3 3 3.7 3 4.55556V15.4444C3 15.857 3.16389 16.2527 3.45561 16.5444C3.74733 16.8361 4.143 17 4.55556 17H15.4444C15.857 17 16.2527 16.8361 16.5444 16.5444C16.8361 16.2527 17 15.857 17 15.4444V4.55556C17 4.143 16.8361 3.74733 16.5444 3.45561C16.2527 3.16389 15.857 3 15.4444 3Z" />
|
||||
<path d="M13.1111 8.44442H11.5556V6.11108H8.44447V8.44442H6.88892L10 11.5555L13.1111 8.44442Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 736 B |
4
packages/icons/src/Icons/ic-arrow-down.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M9.23371 3.39985L10.9004 3.39985L10.9004 13.3999L14.892 9.40819C15.2188 9.08142 15.7486 9.08142 16.0754 9.40819C16.4021 9.73495 16.4021 10.2648 16.0754 10.5915L10.067 16.5999L4.05871 10.5915C3.73194 10.2648 3.73194 9.73495 4.05871 9.40819C4.38548 9.08142 4.91527 9.08142 5.24204 9.40819L9.23371 13.3999L9.23371 3.39985Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 418 B |
4
packages/icons/src/Icons/ic-arrow-left.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.6668 9.16663V10.8333L6.66677 10.8333L10.6584 14.825C10.9852 15.1517 10.9852 15.6815 10.6584 16.0083C10.3317 16.3351 9.80187 16.3351 9.4751 16.0083L3.46677 9.99996L9.4751 3.99163C9.80187 3.66486 10.3317 3.66486 10.6584 3.99163C10.9852 4.3184 10.9852 4.84819 10.6584 5.17496L6.66677 9.16663L16.6668 9.16663Z" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 407 B |
4
packages/icons/src/Icons/ic-arrow-right.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M3.46675 10.8332L3.46675 9.16652L13.4667 9.16652L9.47508 5.17485C9.14831 4.84808 9.14831 4.31829 9.47508 3.99152C9.80185 3.66475 10.3316 3.66475 10.6584 3.99152L16.6667 9.99985L10.6584 16.0082C10.3316 16.335 9.80185 16.335 9.47508 16.0082C9.14831 15.6814 9.14831 15.1516 9.47508 14.8249L13.4667 10.8332L3.46675 10.8332Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 418 B |
4
packages/icons/src/Icons/ic-arrow-up.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M10.9002 16.5999L9.23357 16.5999L9.23357 6.5999L5.2419 10.5916C4.91513 10.9183 4.38534 10.9183 4.05857 10.5916C3.7318 10.2648 3.7318 9.735 4.05857 9.40824L10.0669 3.3999L16.0752 9.40824C16.402 9.735 16.402 10.2648 16.0752 10.5916C15.7485 10.9183 15.2187 10.9183 14.8919 10.5916L10.9002 6.5999L10.9002 16.5999Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 408 B |
4
packages/icons/src/Icons/ic-arrows-horizontal.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M17.5 7.50008L14.1667 4.16675V6.66675H8.33333V8.33342H14.1667V10.8334L17.5 7.50008ZM5.83333 9.16675L2.5 12.5001L5.83333 15.8334V13.3334H11.6667V11.6667H5.83333V9.16675Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 267 B |
5
packages/icons/src/Icons/ic-arrows-sort-down.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.50008 2.5L4.16675 5.83333H6.66675V11.6667H8.33342V5.83333H10.8334L7.50008 2.5Z" />
|
||||
<path d="M13.3332 8.33325V14.1666H15.8332L12.4998 17.4999L9.1665 14.1666H11.6665V8.33325H13.3332Z" fill="#086DD6"/>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 297 B |
5
packages/icons/src/Icons/ic-arrows-sort-up.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.50008 2.5L4.16675 5.83333H6.66675V11.6667H8.33342V5.83333H10.8334L7.50008 2.5Z" fill="#086DD6"/>
|
||||
<path d="M13.3332 8.33325V14.1666H15.8332L12.4998 17.4999L9.1665 14.1666H11.6665V8.33325H13.3332Z"/>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 296 B |
4
packages/icons/src/Icons/ic-arrows-vertical.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M7.50008 2.5L4.16675 5.83333L6.66675 5.83333L6.66675 11.6667L8.33341 11.6667L8.33341 5.83333L10.8334 5.83333L7.50008 2.5ZM9.16675 14.1667L12.5001 17.5L15.8334 14.1667L13.3334 14.1667L13.3334 8.33333L11.6667 8.33333L11.6667 14.1667L9.16675 14.1667Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 346 B |
3
packages/icons/src/Icons/ic-asterisk.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.55072 3H11.4493L10.8768 8.537L15.5507 5.289L17 7.711L11.7536 10L17 12.289L15.5507 14.711L10.8768 11.463L11.4493 17H8.55072L9.12319 11.463L4.44928 14.711L3 12.289L8.24638 10L3 7.711L4.44928 5.289L9.12319 8.537L8.55072 3Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 315 B |
3
packages/icons/src/Icons/ic-attachment-file.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.4168 13.3334L5.8335 13.3334C4.94944 13.3334 4.1016 12.9822 3.47648 12.3571C2.85136 11.732 2.50017 10.8841 2.50017 10.0001C2.50017 9.11603 2.85136 8.26818 3.47648 7.64306C4.1016 7.01794 4.94944 6.66675 5.8335 6.66675L16.2502 6.66675C16.8027 6.66675 17.3326 6.88624 17.7233 7.27694C18.114 7.66764 18.3335 8.19755 18.3335 8.75008C18.3335 9.30262 18.114 9.83252 17.7233 10.2232C17.3326 10.6139 16.8027 10.8334 16.2502 10.8334L7.50016 10.8334C7.27915 10.8334 7.06719 10.7456 6.91091 10.5893C6.75463 10.4331 6.66683 10.2211 6.66683 10.0001C6.66683 9.77907 6.75463 9.56711 6.91091 9.41082C7.06719 9.25454 7.27915 9.16675 7.50016 9.16675L15.4168 9.16675L15.4168 7.91675L7.50016 7.91675C6.94763 7.91675 6.41773 8.13624 6.02703 8.52694C5.63632 8.91764 5.41683 9.44755 5.41683 10.0001C5.41683 10.5526 5.63632 11.0825 6.02703 11.4732C6.41773 11.8639 6.94763 12.0834 7.50016 12.0834L16.2502 12.0834C17.1342 12.0834 17.9821 11.7322 18.6072 11.1071C19.2323 10.482 19.5835 9.63414 19.5835 8.75008C19.5835 7.86603 19.2323 7.01818 18.6072 6.39306C17.9821 5.76794 17.1342 5.41675 16.2502 5.41675L5.8335 5.41675C4.61792 5.41675 3.45213 5.89963 2.59259 6.75917C1.73305 7.61872 1.25017 8.7845 1.25017 10.0001C1.25017 11.2157 1.73305 12.3814 2.59259 13.241C3.45213 14.1005 4.61792 14.5834 5.8335 14.5834L15.4168 14.5834L15.4168 13.3334Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
3
packages/icons/src/Icons/ic-authenticator-variant.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.16667 14.1667C9.16667 14.3877 9.25446 14.5996 9.41074 14.7559C9.56702 14.9122 9.77899 15 10 15C10.221 15 10.433 14.9122 10.5893 14.7559C10.7455 14.5996 10.8333 14.3877 10.8333 14.1667C10.8333 13.9457 10.7455 13.7337 10.5893 13.5774C10.433 13.4211 10.221 13.3333 10 13.3333C9.77899 13.3333 9.56702 13.4211 9.41074 13.5774C9.25446 13.7337 9.16667 13.9457 9.16667 14.1667ZM9.16667 2.5V5.83333H10.8333V4.23333C13.6583 4.64167 15.8333 7.05833 15.8333 10C15.8333 11.5471 15.2188 13.0308 14.1248 14.1248C13.0308 15.2188 11.5471 15.8333 10 15.8333C8.4529 15.8333 6.96917 15.2188 5.87521 14.1248C4.78125 13.0308 4.16667 11.5471 4.16667 10C4.16667 8.6 4.65833 7.31667 5.48333 6.31667L10 10.8333L11.175 9.65833L5.50833 3.99167V4.00833C3.68333 5.375 2.5 7.54167 2.5 10C2.5 11.9891 3.29018 13.8968 4.6967 15.3033C6.10322 16.7098 8.01088 17.5 10 17.5C11.9891 17.5 13.8968 16.7098 15.3033 15.3033C16.7098 13.8968 17.5 11.9891 17.5 10C17.5 8.01088 16.7098 6.10322 15.3033 4.6967C13.8968 3.29018 11.9891 2.5 10 2.5H9.16667ZM15 10C15 9.77899 14.9122 9.56702 14.7559 9.41074C14.5996 9.25446 14.3877 9.16667 14.1667 9.16667C13.9457 9.16667 13.7337 9.25446 13.5774 9.41074C13.4211 9.56702 13.3333 9.77899 13.3333 10C13.3333 10.221 13.4211 10.433 13.5774 10.5893C13.7337 10.7455 13.9457 10.8333 14.1667 10.8333C14.3877 10.8333 14.5996 10.7455 14.7559 10.5893C14.9122 10.433 15 10.221 15 10ZM5 10C5 10.221 5.0878 10.433 5.24408 10.5893C5.40036 10.7455 5.61232 10.8333 5.83333 10.8333C6.05435 10.8333 6.26631 10.7455 6.42259 10.5893C6.57887 10.433 6.66667 10.221 6.66667 10C6.66667 9.77899 6.57887 9.56702 6.42259 9.41074C6.26631 9.25446 6.05435 9.16667 5.83333 9.16667C5.61232 9.16667 5.40036 9.25446 5.24408 9.41074C5.0878 9.56702 5 9.77899 5 10Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
4
packages/icons/src/Icons/ic-authenticator.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M9.16667 14.1667C9.16667 14.3877 9.25446 14.5996 9.41074 14.7559C9.56702 14.9122 9.77899 15 10 15C10.221 15 10.433 14.9122 10.5893 14.7559C10.7455 14.5996 10.8333 14.3877 10.8333 14.1667C10.8333 13.9457 10.7455 13.7337 10.5893 13.5774C10.433 13.4211 10.221 13.3333 10 13.3333C9.77899 13.3333 9.56702 13.4211 9.41074 13.5774C9.25446 13.7337 9.16667 13.9457 9.16667 14.1667ZM9.16667 2.5V5.83333H10.8333V4.23333C13.6583 4.64167 15.8333 7.05833 15.8333 10C15.8333 11.5471 15.2188 13.0308 14.1248 14.1248C13.0308 15.2188 11.5471 15.8333 10 15.8333C8.4529 15.8333 6.96917 15.2188 5.87521 14.1248C4.78125 13.0308 4.16667 11.5471 4.16667 10C4.16667 8.6 4.65833 7.31667 5.48333 6.31667L10 10.8333L11.175 9.65833L5.50833 3.99167V4.00833C3.68333 5.375 2.5 7.54167 2.5 10C2.5 11.9891 3.29018 13.8968 4.6967 15.3033C6.10322 16.7098 8.01088 17.5 10 17.5C11.9891 17.5 13.8968 16.7098 15.3033 15.3033C16.7098 13.8968 17.5 11.9891 17.5 10C17.5 8.01088 16.7098 6.10322 15.3033 4.6967C13.8968 3.29018 11.9891 2.5 10 2.5H9.16667ZM15 10C15 9.77899 14.9122 9.56702 14.7559 9.41074C14.5996 9.25446 14.3877 9.16667 14.1667 9.16667C13.9457 9.16667 13.7337 9.25446 13.5774 9.41074C13.4211 9.56702 13.3333 9.77899 13.3333 10C13.3333 10.221 13.4211 10.433 13.5774 10.5893C13.7337 10.7455 13.9457 10.8333 14.1667 10.8333C14.3877 10.8333 14.5996 10.7455 14.7559 10.5893C14.9122 10.433 15 10.221 15 10ZM5 10C5 10.221 5.0878 10.433 5.24408 10.5893C5.40036 10.7455 5.61232 10.8333 5.83333 10.8333C6.05435 10.8333 6.26631 10.7455 6.42259 10.5893C6.57887 10.433 6.66667 10.221 6.66667 10C6.66667 9.77899 6.57887 9.56702 6.42259 9.41074C6.26631 9.25446 6.05435 9.16667 5.83333 9.16667C5.61232 9.16667 5.40036 9.25446 5.24408 9.41074C5.0878 9.56702 5 9.77899 5 10Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
4
packages/icons/src/Icons/ic-back-ios.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M12.36 16.9644C12.5798 17.176 12.8402 17.29 13.1494 17.29C13.776 17.29 14.2887 16.7854 14.2887 16.1588C14.2887 15.8495 14.1585 15.5566 13.9307 15.3368L8.39681 9.94946L13.9307 4.57837C14.1585 4.3505 14.2887 4.05754 14.2887 3.75643C14.2887 3.1298 13.776 2.62524 13.1494 2.62524C12.832 2.62524 12.5716 2.73104 12.36 2.94263L6.11816 9.04614C5.84147 9.3147 5.70312 9.60767 5.70312 9.9576C5.70312 10.2994 5.83333 10.5924 6.11816 10.8691L12.36 16.9644Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 544 B |
3
packages/icons/src/Icons/ic-bold.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.024 15.2014C10.5289 15.2014 10.954 15.1431 11.2991 15.0264C11.6507 14.9032 11.9351 14.738 12.1524 14.5306C12.3762 14.3231 12.536 14.0801 12.6318 13.8014C12.7341 13.5162 12.7852 13.2116 12.7852 12.8875C12.7852 12.2264 12.5615 11.7079 12.1141 11.3319C11.6731 10.9495 10.9732 10.7583 10.0144 10.7583H7.24353V15.2014H10.024ZM7.24353 4.77917V9.15417H9.48706C10.4458 9.15417 11.1617 8.9662 11.6347 8.59028C12.1077 8.21435 12.3442 7.67315 12.3442 6.96667C12.3442 6.19537 12.1205 5.63796 11.6731 5.29444C11.232 4.95093 10.5385 4.77917 9.59252 4.77917H7.24353ZM9.59252 3C10.4746 3 11.2288 3.0875 11.8552 3.2625C12.4816 3.43102 12.9962 3.67407 13.3988 3.99167C13.8015 4.30926 14.0956 4.69815 14.2809 5.15833C14.4727 5.61204 14.5686 6.12407 14.5686 6.69444C14.5686 7.025 14.5174 7.34583 14.4151 7.65694C14.3193 7.96157 14.1659 8.25 13.9549 8.52222C13.7504 8.78796 13.4915 9.02778 13.1783 9.24167C12.8651 9.45556 12.4944 9.6338 12.0662 9.77639C14.0221 10.1977 15 11.2509 15 12.9361C15 13.5324 14.8881 14.0801 14.6644 14.5792C14.4471 15.0718 14.1275 15.4995 13.7057 15.8625C13.2902 16.219 12.7756 16.4977 12.162 16.6986C11.5484 16.8995 10.8485 17 10.0623 17H5V3H9.59252Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
packages/icons/src/Icons/ic-box-filled.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 3H17V6.11111H3V3ZM3.77778 6.88889H16.2222V17H3.77778V6.88889ZM8.05556 9.22222C7.95242 9.22222 7.8535 9.26319 7.78057 9.33612C7.70764 9.40906 7.66667 9.50797 7.66667 9.61111V10.7778H12.3333V9.61111C12.3333 9.50797 12.2924 9.40906 12.2194 9.33612C12.1465 9.26319 12.0476 9.22222 11.9444 9.22222H8.05556Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 397 B |
3
packages/icons/src/Icons/ic-box.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.2222 17H3.77778V8.44444H5.33333V15.4444H14.6667V8.44444H16.2222V17ZM3 3H17V7.66667H3V3ZM8.05556 9.22222H11.9444C12.1622 9.22222 12.3333 9.39333 12.3333 9.61111V10.7778H7.66667V9.61111C7.66667 9.39333 7.83778 9.22222 8.05556 9.22222ZM4.55556 4.55556V6.11111H15.4444V4.55556H4.55556Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 378 B |
3
packages/icons/src/Icons/ic-camera.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.6667 3.33341H14.0251L12.5001 1.66675H7.50008L5.97508 3.33341H3.33341C2.89139 3.33341 2.46746 3.50901 2.1549 3.82157C1.84234 4.13413 1.66675 4.55805 1.66675 5.00008V15.0001C1.66675 15.4421 1.84234 15.866 2.1549 16.1786C2.46746 16.4912 2.89139 16.6667 3.33341 16.6667H16.6667C17.1088 16.6667 17.5327 16.4912 17.8453 16.1786C18.1578 15.866 18.3334 15.4421 18.3334 15.0001V5.00008C18.3334 4.55805 18.1578 4.13413 17.8453 3.82157C17.5327 3.50901 17.1088 3.33341 16.6667 3.33341ZM16.6667 15.0001H3.33341V5.00008H6.70842L8.23342 3.33341H11.7667L13.2917 5.00008H16.6667V15.0001ZM10.0001 5.83341C8.89501 5.83341 7.83521 6.2724 7.0538 7.0538C6.2724 7.8352 5.83342 8.89501 5.83342 10.0001C5.83342 11.1051 6.2724 12.165 7.0538 12.9464C7.83521 13.7278 8.89501 14.1667 10.0001 14.1667C11.1052 14.1667 12.165 13.7278 12.9464 12.9464C13.7278 12.165 14.1667 11.1051 14.1667 10.0001C14.1667 8.89501 13.7278 7.8352 12.9464 7.0538C12.165 6.2724 11.1052 5.83341 10.0001 5.83341ZM10.0001 12.5001C9.33704 12.5001 8.70116 12.2367 8.23231 11.7678C7.76347 11.299 7.50008 10.6631 7.50008 10.0001C7.50008 9.33704 7.76347 8.70115 8.23231 8.23231C8.70116 7.76347 9.33704 7.50008 10.0001 7.50008C10.6631 7.50008 11.299 7.76347 11.7678 8.23231C12.2367 8.70115 12.5001 9.33704 12.5001 10.0001C12.5001 10.6631 12.2367 11.299 11.7678 11.7678C11.299 12.2367 10.6631 12.5001 10.0001 12.5001Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
3
packages/icons/src/Icons/ic-check-all.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.409912 13.4101L5.99991 19.0001L7.40991 17.5801L1.82991 12.0001L0.409912 13.4101ZM22.2399 5.58008L11.6599 16.1701L7.49991 12.0001L6.06991 13.4101L11.6599 19.0001L23.6599 7.00008L22.2399 5.58008ZM17.9999 7.00008L16.5899 5.58008L10.2399 11.9301L11.6599 13.3401L17.9999 7.00008Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 370 B |
3
packages/icons/src/Icons/ic-check-bold.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.49995 17.0167L2.32495 11.8417L4.68328 9.48332L7.49995 12.3083L15.7333 4.06665L18.0916 6.42498L7.49995 17.0167Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 207 B |
5
packages/icons/src/Icons/ic-check-circle-filled.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M10.0049 18.3399C14.6082 18.3399 18.3399 14.6082 18.3399 10.0049C18.3399 5.40163 14.6082 1.66992 10.0049 1.66992C5.40163 1.66992 1.66992 5.40163 1.66992 10.0049C1.66992 14.6082 5.40163 18.3399 10.0049 18.3399ZM8.57143 13.9999L5 10.1612L6.00714 9.07094L8.57143 11.8272L13.9929 5.99992L15 7.09014L8.57143 13.9999Z"
|
||||
fill="currentColor" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 474 B |
4
packages/icons/src/Icons/ic-check-circle.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10 1.66666C5.41669 1.66666 1.66669 5.41666 1.66669 9.99999C1.66669 14.5833 5.41669 18.3333 10 18.3333C14.5834 18.3333 18.3334 14.5833 18.3334 9.99999C18.3334 5.41666 14.5834 1.66666 10 1.66666ZM10 16.6667C6.32502 16.6667 3.33335 13.675 3.33335 9.99999C3.33335 6.32499 6.32502 3.33332 10 3.33332C13.675 3.33332 16.6667 6.32499 16.6667 9.99999C16.6667 13.675 13.675 16.6667 10 16.6667ZM13.825 6.31666L8.33335 11.8083L6.17502 9.65832L5.00002 10.8333L8.33335 14.1667L15 7.49999L13.825 6.31666Z" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 588 B |
3
packages/icons/src/Icons/ic-check.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.5001 5.83345L7.50008 15.8334L2.91675 11.2501L4.09175 10.0751L7.50008 13.4751L16.3251 4.65845L17.5001 5.83345Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 206 B |
4
packages/icons/src/Icons/ic-chevron-down.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M6.17622 7.15015L10.0012 10.9751L13.8262 7.15015L15.0012 8.33348L10.0012 13.3335L5.00122 8.33348L6.17622 7.15015Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 212 B |
4
packages/icons/src/Icons/ic-chevron-left.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M13.0925 6.4167L9.26753 10.2417L13.0925 14.0667L11.9092 15.2417L6.9092 10.2417L11.9092 5.2417L13.0925 6.4167Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 208 B |
3
packages/icons/src/Icons/ic-chevron-right.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.90918 14.0667L10.7342 10.2417L6.90918 6.4167L8.09251 5.2417L13.0925 10.2417L8.09251 15.2417L6.90918 14.0667Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 205 B |
4
packages/icons/src/Icons/ic-chevron-up.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M13.826 13.3335L10.001 9.5085L6.17597 13.3335L5.00097 12.1502L10.001 7.15017L15.001 12.1502L13.826 13.3335Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 206 B |
5
packages/icons/src/Icons/ic-clear-circle-filled.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M12.9461 12.9461C12.6207 13.2716 12.093 13.2716 11.7676 12.9461L9.99984 11.1784L8.23207 12.9461C7.90664 13.2716 7.379 13.2716 7.05356 12.9461C6.72812 12.6207 6.72812 12.093 7.05356 11.7676L8.82133 9.99984L7.05356 8.23207C6.72812 7.90664 6.72812 7.379 7.05356 7.05356C7.379 6.72812 7.90664 6.72812 8.23207 7.05356L9.99984 8.82133L11.7676 7.05356C12.093 6.72812 12.6207 6.72812 12.9461 7.05356C13.2716 7.379 13.2716 7.90664 12.9461 8.23207L11.1784 9.99984L12.9461 11.7676C13.2716 12.093 13.2716 12.6207 12.9461 12.9461ZM15.8924 4.10728C15.1186 3.33346 14.1999 2.71963 13.1889 2.30084C12.1778 1.88205 11.0942 1.6665 9.99984 1.6665C7.7897 1.6665 5.67009 2.54448 4.10728 4.10728C2.54448 5.67008 1.6665 7.7897 1.6665 9.99984C1.6665 11.0942 1.88205 12.1778 2.30084 13.1889C2.71963 14.1999 3.33346 15.1186 4.10728 15.8924C5.67009 17.4552 7.7897 18.3332 9.99984 18.3332C12.21 18.3332 14.3296 17.4552 15.8924 15.8924C16.6662 15.1186 17.2801 14.1999 17.6988 13.1889C18.1176 12.1778 18.3332 11.0942 18.3332 9.99984C18.3332 8.90549 18.1176 7.82186 17.6988 6.81081C17.2801 5.79976 16.6662 4.8811 15.8924 4.10728Z"
|
||||
fill="currentColor" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
4
packages/icons/src/Icons/ic-close-circle-filled.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="10" cy="10" r="10" fill="#F4F5F7"/>
|
||||
<path d="M14.1966 6.74325C14.4562 6.48368 14.4562 6.06283 14.1966 5.80325C13.937 5.54368 13.5162 5.54368 13.2566 5.80325L9.99992 9.05992L6.74325 5.80325C6.48368 5.54368 6.06283 5.54368 5.80325 5.80325C5.54368 6.06283 5.54368 6.48368 5.80325 6.74325L9.05992 9.99992L5.80325 13.2566C5.54368 13.5162 5.54368 13.937 5.80325 14.1966C6.06283 14.4562 6.48368 14.4562 6.74325 14.1966L9.99992 10.9399L13.2566 14.1966C13.5162 14.4562 13.937 14.4562 14.1966 14.1966C14.4562 13.937 14.4562 13.5162 14.1966 13.2566L10.9399 9.99992L14.1966 6.74325Z" fill="#515357"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 681 B |
3
packages/icons/src/Icons/ic-close.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.2459 5.92925C15.5704 5.60478 15.5704 5.07872 15.2459 4.75425C14.9214 4.42978 14.3954 4.42978 14.0709 4.75425L10.0001 8.82508L5.92925 4.75425C5.60478 4.42978 5.07872 4.42978 4.75425 4.75425C4.42978 5.07872 4.42978 5.60478 4.75425 5.92925L8.82508 10.0001L4.75425 14.0709C4.42978 14.3954 4.42978 14.9214 4.75425 15.2459C5.07872 15.5704 5.60478 15.5704 5.92925 15.2459L10.0001 11.1751L14.0709 15.2459C14.3954 15.5704 14.9214 15.5704 15.2459 15.2459C15.5704 14.9214 15.5704 14.3954 15.2459 14.0709L11.1751 10.0001L15.2459 5.92925Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 623 B |
4
packages/icons/src/Icons/ic-cloud-off.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.44167 8.33334L13.1083 15H5C4.11594 15 3.2681 14.6488 2.64298 14.0237C2.01786 13.3986 1.66667 12.5507 1.66667 11.6667C1.66667 10.7826 2.01786 9.93478 2.64298 9.30965C3.2681 8.68453 4.11594 8.33334 5 8.33334H6.44167ZM2.5 4.39168L4.79167 6.66668C2.13333 6.79168 0 8.97501 0 11.6667C0 12.9928 0.526784 14.2645 1.46447 15.2022C2.40215 16.1399 3.67392 16.6667 5 16.6667H14.775L16.4417 18.3333L17.5 17.275L3.55833 3.33334L2.5 4.39168ZM16.125 8.35834C15.5583 5.49168 13.0333 3.33334 10 3.33334C8.75 3.33334 7.625 3.69168 6.66667 4.30834L7.875 5.52501C8.50833 5.19168 9.23333 5.00001 10 5.00001C11.2156 5.00001 12.3814 5.4829 13.2409 6.34244C14.1004 7.20198 14.5833 8.36777 14.5833 9.58334V10H15.8333C16.4964 10 17.1323 10.2634 17.6011 10.7322C18.0699 11.2011 18.3333 11.837 18.3333 12.5C18.3333 13.4417 17.8 14.2583 17.0333 14.6833L18.2417 15.8917C19.3 15.1333 20 13.9 20 12.5C20 10.3 18.2917 8.51668 16.125 8.35834Z" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 1009 B |
3
packages/icons/src/Icons/ic-code-tags.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.1667 13.8333L16.0001 10L12.1667 6.16667L13.3334 5L18.3334 10L13.3334 15L12.1667 13.8333ZM7.83341 13.8333L4.00008 10L7.83341 6.16667L6.66675 5L1.66675 10L6.66675 15L7.83341 13.8333Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 277 B |
4
packages/icons/src/Icons/ic-code.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M10.7417 2.5L12.375 2.83333L9.25832 17.5L7.62498 17.1667L10.7417 2.5ZM16.325 10L13.3333 7.00833V4.65L18.6833 10L13.3333 15.3417V12.9833L16.325 10ZM1.31665 10L6.66665 4.65V7.00833L3.67498 10L6.66665 12.9833V15.3417L1.31665 10Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 324 B |
3
packages/icons/src/Icons/ic-color-fill.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.8332 11.5833C15.8332 11.5833 14.1666 13.3917 14.1666 14.5C14.1666 14.942 14.3421 15.3659 14.6547 15.6785C14.9673 15.9911 15.3912 16.1667 15.8332 16.1667C16.2752 16.1667 16.6992 15.9911 17.0117 15.6785C17.3243 15.3659 17.4999 14.942 17.4999 14.5C17.4999 13.3917 15.8332 11.5833 15.8332 11.5833ZM4.34155 10.3333L8.33322 6.34167L12.3249 10.3333H4.34155ZM13.7999 9.45L6.34989 2L5.17489 3.175L7.15822 5.15833L2.86655 9.45C2.37489 9.91667 2.37489 10.725 2.86655 11.2167L7.44989 15.8C7.69155 16.0417 8.01655 16.1667 8.33322 16.1667C8.64989 16.1667 8.97489 16.0417 9.21655 15.8L13.7999 11.2167C14.2916 10.725 14.2916 9.91667 13.7999 9.45Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 727 B |
3
packages/icons/src/Icons/ic-copy.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.66724 3.66626C1.66724 2.56169 2.56267 1.66626 3.66724 1.66626H11.3339C12.4385 1.66626 13.3339 2.56169 13.3339 3.66626V13.3329H3.66724C2.56267 13.3329 1.66724 12.4375 1.66724 11.3329V3.66626ZM16.3339 6.66626C17.4385 6.66626 18.3339 7.56169 18.3339 8.66626V16.3329C18.3339 17.4375 17.4385 18.3329 16.3339 18.3329H8.66724C7.56267 18.3329 6.66724 17.4375 6.66724 16.3329V14.9996H15.0006V6.66626H16.3339ZM3.3339 3.33293V11.6663H11.6672V3.33293H3.3339Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 542 B |
4
packages/icons/src/Icons/ic-dashboard.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M15.8333 4.16667V5.83333H12.5V4.16667H15.8333ZM7.5 4.16667V9.16667H4.16667V4.16667H7.5ZM15.8333 10.8333V15.8333H12.5V10.8333H15.8333ZM7.5 14.1667V15.8333H4.16667V14.1667H7.5ZM17.5 2.5H10.8333V7.5H17.5V2.5ZM9.16667 2.5H2.5V10.8333H9.16667V2.5ZM17.5 9.16667H10.8333V17.5H17.5V9.16667ZM9.16667 12.5H2.5V17.5H9.16667V12.5Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 417 B |
3
packages/icons/src/Icons/ic-download.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 3.5V9.5H12.17L10 11.67L7.83 9.5H9V3.5H11ZM13 1.5H7V7.5H3L10 14.5L17 7.5H13V1.5ZM17 16.5H3V18.5H17V16.5Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 200 B |
3
packages/icons/src/Icons/ic-drag.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.5 9.16667H2.5V7.5H17.5V9.16667ZM17.5 10.8333H2.5V12.5H17.5V10.8333Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 164 B |
3
packages/icons/src/Icons/ic-draw.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.1251 17.3751C9.60844 16.7918 9.28344 15.1834 8.53344 14.1668C7.79177 13.1251 6.76677 12.4084 5.73344 11.7168C5.00011 11.2501 4.3251 10.6668 3.78344 10.0001C3.5501 9.72511 3.07511 9.21678 3.55844 9.11678C4.0501 9.01678 4.9001 9.50011 5.33344 9.68345C6.09177 10.0001 6.84177 10.3668 7.54177 10.8001L8.38344 9.38345C7.08344 8.52511 5.41677 7.76678 3.86677 7.54178C2.98344 7.40845 2.0501 7.59178 1.7501 8.55011C1.48344 9.37511 1.90844 10.2084 2.39177 10.8584C3.53344 12.3834 5.30844 13.1168 6.63344 14.4334C6.91677 14.7084 7.25844 15.0334 7.4251 15.4168C7.6001 15.7834 7.55844 15.8084 7.16677 15.8084C6.13344 15.8084 4.84177 15.0001 4.00011 14.4668L3.15844 15.8834C4.43344 16.6668 6.56677 17.8918 8.1251 17.3751ZM17.3668 4.37511C17.5501 4.19178 17.5501 3.89178 17.3668 3.71678L16.2834 2.63345C16.1084 2.45845 15.8084 2.45845 15.6334 2.63345L14.7834 3.48345L16.5168 5.21678L17.3668 4.37511ZM9.16677 9.10011V10.8334H10.9001L16.0251 5.70845L14.2918 3.97511L9.16677 9.10011Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
3
packages/icons/src/Icons/ic-editor-filled.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.5 6.01786V4.41071H4.16667V3.60714C4.16667 2.71518 4.91667 2 5.83333 2H10.8333V7.625L12.9167 6.41964L15 7.625V2H15.8333C16.7083 2 17.5 2.76339 17.5 3.60714V16.4643C17.5 17.308 16.7083 18.0714 15.8333 18.0714H5.83333C4.95833 18.0714 4.16667 17.308 4.16667 16.4643V15.6607H2.5V14.0536H4.16667V10.8393H2.5V9.23214H4.16667V6.01786H2.5ZM5.83333 9.23214H4.16667V10.8393H5.83333V9.23214ZM5.83333 6.01786V4.41071H4.16667V6.01786H5.83333ZM5.83333 15.6607V14.0536H4.16667V15.6607H5.83333Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 573 B |
3
packages/icons/src/Icons/ic-editor.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.1667 3.60714V8.42857L12.5 6.82143L10.8333 8.42857V3.60714H7.5V16.4643H15.8333V3.60714H14.1667ZM2.5 6.01786V4.41071H4.16667V3.60714C4.16667 2.71518 4.91667 2 5.83333 2H15.8333C16.7083 2 17.5 2.76339 17.5 3.60714V16.4643C17.5 17.308 16.7083 18.0714 15.8333 18.0714H5.83333C4.95833 18.0714 4.16667 17.308 4.16667 16.4643V15.6607H2.5V14.0536H4.16667V10.8393H2.5V9.23214H4.16667V6.01786H2.5ZM4.16667 4.41071V6.01786H5.83333V4.41071H4.16667ZM4.16667 15.6607H5.83333V14.0536H4.16667V15.6607ZM4.16667 10.8393H5.83333V9.23214H4.16667V10.8393Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 632 B |
3
packages/icons/src/Icons/ic-email-filled.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.9325 7.09058L17.1675 6.94371V6.66659V4.99992V4.09779L16.4025 4.57592L10.0008 8.57696L3.59915 4.57592L2.83415 4.09779V4.99992V6.66659V6.94371L3.06915 7.09058L9.73581 11.2573L10.0008 11.4229L10.2658 11.2573L16.9325 7.09058ZM3.33415 3.83325H16.6675C17.3096 3.83325 17.8341 4.35269 17.8341 4.99992V14.9999C17.8341 15.3093 17.7112 15.6061 17.4924 15.8249C17.2736 16.0437 16.9769 16.1666 16.6675 16.1666H3.33415C3.02473 16.1666 2.72798 16.0437 2.50919 15.8249C2.2904 15.6061 2.16748 15.3093 2.16748 14.9999V4.99992C2.16748 4.35106 2.68529 3.83325 3.33415 3.83325Z" stroke="#72767E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 671 B |
4
packages/icons/src/Icons/ic-email.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.33317 3.33331H16.6665C17.1085 3.33331 17.5325 3.50891 17.845 3.82147C18.1576 4.13403 18.3332 4.55795 18.3332 4.99998V15C18.3332 15.442 18.1576 15.8659 17.845 16.1785C17.5325 16.491 17.1085 16.6666 16.6665 16.6666H3.33317C2.40817 16.6666 1.6665 15.9166 1.6665 15V4.99998C1.6665 4.07498 2.40817 3.33331 3.33317 3.33331ZM9.99984 9.16665L16.6665 4.99998H3.33317L9.99984 9.16665ZM3.33317 15H16.6665V6.97498L9.99984 11.1333L3.33317 6.97498V15Z" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 538 B |
3
packages/icons/src/Icons/ic-enter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.26 12.1667L11.26 17.1667L10.0767 15.9833L13.0683 13H3.76001V3H5.42668V11.3333H13.0683L10.0767 8.35L11.26 7.16667L16.26 12.1667Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 224 B |
3
packages/icons/src/Icons/ic-eye-filled.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.99992 7.5C9.33688 7.5 8.70099 7.76339 8.23215 8.23223C7.76331 8.70107 7.49992 9.33696 7.49992 10C7.49992 10.663 7.76331 11.2989 8.23215 11.7678C8.70099 12.2366 9.33688 12.5 9.99992 12.5C10.663 12.5 11.2988 12.2366 11.7677 11.7678C12.2365 11.2989 12.4999 10.663 12.4999 10C12.4999 9.33696 12.2365 8.70107 11.7677 8.23223C11.2988 7.76339 10.663 7.5 9.99992 7.5ZM9.99992 14.1667C8.89485 14.1667 7.83504 13.7277 7.05364 12.9463C6.27224 12.1649 5.83325 11.1051 5.83325 10C5.83325 8.89493 6.27224 7.83512 7.05364 7.05372C7.83504 6.27232 8.89485 5.83333 9.99992 5.83333C11.105 5.83333 12.1648 6.27232 12.9462 7.05372C13.7276 7.83512 14.1666 8.89493 14.1666 10C14.1666 11.1051 13.7276 12.1649 12.9462 12.9463C12.1648 13.7277 11.105 14.1667 9.99992 14.1667ZM9.99992 3.75C5.83325 3.75 2.27492 6.34167 0.833252 10C2.27492 13.6583 5.83325 16.25 9.99992 16.25C14.1666 16.25 17.7249 13.6583 19.1666 10C17.7249 6.34167 14.1666 3.75 9.99992 3.75Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
3
packages/icons/src/Icons/ic-eye-off-filled.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.85825 7.5L12.4999 10.1333C12.4999 10.0917 12.4999 10.0417 12.4999 10C12.4999 9.33696 12.2365 8.70108 11.7677 8.23223C11.2988 7.76339 10.663 7.5 9.99992 7.5C9.94992 7.5 9.90825 7.5 9.85825 7.5ZM6.27492 8.16667L7.56659 9.45833C7.52492 9.63334 7.49992 9.80833 7.49992 10C7.49992 10.663 7.76331 11.2989 8.23215 11.7678C8.70099 12.2366 9.33688 12.5 9.99992 12.5C10.1833 12.5 10.3666 12.475 10.5416 12.4333L11.8333 13.725C11.2749 14 10.6583 14.1667 9.99992 14.1667C8.89485 14.1667 7.83504 13.7277 7.05364 12.9463C6.27224 12.1649 5.83325 11.1051 5.83325 10C5.83325 9.34167 5.99992 8.725 6.27492 8.16667ZM1.66659 3.55833L3.56659 5.45833L3.94159 5.83333C2.56659 6.91667 1.48325 8.33333 0.833252 10C2.27492 13.6583 5.83325 16.25 9.99992 16.25C11.2916 16.25 12.5249 16 13.6499 15.55L14.0083 15.9L16.4416 18.3333L17.4999 17.275L2.72492 2.5L1.66659 3.55833ZM9.99992 5.83333C11.105 5.83333 12.1648 6.27232 12.9462 7.05372C13.7276 7.83512 14.1666 8.89493 14.1666 10C14.1666 10.5333 14.0583 11.05 13.8666 11.5167L16.3083 13.9583C17.5583 12.9167 18.5583 11.55 19.1666 10C17.7249 6.34167 14.1666 3.75 9.99992 3.75C8.83325 3.75 7.71659 3.95833 6.66659 4.33333L8.47492 6.125C8.94992 5.94167 9.45825 5.83333 9.99992 5.83333Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |