This reverts commit d15a3fcc98.
@@ -24,7 +24,7 @@ export class ActionBarContributor {
|
||||
/**
|
||||
* Returns an array of primary actions in the given context.
|
||||
*/
|
||||
getActions(context: unknown): ReadonlyArray<IAction> {
|
||||
getActions(context: unknown): IAction[] {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
@@ -66,7 +66,7 @@ export class ContributableActionProvider implements IActionProvider {
|
||||
return false;
|
||||
}
|
||||
|
||||
getActions(tree: ITree, element: unknown): ReadonlyArray<IAction> {
|
||||
getActions(tree: ITree, element: unknown): IAction[] {
|
||||
const actions: IAction[] = [];
|
||||
const context = this.toContext(tree, element);
|
||||
|
||||
@@ -155,7 +155,7 @@ export interface IActionBarRegistry {
|
||||
|
||||
class ActionBarRegistry implements IActionBarRegistry {
|
||||
private readonly actionBarContributorConstructors: { scope: string; ctor: IConstructorSignature0<ActionBarContributor>; }[] = [];
|
||||
private readonly actionBarContributorInstances: Map<string, ActionBarContributor[]> = new Map();
|
||||
private readonly actionBarContributorInstances: { [scope: string]: ActionBarContributor[] } = Object.create(null);
|
||||
private instantiationService: IInstantiationService;
|
||||
|
||||
start(accessor: ServicesAccessor): void {
|
||||
@@ -169,16 +169,15 @@ class ActionBarRegistry implements IActionBarRegistry {
|
||||
|
||||
private createActionBarContributor(scope: string, ctor: IConstructorSignature0<ActionBarContributor>): void {
|
||||
const instance = this.instantiationService.createInstance(ctor);
|
||||
let target = this.actionBarContributorInstances.get(scope);
|
||||
let target = this.actionBarContributorInstances[scope];
|
||||
if (!target) {
|
||||
target = [];
|
||||
this.actionBarContributorInstances.set(scope, target);
|
||||
target = this.actionBarContributorInstances[scope] = [];
|
||||
}
|
||||
target.push(instance);
|
||||
}
|
||||
|
||||
private getContributors(scope: string): ActionBarContributor[] {
|
||||
return this.actionBarContributorInstances.get(scope) || [];
|
||||
return this.actionBarContributorInstances[scope] || [];
|
||||
}
|
||||
|
||||
registerActionBarContributor(scope: string, ctor: IConstructorSignature0<ActionBarContributor>): void {
|
||||
|
||||
@@ -21,9 +21,8 @@ import { MenuBarVisibility } from 'vs/platform/windows/common/windows';
|
||||
import { isWindows, isLinux } from 'vs/base/common/platform';
|
||||
import { IsMacContext } from 'vs/workbench/browser/contextkeys';
|
||||
import { KeybindingsRegistry, KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry';
|
||||
import { InEditorZenModeContext, IsCenteredLayoutContext } from 'vs/workbench/common/editor';
|
||||
import { InEditorZenModeContext } from 'vs/workbench/common/editor';
|
||||
import { ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey';
|
||||
import { SideBarVisibleContext } from 'vs/workbench/common/viewlet';
|
||||
|
||||
const registry = Registry.as<IWorkbenchActionRegistry>(Extensions.WorkbenchActions);
|
||||
const viewCategory = nls.localize('view', "View");
|
||||
@@ -62,8 +61,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '2_workbench_layout',
|
||||
command: {
|
||||
id: ToggleActivityBarVisibilityAction.ID,
|
||||
title: nls.localize({ key: 'miShowActivityBar', comment: ['&& denotes a mnemonic'] }, "Show &&Activity Bar"),
|
||||
toggled: ContextKeyExpr.equals('config.workbench.activityBar.visible', true)
|
||||
title: nls.localize({ key: 'miToggleActivityBar', comment: ['&& denotes a mnemonic'] }, "Toggle &&Activity Bar")
|
||||
},
|
||||
order: 4
|
||||
});
|
||||
@@ -97,8 +95,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '1_toggle_view',
|
||||
command: {
|
||||
id: ToggleCenteredLayout.ID,
|
||||
title: nls.localize('miToggleCenteredLayout', "Centered Layout"),
|
||||
toggled: IsCenteredLayoutContext
|
||||
title: nls.localize('miToggleCenteredLayout', "Toggle Centered Layout")
|
||||
},
|
||||
order: 3
|
||||
});
|
||||
@@ -206,22 +203,11 @@ export class ToggleSidebarPositionAction extends Action {
|
||||
registry.registerWorkbenchAction(new SyncActionDescriptor(ToggleSidebarPositionAction, ToggleSidebarPositionAction.ID, ToggleSidebarPositionAction.LABEL), 'View: Toggle Side Bar Position', viewCategory);
|
||||
|
||||
MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '3_workbench_layout_move',
|
||||
group: '2_workbench_layout',
|
||||
command: {
|
||||
id: ToggleSidebarPositionAction.ID,
|
||||
title: nls.localize({ key: 'miMoveSidebarRight', comment: ['&& denotes a mnemonic'] }, "&&Move Side Bar Right")
|
||||
title: nls.localize({ key: 'miMoveSidebarLeftRight', comment: ['&& denotes a mnemonic'] }, "&&Move Side Bar Left/Right")
|
||||
},
|
||||
when: ContextKeyExpr.notEquals('config.workbench.sideBar.location', 'right'),
|
||||
order: 2
|
||||
});
|
||||
|
||||
MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '3_workbench_layout_move',
|
||||
command: {
|
||||
id: ToggleSidebarPositionAction.ID,
|
||||
title: nls.localize({ key: 'miMoveSidebarLeft', comment: ['&& denotes a mnemonic'] }, "&&Move Side Bar Left")
|
||||
},
|
||||
when: ContextKeyExpr.equals('config.workbench.sideBar.location', 'right'),
|
||||
order: 2
|
||||
});
|
||||
|
||||
@@ -280,15 +266,14 @@ MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '2_workbench_layout',
|
||||
command: {
|
||||
id: ToggleSidebarVisibilityAction.ID,
|
||||
title: nls.localize({ key: 'miShowSidebar', comment: ['&& denotes a mnemonic'] }, "Show &&Side Bar"),
|
||||
toggled: SideBarVisibleContext
|
||||
title: nls.localize({ key: 'miToggleSidebar', comment: ['&& denotes a mnemonic'] }, "&&Toggle Side Bar")
|
||||
},
|
||||
order: 1
|
||||
});
|
||||
|
||||
// --- Toggle Statusbar Visibility
|
||||
|
||||
export class ToggleStatusbarVisibilityAction extends Action {
|
||||
class ToggleStatusbarVisibilityAction extends Action {
|
||||
|
||||
static readonly ID = 'workbench.action.toggleStatusbarVisibility';
|
||||
static readonly LABEL = nls.localize('toggleStatusbar', "Toggle Status Bar Visibility");
|
||||
@@ -320,8 +305,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '2_workbench_layout',
|
||||
command: {
|
||||
id: ToggleStatusbarVisibilityAction.ID,
|
||||
title: nls.localize({ key: 'miShowStatusbar', comment: ['&& denotes a mnemonic'] }, "Show S&&tatus Bar"),
|
||||
toggled: ContextKeyExpr.equals('config.workbench.statusBar.visible', true)
|
||||
title: nls.localize({ key: 'miToggleStatusbar', comment: ['&& denotes a mnemonic'] }, "&&Toggle Status Bar")
|
||||
},
|
||||
order: 3
|
||||
});
|
||||
@@ -386,8 +370,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '1_toggle_view',
|
||||
command: {
|
||||
id: ToggleZenMode.ID,
|
||||
title: nls.localize('miToggleZenMode', "Zen Mode"),
|
||||
toggled: InEditorZenModeContext
|
||||
title: nls.localize('miToggleZenMode', "Toggle Zen Mode")
|
||||
},
|
||||
order: 2
|
||||
});
|
||||
@@ -444,13 +427,13 @@ if (isWindows || isLinux) {
|
||||
}
|
||||
|
||||
MenuRegistry.appendMenuItem(MenuId.MenubarAppearanceMenu, {
|
||||
group: '2_workbench_layout',
|
||||
group: '1_toggle_view',
|
||||
command: {
|
||||
id: ToggleMenuBarAction.ID,
|
||||
title: nls.localize({ key: 'miShowMenuBar', comment: ['&& denotes a mnemonic'] }, "Show Menu &&Bar"),
|
||||
toggled: ContextKeyExpr.and(IsMacContext.toNegated(), ContextKeyExpr.notEquals('config.window.menuBarVisibility', 'hidden'), ContextKeyExpr.notEquals('config.window.menuBarVisibility', 'toggle'))
|
||||
title: nls.localize({ key: 'miToggleMenuBar', comment: ['&& denotes a mnemonic'] }, "Toggle Menu &&Bar")
|
||||
},
|
||||
order: 0
|
||||
when: IsMacContext.toNegated(),
|
||||
order: 4
|
||||
});
|
||||
|
||||
// --- Resize View
|
||||
|
||||
@@ -150,7 +150,7 @@ export abstract class Composite extends Component implements IComposite {
|
||||
/**
|
||||
* Returns an array of actions to show in the action bar of the composite.
|
||||
*/
|
||||
getActions(): ReadonlyArray<IAction> {
|
||||
getActions(): IAction[] {
|
||||
return [];
|
||||
}
|
||||
|
||||
@@ -158,14 +158,14 @@ export abstract class Composite extends Component implements IComposite {
|
||||
* Returns an array of actions to show in the action bar of the composite
|
||||
* in a less prominent way then action from getActions.
|
||||
*/
|
||||
getSecondaryActions(): ReadonlyArray<IAction> {
|
||||
getSecondaryActions(): IAction[] {
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of actions to show in the context menu of the composite
|
||||
*/
|
||||
getContextMenuActions(): ReadonlyArray<IAction> {
|
||||
getContextMenuActions(): IAction[] {
|
||||
return [];
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ import { Disposable } from 'vs/base/common/lifecycle';
|
||||
import { IContextKeyService, IContextKey, RawContextKey } from 'vs/platform/contextkey/common/contextkey';
|
||||
import { InputFocusedContext } from 'vs/platform/contextkey/common/contextkeys';
|
||||
import { IWindowsConfiguration } from 'vs/platform/windows/common/windows';
|
||||
import { ActiveEditorContext, EditorsVisibleContext, TextCompareEditorVisibleContext, TextCompareEditorActiveContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, TEXT_DIFF_EDITOR_ID, SplitEditorsVertically, InEditorZenModeContext, IsCenteredLayoutContext } from 'vs/workbench/common/editor';
|
||||
import { ActiveEditorContext, EditorsVisibleContext, TextCompareEditorVisibleContext, TextCompareEditorActiveContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, TEXT_DIFF_EDITOR_ID, SplitEditorsVertically, InEditorZenModeContext } from 'vs/workbench/common/editor';
|
||||
import { trackFocus, addDisposableListener, EventType } from 'vs/base/browser/dom';
|
||||
import { preferredSideBySideGroupDirection, GroupDirection, IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
|
||||
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
||||
@@ -16,10 +16,9 @@ import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/
|
||||
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
||||
import { WorkbenchState, IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';
|
||||
import { SideBarVisibleContext } from 'vs/workbench/common/viewlet';
|
||||
import { IWorkbenchLayoutService, Parts, Position } from 'vs/workbench/services/layout/browser/layoutService';
|
||||
import { IWorkbenchLayoutService, Parts } from 'vs/workbench/services/layout/browser/layoutService';
|
||||
import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet';
|
||||
import { isMacintosh, isLinux, isWindows } from 'vs/base/common/platform';
|
||||
import { PanelPositionContext } from 'vs/workbench/common/panel';
|
||||
|
||||
export const IsMacContext = new RawContextKey<boolean>('isMac', isMacintosh);
|
||||
export const IsLinuxContext = new RawContextKey<boolean>('isLinux', isLinux);
|
||||
@@ -39,8 +38,6 @@ export const WorkspaceFolderCountContext = new RawContextKey<number>('workspaceF
|
||||
|
||||
export const RemoteFileDialogContext = new RawContextKey<boolean>('remoteFileDialogVisible', false);
|
||||
|
||||
export const IsFullscreenContext = new RawContextKey<boolean>('isFullscreen', false);
|
||||
|
||||
export class WorkbenchContextKeysHandler extends Disposable {
|
||||
private inputFocusedContext: IContextKey<boolean>;
|
||||
|
||||
@@ -57,10 +54,8 @@ export class WorkbenchContextKeysHandler extends Disposable {
|
||||
|
||||
|
||||
private inZenModeContext: IContextKey<boolean>;
|
||||
private isFullscreenContext: IContextKey<boolean>;
|
||||
private isCenteredLayoutContext: IContextKey<boolean>;
|
||||
|
||||
private sideBarVisibleContext: IContextKey<boolean>;
|
||||
private panelPositionContext: IContextKey<string>;
|
||||
|
||||
constructor(
|
||||
@IContextKeyService private contextKeyService: IContextKeyService,
|
||||
@@ -98,9 +93,6 @@ export class WorkbenchContextKeysHandler extends Disposable {
|
||||
}));
|
||||
|
||||
this._register(this.layoutService.onZenModeChange(enabled => this.inZenModeContext.set(enabled)));
|
||||
this._register(this.layoutService.onFullscreenChange(fullscreen => this.isFullscreenContext.set(fullscreen)));
|
||||
this._register(this.layoutService.onCenteredLayoutChange(centered => this.isCenteredLayoutContext.set(centered)));
|
||||
this._register(this.layoutService.onPanelPositionChange(position => this.panelPositionContext.set(position)));
|
||||
|
||||
this._register(this.viewletService.onDidViewletClose(() => this.updateSideBarContextKeys()));
|
||||
this._register(this.viewletService.onDidViewletOpen(() => this.updateSideBarContextKeys()));
|
||||
@@ -148,21 +140,11 @@ export class WorkbenchContextKeysHandler extends Disposable {
|
||||
this.splitEditorsVerticallyContext = SplitEditorsVertically.bindTo(this.contextKeyService);
|
||||
this.updateSplitEditorsVerticallyContext();
|
||||
|
||||
// Fullscreen
|
||||
this.isFullscreenContext = IsFullscreenContext.bindTo(this.contextKeyService);
|
||||
|
||||
// Zen Mode
|
||||
this.inZenModeContext = InEditorZenModeContext.bindTo(this.contextKeyService);
|
||||
|
||||
// Centered Layout
|
||||
this.isCenteredLayoutContext = IsCenteredLayoutContext.bindTo(this.contextKeyService);
|
||||
|
||||
// Sidebar
|
||||
this.sideBarVisibleContext = SideBarVisibleContext.bindTo(this.contextKeyService);
|
||||
|
||||
// Panel Position
|
||||
this.panelPositionContext = PanelPositionContext.bindTo(this.contextKeyService);
|
||||
this.panelPositionContext.set(this.layoutService.getPanelPosition() === Position.RIGHT ? 'right' : 'bottom');
|
||||
}
|
||||
|
||||
private updateEditorContextKeys(): void {
|
||||
|
||||
@@ -94,8 +94,7 @@ export class ResourceLabels extends Disposable {
|
||||
@IModelService private readonly modelService: IModelService,
|
||||
@IDecorationsService private readonly decorationsService: IDecorationsService,
|
||||
@IThemeService private readonly themeService: IThemeService,
|
||||
@IFileService private readonly fileService: IFileService,
|
||||
@ILabelService private readonly labelService: ILabelService
|
||||
@IFileService private readonly fileService: IFileService
|
||||
) {
|
||||
super();
|
||||
|
||||
@@ -146,10 +145,6 @@ export class ResourceLabels extends Disposable {
|
||||
this._widgets.forEach(widget => widget.notifyFileAssociationsChange());
|
||||
}
|
||||
}));
|
||||
|
||||
this._register(this.labelService.onDidChangeFormatters(() => {
|
||||
this._widgets.forEach(widget => widget.notifyFormattersChange());
|
||||
}));
|
||||
}
|
||||
|
||||
get(index: number): IResourceLabel {
|
||||
@@ -217,10 +212,9 @@ export class ResourceLabel extends ResourceLabels {
|
||||
@IModelService modelService: IModelService,
|
||||
@IDecorationsService decorationsService: IDecorationsService,
|
||||
@IThemeService themeService: IThemeService,
|
||||
@IFileService fileService: IFileService,
|
||||
@ILabelService labelService: ILabelService
|
||||
@IFileService fileService: IFileService
|
||||
) {
|
||||
super(DEFAULT_LABELS_CONTAINER, instantiationService, extensionService, configurationService, modelService, decorationsService, themeService, fileService, labelService);
|
||||
super(DEFAULT_LABELS_CONTAINER, instantiationService, extensionService, configurationService, modelService, decorationsService, themeService, fileService);
|
||||
|
||||
this._label = this._register(this.create(container, options));
|
||||
}
|
||||
@@ -315,10 +309,6 @@ class ResourceLabelWidget extends IconLabel {
|
||||
this.render(true);
|
||||
}
|
||||
|
||||
notifyFormattersChange(): void {
|
||||
this.render(false);
|
||||
}
|
||||
|
||||
setResource(label: IResourceLabelProps, options?: IResourceLabelOptions): void {
|
||||
const hasResourceChanged = this.hasResourceChanged(label, options);
|
||||
|
||||
|
||||
@@ -5,11 +5,11 @@
|
||||
|
||||
import { IDisposable, dispose, Disposable } from 'vs/base/common/lifecycle';
|
||||
import { Event, Emitter } from 'vs/base/common/event';
|
||||
import { EventType, addDisposableListener, addClass, removeClass, isAncestor, getClientArea, position, size, EventHelper } from 'vs/base/browser/dom';
|
||||
import { EventType, addDisposableListener, addClass, removeClass, isAncestor, getClientArea, position, size } from 'vs/base/browser/dom';
|
||||
import { onDidChangeFullscreen, isFullscreen, getZoomFactor } from 'vs/base/browser/browser';
|
||||
import { IBackupFileService } from 'vs/workbench/services/backup/common/backup';
|
||||
import { Registry } from 'vs/platform/registry/common/platform';
|
||||
import { isWindows, isLinux, isMacintosh, isWeb } from 'vs/base/common/platform';
|
||||
import { isWindows, isLinux, isMacintosh } from 'vs/base/common/platform';
|
||||
import { pathsToEditors } from 'vs/workbench/common/editor';
|
||||
import { SidebarPart } from 'vs/workbench/browser/parts/sidebar/sidebarPart';
|
||||
import { PanelPart } from 'vs/workbench/browser/parts/panel/panelPart';
|
||||
@@ -43,10 +43,7 @@ enum Settings {
|
||||
SIDEBAR_POSITION = 'workbench.sideBar.location',
|
||||
PANEL_POSITION = 'workbench.panel.defaultLocation',
|
||||
|
||||
ZEN_MODE_RESTORE = 'zenMode.restore',
|
||||
|
||||
// TODO @misolori remove before shipping stable
|
||||
ICON_EXPLORATION_ENABLED = 'workbench.iconExploration.enabled'
|
||||
ZEN_MODE_RESTORE = 'zenMode.restore'
|
||||
}
|
||||
|
||||
enum Storage {
|
||||
@@ -66,17 +63,8 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
private readonly _onTitleBarVisibilityChange: Emitter<void> = this._register(new Emitter<void>());
|
||||
get onTitleBarVisibilityChange(): Event<void> { return this._onTitleBarVisibilityChange.event; }
|
||||
|
||||
private readonly _onZenModeChange: Emitter<boolean> = this._register(new Emitter<boolean>());
|
||||
get onZenModeChange(): Event<boolean> { return this._onZenModeChange.event; }
|
||||
|
||||
private readonly _onFullscreenChange: Emitter<boolean> = this._register(new Emitter<boolean>());
|
||||
get onFullscreenChange(): Event<boolean> { return this._onFullscreenChange.event; }
|
||||
|
||||
private readonly _onCenteredLayoutChange: Emitter<boolean> = this._register(new Emitter<boolean>());
|
||||
get onCenteredLayoutChange(): Event<boolean> { return this._onCenteredLayoutChange.event; }
|
||||
|
||||
private readonly _onPanelPositionChange: Emitter<string> = this._register(new Emitter<string>());
|
||||
get onPanelPositionChange(): Event<string> { return this._onPanelPositionChange.event; }
|
||||
private readonly _onZenMode: Emitter<boolean> = this._register(new Emitter<boolean>());
|
||||
get onZenModeChange(): Event<boolean> { return this._onZenMode.event; }
|
||||
|
||||
private readonly _onLayout = this._register(new Emitter<IDimension>());
|
||||
get onLayout(): Event<IDimension> { return this._onLayout.event; }
|
||||
@@ -160,11 +148,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
wasSideBarVisible: false,
|
||||
wasPanelVisible: false,
|
||||
transitionDisposeables: [] as IDisposable[]
|
||||
},
|
||||
|
||||
// TODO @misolori remove before shipping stable
|
||||
iconExploration: {
|
||||
enabled: false
|
||||
}
|
||||
};
|
||||
|
||||
@@ -223,11 +206,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
// Prevent workbench from scrolling #55456
|
||||
this._register(addDisposableListener(this.container, EventType.SCROLL, () => this.container.scrollTop = 0));
|
||||
|
||||
// Prevent native context menus in web #73781
|
||||
if (isWeb) {
|
||||
this._register(addDisposableListener(this.container, EventType.CONTEXT_MENU, (e) => EventHelper.stop(e, true)));
|
||||
}
|
||||
|
||||
// Menubar visibility changes
|
||||
if ((isWindows || isLinux) && getTitleBarStyle(this.configurationService, this.environmentService) === 'custom') {
|
||||
this._register(this.titleService.onMenubarVisibilityChange(visible => this.onMenubarToggled(visible)));
|
||||
@@ -264,8 +242,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
this._onTitleBarVisibilityChange.fire();
|
||||
this.layout(); // handle title bar when fullscreen changes
|
||||
}
|
||||
|
||||
this._onFullscreenChange.fire(this.state.fullscreen);
|
||||
}
|
||||
|
||||
private doUpdateLayoutConfiguration(skipLayout?: boolean): void {
|
||||
@@ -298,12 +274,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
// Menubar visibility
|
||||
const newMenubarVisibility = this.configurationService.getValue<MenuBarVisibility>(Settings.MENUBAR_VISIBLE);
|
||||
this.setMenubarVisibility(newMenubarVisibility, !!skipLayout);
|
||||
|
||||
// TODO @misolori remove before shipping stable
|
||||
// Icon exploration on setting change
|
||||
const newIconExplorationEnabled = this.configurationService.getValue<boolean>(Settings.ICON_EXPLORATION_ENABLED);
|
||||
this.setIconExploration(newIconExplorationEnabled);
|
||||
|
||||
}
|
||||
|
||||
private setSideBarPosition(position: Position): void {
|
||||
@@ -416,11 +386,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
|
||||
// Zen mode enablement
|
||||
this.state.zenMode.restore = this.storageService.getBoolean(Storage.ZEN_MODE_ENABLED, StorageScope.WORKSPACE, false) && this.configurationService.getValue(Settings.ZEN_MODE_RESTORE);
|
||||
|
||||
// TODO @misolori remove before shipping stable
|
||||
// Icon exploration
|
||||
this.state.iconExploration.enabled = this.configurationService.getValue<boolean>(Settings.ICON_EXPLORATION_ENABLED);
|
||||
this.setIconExploration(this.state.iconExploration.enabled);
|
||||
}
|
||||
|
||||
private resolveEditorsToOpen(fileService: IFileService): Promise<IResourceEditor[]> | IResourceEditor[] {
|
||||
@@ -666,7 +631,7 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
}
|
||||
|
||||
// Event
|
||||
this._onZenModeChange.fire(this.state.zenMode.active);
|
||||
this._onZenMode.fire(this.state.zenMode.active);
|
||||
}
|
||||
|
||||
private setStatusBarHidden(hidden: boolean, skipLayout?: boolean): void {
|
||||
@@ -689,19 +654,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
}
|
||||
}
|
||||
|
||||
// TODO @misolori remove before shipping stable
|
||||
private setIconExploration(enabled: boolean): void {
|
||||
this.state.iconExploration.enabled = enabled;
|
||||
|
||||
// Update DOM
|
||||
if (enabled) {
|
||||
document.body.dataset.exploration = 'icon-exploration';
|
||||
} else {
|
||||
document.body.dataset.exploration = '';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
protected createWorkbenchLayout(instantiationService: IInstantiationService): void {
|
||||
const titleBar = this.getPart(Parts.TITLEBAR_PART);
|
||||
const editorPart = this.getPart(Parts.EDITOR_PART);
|
||||
@@ -876,8 +828,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
this.layout();
|
||||
}
|
||||
}
|
||||
|
||||
this._onCenteredLayoutChange.fire(this.state.editor.centered);
|
||||
}
|
||||
|
||||
resizePart(part: Parts, sizeChange: number): void {
|
||||
@@ -1119,8 +1069,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
|
||||
} else {
|
||||
this.workbenchGrid.layout();
|
||||
}
|
||||
|
||||
this._onPanelPositionChange.fire(positionToString(this.state.panel.position));
|
||||
}
|
||||
|
||||
private savePanelDimension(): void {
|
||||
|
||||
@@ -10,14 +10,14 @@ import { IStorageService, StorageScope } from 'vs/platform/storage/common/storag
|
||||
import { IContextViewService } from 'vs/platform/contextview/browser/contextView';
|
||||
import { Disposable } from 'vs/base/common/lifecycle';
|
||||
import { IThemeService } from 'vs/platform/theme/common/themeService';
|
||||
import { isMacintosh, isWeb } from 'vs/base/common/platform';
|
||||
import { isMacintosh } from 'vs/base/common/platform';
|
||||
import { memoize } from 'vs/base/common/decorators';
|
||||
import { Dimension, getClientArea, size, position, hide, show } from 'vs/base/browser/dom';
|
||||
import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
|
||||
import { getZoomFactor } from 'vs/base/browser/browser';
|
||||
import { Part } from 'vs/workbench/browser/part';
|
||||
|
||||
const TITLE_BAR_HEIGHT = isMacintosh && !isWeb ? 22 : 30;
|
||||
const TITLE_BAR_HEIGHT = isMacintosh ? 22 : 30;
|
||||
const STATUS_BAR_HEIGHT = 22;
|
||||
const ACTIVITY_BAR_WIDTH = 50;
|
||||
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M13.023 13.5665L15.675 10.913L14.6175 9.85403L11.964 12.5075L9.38099 9.92603L8.32349 10.9835L10.9065 13.5665L8.25449 16.22L9.31199 17.2775L11.9655 14.6255L14.688 17.3465L15.7455 16.289L13.023 13.5665Z" fill="white"/>
|
||||
<path d="M4.24016 12.4989L0.00115967 12.5045L0.00311923 14.0015L4.24212 13.9959L4.24016 12.4989Z" fill="white"/>
|
||||
<path d="M24 12.5H20.085V14H24V12.5Z" fill="white"/>
|
||||
<path d="M3.68029 3.87413L2.62314 4.93405L5.98771 8.28982L7.04486 7.2299L3.68029 3.87413Z" fill="white"/>
|
||||
<path d="M18.2479 18.4368L17.1873 19.4975L20.1911 22.5013L21.2517 21.4406L18.2479 18.4368Z" fill="white"/>
|
||||
<path d="M20.2847 3.90364L17.0981 7.09805L18.158 8.15528L21.3445 4.96086L20.2847 3.90364Z" fill="white"/>
|
||||
<path d="M5.75325 18.4362L2.78128 21.4082L3.84194 22.4688L6.81391 19.4969L5.75325 18.4362Z" fill="white"/>
|
||||
<path d="M17.382 7.98648C18.4679 9.45106 19.0604 11.2228 19.074 13.046C19.074 17.546 15.9765 21.2075 12.174 21.2075C8.37149 21.2075 5.27398 17.546 5.27398 13.046C5.22522 11.2489 5.73572 9.48096 6.73498 7.98648H17.385H17.382ZM18.117 6.48648H5.98648C4.48996 8.3394 3.70286 10.665 3.76648 13.046C3.76648 18.3815 7.52849 22.7075 12.1665 22.7075C16.8045 22.7075 20.5665 18.3815 20.5665 13.046C20.5487 10.6372 19.677 8.31291 18.1065 6.48648H18.117Z" fill="white"/>
|
||||
<path d="M9.417 7C9.14696 6.54603 9.003 6.02821 9 5.5C9 4.70435 9.31607 3.94129 9.87868 3.37868C10.4413 2.81607 11.2044 2.5 12 2.5C12.7956 2.5 13.5587 2.81607 14.1213 3.37868C14.6839 3.94129 15 4.70435 15 5.5C14.997 6.02821 14.853 6.54603 14.583 7H16.224C16.4018 6.51965 16.4951 6.01217 16.5 5.5C16.5 4.30653 16.0259 3.16193 15.182 2.31802C14.3381 1.47411 13.1935 1 12 1C10.8065 1 9.66193 1.47411 8.81802 2.31802C7.97411 3.16193 7.5 4.30653 7.5 5.5C7.50485 6.01217 7.59823 6.51965 7.776 7H9.417Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.5 0V10.5H24V0H13.5ZM22.5 9H15V1.5H22.5V9ZM10.5 4.5H0V24H19.5V13.5H10.5V4.5ZM9 22.5H1.5V15H9V22.5ZM9 13.5H1.5V6H9V13.5ZM18 15V22.5H10.5V15H18Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 274 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 5H3V23H18V18H17V22H4V6H8V5Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 7V18H8V2H16V6V7H17H21ZM16 1H7V19H22V7V6L17 1H16ZM17 2.41421L20.5858 6H17V2.41421Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 350 B |
@@ -1,15 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<g clip-path="url(#clip1)">
|
||||
<path d="M21.7001 6.79651C21.3124 5.90153 20.5985 5.18769 19.7036 4.80001C19.2455 4.59916 18.7502 4.49695 18.2501 4.50001C17.748 4.4974 17.2509 4.59957 16.7906 4.80001C16.3435 4.99198 15.9364 5.26624 15.5906 5.60851C15.2504 5.95083 14.9781 6.35443 14.7881 6.79801C14.5935 7.25714 14.4955 7.75138 14.5001 8.25001C14.4977 8.67564 14.5713 9.09827 14.7176 9.498C14.8594 9.88691 15.0619 10.2509 15.3176 10.5765C15.5726 10.9022 15.8816 11.1817 16.2311 11.403C16.59 11.6308 16.9844 11.7971 17.3981 11.895C17.3285 12.1273 17.2216 12.3466 17.0816 12.5445C16.9452 12.7392 16.7792 12.9113 16.5896 13.0545C16.4011 13.196 16.1916 13.3069 15.9686 13.383C15.7373 13.462 15.4944 13.5015 15.2501 13.5H10.7501C10.3471 13.4992 9.94696 13.5666 9.56656 13.6995C9.18255 13.8326 8.82245 14.0265 8.50006 14.274V7.41751C8.925 7.3351 9.33154 7.17655 9.70006 6.94951C10.0599 6.72813 10.3807 6.44888 10.6496 6.123C10.9168 5.7956 11.1267 5.42539 11.2706 5.02801C11.4219 4.61889 11.4996 4.18621 11.5001 3.75001C11.5031 3.24983 11.4009 2.7546 11.2001 2.29651C10.8124 1.40153 10.0985 0.687688 9.20356 0.300006C8.74547 0.09916 8.25024 -0.00305398 7.75006 5.67945e-06C7.24799 -0.00260461 6.7509 0.0995727 6.29056 0.300006C5.84346 0.491981 5.4364 0.766237 5.09056 1.10851C4.75042 1.45083 4.47813 1.85443 4.28806 2.29801C4.09351 2.75714 3.99548 3.25138 4.00006 3.75001C3.99744 4.61508 4.29602 5.45408 4.84456 6.123C5.11251 6.4492 5.43289 6.72851 5.79256 6.94951C6.16337 7.17739 6.57253 7.33597 7.00006 7.41751V16.5825C6.57253 16.664 6.16337 16.8226 5.79256 17.0505C5.43289 17.2715 5.11251 17.5508 4.84456 17.877C4.29602 18.5459 3.99744 19.3849 4.00006 20.25C3.99715 20.7513 4.09669 21.248 4.29256 21.7095C4.67082 22.6117 5.38834 23.3293 6.29056 23.7075C6.75207 23.9034 7.24872 24.0029 7.75006 24C8.25004 24.001 8.74484 23.8989 9.20356 23.7C9.64714 23.5099 10.0507 23.2376 10.3931 22.8975C10.7353 22.5517 11.0096 22.1446 11.2016 21.6975C11.569 20.8401 11.5979 19.8754 11.2826 18.9975C11.0031 18.2152 10.4718 17.5477 9.77206 17.1C9.41409 16.8691 9.01947 16.7007 8.60506 16.602C8.74549 16.1399 9.02848 15.734 9.41356 15.4425C9.60199 15.301 9.81157 15.1902 10.0346 15.114C10.265 15.0364 10.5069 14.9979 10.7501 15H15.2501C15.6898 15.0022 16.1263 14.925 16.5386 14.772C16.9393 14.6224 17.312 14.4063 17.6411 14.133C17.9702 13.8581 18.2497 13.5289 18.4676 13.1595C18.6918 12.7794 18.8482 12.3632 18.9296 11.9295C19.3645 11.8551 19.7817 11.6999 20.1596 11.472C20.9019 11.0303 21.4709 10.3481 21.7721 9.53851C21.925 9.12624 22.0023 8.68973 22.0001 8.25001C22.0031 7.74983 21.9009 7.2546 21.7001 6.79651ZM6.87106 5.82451C6.32931 5.59715 5.89842 5.16626 5.67106 4.62451C5.55521 4.34593 5.49556 4.04721 5.49556 3.74551C5.49556 3.4438 5.55521 3.14508 5.67106 2.86651C5.8991 2.32521 6.32976 1.89454 6.87106 1.66651C7.14963 1.55065 7.44836 1.49101 7.75006 1.49101C8.05176 1.49101 8.35049 1.55065 8.62906 1.66651C9.17082 1.89386 9.60171 2.32475 9.82906 2.86651C9.94492 3.14508 10.0046 3.4438 10.0046 3.74551C10.0046 4.04721 9.94492 4.34593 9.82906 4.62451C9.60294 5.16709 9.17164 5.59838 8.62906 5.82451C8.35049 5.94036 8.05176 6.00001 7.75006 6.00001C7.44836 6.00001 7.14963 5.94036 6.87106 5.82451ZM8.62906 18.1755C9.17082 18.4029 9.60171 18.8338 9.82906 19.3755C9.94492 19.6541 10.0046 19.9528 10.0046 20.2545C10.0046 20.5562 9.94492 20.8549 9.82906 21.1335C9.60294 21.6761 9.17164 22.1074 8.62906 22.3335C8.35049 22.4494 8.05176 22.509 7.75006 22.509C7.44836 22.509 7.14963 22.4494 6.87106 22.3335C6.32931 22.1061 5.89842 21.6753 5.67106 21.1335C5.55521 20.8549 5.49556 20.5562 5.49556 20.2545C5.49556 19.9528 5.55521 19.6541 5.67106 19.3755C5.8991 18.8342 6.32976 18.4035 6.87106 18.1755C7.14963 18.0596 7.44836 18 7.75006 18C8.05176 18 8.35049 18.0596 8.62906 18.1755ZM20.3291 9.12901C20.1029 9.67159 19.6716 10.1029 19.1291 10.329C18.8505 10.4449 18.5518 10.5045 18.2501 10.5045C17.9484 10.5045 17.6496 10.4449 17.3711 10.329C16.8293 10.1016 16.3984 9.67076 16.1711 9.12901C16.0552 8.85043 15.9956 8.55171 15.9956 8.25001C15.9956 7.9483 16.0552 7.64958 16.1711 7.37101C16.3991 6.82971 16.8298 6.39904 17.3711 6.17101C17.6496 6.05515 17.9484 5.99551 18.2501 5.99551C18.5518 5.99551 18.8505 6.05515 19.1291 6.17101C19.6708 6.39836 20.1017 6.82925 20.3291 7.37101C20.4449 7.64958 20.5046 7.9483 20.5046 8.25001C20.5046 8.55171 20.4449 8.85043 20.3291 9.12901Z" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect width="24" height="24" fill="white" transform="translate(1)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6 12C6 12.2967 5.91203 12.5867 5.74721 12.8334C5.58238 13.08 5.34812 13.2723 5.07403 13.3858C4.79994 13.4994 4.49834 13.5291 4.20737 13.4712C3.91639 13.4133 3.64912 13.2704 3.43934 13.0607C3.22956 12.8509 3.0867 12.5836 3.02882 12.2926C2.97094 12.0017 3.00065 11.7001 3.11418 11.426C3.22771 11.1519 3.41997 10.9176 3.66665 10.7528C3.91332 10.588 4.20333 10.5 4.5 10.5C4.89783 10.5 5.27936 10.658 5.56066 10.9393C5.84197 11.2206 6 11.6022 6 12Z" fill="white"/>
|
||||
<path d="M13.5 12C13.5 12.2967 13.412 12.5867 13.2472 12.8334C13.0824 13.08 12.8481 13.2723 12.574 13.3858C12.2999 13.4994 11.9983 13.5291 11.7074 13.4712C11.4164 13.4133 11.1491 13.2704 10.9393 13.0607C10.7296 12.8509 10.5867 12.5836 10.5288 12.2926C10.4709 12.0017 10.5006 11.7001 10.6142 11.426C10.7277 11.1519 10.92 10.9176 11.1666 10.7528C11.4133 10.588 11.7033 10.5 12 10.5C12.3978 10.5 12.7794 10.658 13.0607 10.9393C13.342 11.2206 13.5 11.6022 13.5 12Z" fill="white"/>
|
||||
<path d="M21 12C21 12.2967 20.912 12.5867 20.7472 12.8334C20.5824 13.08 20.3481 13.2723 20.074 13.3858C19.7999 13.4994 19.4983 13.5291 19.2074 13.4712C18.9164 13.4133 18.6491 13.2704 18.4393 13.0607C18.2296 12.8509 18.0867 12.5836 18.0288 12.2926C17.9709 12.0017 18.0006 11.7001 18.1142 11.426C18.2277 11.1519 18.42 10.9176 18.6666 10.7528C18.9133 10.588 19.2033 10.5 19.5 10.5C19.8978 10.5 20.2794 10.658 20.5607 10.9393C20.842 11.2206 21 11.6022 21 12Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,10 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3958 8.37499C22.3958 12.1144 19.3644 15.1458 15.625 15.1458C11.8856 15.1458 8.85418 12.1144 8.85418 8.37499C8.85418 4.63556 11.8856 1.60416 15.625 1.60416C19.3644 1.60416 22.3958 4.63556 22.3958 8.37499ZM23.9583 8.37499C23.9583 12.9774 20.2274 16.7083 15.625 16.7083C13.7137 16.7083 11.9527 16.0649 10.5468 14.9828L1.7496 23.3263L0.673431 22.1935L9.40082 13.9162C8.08887 12.4436 7.29168 10.5024 7.29168 8.37499C7.29168 3.77262 11.0226 0.0416565 15.625 0.0416565C20.2274 0.0416565 23.9583 3.77262 23.9583 8.37499ZM1.75914 22.9583L1.76184 22.9558L1.75919 22.9583L1.75914 22.9583Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 876 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.8945 11.5781C20.8945 11.6484 20.8945 11.7188 20.8945 11.7891C20.9023 11.8594 20.9062 11.9297 20.9062 12C20.9062 12.0703 20.9023 12.1406 20.8945 12.2109C20.8945 12.2812 20.8945 12.3516 20.8945 12.4219L23.9297 14.3086L22.0664 18.7969L18.5859 18C18.3984 18.2031 18.2031 18.3984 18 18.5859L18.7969 22.0664L14.3086 23.9297L12.4219 20.8945C12.3516 20.8945 12.2812 20.8984 12.2109 20.9062C12.1406 20.9062 12.0703 20.9062 12 20.9062C11.9297 20.9062 11.8594 20.9062 11.7891 20.9062C11.7188 20.8984 11.6484 20.8945 11.5781 20.8945L9.69141 23.9297L5.20312 22.0664L6 18.5859C5.79688 18.3984 5.60156 18.2031 5.41406 18L1.93359 18.7969L0.0703125 14.3086L3.10547 12.4219C3.10547 12.3516 3.10156 12.2812 3.09375 12.2109C3.09375 12.1406 3.09375 12.0703 3.09375 12C3.09375 11.9297 3.09375 11.8594 3.09375 11.7891C3.10156 11.7188 3.10547 11.6484 3.10547 11.5781L0.0703125 9.69141L1.93359 5.20312L5.41406 6C5.60156 5.79688 5.79688 5.60156 6 5.41406L5.20312 1.93359L9.69141 0.0703125L11.5781 3.10547C11.6484 3.10547 11.7188 3.10547 11.7891 3.10547C11.8594 3.09766 11.9297 3.09375 12 3.09375C12.0703 3.09375 12.1406 3.09766 12.2109 3.10547C12.2812 3.10547 12.3516 3.10547 12.4219 3.10547L14.3086 0.0703125L18.7969 1.93359L18 5.41406C18.2031 5.60156 18.3984 5.79688 18.5859 6L22.0664 5.20312L23.9297 9.69141L20.8945 11.5781ZM19.5234 13.1016C19.5391 12.9141 19.5547 12.7305 19.5703 12.5508C19.5859 12.3633 19.5938 12.1758 19.5938 11.9883C19.5938 11.8086 19.5859 11.625 19.5703 11.4375C19.5547 11.25 19.5391 11.0664 19.5234 10.8867L22.2891 9.16406L21.2812 6.72656L18.1055 7.46484C17.8633 7.16797 17.6133 6.89453 17.3555 6.64453C17.1055 6.39453 16.832 6.14453 16.5352 5.89453L17.2734 2.71875L14.8359 1.71094L13.1016 4.47656C12.9219 4.46094 12.7383 4.44531 12.5508 4.42969C12.3633 4.41406 12.1797 4.40625 12 4.40625C11.8125 4.40625 11.625 4.41406 11.4375 4.42969C11.2578 4.44531 11.0742 4.46094 10.8867 4.47656L9.16406 1.71094L6.72656 2.71875L7.46484 5.89453C7.16797 6.13672 6.89453 6.38672 6.64453 6.64453C6.39453 6.89453 6.14453 7.16797 5.89453 7.46484L2.71875 6.72656L1.71094 9.16406L4.47656 10.8984C4.46094 11.0859 4.44531 11.2734 4.42969 11.4609C4.41406 11.6406 4.40625 11.8242 4.40625 12.0117C4.40625 12.1914 4.41406 12.375 4.42969 12.5625C4.44531 12.75 4.46094 12.9336 4.47656 13.1133L1.71094 14.8359L2.71875 17.2734L5.89453 16.5352C6.13672 16.832 6.38281 17.1055 6.63281 17.3555C6.89062 17.6055 7.16797 17.8555 7.46484 18.1055L6.72656 21.2812L9.16406 22.2891L10.8984 19.5234C11.0781 19.5391 11.2617 19.5547 11.4492 19.5703C11.6367 19.5859 11.8203 19.5938 12 19.5938C12.1875 19.5938 12.3711 19.5859 12.5508 19.5703C12.7383 19.5547 12.9258 19.5391 13.1133 19.5234L14.8359 22.2891L17.2734 21.2812L16.5352 18.1055C16.832 17.8633 17.1055 17.6172 17.3555 17.3672C17.6055 17.1094 17.8555 16.832 18.1055 16.5352L21.2812 17.2734L22.2891 14.8359L19.5234 13.1016ZM12 7.59375C12.6094 7.59375 13.1797 7.71094 13.7109 7.94531C14.25 8.17188 14.7188 8.48438 15.1172 8.88281C15.5156 9.28125 15.8281 9.75 16.0547 10.2891C16.2891 10.8203 16.4062 11.3906 16.4062 12C16.4062 12.6094 16.2891 13.1836 16.0547 13.7227C15.8281 14.2539 15.5156 14.7188 15.1172 15.1172C14.7188 15.5156 14.25 15.832 13.7109 16.0664C13.1797 16.293 12.6094 16.4062 12 16.4062C11.3906 16.4062 10.8164 16.293 10.2773 16.0664C9.74609 15.832 9.28125 15.5156 8.88281 15.1172C8.48438 14.7188 8.16797 14.2539 7.93359 13.7227C7.70703 13.1836 7.59375 12.6094 7.59375 12C7.59375 11.3906 7.70703 10.8203 7.93359 10.2891C8.16797 9.75 8.48438 9.28125 8.88281 8.88281C9.28125 8.48438 9.74609 8.17188 10.2773 7.94531C10.8164 7.71094 11.3906 7.59375 12 7.59375ZM12 15.0938C12.4297 15.0938 12.832 15.0156 13.207 14.8594C13.582 14.6953 13.9102 14.4727 14.1914 14.1914C14.4727 13.9102 14.6914 13.582 14.8477 13.207C15.0117 12.832 15.0938 12.4297 15.0938 12C15.0938 11.5703 15.0117 11.168 14.8477 10.793C14.6914 10.418 14.4727 10.0898 14.1914 9.80859C13.9102 9.52734 13.582 9.30859 13.207 9.15234C12.832 8.98828 12.4297 8.90625 12 8.90625C11.5703 8.90625 11.168 8.98828 10.793 9.15234C10.418 9.30859 10.0898 9.52734 9.80859 9.80859C9.52734 10.0898 9.30469 10.418 9.14062 10.793C8.98438 11.168 8.90625 11.5703 8.90625 12C8.90625 12.4297 8.98438 12.832 9.14062 13.207C9.30469 13.582 9.52734 13.9102 9.80859 14.1914C10.0898 14.4727 10.418 14.6953 10.793 14.8594C11.168 15.0156 11.5703 15.0938 12 15.0938Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 7V8H8V14H7V8H1V7H7V1H8V7H14Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 161 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.9991 5.50086C15.0304 6.61914 14.634 7.70724 13.8907 8.54338C13.1475 9.37951 12.1134 9.90076 10.9991 10.0009C10.9909 9.65846 10.9232 9.3201 10.7991 9.00086C11.6689 8.91142 12.4755 8.50543 13.0655 7.86012C13.6555 7.21481 13.9878 6.37517 13.9991 5.50086C13.9959 4.59897 13.6452 3.733 13.0201 3.08289C12.395 2.43277 11.5434 2.04849 10.6423 2.00987C9.74125 1.97125 8.85994 2.28127 8.18148 2.87552C7.50302 3.46977 7.07959 4.30255 6.99915 5.20086C6.67717 5.08644 6.34037 5.01908 5.99915 5.00086C6.14761 3.90646 6.68305 2.90139 7.50851 2.16765C8.33397 1.4339 9.39488 1.01999 10.4991 1.00086C11.0908 0.99835 11.6771 1.11303 12.2242 1.33829C12.7713 1.56354 13.2684 1.89491 13.6867 2.31328C14.1051 2.73164 14.4365 3.22872 14.6617 3.77582C14.887 4.32292 15.0017 4.90921 14.9991 5.50086ZM5.49915 6.00086C4.60913 6.00086 3.7391 6.26478 2.99908 6.75925C2.25906 7.25372 1.68228 7.95652 1.34169 8.77879C1.0011 9.60106 0.91198 10.5059 1.08561 11.3788C1.25925 12.2517 1.68783 13.0535 2.31717 13.6828C2.9465 14.3122 3.74833 14.7408 4.62124 14.9144C5.49416 15.088 6.39896 14.9989 7.22122 14.6583C8.04349 14.3177 8.74629 13.741 9.24076 13.0009C9.73523 12.2609 9.99915 11.3909 9.99915 10.5009C9.99915 9.90992 9.88275 9.32475 9.65661 8.77879C9.43046 8.23282 9.09899 7.73675 8.68113 7.31888C8.26326 6.90102 7.76719 6.56955 7.22122 6.34341C6.67526 6.11726 6.0901 6.00086 5.49915 6.00086Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 4C8.36719 4 8.72135 4.04818 9.0625 4.14453C9.40365 4.23828 9.72135 4.3724 10.0156 4.54688C10.3125 4.72135 10.582 4.93099 10.8242 5.17578C11.069 5.41797 11.2786 5.6875 11.4531 5.98438C11.6276 6.27865 11.7617 6.59635 11.8555 6.9375C11.9518 7.27865 12 7.63281 12 8C12 8.36719 11.9518 8.72135 11.8555 9.0625C11.7617 9.40365 11.6276 9.72266 11.4531 10.0195C11.2786 10.3138 11.069 10.5833 10.8242 10.8281C10.582 11.0703 10.3125 11.2786 10.0156 11.4531C9.72135 11.6276 9.40365 11.763 9.0625 11.8594C8.72135 11.9531 8.36719 12 8 12C7.63281 12 7.27865 11.9531 6.9375 11.8594C6.59635 11.763 6.27734 11.6276 5.98047 11.4531C5.6862 11.2786 5.41667 11.0703 5.17188 10.8281C4.92969 10.5833 4.72135 10.3138 4.54688 10.0195C4.3724 9.72266 4.23698 9.40365 4.14063 9.0625C4.04688 8.72135 4 8.36719 4 8C4 7.63281 4.04688 7.27865 4.14063 6.9375C4.23698 6.59635 4.3724 6.27865 4.54688 5.98438C4.72135 5.6875 4.92969 5.41797 5.17188 5.17578C5.41667 4.93099 5.6862 4.72135 5.98047 4.54688C6.27734 4.3724 6.59635 4.23828 6.9375 4.14453C7.27865 4.04818 7.63281 4 8 4Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 8C4 5.79086 5.79086 4 8 4C10.2091 4 12 5.79086 12 8C12 10.2091 10.2091 12 8 12C5.79086 12 4 10.2091 4 8ZM6.28571 9.71429L6.28571 8.57143L9.71429 8.57143L9.71429 9.71429L6.28571 9.71429ZM6.28572 6.28571L6.28572 7.42857L9.71429 7.42857L9.71429 6.28571L6.28572 6.28571Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 438 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99995 3.71429L12.2857 11.5714H3.71423L7.99995 3.71429Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 186 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99995 3.71429L12.2857 11.5714H3.71423L7.99995 3.71429Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 186 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.62587 11.2143L7.64286 4.41632L11.6598 11.2143H3.62587Z" stroke="white" stroke-width="0.714286"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 212 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.99995 3.71429L12.2857 8.00001L7.99995 12.2857L3.71423 8.00001L7.99995 3.71429Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 210 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.97449 4.21937L11.7297 7.97458L7.97449 11.7298L4.21928 7.97458L7.97449 4.21937Z" stroke="white" stroke-width="0.714286"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 236 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM8 10.8571C9.57796 10.8571 10.8571 9.57796 10.8571 8C10.8571 6.42204 9.57796 5.14286 8 5.14286C6.42204 5.14286 5.14286 6.42204 5.14286 8C5.14286 9.57796 6.42204 10.8571 8 10.8571Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 456 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 3H6V5H11V10H13V3ZM11 11H14V2H5V5H2V14H11V11ZM10 11V10V6H6H5H3V13H10V11Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.24444 11.8258L4.17419 7.7555L4.92969 7L8.99994 11.0703L8.24444 11.8258Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.82569 7.7555L4.75544 11.8258L3.99994 11.0703L8.07019 7L8.82569 7.7555Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 523 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 14V2.18094L15 8.06218L6 14ZM7.50023 5L12.3148 8.06218L7.50023 11.1809L7.50023 5Z" fill="#75BEFF"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2L2.5 2L2.5 14L4 14L4 2.24001L4 2Z" fill="#75BEFF"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 359 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8288 8L8.45377 13H3V3H8.45377L12.8288 8ZM8 12L11.5 8L8 4H4V12H8Z" fill="white"/>
|
||||
<path d="M9 8C9 8.39556 8.8827 8.78224 8.66294 9.11114C8.44318 9.44004 8.13082 9.69638 7.76537 9.84776C7.39992 9.99913 6.99778 10.0387 6.60982 9.96157C6.22186 9.8844 5.86549 9.69392 5.58579 9.41421C5.30608 9.13451 5.1156 8.77814 5.03843 8.39018C4.96126 8.00222 5.00087 7.60009 5.15224 7.23463C5.30362 6.86918 5.55996 6.55682 5.88886 6.33706C6.21776 6.1173 6.60444 6 7 6C7.53043 6 8.03914 6.21071 8.41421 6.58579C8.78929 6.96086 9 7.46957 9 8Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 696 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8288 8L8.45377 13H3V3H8.45377L12.8288 8ZM8 12L11.5 8L8 4H4V12H8Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 237 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6172 3.84375C13.5169 3.5293 13.3665 3.23991 13.166 2.97559L14.5195 1.61523L13.9043 1L12.5439 2.35352C12.2796 2.15299 11.9902 2.0026 11.6758 1.90234C11.3659 1.79753 11.0446 1.74512 10.7119 1.74512C10.3063 1.74512 9.91439 1.82259 9.53613 1.97754C9.16243 2.13249 8.83203 2.35352 8.54492 2.64062L7 4.19238L11.3271 8.51953L12.8789 6.97461C13.166 6.6875 13.387 6.3571 13.542 5.9834C13.6969 5.60514 13.7744 5.21322 13.7744 4.80762C13.7744 4.47493 13.722 4.15365 13.6172 3.84375ZM12.7285 5.64844C12.6191 5.91276 12.4619 6.14746 12.2568 6.35254L11.3271 7.28223L8.2373 4.19238L9.16699 3.2627C9.37207 3.05762 9.60677 2.90039 9.87109 2.79102C10.14 2.67708 10.4202 2.62012 10.7119 2.62012C11.0127 2.62012 11.2952 2.67936 11.5596 2.79785C11.8239 2.91178 12.054 3.06901 12.25 3.26953C12.4505 3.46549 12.6077 3.69564 12.7217 3.95996C12.8402 4.22428 12.8994 4.50684 12.8994 4.80762C12.8994 5.09928 12.8424 5.37956 12.7285 5.64844ZM7.9043 10.6416L9.3877 9.09668L8.77246 8.47461L7.28223 10.0264L5.42285 8.16699L6.91309 6.61523L6.29102 6L4.80762 7.54492L4.19238 6.92969L2.64062 8.47461C2.35352 8.76172 2.13249 9.0944 1.97754 9.47266C1.82259 9.84635 1.74512 10.236 1.74512 10.6416C1.74512 10.9743 1.79525 11.2979 1.89551 11.6123C2.00033 11.9222 2.15299 12.2093 2.35352 12.4736L1 13.834L1.61523 14.4492L2.97559 13.0957C3.23991 13.2962 3.52702 13.4489 3.83691 13.5537C4.15137 13.654 4.47493 13.7041 4.80762 13.7041C5.21322 13.7041 5.60286 13.6266 5.97656 13.4717C6.35482 13.3167 6.6875 13.0957 6.97461 12.8086L8.51953 11.2568L7.9043 10.6416ZM5.6416 12.665C5.37728 12.7744 5.09928 12.8291 4.80762 12.8291C4.50684 12.8291 4.22201 12.7721 3.95312 12.6582C3.6888 12.5443 3.45638 12.3893 3.25586 12.1934C3.0599 11.9928 2.90495 11.7604 2.79102 11.4961C2.67708 11.2272 2.62012 10.9424 2.62012 10.6416C2.62012 10.3499 2.6748 10.0719 2.78418 9.80762C2.89811 9.53874 3.05762 9.30176 3.2627 9.09668L4.19238 8.16699L7.28223 11.2568L6.35254 12.1865C6.14746 12.3916 5.91048 12.5511 5.6416 12.665Z" fill="#F48771"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,8 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="5" y="3" width="2" height="2" fill="#848484"/>
|
||||
<rect x="5" y="7" width="2" height="2" fill="#848484"/>
|
||||
<rect x="5" y="11" width="2" height="2" fill="#848484"/>
|
||||
<rect x="9" y="3" width="2" height="2" fill="#848484"/>
|
||||
<rect x="9" y="7" width="2" height="2" fill="#848484"/>
|
||||
<rect x="9" y="11" width="2" height="2" fill="#848484"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 441 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.10564 3.42309L6.59373 1H9.40633L9.89442 3.42309L11.9663 2.05164L13.9409 4.0122L12.5596 6.06938L15.0001 6.554V9.34663L12.5596 9.83125L13.9409 11.8884L11.9663 13.849L9.91208 12.4892L9.40633 15H6.59373L6.10564 12.5769L4.03374 13.9484L2.05916 11.9878L3.45077 9.91521L1 9.3312V6.554L3.44042 6.06938L2.05916 4.0122L4.03374 2.05164L6.10564 3.42309ZM8.5954 1.98215H7.40466L6.92747 4.35115L6.12544 4.6166L4.15978 3.31546L3.33203 4.13734L4.64247 6.08904L4.37512 6.88537L1.98918 7.35917V8.55688L4.37907 9.12638L4.64247 9.91096L3.33203 11.8627L4.15978 12.6845L6.12544 11.3834L6.92747 11.6488L7.40466 14.0178H8.5954L9.05648 11.7288L9.80154 11.2357L11.8403 12.5852L12.668 11.7633L11.3576 9.81159L11.6249 9.01526L14.0109 8.54146V7.35917L11.6249 6.88537L11.3576 6.08904L12.668 4.13734L11.8403 3.31546L9.87462 4.6166L9.07259 4.35115L8.5954 1.98215Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 9C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.5 3L6 3V13H4.5V3ZM11.5 3V13H10V3L11.5 3Z" fill="#89D185"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 174 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1 1H15V14H1V1ZM2 13H14V2H2V13Z" fill="white"/>
|
||||
<rect x="4.00006" y="4.67157" width="1" height="5" transform="rotate(-45 4.00006 4.67157)" fill="white"/>
|
||||
<rect x="4.70709" y="11.0356" width="1" height="5" transform="rotate(-135 4.70709 11.0356)" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 373 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 7.5L2 3L3.5 3L3.5 7.5L2 7.5Z" fill="#89D185"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 6L6.5 6L6.5 7.5L2 7.5L2 6Z" fill="#89D185"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.49997 12.5C10.9853 12.5 13 10.4853 13 8C13 5.51472 10.9853 3.5 8.49997 3.5C6.77248 3.5 5.27233 4.47341 4.51812 5.90166L2.67285 6.5642C3.31632 3.94385 5.68114 2 8.49997 2C11.8137 2 14.5 4.68629 14.5 8C14.5 11.3137 11.8137 14 8.49997 14C6.19202 14 4.18842 12.6969 3.18479 10.7863L4.61522 10.2727C5.39647 11.6052 6.84373 12.5 8.49997 12.5Z" fill="#89D185"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 706 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8288 8L8.45377 13H3V3H8.45377L12.8288 8ZM8 12L11.5 8L8 4H4V12H8Z" fill="white"/>
|
||||
<path d="M9 8C9 8.39556 8.8827 8.78224 8.66294 9.11114C8.44318 9.44004 8.13082 9.69638 7.76537 9.84776C7.39992 9.99913 6.99778 10.0387 6.60982 9.96157C6.22186 9.8844 5.86549 9.69392 5.58579 9.41421C5.30608 9.13451 5.1156 8.77814 5.03843 8.39018C4.96126 8.00222 5.00087 7.60009 5.15224 7.23463C5.30362 6.86918 5.55996 6.55682 5.88886 6.33706C6.21776 6.1173 6.60444 6 7 6C7.53043 6 8.03914 6.21071 8.41421 6.58579C8.78929 6.96086 9 7.46957 9 8Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 696 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8288 8L8.45377 13H3V3H8.45377L12.8288 8ZM8 12L11.5 8L8 4H4V12H8Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 237 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.99976 14V2.18094L12.9998 8.06218L3.99976 14ZM5.49999 5L10.3145 8.06218L5.49999 11.1809L5.49999 5Z" fill="#89D185"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 271 B |
@@ -1,11 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8843 5.62364L10.6732 4.4125L8.50351 6.57009V0H6.78922V6.5532L4.64027 4.41232L3.42859 5.624L7.66387 9.85928L11.8843 5.62364ZM10.6726 4.81602L10.6729 4.81624L10.6726 4.816L10.6726 4.81602ZM7.66494 9.45342L7.66347 9.45482L7.66351 9.45486L7.66494 9.45342ZM8.21779 0.571429V7.25708L8.21773 7.25714V0.571429H8.21779ZM7.07487 7.24108L4.64065 4.816L4.64062 4.81603L7.07487 7.24114V7.24108Z" fill="#75BEFF"/>
|
||||
<path d="M7.65681 16C8.91917 16 9.94252 14.9766 9.94252 13.7143C9.94252 12.4519 8.91917 11.4286 7.65681 11.4286C6.39444 11.4286 5.37109 12.4519 5.37109 13.7143C5.37109 14.9766 6.39444 16 7.65681 16Z" fill="#75BEFF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 899 B |
@@ -1,11 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8843 4.23565L10.6732 5.44678L8.50351 3.28919V9.85928H6.78922V3.30609L4.64027 5.44697L3.42859 4.23528L7.66387 2.86102e-06L11.8843 4.23565ZM10.6726 5.04326L10.6729 5.04304L10.6726 5.04328L10.6726 5.04326ZM7.66494 0.405865L7.66347 0.40446L7.66351 0.404428L7.66494 0.405865ZM8.21779 9.28785V2.60221L8.21773 2.60215V9.28785H8.21779ZM7.07487 2.6182L4.64065 5.04328L4.64062 5.04326L7.07487 2.61815V2.6182Z" fill="#75BEFF"/>
|
||||
<path d="M7.65681 16C8.91917 16 9.94252 14.9766 9.94252 13.7143C9.94252 12.4519 8.91917 11.4286 7.65681 11.4286C6.39444 11.4286 5.37109 12.4519 5.37109 13.7143C5.37109 14.9766 6.39444 16 7.65681 16Z" fill="#75BEFF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 916 B |
@@ -1,9 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 14C9.10457 14 10 13.1046 10 12C10 10.8954 9.10457 10 8 10C6.89543 10 6 10.8954 6 12C6 13.1046 6.89543 14 8 14Z" fill="#75BEFF"/>
|
||||
<mask id="path-2-outside-1" maskUnits="userSpaceOnUse" x="1" y="1" width="14" height="7" fill="black">
|
||||
<rect fill="white" x="1" y="1" width="14" height="7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 2H14V6H14.0035V7H14H13.7558H13H12.7358H9.37988V6H12.3843C11.6045 4.4259 9.89397 3.33334 7.90917 3.33334C5.34 3.33334 3.23028 5.16396 3.00407 7.5H2C2.2275 4.55454 4.84849 2.33334 7.90917 2.33334C10.0379 2.33334 11.954 3.40785 13 5.0532V2Z"/>
|
||||
</mask>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 2H14V6H14.0035V7H14H13.7558H13H12.7358H9.37988V6H12.3843C11.6045 4.4259 9.89397 3.33334 7.90917 3.33334C5.34 3.33334 3.23028 5.16396 3.00407 7.5H2C2.2275 4.55454 4.84849 2.33334 7.90917 2.33334C10.0379 2.33334 11.954 3.40785 13 5.0532V2Z" fill="#75BEFF"/>
|
||||
<path d="M14 2H14.25V1.75H14V2ZM13 2V1.75H12.75V2H13ZM14 6H13.75V6.25H14V6ZM14.0035 6H14.2535V5.75H14.0035V6ZM14.0035 7V7.25H14.2535V7H14.0035ZM9.37988 7H9.12988V7.25H9.37988V7ZM9.37988 6V5.75H9.12988V6H9.37988ZM12.3843 6V6.25H12.7872L12.6083 5.88902L12.3843 6ZM3.00407 7.5V7.75H3.23103L3.2529 7.5241L3.00407 7.5ZM2 7.5L1.75074 7.48075L1.72995 7.75H2V7.5ZM13 5.0532L12.789 5.18732L13.25 5.91244V5.0532H13ZM14 1.75H13V2.25H14V1.75ZM14.25 6V2H13.75V6H14.25ZM14.0035 5.75H14V6.25H14.0035V5.75ZM14.2535 7V6H13.7535V7H14.2535ZM14 7.25H14.0035V6.75H14V7.25ZM13.7558 7.25H14V6.75H13.7558V7.25ZM13 7.25H13.7558V6.75H13V7.25ZM12.7358 7.25H13V6.75H12.7358V7.25ZM9.37988 7.25H12.7358V6.75H9.37988V7.25ZM9.12988 6V7H9.62988V6H9.12988ZM12.3843 5.75H9.37988V6.25H12.3843V5.75ZM7.90917 3.58334C9.80263 3.58334 11.4243 4.62529 12.1603 6.11098L12.6083 5.88902C11.7848 4.22651 9.9853 3.08334 7.90917 3.08334V3.58334ZM3.2529 7.5241C3.46544 5.32932 5.45512 3.58334 7.90917 3.58334V3.08334C5.22488 3.08334 2.99513 4.99861 2.75523 7.4759L3.2529 7.5241ZM2 7.75H3.00407V7.25H2V7.75ZM7.90917 2.08334C4.73318 2.08334 1.98944 4.39036 1.75074 7.48075L2.24926 7.51925C2.46556 4.71873 4.96379 2.58334 7.90917 2.58334V2.08334ZM13.211 4.91908C12.1179 3.19966 10.1212 2.08334 7.90917 2.08334V2.58334C9.9547 2.58334 11.7901 3.61604 12.789 5.18732L13.211 4.91908ZM12.75 2V5.0532H13.25V2H12.75Z" fill="#75BEFF" mask="url(#path-2-outside-1)"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 3.5H3.5V12.5H12.5V3.5ZM2 2V14H14V2H2Z" fill="#F48771"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 214 B |
@@ -1,8 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.5081 13.915C13.3437 13.915 14.0211 13.2376 14.0211 12.402C14.0211 11.5664 13.3437 10.889 12.5081 10.889C11.6725 10.889 10.9951 11.5664 10.9951 12.402C10.9951 13.2376 11.6725 13.915 12.5081 13.915Z" stroke="white" stroke-miterlimit="10"/>
|
||||
<path d="M12.517 11.043V4.672C12.5171 4.51814 12.4869 4.36576 12.4281 4.22357C12.3693 4.08138 12.2831 3.95217 12.1743 3.84333C12.0656 3.73449 11.9365 3.64814 11.7943 3.58923C11.6522 3.53032 11.4998 3.5 11.346 3.5H7.79297" stroke="white" stroke-miterlimit="10"/>
|
||||
<path d="M9.47911 5.691L7.36011 3.501L9.53211 1.34" stroke="white" stroke-linejoin="bevel"/>
|
||||
<path d="M3.51202 5.09C4.34763 5.09 5.02502 4.4126 5.02502 3.577C5.02502 2.74139 4.34763 2.064 3.51202 2.064C2.67642 2.064 1.99902 2.74139 1.99902 3.577C1.99902 4.4126 2.67642 5.09 3.51202 5.09Z" stroke="white" stroke-miterlimit="10"/>
|
||||
<path d="M3.5 4.936V11.307C3.5 11.6176 3.62337 11.9154 3.84298 12.135C4.06258 12.3546 4.36043 12.478 4.671 12.478H8.227" stroke="white" stroke-miterlimit="10"/>
|
||||
<path d="M6.54104 10.287L8.66004 12.478L6.48804 14.638" stroke="white" stroke-linejoin="bevel"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1L15 1V14H2V13L2 4V3V1ZM3 2V13H14V2H8.5H3Z" fill="white"/>
|
||||
<rect x="8" y="2" width="1" height="11" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 269 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1H15V14H2V13L2 4V3V1ZM3 2V13H14V2H8H3Z" fill="white"/>
|
||||
<path d="M3 7H15V8H3V7Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 250 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10 1.69995V4.99995H13.5V4.19995L10.8 1.69995H10Z" fill="white"/>
|
||||
<path d="M6 3H4V1H3V3H1V4H3V6H4V4H6V3Z" fill="white"/>
|
||||
<path d="M13.9 3.6L11.1 1.1L10.8 1H5V2H10.6L13 4.1V13H4V7H3V13.5L3.5 14H9H13.5L14 13.5V4L13.9 3.6Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 348 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.5 8H3V7H6.3L7.1 6.1L7.5 6H14V7H7.7L6.9 7.9L6.5 8Z" fill="white"/>
|
||||
<path d="M6 3H4V1H3V3H1V4H3V6H4V4H6V3Z" fill="white"/>
|
||||
<path d="M14.5 4H8.2L7.4 3.1L7.1 3H7V4.1L7.6 4.9L8 5H14V13H3V7H2V13.5L2.5 14H14.5L15 13.5V4.5L14.5 4Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 354 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 3H6V5H11V10H13V3ZM11 11H14V2H5V5H2V14H11V11ZM10 11V10V6H6H5H3V13H10V11Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.24444 11.8258L4.17419 7.7555L4.92969 7L8.99994 11.0703L8.24444 11.8258Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.82569 7.7555L4.75544 11.8258L3.99994 11.0703L8.07019 7L8.82569 7.7555Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 523 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 3H6V5H11V10H13V3ZM11 11H14V2H5V5H2V14H11V11ZM10 11V10V6H6H5H3V13H10V11Z" fill="white"/>
|
||||
<path d="M9 9H4V10H9V9Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 284 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 6.49999L14.5302 5.99999H7V1.4698L6.5302 1H1.4698L1 1.4698V9.53019L1.4698 9.99999H4V14.5302L4.4698 15H14.5302L15 14.5302V6.49999ZM2 8.99999V3H6V8.99999H2ZM14 14H5V9.99999H6.5302L7 9.53019V8.01341H14V14Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 334 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 8C4 8.19778 3.94135 8.39112 3.83147 8.55557C3.72159 8.72002 3.56541 8.84819 3.38268 8.92388C3.19996 8.99957 2.99889 9.01937 2.80491 8.98079C2.61093 8.9422 2.43275 8.84696 2.29289 8.70711C2.15304 8.56725 2.0578 8.38907 2.01922 8.19509C1.98063 8.00111 2.00043 7.80004 2.07612 7.61732C2.15181 7.43459 2.27998 7.27841 2.44443 7.16853C2.60888 7.05865 2.80222 7 3 7C3.26522 7 3.51957 7.10536 3.70711 7.29289C3.89464 7.48043 4 7.73478 4 8Z" fill="white"/>
|
||||
<path d="M9 8C9 8.19778 8.94135 8.39112 8.83147 8.55557C8.72159 8.72002 8.56541 8.84819 8.38268 8.92388C8.19996 8.99957 7.99889 9.01937 7.80491 8.98079C7.61093 8.9422 7.43275 8.84696 7.29289 8.70711C7.15304 8.56725 7.0578 8.38907 7.01922 8.19509C6.98063 8.00111 7.00043 7.80004 7.07612 7.61732C7.15181 7.43459 7.27998 7.27841 7.44443 7.16853C7.60888 7.05865 7.80222 7 8 7C8.26522 7 8.51957 7.10536 8.70711 7.29289C8.89464 7.48043 9 7.73478 9 8Z" fill="white"/>
|
||||
<path d="M14 8C14 8.19778 13.9414 8.39112 13.8315 8.55557C13.7216 8.72002 13.5654 8.84819 13.3827 8.92388C13.2 8.99957 12.9989 9.01937 12.8049 8.98079C12.6109 8.9422 12.4327 8.84696 12.2929 8.70711C12.153 8.56725 12.0578 8.38907 12.0192 8.19509C11.9806 8.00111 12.0004 7.80004 12.0761 7.61732C12.1518 7.43459 12.28 7.27841 12.4444 7.16853C12.6089 7.05865 12.8022 7 13 7C13.2652 7 13.5196 7.10536 13.7071 7.29289C13.8946 7.48043 14 7.73478 14 8Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.6822 3H2V2H6V6H5V3.99963C3.78555 4.91184 3 6.36418 3 8C3 10.7614 5.23858 13 8 13C10.7614 13 13 10.7614 13 8C13 5.77211 11.5429 3.88455 9.52968 3.23832L9.83199 2.28483C12.2497 3.0592 14 5.3252 14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 5.91303 3.06551 4.07492 4.6822 3Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 456 B |
@@ -1,6 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 3V11.5L14.5 12H11.985V11H14V3.206L12.793 2H4.985V4H3.985V1.5L4.485 1H13L13.353 1.147L14.853 2.647L15 3Z" fill="white"/>
|
||||
<path d="M11.853 5.646L10.353 4.146L10 4H1.5L1 4.5V14.5L1.5 15H11.5L12 14.5V6L11.853 5.646ZM11 14H2V5H9.793L11 6.208V14Z" fill="white"/>
|
||||
<path d="M10 9.5V14H9V10H4V14H3V9.5L3.5 9H9.5L10 9.5Z" fill="white"/>
|
||||
<path d="M9 4.5V8H4V4.5H7V7H8V4.5H9Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 496 B |
@@ -1,7 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.70002 12.6L10.4 13.3L12 11.7L13.6 13.3L14.4 12.6L12.7 11L14.4 9.40005L13.6 8.60005L12 10.3L10.4 8.60005L9.70002 9.40005L11.3 11L9.70002 12.6Z" fill="white"/>
|
||||
<path d="M1 4L14 4L14 3L1 3L1 4Z" fill="white"/>
|
||||
<path d="M1 7L14 7L14 6L1 6L1 7Z" fill="white"/>
|
||||
<path d="M8.30002 9.4L8.60002 9L1.00002 9L1.00002 10L8.90002 10L8.30002 9.4Z" fill="white"/>
|
||||
<path d="M8.70002 13L8.30002 12.6L8.90002 12L1.00002 12L1.00002 13L8.70002 13Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 559 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.01509 12.072V7H8.02123V12.122L6.99145 11.085L6.28796 11.792L7.79073 13.304L8.54211 14.06L9.2446 13.353L10.7484 11.84L9.99698 11.084L9.01509 12.072Z" fill="white"/>
|
||||
<path d="M12.0064 6H11.9566C11.8485 5.24923 11.4993 4.55418 10.9618 4.02014C10.4242 3.4861 9.72768 3.14217 8.9776 3.04044C8.22753 2.9387 7.4648 3.08472 6.80496 3.45635C6.14511 3.82799 5.6241 4.40501 5.32083 5.1C4.83984 4.98232 4.33938 4.96847 3.85264 5.05937C3.36591 5.15027 2.90402 5.34385 2.49762 5.62727C2.09121 5.91068 1.74959 6.27745 1.4954 6.70326C1.24121 7.12906 1.08026 7.60415 1.02324 8.09704C0.966217 8.58992 1.01442 9.08932 1.16465 9.56211C1.31488 10.0349 1.5637 10.4703 1.89461 10.8394C2.22553 11.2084 2.63096 11.5028 3.08403 11.7029C3.5371 11.903 4.02745 12.0043 4.52255 12H5.02148V11H4.52255C3.86093 11 3.22641 10.7366 2.75858 10.2678C2.29075 9.79893 2.02792 9.16304 2.02792 8.5C2.02792 7.83696 2.29075 7.20108 2.75858 6.73224C3.22641 6.2634 3.86093 6 4.52255 6C4.71364 6.0025 4.90382 6.02699 5.08933 6.073L5.89759 6.262L6.23087 5.5C6.44573 5.00173 6.81728 4.58754 7.28889 4.3206C7.7605 4.05365 8.30629 3.94859 8.84303 4.02143C9.37977 4.09427 9.87801 4.34103 10.2618 4.72407C10.6456 5.10711 10.8938 5.60541 10.9687 6.143L11.0924 7H12.0064C12.5357 7 13.0434 7.21072 13.4176 7.58579C13.7919 7.96086 14.0021 8.46957 14.0021 9C14.0021 9.53044 13.7919 10.0391 13.4176 10.4142C13.0434 10.7893 12.5357 11 12.0064 11V12C12.8004 12 13.5618 11.6839 14.1232 11.1213C14.6846 10.5587 15 9.79565 15 9C15 8.20435 14.6846 7.44129 14.1232 6.87868C13.5618 6.31607 12.8004 6 12.0064 6Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.10564 3.42309L6.59373 1H9.40633L9.89442 3.42309L11.9663 2.05164L13.9409 4.0122L12.5596 6.06938L15.0001 6.554V9.34663L12.5596 9.83125L13.9409 11.8884L11.9663 13.849L9.91208 12.4892L9.40633 15H6.59373L6.10564 12.5769L4.03374 13.9484L2.05916 11.9878L3.45077 9.91521L1 9.3312V6.554L3.44042 6.06938L2.05916 4.0122L4.03374 2.05164L6.10564 3.42309ZM8.5954 1.98215H7.40466L6.92747 4.35115L6.12544 4.6166L4.15978 3.31546L3.33203 4.13734L4.64247 6.08904L4.37512 6.88537L1.98918 7.35917V8.55688L4.37907 9.12638L4.64247 9.91096L3.33203 11.8627L4.15978 12.6845L6.12544 11.3834L6.92747 11.6488L7.40466 14.0178H8.5954L9.05648 11.7288L9.80154 11.2357L11.8403 12.5852L12.668 11.7633L11.3576 9.81159L11.6249 9.01526L14.0109 8.54146V7.35917L11.6249 6.88537L11.3576 6.08904L12.668 4.13734L11.8403 3.31546L9.87462 4.6166L9.07259 4.35115L8.5954 1.98215Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 9C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99999 2.50708L9.27955 6.7217H13.652L10.1146 9.47221L11.4215 13.7769L7.99999 11.1165L4.57847 13.7769L5.88537 9.47221L2.34802 6.7217H6.72043L7.99999 2.50708ZM7.26844 7.6229H4.9011L6.81632 9.1121L6.08477 11.5217L7.99999 10.0325L9.9152 11.5217L9.18366 9.1121L11.0989 7.6229H8.73153L7.99999 5.21332L7.26844 7.6229Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1L9.59454 6.25211H15L10.6269 9.65247L12.2504 15L8 11.695L3.7496 15L5.37311 9.65247L1 6.25211H6.40546L8 1ZM6.72044 6.72168H2.34804L5.88539 9.4722L4.57848 13.7769L8 11.1164L11.4215 13.7769L10.1146 9.4722L13.652 6.72168H9.27956L8 2.50706L6.72044 6.72168Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 801 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99999 2.50708L9.27955 6.7217H13.652L10.1146 9.47221L11.4215 13.7769L7.99999 11.1165L4.57847 13.7769L5.88537 9.47221L2.34802 6.7217H6.72043L7.99999 2.50708ZM7.26844 7.6229H4.9011L6.81632 9.1121L6.08477 11.5217L7.99999 10.0325L9.9152 11.5217L9.18366 9.1121L11.0989 7.6229H8.73153L7.99999 5.21332L7.26844 7.6229Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1L9.59454 6.25211H15L10.6269 9.65247L12.2504 15L8 11.695L3.7496 15L5.37311 9.65247L1 6.25211H6.40546L8 1Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 655 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1L6.40546 6.25211H1L5.37311 9.65247L3.7496 15L8 11.695V10.0325V5.21334V1Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 245 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 4L12 12" stroke="#F4F4F4" stroke-width="1.33333"/>
|
||||
<path d="M12 4L4 12" stroke="#F4F4F4" stroke-width="1.33333"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 229 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.6665 12.6667L10.3332 8.00002L5.6665 3.33335" stroke="white" stroke-width="0.875" stroke-linejoin="bevel"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 222 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.6665 5.66669L7.99984 10.3334L3.33317 5.66669" stroke="white" stroke-width="0.875" stroke-linejoin="bevel"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 224 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 9.5L13.293 8.79297L9.00101 13.022L9 1L8 1L7.99899 13.022L3.707 8.79297L3 9.5L8.50101 15L14 9.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 228 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 6.5L13.293 7.20703L9.00101 2.97803L9 15L8 15L7.99899 2.97803L3.707 7.20703L3 6.5L8.50101 1L14 6.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 231 B |
@@ -1,9 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.48195 7.043L1.22095 4.774L1.92695 4.068L2.99995 5.138V3.524C2.99916 3.329 3.03684 3.13576 3.11082 2.95533C3.18481 2.77491 3.29365 2.61085 3.43112 2.47254C3.56859 2.33424 3.73199 2.2244 3.91196 2.14932C4.09193 2.07424 4.28494 2.0354 4.47995 2.035H6.97995V3H4.47995C4.34483 3.0062 4.21734 3.0644 4.12415 3.16244C4.03096 3.26047 3.97929 3.39075 3.97995 3.526L3.98795 5.126L4.99995 4.119L5.69995 4.819L3.48195 7.043Z" fill="white"/>
|
||||
<path d="M1 8V14.979H11.021V8H1ZM10 14H2V9H10V14Z" fill="white"/>
|
||||
<path d="M5.93994 6L4.93994 7H11.9999V12V12.979H13.0209V6H5.93994Z" fill="white"/>
|
||||
<path d="M9.01702 12.915C8.74759 13.0062 8.46442 13.0502 8.18002 13.045C7.90075 13.0522 7.62397 12.9908 7.37402 12.866C7.15449 12.7534 6.9745 12.5765 6.85802 12.359C6.73538 12.1251 6.67381 11.864 6.67902 11.6C6.67391 11.3127 6.74278 11.029 6.87902 10.776C7.00881 10.5392 7.2048 10.3453 7.44302 10.218C7.70188 10.0821 7.9907 10.0134 8.28302 10.018C8.53066 10.0173 8.77737 10.0486 9.01702 10.111V10.924C8.92668 10.8708 8.82845 10.8323 8.72602 10.81C8.61378 10.7824 8.49859 10.7686 8.38302 10.769C8.27978 10.7632 8.17644 10.7784 8.0793 10.8138C7.98216 10.8492 7.89326 10.9041 7.81802 10.975C7.74723 11.0492 7.69236 11.137 7.65676 11.2331C7.62116 11.3293 7.6056 11.4316 7.61102 11.534C7.60565 11.6355 7.62127 11.7369 7.65688 11.8321C7.6925 11.9272 7.74735 12.014 7.81802 12.087C7.89213 12.1556 7.97925 12.2087 8.07424 12.2431C8.16923 12.2774 8.27015 12.2924 8.37102 12.287C8.59617 12.2843 8.81751 12.2284 9.01702 12.124V12.915Z" fill="white"/>
|
||||
<path d="M9.029 4.489L8.913 5H8L8.729 2H10.015L10.708 5H9.808L9.689 4.489H9.029ZM9.19 3.789H9.524L9.359 3.056L9.19 3.789Z" fill="white"/>
|
||||
<path d="M13.4569 5.01899H12.0239V2.01899H13.1149C13.3035 2.00994 13.4922 2.03327 13.6729 2.08799C13.8006 2.14095 13.9064 2.23583 13.9729 2.35699C14.055 2.50587 14.0958 2.67403 14.0909 2.84399C14.0972 2.97556 14.0761 3.107 14.0289 3.22999C13.9803 3.33235 13.9124 3.42436 13.8289 3.50099C13.9295 3.58106 14.0131 3.68032 14.0749 3.79299C14.1311 3.92104 14.1571 4.06029 14.1509 4.19999C14.1619 4.41417 14.0951 4.62511 13.9629 4.79399C13.9016 4.86797 13.8241 4.92677 13.7363 4.9658C13.6485 5.00483 13.5529 5.02304 13.4569 5.01899ZM12.9499 2.62399H12.9259V3.20799H12.9499C12.9872 3.2115 13.0247 3.20755 13.0605 3.19639C13.0962 3.18523 13.1293 3.16708 13.1579 3.14299C13.2062 3.08189 13.2287 3.00444 13.2209 2.92699C13.2293 2.84372 13.208 2.76016 13.1609 2.69099C13.1322 2.66597 13.0987 2.64711 13.0624 2.63558C13.0261 2.62406 12.9878 2.62011 12.9499 2.62399V2.62399ZM12.9419 3.71499H12.9259V4.35899H12.9539C12.9935 4.36305 13.0335 4.35902 13.0715 4.34716C13.1095 4.3353 13.1447 4.31585 13.1749 4.28999C13.2256 4.22194 13.2488 4.13735 13.2399 4.05299C13.2497 3.9601 13.2268 3.8667 13.1749 3.78899C13.1435 3.76099 13.1064 3.73993 13.0663 3.72718C13.0262 3.71443 12.9838 3.71028 12.9419 3.71499V3.71499Z" fill="white"/>
|
||||
<path d="M4.015 12.507L3.9 13.013H3L3.722 10.043H4.992L5.678 13.013H4.778L4.66 12.507H4.015ZM4.174 11.807H4.505L4.342 11.081L4.174 11.807Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.48195 6.008L3.22095 3.739L3.92695 3.033L4.99995 4.1V2.489C4.99903 2.29396 5.03661 2.10066 5.11055 1.92018C5.18449 1.73969 5.29333 1.57558 5.43083 1.43725C5.56832 1.29892 5.73177 1.18908 5.9118 1.11405C6.09184 1.03902 6.28491 1.00026 6.47995 1H8.97995V1.965H6.47995C6.34474 1.97095 6.21711 2.02908 6.12387 2.12716C6.03063 2.22525 5.97904 2.35567 5.97995 2.491L5.98795 4.091L6.99995 3.084L7.69995 3.784L5.48195 6.008Z" fill="white"/>
|
||||
<path d="M3 7V14.979H12.021V7H3ZM11 14H4V8H11V14Z" fill="white"/>
|
||||
<path d="M9.10745 12.8719C8.7495 12.9932 8.37331 13.0517 7.99545 13.0449C7.62432 13.0548 7.25648 12.973 6.92445 12.8069C6.63249 12.6574 6.39316 12.4222 6.23845 12.1329C6.07539 11.822 5.99353 11.475 6.00045 11.1239C5.99274 10.7405 6.08437 10.3615 6.26645 10.0239C6.43891 9.70923 6.69913 9.45144 7.01545 9.28194C7.3597 9.10143 7.7438 9.0103 8.13245 9.01694C8.46139 9.01575 8.78911 9.05709 9.10745 9.13994V10.2259C8.98739 10.1549 8.85673 10.1036 8.72045 10.0739C8.57154 10.0375 8.41875 10.0194 8.26545 10.0199C8.05874 10.0006 7.8515 10.0509 7.67653 10.1626C7.50156 10.2744 7.36887 10.4413 7.29945 10.6369C7.25205 10.7647 7.23162 10.9009 7.23945 11.0369C7.23133 11.173 7.25177 11.3093 7.29945 11.4369C7.34421 11.5642 7.41749 11.6796 7.51368 11.7742C7.60988 11.8689 7.72644 11.9403 7.85445 11.9829C7.98233 12.0298 8.11854 12.0495 8.25445 12.0409C8.55346 12.0375 8.84743 11.9635 9.11245 11.8249L9.10745 12.8719Z" fill="white"/>
|
||||
<path d="M11.9 5.00001H10V1.02001H11.447C11.697 1.00802 11.9473 1.0388 12.187 1.11101C12.3574 1.18046 12.4987 1.30654 12.587 1.46801C12.6959 1.66553 12.7501 1.88854 12.744 2.11401C12.752 2.28849 12.7241 2.46276 12.662 2.62601C12.5972 2.76191 12.5069 2.88411 12.396 2.98601C12.5299 3.09172 12.6411 3.22334 12.723 3.37301C12.7969 3.54309 12.8311 3.72776 12.823 3.91301C12.8373 4.19722 12.7485 4.47704 12.573 4.70101C12.4919 4.79981 12.3887 4.87829 12.2719 4.9302C12.1551 4.98211 12.0277 5.00602 11.9 5.00001ZM11.228 1.82201H11.2V2.60001H11.231C11.2806 2.60479 11.3306 2.59935 11.378 2.58401C11.4253 2.56976 11.4692 2.54593 11.507 2.51401C11.5711 2.4328 11.6012 2.32994 11.591 2.22701C11.6021 2.11651 11.5737 2.00565 11.511 1.91401C11.4728 1.88094 11.4283 1.856 11.3802 1.8407C11.332 1.8254 11.2813 1.82006 11.231 1.82501L11.228 1.82201ZM11.218 3.26901H11.2V4.12401H11.237C11.2895 4.12918 11.3426 4.12374 11.393 4.10801C11.4434 4.09234 11.49 4.06647 11.53 4.03201C11.5972 3.94192 11.6279 3.82978 11.616 3.71801C11.6292 3.59487 11.5988 3.47101 11.53 3.36801C11.4884 3.3307 11.4393 3.30274 11.386 3.28601C11.3328 3.26888 11.2766 3.26309 11.221 3.26901H11.218Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1 11.5V10.625H9.75V11.5H1ZM1 7.125H15V8H1V7.125ZM12.375 3.625V4.5H1V3.625H12.375Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 211 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.2667 3.71009L14.4876 2.87375L9.84292 7.09793L5.19829 11.3221L1.27008 6.9945L0.423831 7.76253L5.12 12.9365L15.2667 3.71009Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 255 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 2H4V4.53885L5.2002 3.33859C6.98486 1.5538 9.87891 1.5538 11.6636 3.33859C13.4482 5.12341 13.4482 8.01715 11.6636 9.80194L6.46582 14.9999L5.74561 14.2799L10.9434 9.08188C12.3306 7.69476 12.3306 5.4458 10.9434 4.05869C9.55664 2.67157 7.30762 2.67157 5.92041 4.05869L4.979 5H7V6H3V2Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 412 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 4L12 12" stroke="white"/>
|
||||
<path d="M12 4L4 12" stroke="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 179 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1 5.6C1 4.93696 1.26339 4.30107 1.73223 3.83223C2.20107 3.36339 2.83696 3.1 3.5 3.1H6.625L5.243 1.711L5.931 1L5.942 1.012L8.542 3.612L5.9 6.25L5.891 6.241L5.2 5.55L6.64 4.1H3.5C3.10218 4.1 2.72064 4.25803 2.43934 4.53934C2.15804 4.82064 2 5.20218 2 5.6C2 5.99782 2.15804 6.37936 2.43934 6.66066C2.72064 6.94196 3.10218 7.1 3.5 7.1H4V8.1H3.5C2.83696 8.1 2.20107 7.83661 1.73223 7.36777C1.26339 6.89893 1 6.26304 1 5.6V5.6Z" fill="white"/>
|
||||
<path d="M1 5.6C1 4.93696 1.26339 4.30107 1.73223 3.83223C2.20107 3.36339 2.83696 3.1 3.5 3.1H6.625L5.243 1.711L5.931 1L5.942 1.012L8.542 3.612L5.9 6.25L5.891 6.241L5.2 5.55L6.64 4.1H3.5C3.10218 4.1 2.72064 4.25803 2.43934 4.53934C2.15804 4.82064 2 5.20218 2 5.6C2 5.99782 2.15804 6.37936 2.43934 6.66066C2.72064 6.94196 3.10218 7.1 3.5 7.1H4V8.1H3.5C2.83696 8.1 2.20107 7.83661 1.73223 7.36777C1.26339 6.89893 1 6.26304 1 5.6V5.6Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.34423 3L8.34423 2H10.688L11.688 3H11.682L13.975 5.296V5.29L15 6.29V15H5V9.09998V6.76419L5.89946 7.66366L6 7.56327V14H14V7H10.025L10 3H9.34423ZM13.268 6L11 3.707V6H13.268Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 7V8H8V14H7V8H1V7H7V1H8V7H14Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 161 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 9.5L13.293 8.79297L9.00101 13.022L9 1L8 1L7.99899 13.022L3.707 8.79297L3 9.5L8.50101 15L14 9.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 228 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 6.5L13.293 7.20703L9.00101 2.97803L9 15L8 15L7.99899 2.97803L3.707 7.20703L3 6.5L8.50101 1L14 6.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 231 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.6822 3H2V2H6V6H5V3.99963C3.78555 4.91184 3 6.36418 3 8C3 10.7614 5.23858 13 8 13C10.7614 13 13 10.7614 13 8C13 5.77211 11.5429 3.88455 9.52968 3.23832L9.83199 2.28483C12.2497 3.0592 14 5.3252 14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 5.91303 3.06551 4.07492 4.6822 3Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 456 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 7V8H8V14H7V8H1V7H7V1H8V7H14Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 161 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 8H5V7H11V8Z" fill="white"/>
|
||||
<rect x="3" y="7" width="10" height="1" fill="#C4C4C4"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 201 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 1H8H9H10H11H12V2H11V13H12V14H11H10H9H8H7V13H8V8H6.5C4.567 8 3 6.433 3 4.5C3 2.567 4.567 1 6.5 1ZM9 13H10V2H9V7V8V13ZM6.5 2H8V7H6.5C5.11929 7 4 5.88071 4 4.5C4 3.11929 5.11929 2 6.5 2Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 357 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 2H2H4V3H2V13H4V14H2H1V13V3V2Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 14L14 14L12 14L12 13L14 13L14 3L12 3L12 2L14 2L15 2L15 3L15 13L15 14Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 340 B |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 4H8V7.493L4.002 7.487L6.123 5.358L5.416 4.651L2.066 8.001L5.416 11.339L6.123 10.633L3.985 8.487L8 8.493V12H2V4Z" fill="white"/>
|
||||
<path d="M8 8.50701L11.998 8.51301L9.877 10.642L10.584 11.349L13.934 7.99901L10.584 4.66101L9.877 5.36701L12.015 7.51301L8 7.50701V8.50701Z" fill="white"/>
|
||||
<path d="M1 3V13H15V3H1ZM14 12H2V4H14V12Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 457 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.00001 2.41421L2.41421 5.98492L4.01388 7.59135L7.59968 4.02064L6.00001 2.41421ZM1.7086 5.27633L1 5.98194L1.70561 6.69054L3.30528 8.29697L4.0109 9.00556L4.71949 8.29995L6.0106 7.01428L8.0218 7.01401V11.9985H11.0125L10.0156 12.9954L12.0094 14.9893L15.0001 11.9985L13.0063 10.0047L12.0084 11.0036L9.01871 11.0016V7.01401H10.0047L11.966 8.97526L14.9567 5.98454L12.9629 3.99073L10.9364 6.01717L7.01168 6.01741L8.3053 4.72924L9.01389 4.02362L8.30828 3.31503L6.70861 1.7086L6.003 1L5.2944 1.70561L1.7086 5.27633Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 676 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 12L12 4" stroke="white" stroke-linejoin="bevel"/>
|
||||
<path d="M4 4L12 12" stroke="white" stroke-linejoin="bevel"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 227 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6 11.7673C7.32871 11.0383 7.32871 9.85638 6.6 9.12742C5.87083 8.39845 4.68913 8.39845 3.95996 9.12742C2.91812 10.2249 1.10411 9.93901 1.0129 8.42853C1.00434 8.28679 1 8.1439 1 8C1 4.13399 4.13405 1 8 1C11.866 1 15 4.13399 15 8C15 11.866 11.866 15 8 15C7.79774 15 7.59749 14.9914 7.39959 14.9746C5.80646 14.8393 5.4986 12.9263 6.6 11.7673ZM6.96675 13.5434C6.90251 13.2464 6.98821 12.815 7.31819 12.4632C8.42629 11.3429 8.42264 9.53623 7.30723 8.42043L7.30701 8.42021C6.18734 7.30085 4.37262 7.30085 3.25295 8.42021L3.24371 8.42945L3.23471 8.43893C2.93903 8.7504 2.57091 8.82599 2.3325 8.77668C2.21936 8.75328 2.15021 8.70667 2.10979 8.66161C2.07393 8.62162 2.02146 8.54016 2.01108 8.36826C2.00373 8.24656 2 8.12378 2 8C2 4.68628 4.68633 2 8 2C11.3137 2 14 4.68628 14 8C14 11.3137 11.3137 14 8 14C7.82602 14 7.654 13.9926 7.48421 13.9782C7.28992 13.9617 7.18488 13.8987 7.12414 13.8429C7.05831 13.7824 6.99767 13.6864 6.96675 13.5434ZM5 6C5.55228 6 6 5.55228 6 5C6 4.44772 5.55228 4 5 4C4.44772 4 4 4.44772 4 5C4 5.55228 4.44772 6 5 6ZM12 11C12 11.5523 11.5523 12 11 12C10.4477 12 10 11.5523 10 11C10 10.4477 10.4477 10 11 10C11.5523 10 12 10.4477 12 11ZM8 5C8.55228 5 9 4.55228 9 4C9 3.44772 8.55228 3 8 3C7.44772 3 7 3.44772 7 4C7 4.55228 7.44772 5 8 5ZM13 8C13 8.55228 12.5523 9 12 9C11.4477 9 11 8.55228 11 8C11 7.44772 11.4477 7 12 7C12.5523 7 13 7.44772 13 8ZM11 6C11.5523 6 12 5.55228 12 5C12 4.44772 11.5523 4 11 4C10.4477 4 10 4.44772 10 5C10 5.55228 10.4477 6 11 6Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 4H2V12H14V4ZM2 3H1V4V12V13H2H14H15V12V4V3H14H2ZM4 6H12V7H4V6ZM12 9H4V10H12V9Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 250 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 8H2V13H8V8ZM2 7H1V8V13V14H2H8H9V13V8V7H8H2ZM7 11H3V10H7V11Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 3H14V8H10V9H14H15V8V3V2H14H8H7V3V6H8V3ZM10 7H13V6H10V7ZM13 4H9V5H13V4Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 370 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 8H2V13H8V8ZM2 7H1V8V13V14H2H8H9V13V8V7H8H2ZM3 9H7V10H3V9ZM7 11H3V12H7V11Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 3H14V8H10V9H14H15V8V3V2H14H8H7V3V6H8V3ZM10 7H13V6H10V7ZM13 4H9V5H13V4Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 384 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.2317 1H11.3845L8.61564 5.94666H12.5937L3.28172 15H2.49976L5.30082 9.13737H2.1936L6.2317 1ZM6.81598 1.94222L3.71303 8.19515H6.85423L4.7238 12.2839L10.2729 6.88889H6.71321L9.4821 1.94222H6.81598Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 365 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 9.00003L2.118 6.55903L2 6.61803V10.382L7 12.882L14 9.38197V5.61803L13.882 5.55903L7 9.00003ZM12.764 5L7 7.882L3.23603 6.00002L8.99997 3.11802L12.764 5ZM9 2L1 6V11L7 14L15 10V5.00003L9 2Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 358 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 1L14 5V15H2V1H10ZM13 6H9V2H3V14H13V6ZM10 5V2.41421L12.5858 5H10Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 237 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 2C1.44772 2 1 2.44772 1 3V14L15 14V4.07692C15 3.52464 14.5523 3.07692 14 3.07692L7.77245 3.07692L7.15079 2H2ZM2 3V6H5.95174L6.57339 5H14V4L7.15063 4L6.52898 3L2 3ZM7.15079 6H14V13H2V7H6.52914L7.15079 6Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 374 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.5625 14.125C6.95638 14.125 6.37305 14.0475 5.8125 13.8926C5.25651 13.7376 4.7347 13.5189 4.24707 13.2363C3.75944 12.9492 3.3151 12.6074 2.91406 12.2109C2.51758 11.8099 2.17578 11.3656 1.88867 10.8779C1.60612 10.3903 1.38737 9.86849 1.23242 9.3125C1.07747 8.75195 1 8.16862 1 7.5625C1 6.95638 1.07747 6.37533 1.23242 5.81934C1.38737 5.25879 1.60612 4.7347 1.88867 4.24707C2.17578 3.75944 2.51758 3.31738 2.91406 2.9209C3.3151 2.51986 3.75944 2.17806 4.24707 1.89551C4.7347 1.6084 5.25651 1.38737 5.8125 1.23242C6.37305 1.07747 6.95638 1 7.5625 1C8.16862 1 8.74967 1.07747 9.30566 1.23242C9.86621 1.38737 10.3903 1.6084 10.8779 1.89551C11.3656 2.17806 11.8076 2.51986 12.2041 2.9209C12.6051 3.31738 12.9469 3.75944 13.2295 4.24707C13.5166 4.7347 13.7376 5.25879 13.8926 5.81934C14.0475 6.37533 14.125 6.95638 14.125 7.5625C14.125 8.16862 14.0475 8.75195 13.8926 9.3125C13.7376 9.86849 13.5166 10.3903 13.2295 10.8779C12.9469 11.3656 12.6051 11.8099 12.2041 12.2109C11.8076 12.6074 11.3656 12.9492 10.8779 13.2363C10.3903 13.5189 9.86621 13.7376 9.30566 13.8926C8.74967 14.0475 8.16862 14.125 7.5625 14.125ZM7.5625 1.875C7.03841 1.875 6.53483 1.94336 6.05176 2.08008C5.56868 2.2168 5.11523 2.4082 4.69141 2.6543C4.27214 2.90039 3.88932 3.19661 3.54297 3.54297C3.19661 3.88932 2.90039 4.27441 2.6543 4.69824C2.4082 5.11751 2.2168 5.57096 2.08008 6.05859C1.94336 6.54167 1.875 7.04297 1.875 7.5625C1.875 8.08203 1.94336 8.58561 2.08008 9.07324C2.2168 9.55632 2.4082 10.0098 2.6543 10.4336C2.90039 10.8529 3.19661 11.2357 3.54297 11.582C3.88932 11.9284 4.27214 12.2246 4.69141 12.4707C5.11523 12.7168 5.56868 12.9082 6.05176 13.0449C6.53483 13.1816 7.03841 13.25 7.5625 13.25C8.08203 13.25 8.58333 13.1816 9.06641 13.0449C9.55404 12.9082 10.0075 12.7168 10.4268 12.4707C10.8506 12.2246 11.2357 11.9284 11.582 11.582C11.9284 11.2357 12.2246 10.8529 12.4707 10.4336C12.7168 10.0098 12.9082 9.55632 13.0449 9.07324C13.1816 8.59017 13.25 8.08659 13.25 7.5625C13.25 7.04297 13.1816 6.54167 13.0449 6.05859C12.9082 5.57096 12.7168 5.11751 12.4707 4.69824C12.2246 4.27441 11.9284 3.88932 11.582 3.54297C11.2357 3.19661 10.8506 2.90039 10.4268 2.6543C10.0075 2.4082 9.55404 2.2168 9.06641 2.08008C8.58333 1.94336 8.08203 1.875 7.5625 1.875ZM7.125 6.25H8V10.625H7.125V6.25ZM7.125 4.5H8V5.375H7.125V4.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
@@ -1,5 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 5C10.1193 5 9 6.11929 9 7.5C9 8.88071 10.1193 10 11.5 10C12.8807 10 14 8.88071 14 7.5C14 6.11929 12.8807 5 11.5 5ZM8 7.5C8 5.567 9.567 4 11.5 4C13.433 4 15 5.567 15 7.5C15 9.433 13.433 11 11.5 11C9.567 11 8 9.433 8 7.5Z" fill="white"/>
|
||||
<path d="M3 9.5C4.10457 9.5 5 8.60457 5 7.5C5 6.39543 4.10457 5.5 3 5.5C1.89543 5.5 1 6.39543 1 7.5C1 8.60457 1.89543 9.5 3 9.5Z" fill="white"/>
|
||||
<path d="M9 7H4V8H9V7Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 578 B |
@@ -1,8 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.28902 5.67499C2.97011 5.67933 2.65388 5.734 2.35202 5.83699C2.06417 5.92293 1.79347 6.05828 1.55202 6.23699L1.45202 6.31399V7.51399L1.87502 7.15499C2.24579 6.80478 2.73133 6.60146 3.24102 6.58299C3.36593 6.57164 3.4917 6.59147 3.60706 6.64068C3.72243 6.6899 3.82377 6.76697 3.90202 6.86499C4.0522 7.0971 4.13239 7.36754 4.13302 7.64399L2.90002 7.82499C2.39435 7.87781 1.91525 8.07772 1.52202 8.39999C1.36697 8.55181 1.24339 8.73271 1.15835 8.93235C1.07331 9.13199 1.02848 9.34644 1.02644 9.56343C1.0244 9.78042 1.06517 9.99568 1.14644 10.1969C1.2277 10.3981 1.34786 10.5813 1.50002 10.736C1.6687 10.8904 1.86622 11.01 2.08125 11.0879C2.29627 11.1659 2.52456 11.2005 2.75302 11.19C3.147 11.1931 3.53278 11.0774 3.86002 10.858C3.96153 10.7897 4.0572 10.7131 4.14602 10.629V11.073H5.08702V7.71499C5.12137 7.17422 4.9543 6.63988 4.61802 6.21499C4.44979 6.03285 4.24348 5.89003 4.01378 5.7967C3.78407 5.70336 3.53661 5.66181 3.28902 5.67499V5.67499ZM4.14602 8.71599C4.16564 9.13435 4.02592 9.54459 3.75502 9.864C3.63689 10.0005 3.48998 10.1092 3.32486 10.1821C3.15973 10.2551 2.98049 10.2906 2.80002 10.286C2.69049 10.2945 2.58035 10.2812 2.47599 10.2469C2.37163 10.2125 2.27511 10.1579 2.19202 10.086C2.06079 9.93455 1.98856 9.74088 1.98856 9.54049C1.98856 9.34011 2.06079 9.14644 2.19202 8.99499V8.99499C2.47322 8.82131 2.79233 8.71837 3.12202 8.69499L4.14202 8.54699L4.14602 8.71599Z" fill="white"/>
|
||||
<path d="M2.75291 11.215C2.28488 11.2359 1.82771 11.0701 1.48191 10.754C1.32697 10.5967 1.20465 10.4103 1.12196 10.2056C1.03927 10.0009 0.997855 9.7818 1.00009 9.56101C1.00232 9.34023 1.04815 9.12205 1.13495 8.91904C1.22176 8.71602 1.34782 8.53215 1.50591 8.378C1.90224 8.05528 2.38371 7.85449 2.89191 7.8L4.11291 7.618C4.10849 7.35468 4.03093 7.09778 3.88891 6.876C3.81272 6.78113 3.7142 6.70662 3.60216 6.65915C3.49012 6.61169 3.36806 6.59274 3.24691 6.604C2.74463 6.62535 2.26668 6.82618 1.89991 7.17L1.43591 7.564V6.3L1.44591 6.292L1.54591 6.215C1.78758 6.03665 2.05822 5.90133 2.34591 5.815C2.6504 5.7114 2.9693 5.6564 3.29091 5.652C3.54229 5.63853 3.79353 5.68107 4.02648 5.77653C4.25943 5.87199 4.46826 6.018 4.63791 6.204C4.97781 6.63233 5.14734 7.17121 5.11391 7.717V11.1H4.12091V10.688C4.04322 10.7582 3.96031 10.8224 3.87291 10.88C3.54193 11.1021 3.15149 11.2189 2.75291 11.215V11.215ZM3.24691 6.554C3.37564 6.54328 3.50504 6.5643 3.62376 6.61521C3.74249 6.66612 3.84692 6.74536 3.92791 6.846C4.08013 7.08226 4.16198 7.35696 4.16391 7.638V7.661H4.14191L2.89991 7.849C2.40079 7.90224 1.92775 8.09882 1.53791 8.415C1.23062 8.71742 1.05575 9.12933 1.05163 9.56045C1.0475 9.99158 1.21446 10.4068 1.51591 10.715C1.68229 10.8673 1.87715 10.9852 2.08927 11.0619C2.30139 11.1386 2.52659 11.1726 2.75191 11.162C3.14094 11.1651 3.52186 11.0508 3.84491 10.834C3.94523 10.7669 4.03958 10.6913 4.12691 10.608L4.16991 10.568V11.045H5.05991V7.715C5.0937 7.18157 4.92916 6.65447 4.59791 6.235C4.43259 6.05464 4.22939 5.91313 4.00289 5.82063C3.77639 5.72813 3.53222 5.68693 3.28791 5.7C2.97145 5.70437 2.65763 5.75836 2.35791 5.86C2.07398 5.94651 1.80732 6.08188 1.56991 6.26L1.48291 6.33V7.459L1.86291 7.135C2.23926 6.78105 2.73068 6.57475 3.24691 6.554V6.554ZM2.79991 10.311C2.68694 10.3191 2.57349 10.3048 2.46606 10.2689C2.35863 10.2331 2.25935 10.1763 2.17391 10.102C2.10395 10.0325 2.04917 9.94926 2.01302 9.85752C1.97687 9.76578 1.96015 9.66754 1.96391 9.569C1.95131 9.45928 1.96406 9.34814 2.00116 9.24412C2.03826 9.1401 2.09872 9.04598 2.17791 8.969C2.46415 8.79516 2.78782 8.6923 3.12191 8.669L4.17091 8.516V8.716C4.19073 9.14079 4.04766 9.55713 3.77091 9.88C3.65096 10.0191 3.50167 10.1299 3.33377 10.2045C3.16587 10.279 2.98355 10.3154 2.79991 10.311V10.311ZM4.12091 8.576L3.12991 8.72C2.80406 8.73865 2.48809 8.8387 2.21091 9.011C2.13731 9.08266 2.08104 9.17017 2.04638 9.26687C2.01172 9.36357 1.99959 9.4669 2.01091 9.569C2.00651 9.66127 2.0215 9.75344 2.05492 9.83956C2.08833 9.92568 2.13943 10.0038 2.20491 10.069C2.3683 10.2097 2.58085 10.2798 2.79591 10.264C2.97279 10.2683 3.14844 10.2334 3.31026 10.1618C3.47207 10.0902 3.61606 9.98375 3.73191 9.85C3.99929 9.53562 4.13695 9.13123 4.11691 8.719L4.12091 8.576Z" fill="white"/>
|
||||
<path d="M8.49979 5.675C8.08131 5.67105 7.66998 5.78357 7.31179 6C7.18154 6.07755 7.06016 6.16909 6.94979 6.273V3.5H6.00879V11.073H6.94979V10.7C7.0366 10.7787 7.13069 10.849 7.23079 10.91C7.55394 11.1014 7.92429 11.1984 8.29979 11.19C8.63434 11.197 8.96586 11.1252 9.26758 10.9805C9.56931 10.8358 9.83279 10.6223 10.0368 10.357C10.4888 9.75289 10.7175 9.01076 10.6838 8.257C10.7156 7.59007 10.5128 6.93306 10.1108 6.4C9.91702 6.16233 9.67055 5.97307 9.39092 5.84722C9.11128 5.72138 8.80618 5.66241 8.49979 5.675V5.675ZM9.31779 9.767C9.211 9.92892 9.06516 10.0613 8.89371 10.152C8.72226 10.2428 8.53073 10.2888 8.33679 10.286C8.14889 10.2948 7.96144 10.2611 7.78832 10.1875C7.61521 10.114 7.46088 10.0024 7.33679 9.861C7.07963 9.56818 6.94155 9.18962 6.94979 8.8V8.2C6.94093 7.7808 7.08287 7.37236 7.34979 7.049C7.48241 6.89133 7.65027 6.76708 7.8398 6.6863C8.02933 6.60552 8.23521 6.57048 8.44079 6.584C8.61691 6.57696 8.79214 6.61235 8.95172 6.68718C9.11131 6.76202 9.25057 6.8741 9.35779 7.014C9.62006 7.37981 9.74858 7.82468 9.72179 8.274C9.74756 8.80234 9.60468 9.32519 9.31379 9.767H9.31779Z" fill="white"/>
|
||||
<path d="M8.29989 11.215C7.92163 11.2231 7.54863 11.1254 7.22289 10.933C7.13677 10.8809 7.05516 10.8217 6.97889 10.756V11.1H5.98389V3.47501H6.97489V6.21701C7.0749 6.12778 7.18304 6.0481 7.29789 5.97901C7.65994 5.76088 8.07522 5.64702 8.49789 5.65001C8.80858 5.636 9.11824 5.69501 9.402 5.82231C9.68577 5.9496 9.93575 6.14164 10.1319 6.38301C10.5374 6.92213 10.7412 7.58625 10.7079 8.26001C10.7402 9.0187 10.5091 9.76522 10.0539 10.373C9.84792 10.6409 9.58188 10.8567 9.27721 11.003C8.97254 11.1493 8.63777 11.2219 8.29989 11.215V11.215ZM6.92889 10.644L6.97089 10.682C7.05647 10.7599 7.14921 10.8295 7.24789 10.89C7.56608 11.0779 7.93045 11.1731 8.29989 11.165C8.63056 11.172 8.95824 11.1012 9.2565 10.9582C9.55475 10.8152 9.81522 10.6042 10.0169 10.342C10.4642 9.74262 10.691 9.00722 10.6589 8.26001C10.693 7.59759 10.4934 6.94423 10.0949 6.41401C9.9033 6.17864 9.65923 5.99146 9.38224 5.86746C9.10524 5.74347 8.80305 5.68611 8.49989 5.70001C8.08699 5.69712 7.68135 5.80857 7.32789 6.02201C7.19975 6.09839 7.08037 6.1886 6.97189 6.29101L6.92889 6.33101V3.52501H6.03389V11.048H6.92489L6.92889 10.644ZM8.33689 10.311C8.14631 10.3192 7.95633 10.2844 7.78099 10.2093C7.60565 10.1342 7.44943 10.0206 7.32389 9.87701C7.05832 9.58042 6.91534 9.19402 6.92389 8.79601V8.19601C6.91323 7.77167 7.05516 7.35758 7.32389 7.02901C7.45899 6.86848 7.62992 6.74195 7.8229 6.65961C8.01588 6.57728 8.22551 6.54145 8.43489 6.55501C8.61478 6.54802 8.79373 6.58424 8.95675 6.66061C9.11977 6.73699 9.26212 6.85131 9.37189 6.99401C9.63579 7.3653 9.76588 7.81516 9.74089 8.27001C9.76656 8.80517 9.62236 9.33475 9.32889 9.78301V9.78301C9.21997 9.947 9.07182 10.0812 8.89789 10.1734C8.72395 10.2656 8.52974 10.3129 8.33289 10.311H8.33689ZM8.43989 6.60001C8.23807 6.5868 8.03598 6.62108 7.84981 6.7001C7.66364 6.77911 7.49858 6.90067 7.36789 7.05501C7.10263 7.37653 6.96299 7.78335 6.97489 8.20001V8.80001C6.96501 9.18509 7.10152 9.5596 7.35689 9.84801C7.47784 9.98631 7.62838 10.0956 7.79734 10.1678C7.9663 10.24 8.14934 10.2732 8.33289 10.265C8.52264 10.2675 8.70999 10.2223 8.87773 10.1335C9.04546 10.0448 9.18822 9.9153 9.29289 9.75701C9.57969 9.31704 9.71972 8.79751 9.69289 8.27301C9.7184 7.82954 9.59253 7.39056 9.33589 7.02801C9.23161 6.89026 9.09583 6.77951 8.93994 6.70504C8.78404 6.63057 8.61257 6.59455 8.43989 6.60001V6.60001Z" fill="white"/>
|
||||
<path d="M13.6 6.57898C13.9491 6.5759 14.2918 6.67233 14.588 6.85698L14.979 7.09898V5.98698L14.825 5.91998C14.4597 5.75844 14.0646 5.675 13.665 5.67498C13.3071 5.66467 12.9511 5.73159 12.6214 5.87119C12.2916 6.0108 11.9958 6.2198 11.754 6.48398C11.2528 7.03941 10.9877 7.76831 11.015 8.51598C10.9863 9.21691 11.2222 9.90302 11.676 10.438C11.8967 10.6845 12.1687 10.8797 12.473 11.0096C12.7773 11.1395 13.1064 11.2011 13.437 11.19C13.9286 11.2018 14.4135 11.0757 14.837 10.826L14.959 10.751V9.65998L14.553 9.95198C14.2319 10.1788 13.8461 10.2959 13.453 10.286C13.2509 10.294 13.0495 10.2555 12.8646 10.1735C12.6796 10.0915 12.5159 9.96817 12.386 9.81298C12.0932 9.4355 11.9462 8.96507 11.972 8.48798C11.9485 7.98469 12.1116 7.49043 12.43 7.09998C12.5724 6.9297 12.7519 6.79423 12.9547 6.70393C13.1575 6.61363 13.3782 6.57089 13.6 6.57898V6.57898Z" fill="white"/>
|
||||
<path d="M13.4322 11.215C13.0983 11.2261 12.766 11.1638 12.4588 11.0324C12.1516 10.9011 11.8769 10.704 11.6542 10.455C11.1955 9.91566 10.9567 9.22343 10.9852 8.51601C10.9581 7.76183 11.2261 7.0268 11.7322 6.46701C11.9763 6.20045 12.2749 5.98953 12.6078 5.84856C12.9406 5.70759 13.2999 5.63988 13.6612 5.65001C14.0641 5.65017 14.4626 5.73429 14.8312 5.89701L15.0002 5.97001V7.14401L14.5712 6.87901C14.2808 6.69522 13.9439 6.59841 13.6002 6.60001C13.3831 6.59197 13.167 6.63343 12.9682 6.72127C12.7695 6.80911 12.5934 6.94102 12.4532 7.10701C12.1352 7.49472 11.9737 7.98728 12.0002 8.48801C11.9725 8.95908 12.1144 9.4245 12.4002 9.80001C12.5278 9.95229 12.6886 10.0733 12.8703 10.1537C13.052 10.2342 13.2497 10.2719 13.4482 10.264C13.8356 10.2747 14.216 10.1592 14.5322 9.93501L14.9782 9.61501V10.768L14.9652 10.775L14.8422 10.85C14.4153 11.1005 13.927 11.2269 13.4322 11.215V11.215ZM13.6612 5.70001C13.3069 5.68953 12.9544 5.75557 12.6279 5.89363C12.3014 6.03168 12.0085 6.23851 11.7692 6.50001C11.2719 7.05065 11.0089 7.77353 11.0362 8.51501C11.0077 9.21002 11.2415 9.89036 11.6912 10.421C11.9093 10.6647 12.1783 10.8575 12.4792 10.9859C12.78 11.1143 13.1053 11.1751 13.4322 11.164C13.9199 11.1764 14.4012 11.0513 14.8212 10.803L14.9312 10.736V9.70901L14.5652 9.97301C14.2396 10.2013 13.8497 10.3197 13.4522 10.311C13.2464 10.3192 13.0414 10.28 12.8531 10.1964C12.6648 10.1129 12.4982 9.98715 12.3662 9.82901C12.0704 9.4466 11.9214 8.97084 11.9462 8.48801C11.9225 7.97695 12.0885 7.47517 12.4122 7.07901C12.5566 6.90724 12.7384 6.77068 12.9435 6.6797C13.1487 6.58873 13.3719 6.54574 13.5962 6.55401C13.9497 6.5501 14.2968 6.648 14.5962 6.83601L14.9492 7.05401V6.00001L14.8112 5.93901C14.4485 5.78058 14.0569 5.69919 13.6612 5.70001V5.70001Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 10 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 4H10V3H15V4ZM14 7H12V8H14V7ZM10 7H1V8H10V7ZM12 13H1V14H12V13ZM7 10H1V11H7V10ZM15 10H10V11H15V10ZM8 2V5H1V2H8ZM7 3H2V4H7V3Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 255 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.13341 1.1709C8.72039 1.05697 8.2913 1 7.84615 1C7.401 1 6.97192 1.05697 6.55889 1.1709C6.14587 1.28483 5.75809 1.44661 5.39554 1.65625C5.03759 1.86589 4.71176 2.11654 4.41805 2.4082C4.12434 2.69987 3.87194 3.02572 3.66084 3.38574C3.44974 3.74121 3.28682 4.12402 3.17209 4.53418C3.05736 4.94434 3 5.37044 3 5.8125C3 6.47331 3.1262 7.08626 3.37861 7.65137C3.63101 8.21647 3.99126 8.72917 4.45935 9.18945C4.84025 9.56315 5.13166 9.98014 5.33359 10.4404C5.3707 10.5231 5.40447 10.6071 5.43491 10.6923H10.2528C10.2825 10.6071 10.3156 10.5231 10.3518 10.4404C10.5583 9.98014 10.8521 9.56315 11.233 9.18945C11.701 8.72917 12.0613 8.21647 12.3137 7.65137C12.5661 7.08626 12.6923 6.47331 12.6923 5.8125C12.6923 5.37044 12.6349 4.94434 12.5202 4.53418C12.4055 4.12402 12.2426 3.74121 12.0315 3.38574C11.8204 3.02572 11.568 2.69987 11.2743 2.4082C10.9805 2.11654 10.6524 1.86589 10.2899 1.65625C9.93193 1.44661 9.54644 1.28483 9.13341 1.1709ZM10.0523 11.7692H5.63993C5.64222 11.8249 5.64336 11.881 5.64336 11.9375V13.6875C5.64336 13.8698 5.67777 14.0407 5.74661 14.2002C5.81545 14.3597 5.90953 14.4987 6.02885 14.6172C6.14816 14.7357 6.28813 14.8291 6.44875 14.8975C6.60937 14.9658 6.78147 15 6.96503 15H8.72727C8.91084 15 9.08293 14.9658 9.24355 14.8975C9.40417 14.8291 9.54414 14.7357 9.66346 14.6172C9.78278 14.4987 9.87686 14.3597 9.94569 14.2002C10.0145 14.0407 10.0489 13.8698 10.0489 13.6875V11.9375C10.0489 11.881 10.0501 11.8249 10.0523 11.7692ZM8.91117 13.8143C8.82397 13.9009 8.72072 13.9442 8.6014 13.9442H7.14046C7.02114 13.9442 6.91788 13.9009 6.83069 13.8143C6.74349 13.7277 6.6999 13.6252 6.6999 13.5067V12.8462H9.04196V13.5067C9.04196 13.6252 8.99836 13.7277 8.91117 13.8143Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.84615 1C8.2913 1 8.72039 1.05697 9.13341 1.1709C9.54644 1.28483 9.93193 1.44661 10.2899 1.65625C10.6524 1.86589 10.9806 2.11654 11.2743 2.4082C11.568 2.69987 11.8204 3.02572 12.0315 3.38574C12.2426 3.74121 12.4055 4.12402 12.5202 4.53418C12.6349 4.94434 12.6923 5.37044 12.6923 5.8125C12.6923 6.47331 12.5661 7.08626 12.3137 7.65137C12.2604 7.77071 12.2023 7.88772 12.1394 8.00239C12.0931 8.0008 12.0466 8 12 8C10.2488 8 8.76045 9.12534 8.21864 10.6923H5.43491C5.40447 10.6071 5.3707 10.5231 5.33359 10.4404C5.13166 9.98014 4.84025 9.56315 4.45935 9.18945C3.99126 8.72917 3.63101 8.21647 3.37861 7.65137C3.1262 7.08626 3 6.47331 3 5.8125C3 5.37044 3.05736 4.94434 3.17209 4.53418C3.28682 4.12402 3.44974 3.74121 3.66084 3.38574C3.87194 3.02572 4.12434 2.69987 4.41805 2.4082C4.71176 2.11654 5.03759 1.86589 5.39554 1.65625C5.75809 1.44661 6.14587 1.28483 6.55889 1.1709C6.97192 1.05697 7.401 1 7.84615 1ZM8.00655 11.7692H5.63994C5.64222 11.8249 5.64336 11.881 5.64336 11.9375V13.6875C5.64336 13.8698 5.67778 14.0407 5.74661 14.2002C5.81545 14.3597 5.90953 14.4987 6.02885 14.6172C6.14816 14.7357 6.28813 14.8291 6.44875 14.8975C6.60937 14.9658 6.78147 15 6.96503 15H8.72727C8.91052 15 9.08233 14.9659 9.24271 14.8978C8.95089 14.6201 8.70098 14.2987 8.50343 13.9442H7.14046C7.02114 13.9442 6.91788 13.9009 6.83069 13.8143C6.74349 13.7277 6.6999 13.6252 6.6999 13.5067V12.8462H8.08967C8.03093 12.5734 8 12.2903 8 12C8 11.9225 8.0022 11.8456 8.00655 11.7692Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 9C10.3304 9 9 10.3304 9 12C9 13.6696 10.3304 15 12 15C13.6696 15 15 13.6696 15 12C15 10.3304 13.6696 9 12 9ZM11.2028 12.4712L10.704 14L12 13.024L13.3054 14L12.7972 12.4712L14 11.6394H12.5361L12 10L11.4732 11.6394H10L11.2028 12.4712Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 1.077L2 4.539V11.461L8 14.923L14 11.461V4.539L8 1.077ZM8 2.232L12.482 4.82L8.011 7.4L3.529 4.813L8 2.232ZM3.005 5.666L7.505 8.266V13.48L3.01 10.88L3.005 5.666ZM13 10.884L8.5 13.48V8.273L13 5.678V10.884Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 334 B |
@@ -1,4 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 2.97184V2.98361H5.91083C5.71113 2.98361 5.5238 3.02427 5.34802 3.10513C5.17461 3.18275 5.02193 3.28942 4.89086 3.42437C4.76421 3.55475 4.66135 3.71034 4.58238 3.89205C4.50833 4.07152 4.47134 4.26019 4.47134 4.45902C4.47134 4.68725 4.4753 4.9134 4.48321 5.13749C4.49125 5.36105 4.49127 5.58262 4.48324 5.80219C4.47914 6.01973 4.46082 6.2333 4.42826 6.44285C4.39513 6.65175 4.33913 6.85263 4.26039 7.04464C4.18091 7.23843 4.07258 7.42254 3.93616 7.59702C3.82345 7.74119 3.68538 7.87538 3.52283 8C3.68538 8.12462 3.82345 8.25881 3.93616 8.40298C4.07258 8.57746 4.18091 8.76157 4.26039 8.95536C4.33921 9.14757 4.39513 9.35024 4.42823 9.56312C4.46084 9.76883 4.47914 9.98246 4.48324 10.2039C4.49127 10.4195 4.49125 10.6411 4.48321 10.8686C4.4753 11.0885 4.47134 11.3127 4.47134 11.541C4.47134 11.744 4.50838 11.9346 4.58223 12.1137C4.66104 12.2911 4.76386 12.4469 4.89086 12.5818C5.02194 12.7126 5.17396 12.8191 5.34763 12.9008C5.52346 12.9777 5.71095 13.0164 5.91083 13.0164H6V13.2V14H5.91083C5.59743 14 5.29407 13.9384 5.00128 13.8153C4.70818 13.692 4.44942 13.5153 4.22578 13.285C4.00311 13.0558 3.83793 12.805 3.73283 12.5323L3.73232 12.531C3.63387 12.265 3.56819 11.9903 3.53535 11.7072L3.53516 11.7055C3.50677 11.4215 3.4987 11.1316 3.51084 10.8357C3.52272 10.5462 3.52866 10.2567 3.52866 9.96721C3.52866 9.76883 3.48986 9.58047 3.41201 9.40108L3.41129 9.39942C3.33659 9.21871 3.23428 9.0637 3.10412 8.93352L3.10221 8.93161C2.97577 8.79762 2.82457 8.69156 2.64742 8.61396L2.64601 8.61334C2.47001 8.53238 2.28465 8.4918 2.08917 8.4918H2V8.4V7.6V7.5082H2.08917C2.28497 7.5082 2.4706 7.46954 2.64672 7.3925C2.82466 7.31055 2.97644 7.20405 3.10317 7.07358C3.23423 6.93866 3.33687 6.78296 3.4116 6.60601L3.412 6.60507C3.48974 6.42594 3.52866 6.23556 3.52866 6.03279C3.52866 5.74329 3.52272 5.45379 3.51084 5.16428C3.4987 4.86844 3.50678 4.5805 3.53519 4.30053L3.53533 4.29917C3.56814 4.01201 3.63382 3.7352 3.73233 3.46898L3.73282 3.46766C3.83792 3.19498 4.00311 2.94422 4.22578 2.71498C4.44942 2.48474 4.70818 2.30798 5.00128 2.18473C5.29407 2.06161 5.59743 2 5.91083 2H6V2.97184Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 13.0282L10 13.0164L10.0892 13.0164C10.2889 13.0164 10.4762 12.9757 10.652 12.8949C10.8254 12.8173 10.9781 12.7106 11.1091 12.5756C11.2358 12.4452 11.3386 12.2897 11.4176 12.1079C11.4917 11.9285 11.5287 11.7398 11.5287 11.541C11.5287 11.3128 11.5247 11.0866 11.5168 10.8625C11.5087 10.6389 11.5087 10.4174 11.5168 10.1978C11.5209 9.98027 11.5392 9.7667 11.5717 9.55715C11.6049 9.34825 11.6609 9.14737 11.7396 8.95536C11.8191 8.76157 11.9274 8.57746 12.0638 8.40298C12.1765 8.25881 12.3146 8.12462 12.4772 8C12.3146 7.87538 12.1765 7.74119 12.0638 7.59702C11.9274 7.42254 11.8191 7.23843 11.7396 7.04464C11.6608 6.85243 11.6049 6.64976 11.5718 6.43688C11.5392 6.23117 11.5209 6.01754 11.5168 5.79605C11.5087 5.58049 11.5088 5.35894 11.5168 5.13142C11.5247 4.91145 11.5287 4.68727 11.5287 4.45902C11.5287 4.25596 11.4916 4.0654 11.4178 3.88628C11.339 3.70889 11.2361 3.55305 11.1091 3.41823C10.9781 3.28736 10.826 3.18092 10.6524 3.09917C10.4765 3.0223 10.2891 2.98361 10.0892 2.98361L10 2.98361L10 2.8L10 2L10.0892 2C10.4026 2 10.7059 2.06161 10.9987 2.18473C11.2918 2.30798 11.5506 2.48474 11.7742 2.71498C11.9969 2.94422 12.1621 3.19499 12.2672 3.46766L12.2677 3.46897C12.3661 3.73502 12.4318 4.00971 12.4646 4.29285L12.4648 4.29454C12.4932 4.57848 12.5013 4.86842 12.4892 5.16428C12.4773 5.45379 12.4713 5.74329 12.4713 6.03279C12.4713 6.23117 12.5101 6.41953 12.588 6.59892L12.5887 6.60058C12.6634 6.78129 12.7657 6.9363 12.8959 7.06648L12.8978 7.06839C13.0242 7.20238 13.1754 7.30844 13.3526 7.38604L13.354 7.38666C13.53 7.46762 13.7153 7.5082 13.9108 7.5082L14 7.5082L14 7.6L14 8.4L14 8.4918L13.9108 8.4918C13.715 8.4918 13.5294 8.53046 13.3533 8.6075C13.1753 8.68945 13.0236 8.79595 12.8968 8.92642C12.7658 9.06134 12.6631 9.21704 12.5884 9.39399L12.588 9.39493C12.5103 9.57406 12.4713 9.76444 12.4713 9.96721C12.4713 10.2567 12.4773 10.5462 12.4892 10.8357C12.5013 11.1316 12.4932 11.4195 12.4648 11.6995L12.4647 11.7008C12.4319 11.988 12.3662 12.2648 12.2677 12.531L12.2672 12.5323C12.1621 12.805 11.9969 13.0558 11.7742 13.285C11.5506 13.5153 11.2918 13.692 10.9987 13.8153C10.7059 13.9384 10.4026 14 10.0892 14L10 14L10 13.0282Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.4 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="1" y="5" width="14" height="1" fill="white"/>
|
||||
<rect x="1" y="10" width="14" height="1" fill="white"/>
|
||||
<rect x="11" y="1" width="14" height="1" transform="rotate(90 11 1)" fill="white"/>
|
||||
<rect x="6" y="1" width="14" height="1" transform="rotate(90 6 1)" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 380 B |
@@ -1,8 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 9H11.5V11.5H9V12.5H11.5V15H12.5V12.5H15V11.5H12.5V9Z" fill="white"/>
|
||||
<path d="M1.81277 14.5L4.03109 10.1089L6.24941 14.5H1.81277Z" stroke="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.971 3.784C14.8943 3.23898 14.6691 2.72558 14.32 2.3C13.9717 1.8439 13.4823 1.51585 12.928 1.367L12.56 2.251L12.631 2.275C12.9819 2.39383 13.2933 2.60715 13.5308 2.89149C13.7683 3.17583 13.9227 3.52017 13.9772 3.88663C14.0316 4.25309 13.9839 4.62746 13.8393 4.96856C13.6948 5.30966 13.4589 5.60428 13.1577 5.81999C12.8565 6.0357 12.5016 6.16415 12.1321 6.19121C11.7626 6.21826 11.3928 6.14288 11.0634 5.97335C10.734 5.80382 10.4578 5.54671 10.265 5.23031C10.0723 4.91391 9.97057 4.55048 9.97104 4.18C9.97077 3.89675 10.0315 3.61677 10.1492 3.35913C10.2669 3.10149 10.4388 2.87224 10.653 2.687V3.654H11.653V1H9.00004V2H9.97104C9.66593 2.27542 9.4219 2.61169 9.25466 2.98716C9.08742 3.36263 9.00068 3.76897 9.00004 4.18C8.99787 4.59218 9.08066 5.0004 9.24324 5.37916C9.40583 5.75793 9.64473 6.09914 9.94503 6.38148C10.2453 6.66383 10.6006 6.88126 10.9887 7.02022C11.3767 7.15917 11.7893 7.21667 12.2005 7.18912C12.6118 7.16157 13.013 7.04956 13.379 6.86008C13.7451 6.67061 14.0682 6.40773 14.3281 6.08786C14.5881 5.76798 14.7793 5.39796 14.89 5.00089C15.0006 4.60382 15.0282 4.18821 14.971 3.78V3.784Z" fill="white"/>
|
||||
<path d="M6.42989 1.10951L1.10962 6.42978L1.79551 7.11567L7.11578 1.7954L6.42989 1.10951Z" fill="white"/>
|
||||
<path d="M3.61802 1.82988C3.47545 1.498 3.20768 1.23579 2.87289 1.10023C2.53809 0.964661 2.16332 0.966692 1.83002 1.10588C1.50328 1.24323 1.24337 1.50314 1.10602 1.82988C1.03519 1.99825 0.99913 2.17921 1.00002 2.36188C0.998666 2.62984 1.0768 2.89219 1.22453 3.11575C1.37227 3.33932 1.58298 3.51406 1.83002 3.61788C1.99818 3.68951 2.17924 3.72592 2.36202 3.72488C2.6293 3.72612 2.89102 3.64851 3.11442 3.50177C3.33782 3.35503 3.51299 3.14567 3.61802 2.89988C3.68975 2.7314 3.72617 2.54999 3.72502 2.36688C3.72675 2.18242 3.69032 1.99959 3.61802 1.82988V1.82988ZM2.86502 2.57488C2.80927 2.70526 2.7054 2.80913 2.57502 2.86488C2.43854 2.92089 2.28549 2.92089 2.14902 2.86488C2.05713 2.82675 1.97736 2.76433 1.91825 2.6843C1.85915 2.60428 1.82294 2.50968 1.81352 2.41065C1.80409 2.31161 1.8218 2.21188 1.86475 2.12215C1.9077 2.03241 1.97426 1.95606 2.05731 1.90128C2.14035 1.8465 2.23674 1.81537 2.33614 1.81121C2.43553 1.80705 2.53418 1.83002 2.62151 1.87767C2.70884 1.92531 2.78156 1.99584 2.83185 2.08167C2.88215 2.1675 2.90813 2.2654 2.90702 2.36488C2.90718 2.43698 2.8929 2.50838 2.86502 2.57488V2.57488Z" fill="white"/>
|
||||
<path d="M7.11797 5.32987C7.01437 5.08268 6.83968 4.87182 6.61607 4.72405C6.39246 4.57628 6.12999 4.49826 5.86197 4.49987C5.6793 4.49898 5.49834 4.53504 5.32997 4.60587C5.00323 4.74323 4.74332 5.00314 4.60597 5.32987C4.53583 5.49478 4.49893 5.6719 4.49737 5.8511C4.49581 6.03029 4.52963 6.20803 4.59688 6.37413C4.66414 6.54023 4.76352 6.69143 4.88931 6.81905C5.01511 6.94668 5.16486 7.04822 5.32997 7.11787C5.49862 7.18847 5.67963 7.22483 5.86247 7.22483C6.0453 7.22483 6.22631 7.18847 6.39497 7.11787C6.64196 7.01387 6.85266 6.83912 7.00053 6.61562C7.1484 6.39212 7.22684 6.12986 7.22597 5.86187C7.2265 5.67904 7.18975 5.49802 7.11797 5.32987V5.32987ZM6.36497 6.07487C6.33761 6.13937 6.29824 6.19807 6.24897 6.24787C6.19903 6.29723 6.14037 6.3369 6.07597 6.36487C6.00849 6.39296 5.93606 6.40724 5.86297 6.40687C5.78986 6.40744 5.71739 6.39315 5.64997 6.36487C5.58536 6.33728 5.52663 6.29756 5.47697 6.24787C5.42686 6.19855 5.38708 6.13974 5.35997 6.07487C5.30396 5.9384 5.30396 5.78535 5.35997 5.64887C5.41531 5.51845 5.51936 5.41477 5.64997 5.35987C5.71732 5.33125 5.78979 5.31662 5.86297 5.31687C5.93613 5.31684 6.00855 5.33146 6.07597 5.35987C6.14033 5.38748 6.19899 5.42682 6.24897 5.47587C6.29781 5.52602 6.33712 5.58465 6.36497 5.64887C6.39335 5.7163 6.40797 5.78872 6.40797 5.86187C6.40797 5.93503 6.39335 6.00745 6.36497 6.07487V6.07487Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |