More Layering (#9139)

* move handling generated files to the serilization classes

* remove unneeded methods

* add more folders to strictire compile, add more strict compile options

* update ci

* wip

* add more layering and fix issues

* add more strictness

* remove unnecessary assertion

* add missing checks

* fix indentation

* wip

* remove jsdoc

* fix layering

* fix compile

* fix compile errors

* wip

* wip

* finish layering

* fix css

* more layering

* rip

* reworking results serializer

* move some files around

* move capabilities to platform wip

* implement capabilities register provider

* fix capabilities service

* fix usage of the regist4ry

* add contribution

* wip

* wip

* wip

* remove no longer good parts

* fix strict-nulls

* fix issues with startup

* another try

* fix startup

* fix imports

* fix tests

* fix tests

* fix more tests

* fix tests

* fix more tests

* fix broken test

* fix tabbing

* fix naming

* wip

* finished layering

* fix imports

* fix valid layers

* fix layers
This commit is contained in:
Anthony Dresser
2020-02-15 01:54:23 -06:00
committed by GitHub
parent 873c6a39fe
commit 506c6a5e5f
338 changed files with 815 additions and 724 deletions

View File

@@ -0,0 +1,333 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { localize } from 'vs/nls';
import { Action } from 'vs/base/common/actions';
import { ConnectionProfile } from 'sql/platform/connection/common/connectionProfile';
import { IConnectionManagementService } from 'sql/platform/connection/common/connectionManagement';
import { IConnectionProfile } from 'sql/platform/connection/common/interfaces';
import { ConnectionProfileGroup } from 'sql/platform/connection/common/connectionProfileGroup';
import { ITree } from 'vs/base/parts/tree/browser/tree';
import { IObjectExplorerService } from 'sql/workbench/services/objectExplorer/browser/objectExplorerService';
import { TreeNode } from 'sql/workbench/services/objectExplorer/common/treeNode';
import Severity from 'vs/base/common/severity';
import { ObjectExplorerActionsContext } from 'sql/workbench/services/objectExplorer/browser/objectExplorerActions';
import { IErrorMessageService } from 'sql/platform/errorMessage/common/errorMessageService';
import { UNSAVED_GROUP_ID } from 'sql/platform/connection/common/constants';
import { IServerGroupController } from 'sql/platform/serverGroup/common/serverGroupController';
import { ILogService } from 'vs/platform/log/common/log';
export interface IServerView {
showFilteredTree(filter: string): void;
refreshTree(): void;
}
export class RefreshAction extends Action {
public static ID = 'objectExplorer.refresh';
public static LABEL = localize('connectionTree.refresh', "Refresh");
private _tree: ITree;
constructor(
id: string,
label: string,
tree: ITree,
private element: IConnectionProfile | TreeNode,
@IConnectionManagementService private _connectionManagementService: IConnectionManagementService,
@IObjectExplorerService private _objectExplorerService: IObjectExplorerService,
@IErrorMessageService private _errorMessageService: IErrorMessageService,
@ILogService private _logService: ILogService
) {
super(id, label);
this._tree = tree;
}
public async run(): Promise<boolean> {
let treeNode: TreeNode;
if (this.element instanceof ConnectionProfile) {
let connection: ConnectionProfile = this.element;
if (this._connectionManagementService.isConnected(undefined, connection)) {
treeNode = this._objectExplorerService.getObjectExplorerNode(connection);
if (treeNode === undefined) {
await this._objectExplorerService.updateObjectExplorerNodes(connection.toIConnectionProfile());
treeNode = this._objectExplorerService.getObjectExplorerNode(connection);
}
}
} else if (this.element instanceof TreeNode) {
treeNode = this.element;
}
if (treeNode) {
try {
try {
await this._objectExplorerService.refreshTreeNode(treeNode.getSession(), treeNode);
} catch (error) {
this.showError(error);
return true;
}
await this._tree.refresh(this.element);
} catch (ex) {
this._logService.error(ex);
return true;
}
}
return true;
}
private showError(errorMessage: string) {
this._logService.error(errorMessage);
if (this._errorMessageService) {
this._errorMessageService.showDialog(Severity.Error, '', errorMessage);
}
}
}
export class DisconnectConnectionAction extends Action {
public static ID = 'objectExplorer.disconnect';
public static LABEL = localize('DisconnectAction', "Disconnect");
constructor(
id: string,
label: string,
private _connectionProfile: ConnectionProfile,
@IConnectionManagementService private _connectionManagementService: IConnectionManagementService
) {
super(id, label);
}
async run(actionContext: ObjectExplorerActionsContext): Promise<any> {
if (!this._connectionProfile) {
return true;
}
if (this._connectionManagementService.isProfileConnected(this._connectionProfile)) {
let profileImpl = this._connectionProfile as ConnectionProfile;
if (profileImpl) {
profileImpl.isDisconnecting = true;
}
await this._connectionManagementService.disconnect(this._connectionProfile);
if (profileImpl) {
profileImpl.isDisconnecting = false;
}
return true;
} else {
return true;
}
}
}
/**
* Actions to add a server to the group
*/
export class AddServerAction extends Action {
public static ID = 'registeredServers.addConnection';
public static LABEL = localize('connectionTree.addConnection', "New Connection");
constructor(
id: string,
label: string,
@IConnectionManagementService private _connectionManagementService: IConnectionManagementService
) {
super(id, label);
this.class = 'add-server-action';
}
public async run(element: ConnectionProfileGroup): Promise<boolean> {
let connection: IConnectionProfile = element === undefined ? undefined : {
connectionName: undefined,
serverName: undefined,
databaseName: undefined,
userName: undefined,
password: undefined,
authenticationType: undefined,
groupId: undefined,
groupFullName: element.fullName,
savePassword: undefined,
getOptionsKey: undefined,
matches: undefined,
providerName: '',
options: {},
saveProfile: true,
id: element.id
};
await this._connectionManagementService.showConnectionDialog(undefined, undefined, connection);
return true;
}
}
/**
* Actions to add a server to the group
*/
export class AddServerGroupAction extends Action {
public static ID = 'registeredServers.addServerGroup';
public static LABEL = localize('connectionTree.addServerGroup', "New Server Group");
constructor(
id: string,
label: string,
@IServerGroupController private readonly serverGroupController: IServerGroupController
) {
super(id, label);
this.class = 'add-server-group-action';
}
public async run(): Promise<boolean> {
await this.serverGroupController.showCreateGroupDialog();
return true;
}
}
/**
* Actions to edit a server group
*/
export class EditServerGroupAction extends Action {
public static ID = 'registeredServers.editServerGroup';
public static LABEL = localize('connectionTree.editServerGroup', "Edit Server Group");
constructor(
id: string,
label: string,
private _group: ConnectionProfileGroup,
@IServerGroupController private readonly serverGroupController: IServerGroupController
) {
super(id, label);
this.class = 'edit-server-group-action';
}
public run(): Promise<boolean> {
this.serverGroupController.showEditGroupDialog(this._group);
return Promise.resolve(true);
}
}
/**
* Display active connections in the tree
*/
export class ActiveConnectionsFilterAction extends Action {
public static ID = 'registeredServers.recentConnections';
public static LABEL = localize('activeConnections', "Show Active Connections");
private static enabledClass = 'active-connections-action';
private static disabledClass = 'icon server-page';
private static showAllConnectionsLabel = localize('showAllConnections', "Show All Connections");
private _isSet: boolean;
public static readonly ACTIVE = 'active';
public get isSet(): boolean {
return this._isSet;
}
public set isSet(value: boolean) {
this._isSet = value;
this.class = (!this._isSet) ?
ActiveConnectionsFilterAction.enabledClass : ActiveConnectionsFilterAction.disabledClass;
}
constructor(
id: string,
label: string,
private view: IServerView
) {
super(id, label);
this.class = ActiveConnectionsFilterAction.enabledClass;
}
public run(): Promise<boolean> {
if (!this.view) {
// return without doing anything
return Promise.resolve(true);
}
if (this.class === ActiveConnectionsFilterAction.enabledClass) {
// show active connections in the tree
this.view.showFilteredTree(ActiveConnectionsFilterAction.ACTIVE);
this.isSet = true;
this.label = ActiveConnectionsFilterAction.showAllConnectionsLabel;
} else {
// show full tree
this.view.refreshTree();
this.isSet = false;
this.label = ActiveConnectionsFilterAction.LABEL;
}
return Promise.resolve(true);
}
}
/**
* Display recent connections in the tree
*/
export class RecentConnectionsFilterAction extends Action {
public static ID = 'registeredServers.recentConnections';
public static LABEL = localize('recentConnections', "Recent Connections");
private static enabledClass = 'recent-connections-action';
private static disabledClass = 'recent-connections-action-set';
private _isSet: boolean;
public get isSet(): boolean {
return this._isSet;
}
public set isSet(value: boolean) {
this._isSet = value;
this.class = (!this._isSet) ?
RecentConnectionsFilterAction.enabledClass : RecentConnectionsFilterAction.disabledClass;
}
constructor(
id: string,
label: string,
private view: IServerView
) {
super(id, label);
this.class = RecentConnectionsFilterAction.enabledClass;
this._isSet = false;
}
public run(): Promise<boolean> {
if (!this.view) {
// return without doing anything
return Promise.resolve(true);
}
if (this.class === RecentConnectionsFilterAction.enabledClass) {
// show recent connections in the tree
this.view.showFilteredTree('recent');
this.isSet = true;
} else {
// show full tree
this.view.refreshTree();
this.isSet = false;
}
return Promise.resolve(true);
}
}
/**
* Actions to delete a server/group
*/
export class DeleteConnectionAction extends Action {
public static ID = 'registeredServers.deleteConnection';
public static DELETE_CONNECTION_LABEL = localize('deleteConnection', "Delete Connection");
public static DELETE_CONNECTION_GROUP_LABEL = localize('deleteConnectionGroup', "Delete Group");
constructor(
id: string,
label: string,
private element: IConnectionProfile | ConnectionProfileGroup,
@IConnectionManagementService private _connectionManagementService: IConnectionManagementService
) {
super(id, label);
this.class = 'delete-connection-action';
if (element instanceof ConnectionProfileGroup && element.id === UNSAVED_GROUP_ID) {
this.enabled = false;
}
if (element instanceof ConnectionProfile) {
let parent: ConnectionProfileGroup = element.parent;
if (parent && parent.id === UNSAVED_GROUP_ID) {
this.enabled = false;
}
}
}
public run(): Promise<boolean> {
if (this.element instanceof ConnectionProfile) {
this._connectionManagementService.deleteConnection(this.element);
} else if (this.element instanceof ConnectionProfileGroup) {
this._connectionManagementService.deleteConnectionGroup(this.element);
}
return Promise.resolve(true);
}
}

View File

@@ -0,0 +1,204 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { ConnectionProfileGroup } from 'sql/platform/connection/common/connectionProfileGroup';
import { ConnectionProfile } from 'sql/platform/connection/common/connectionProfile';
import { IConnectionManagementService } from 'sql/platform/connection/common/connectionManagement';
import { ITree, IDragAndDrop, IDragOverReaction, DRAG_OVER_ACCEPT_BUBBLE_DOWN, DRAG_OVER_REJECT } from 'vs/base/parts/tree/browser/tree';
import { DragMouseEvent } from 'vs/base/browser/mouseEvent';
import { TreeUpdateUtils } from 'sql/workbench/services/objectExplorer/browser/treeUpdateUtils';
import { UNSAVED_GROUP_ID } from 'sql/platform/connection/common/constants';
import { IDragAndDropData } from 'vs/base/browser/dnd';
/**
* Implements drag and drop for the server tree
*/
export class ServerTreeDragAndDrop implements IDragAndDrop {
constructor(
@IConnectionManagementService private _connectionManagementService: IConnectionManagementService,
) {
}
/**
* Returns a uri if the given element should be allowed to drag.
* Returns null, otherwise.
*/
public getDragURI(tree: ITree, element: any): string {
if (element instanceof ConnectionProfile) {
return (<ConnectionProfile>element).id;
}
else if (element instanceof ConnectionProfileGroup) {
return (<ConnectionProfileGroup>element).id;
}
return null;
}
/**
* Returns a label(name) to display when dragging the element.
*/
public getDragLabel(tree: ITree, elements: any[]): string {
if (elements[0] instanceof ConnectionProfile) {
return (<ConnectionProfile>elements[0]).serverName;
} else if (elements[0] instanceof ConnectionProfileGroup) {
return (<ConnectionProfileGroup>elements[0]).name;
} else {
return undefined;
}
}
/**
* Called when the drag operation starts.
*/
public onDragStart(tree: ITree, data: IDragAndDropData, originalEvent: DragMouseEvent): void {
TreeUpdateUtils.isInDragAndDrop = true;
return;
}
/**
* Returns a DragOverReaction indicating whether sources can be
* dropped into target or some parent of the target.
* Returns DRAG_OVER_ACCEPT_BUBBLE_DOWN when element is a connection group or connection
*/
public onDragOver(tree: ITree, data: IDragAndDropData, targetElement: any, originalEvent: DragMouseEvent): IDragOverReaction {
let canDragOver: boolean = true;
if (targetElement instanceof ConnectionProfile || targetElement instanceof ConnectionProfileGroup) {
let targetConnectionProfileGroup = this.getTargetGroup(targetElement);
// Verify if the connection can be moved to the target group
const source = data.getData()[0];
if (source instanceof ConnectionProfile) {
if (!this._connectionManagementService.canChangeConnectionConfig(source, targetConnectionProfileGroup.id)) {
canDragOver = false;
}
} else if (source instanceof ConnectionProfileGroup) {
// Dropping a group to itself or its descendants nodes is not allowed
// to avoid creating a circular structure.
canDragOver = source.id !== targetElement.id && !source.isAncestorOf(targetElement);
}
} else {
canDragOver = false;
}
if (canDragOver) {
return DRAG_OVER_ACCEPT_BUBBLE_DOWN(true);
} else {
return DRAG_OVER_REJECT;
}
}
/**
* Handle a drop in the server tree.
*/
public drop(tree: ITree, data: IDragAndDropData, targetElement: any, originalEvent: DragMouseEvent): void {
TreeUpdateUtils.isInDragAndDrop = false;
let targetConnectionProfileGroup: ConnectionProfileGroup = this.getTargetGroup(targetElement);
const source = data.getData()[0];
if (source && source.getParent) {
let oldParent: ConnectionProfileGroup = source.getParent();
const self = this;
if (this.isDropAllowed(targetConnectionProfileGroup, oldParent, source)) {
if (source instanceof ConnectionProfile) {
// Change group id of profile
this._connectionManagementService.changeGroupIdForConnection(source, targetConnectionProfileGroup.id).then(() => {
TreeUpdateUtils.registeredServerUpdate(tree, self._connectionManagementService, targetConnectionProfileGroup);
});
} else if (source instanceof ConnectionProfileGroup) {
// Change parent id of group
this._connectionManagementService.changeGroupIdForConnectionGroup(source, targetConnectionProfileGroup).then(() => {
TreeUpdateUtils.registeredServerUpdate(tree, self._connectionManagementService);
});
}
}
}
}
public dropAbort(tree: ITree, data: IDragAndDropData): void {
TreeUpdateUtils.isInDragAndDrop = false;
}
private getTargetGroup(targetElement: any): ConnectionProfileGroup {
let targetConnectionProfileGroup: ConnectionProfileGroup;
if (targetElement instanceof ConnectionProfile) {
targetConnectionProfileGroup = (<ConnectionProfile>targetElement).getParent();
}
else {
targetConnectionProfileGroup = <ConnectionProfileGroup>targetElement;
}
return targetConnectionProfileGroup;
}
private isDropAllowed(targetConnectionProfileGroup: ConnectionProfileGroup,
oldParent: ConnectionProfileGroup,
source: ConnectionProfile | ConnectionProfileGroup): boolean {
let isDropToItself = source && targetConnectionProfileGroup && (source instanceof ConnectionProfileGroup) && source.name === targetConnectionProfileGroup.name;
let isDropToSameLevel = oldParent && oldParent.equals(targetConnectionProfileGroup);
let isUnsavedDrag = source && (source instanceof ConnectionProfileGroup) && (source.id === UNSAVED_GROUP_ID);
return (!isDropToSameLevel && !isDropToItself && !isUnsavedDrag);
}
}
/**
* Implements drag and drop for the connection tree
*/
export class RecentConnectionsDragAndDrop implements IDragAndDrop {
/**
* Returns a uri if the given element should be allowed to drag.
* Returns null, otherwise.
*/
public getDragURI(tree: ITree, element: any): string {
if (element instanceof ConnectionProfile) {
return (<ConnectionProfile>element).id;
}
else if (element instanceof ConnectionProfileGroup) {
return (<ConnectionProfileGroup>element).id;
}
return null;
}
/**
* Returns a label(name) to display when dragging the element.
*/
public getDragLabel(tree: ITree, elements: any[]): string {
if (elements[0] instanceof ConnectionProfile) {
return (<ConnectionProfile>elements[0]).serverName;
}
else if (elements[0] instanceof ConnectionProfileGroup) {
return (<ConnectionProfileGroup>elements[0]).name;
}
return undefined;
}
/**
* Sent when the drag operation is starting.
*/
public onDragStart(tree: ITree, data: IDragAndDropData, originalEvent: DragMouseEvent): void {
return;
}
/**
* Returns a DragOverReaction indicating whether sources can be
* dropped into target or some parent of the target.
*/
public onDragOver(tree: ITree, data: IDragAndDropData, targetElement: any, originalEvent: DragMouseEvent): IDragOverReaction {
return DRAG_OVER_REJECT;
}
/**
* Handle drop in the server tree.
*/
public drop(tree: ITree, data: IDragAndDropData, targetElement: any, originalEvent: DragMouseEvent): void {
// No op
}
public dropAbort(tree: ITree, data: IDragAndDropData): void { }
}

View File

@@ -0,0 +1,137 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { createCSSRule, asCSSUrl } from 'vs/base/browser/dom';
import { hash } from 'vs/base/common/hash';
import { URI } from 'vs/base/common/uri';
class IconRenderer {
private iconRegistered: Set<string> = new Set<string>();
public registerIcon(path: URI | IconPath): string {
if (!path) { return undefined; }
let iconPath: IconPath = this.toIconPath(path);
let iconUid: string = this.getIconUid(iconPath);
if (!this.iconRegistered.has(iconUid)) {
createCSSRule(`.icon#${iconUid}`, `background: ${asCSSUrl(iconPath.light || iconPath.dark)} center center no-repeat`);
createCSSRule(`.vs-dark .icon#${iconUid}, .hc-black .icon#${iconUid}`, `background: ${asCSSUrl(iconPath.dark)} center center no-repeat`);
this.iconRegistered.add(iconUid);
}
return iconUid;
}
public getIconUid(path: URI | IconPath): string {
if (!path) { return undefined; }
let iconPath: IconPath = this.toIconPath(path);
return `icon${hash(iconPath.light.toString() + iconPath.dark.toString())}`;
}
private toIconPath(path: URI | IconPath): IconPath {
if (path['light']) {
return path as IconPath;
} else {
let singlePath = path as URI;
return { light: singlePath, dark: singlePath };
}
}
public putIcon(element: HTMLElement, path: URI | IconPath): void {
if (!element || !path) { return undefined; }
let iconUid: string = this.registerIcon(path);
element.id = iconUid;
}
public removeIcon(element: HTMLElement): void {
if (!element) { return undefined; }
element.id = undefined;
}
}
export const iconRenderer: IconRenderer = new IconRenderer();
class BadgeRenderer {
public readonly serverConnected: string = 'serverConnected';
public readonly serverDisconnected: string = 'serverDisconnected';
public readonly newTag: string = 'newTag';
private badgeCreated: Set<string> = new Set<string>();
constructor() {
this.createBadge(this.serverConnected, this.getConnectionStatusBadge(true));
this.createBadge(this.serverDisconnected, this.getConnectionStatusBadge(false));
this.createBadge(this.newTag, this.getNewTagBadge());
}
private getConnectionStatusBadge(isConnected: boolean) {
let circleColor: string = isConnected ? 'rgba(59, 180, 74, 100%)' : 'rgba(208, 46, 0, 100%)';
let bgColor: string = isConnected ? 'rgba(59, 180, 74, 100%)' : 'rgba(255, 255, 255, 80%)';
return `position: absolute;
height: 0.25rem;
width: 0.25rem;
top: 14px;
left: 19px;
border: 0.12rem solid ${circleColor};
border-radius: 100%;
background: ${bgColor};
content:"";
font-size: 100%;
line-height: 100%;
color:white;
text-align:center;
vertical-align:middle;`
.replace(/\t/g, ' ').replace(/\r?\n/g, ' ').replace(/ +/g, ' ');
}
private getNewTagBadge(): string {
return `position: absolute;
height: 0.4rem;
width: 0.4rem;
top: 3px;
left: 5px;
border: 1px solid green;
border-radius: 15%;
background: green;
content:"N";
font-size: 0.3rem;
font-weight: bold;
line-height: 0.4rem;
color: white;
text-align:center;
vertical-align:middle;`
.replace(/\t/g, ' ').replace(/\r?\n/g, ' ').replace(/ +/g, ' ');
}
private createBadge(badgeClass: string, badge: string): void {
if (!this.badgeCreated.has(badgeClass)) {
createCSSRule(`.${badgeClass}:after`, badge);
this.badgeCreated.add(badgeClass);
}
}
public addBadge(element: HTMLElement, badgeClass: string): void {
element.innerHTML = (element.innerHTML || '') +
`<div class="${badgeClass}" style="width: 0px; height: 0px;"><div>`;
}
public removeBadge(element: HTMLElement, badgeClass: string): void {
let children: HTMLCollection = element.children;
let current = children[0];
while (current) {
let next = current.nextElementSibling;
if (current.classList.contains(badgeClass)) {
current.remove();
break;
}
current = next;
}
}
}
export const badgeRenderer: BadgeRenderer = new BadgeRenderer();
interface IconPath {
light: URI;
dark: URI;
}

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>aggregate_valued_function_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M10,10h6V0H5V7a2.69,2.69,0,0,0-1.26.43A3.67,3.67,0,0,0,2.67,8.6H2.06L1.32,11h.54l-.37,1.33H1.43a1.45,1.45,0,0,0-.95.33,1.29,1.29,0,0,0-.49,1A1.3,1.3,0,0,0,.55,14.7a1.69,1.69,0,0,0,1,.3A2.6,2.6,0,0,0,3,14.62a3,3,0,0,0,1-1.06L4,13.42l.09.11a1.41,1.41,0,0,0,1,.35,1.88,1.88,0,0,0,.74-.15,2.37,2.37,0,0,0,.62-.43,1.64,1.64,0,0,0,.4.34,1.71,1.71,0,0,0,.9.24,1.79,1.79,0,0,0,1-.3,3.19,3.19,0,0,0,.92-.94l.64-.93-1.12-.58A1.29,1.29,0,0,0,10,10Zm-4.5,1.19a1.44,1.44,0,0,0-.35,0H5l.46-.08,0,.06Z"/><g id="iconBG"><path class="cls-3" d="M4.22,9.6a2.79,2.79,0,0,1,.59-1.21.62.62,0,0,1,.43-.24.1.1,0,0,1,.07,0,.07.07,0,0,1,0,.06.33.33,0,0,1-.06.12.32.32,0,0,0-.06.17.25.25,0,0,0,.09.2.35.35,0,0,0,.24.08.35.35,0,0,0,.36-.37.38.38,0,0,0-.16-.31A.82.82,0,0,0,5.26,8a1.74,1.74,0,0,0-1,.29,2.83,2.83,0,0,0-.83,1,.8.8,0,0,1-.26.29.87.87,0,0,1-.39.06L2.68,10h.5l-.74,2.62c-.12.43-.21.7-.25.8a1,1,0,0,1-.29.37.28.28,0,0,1-.18.06l-.05,0,0,0s0,0,.05-.07a.21.21,0,0,0,.05-.16.24.24,0,0,0-.09-.19.36.36,0,0,0-.25-.08.47.47,0,0,0-.31.1.29.29,0,0,0-.12.23.3.3,0,0,0,.14.25.76.76,0,0,0,.45.11,1.61,1.61,0,0,0,.86-.23,2,2,0,0,0,.66-.71,7,7,0,0,0,.58-1.56L4.11,10h.51l.13-.38Z"/><path class="cls-3" d="M8.59,9.52a.76.76,0,0,0-.33.08,1.6,1.6,0,0,0-.4.33,7.68,7.68,0,0,0-.53.67,3.08,3.08,0,0,0-.48-1.08H5.31v.56c.09,0,.42-.26.49-.26a.38.38,0,0,1,.31.15,5.12,5.12,0,0,1,.54,1.4c-.18.22-.52.59-.59.66a1.07,1.07,0,0,1-.27.21.41.41,0,0,1-.19,0,.73.73,0,0,1-.26-.08.59.59,0,0,0-.22-.05.43.43,0,0,0-.3.11.35.35,0,0,0-.12.27.33.33,0,0,0,.11.26.43.43,0,0,0,.3.1.86.86,0,0,0,.34-.07,1.59,1.59,0,0,0,.4-.29c.16-.15.6-.61.88-.94a7.77,7.77,0,0,0,.39.9.82.82,0,0,0,.27.3.72.72,0,0,0,.38.09.83.83,0,0,0,.45-.15,2.26,2.26,0,0,0,.62-.66L8.71,12a1.86,1.86,0,0,1-.32.34A.27.27,0,0,1,8,12.27a6,6,0,0,1-.6-1.43,2.13,2.13,0,0,1,.46-.57.49.49,0,0,1,.29-.1l.21,0a1.1,1.1,0,0,0,.27,0,.37.37,0,0,0,.27-.1A.34.34,0,0,0,9,9.88a.34.34,0,0,0-.11-.27A.43.43,0,0,0,8.59,9.52Z"/><path class="cls-3" d="M9.56,3a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,8,5.05C8,6.34,8.49,7,9.48,7a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,11,5Q11,3,9.56,3ZM9.51,6.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C10.07,5.89,9.88,6.34,9.51,6.34Z"/><path class="cls-3" d="M12,3.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L12.15,4V7H13V3h-.51A3.39,3.39,0,0,1,12,3.37Z"/><path class="cls-3" d="M6,1V7.14a1.48,1.48,0,0,1,.38.19,1.37,1.37,0,0,1,.54,1.1s0,.06,0,.09h.45l.22.32.22-.13a1.78,1.78,0,0,1,.79-.19,1.41,1.41,0,0,1,1,.37A1.23,1.23,0,0,1,9.66,9H15V1Zm8,7H7V2h7Z"/></g><g id="iconFG"><path class="cls-4" d="M9.52,3.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S9.89,3.65,9.52,3.65Z"/><path class="cls-4" d="M7,2V8h7V2Zm3.61,4.46A1.33,1.33,0,0,1,9.48,7C8.49,7,8,6.34,8,5.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,9.56,3Q11,3,11,5A2.45,2.45,0,0,1,10.61,6.46ZM13,7h-.85V4L12,4.12l-.2.1-.12,0V3.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,12.49,3H13Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}.cls-4{fill:#00539c;}</style></defs><title>input_parameter_16x</title><path id="outline" class="cls-1" d="M16,10.33a5.43,5.43,0,0,1-.29,1.83,4.5,4.5,0,0,1-.78,1.38,3.57,3.57,0,0,1-1.19.91l-.12.05V16H6.46a5.06,5.06,0,0,1-2-2.43A6.08,6.08,0,0,1,4,11.21a6.75,6.75,0,0,1,.14-1.35L4,10,0,6V0L2,2V0H6V2L8,0V5.37c.14,0,.28-.1.42-.15A6.63,6.63,0,0,1,10.16,5a6.81,6.81,0,0,1,2.2.35,5.66,5.66,0,0,1,1.86,1,5.07,5.07,0,0,1,1.3,1.69A5.23,5.23,0,0,1,16,10.33Z"/><path id="iconBG" class="cls-2" d="M14.62,8.52a4.07,4.07,0,0,0-1-1.36A4.64,4.64,0,0,0,12,6.3,5.77,5.77,0,0,0,10.16,6a5.57,5.57,0,0,0-1.47.19,5.07,5.07,0,0,0-1.26.53,4.71,4.71,0,0,0-1,.81,4.78,4.78,0,0,0-.76,1.05,5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,4,4,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.65,4.65,0,0,1,11.39,7a3.77,3.77,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33,4.21,4.21,0,0,0,14.62,8.52Zm-3.68,2.83a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53A5.54,5.54,0,0,1,10.94,11.35Z"/><path id="iconFG" class="cls-3" d="M10.74,9.46a.82.82,0,0,0-.31-.22,1.08,1.08,0,0,0-1,.14,1.74,1.74,0,0,0-.46.55,2.82,2.82,0,0,0-.28.75,3.9,3.9,0,0,0-.09.81,2.13,2.13,0,0,0,.08.61,1.37,1.37,0,0,0,.22.43.91.91,0,0,0,.32.26.86.86,0,0,0,.38.09,1.07,1.07,0,0,0,.64-.2,1.57,1.57,0,0,0,.45-.53,2.83,2.83,0,0,0,.27-.8,5.54,5.54,0,0,0,.09-1A1.71,1.71,0,0,0,11,9.83,1,1,0,0,0,10.74,9.46Z"/><path id="colorAction" class="cls-4" d="M7,5,4,8,1,5V3L3,5V1H5V5L7,3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>output_parameter_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M14.22,6.39a5.65,5.65,0,0,0-1.86-1A6.8,6.8,0,0,0,10.16,5a6.63,6.63,0,0,0-1.73.22c-.15,0-.28.1-.42.15V3L5,0H3L0,3V9L2,7V9H4.38c-.07.19-.13.38-.18.58A6.69,6.69,0,0,0,4,11.21a6.08,6.08,0,0,0,.44,2.36,5.06,5.06,0,0,0,2,2.43h7.16V14.51l.12-.05a3.57,3.57,0,0,0,1.19-.91,4.5,4.5,0,0,0,.78-1.38A5.43,5.43,0,0,0,16,10.33a5.22,5.22,0,0,0-.48-2.25A5.07,5.07,0,0,0,14.22,6.39Z"/><path id="iconBG" class="cls-3" d="M13.57,7.16A4.65,4.65,0,0,0,12,6.3,5.78,5.78,0,0,0,10.16,6a5.59,5.59,0,0,0-1.47.19,5.09,5.09,0,0,0-1.26.52A4.78,4.78,0,0,0,5.64,8.58a5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,3.92,3.92,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.63,4.63,0,0,1,11.39,7a3.72,3.72,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33a4.21,4.21,0,0,0-.38-1.82,4.07,4.07,0,0,0-1-1.36m-2.63,4.19a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53,5.54,5.54,0,0,1-.09,1"/><path id="colorAction" class="cls-4" d="M7,6,5,4V8H3V4L1,6V4L4,1,7,4Z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>parameter_return_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,5v.83A5.2,5.2,0,0,0,8.11,5a5.13,5.13,0,0,0-2.77.76L3.18,3.89A.5.5,0,0,1,3,3.5a.49.49,0,0,1,0-.08L4.59,5H8V1.51L6.4,0H5V.34A3,3,0,0,0,3.5,0,3.49,3.49,0,0,0,.34,5H0V15H5v-.86A5.12,5.12,0,0,0,8,15a6.51,6.51,0,0,0,2.52-.44l.51-.22V15h5V5ZM1.17,6.11h0ZM3,12V10.32A5.21,5.21,0,0,0,3.31,12Zm0-2V7.69L3.4,8A5.3,5.3,0,0,0,3,10Zm10,2h-.75A3.84,3.84,0,0,0,13,9.77Zm0-2.61A4.56,4.56,0,0,0,12.74,8H13Z"/><g id="iconBG"><polygon class="cls-3" points="12 6 12 7 14 7 14 13 12 13 12 14 15 14 15 6 12 6"/><path class="cls-3" d="M2,13V6.83l-.78-.67A1.53,1.53,0,0,1,1.07,6H1v8H4V13Z"/><path class="cls-3" d="M8.82,11.15h0a1.36,1.36,0,0,1-1.37,1,1.3,1.3,0,0,1-1.05-.49A2,2,0,0,1,6,10.39a2.92,2.92,0,0,1,.55-1.82A1.73,1.73,0,0,1,8,7.85,1,1,0,0,1,8.57,8a.84.84,0,0,1,.35.45h0c0-.09,0-.28.07-.56h.81q-.23,2.56-.23,2.61,0,1,.5,1a.87.87,0,0,0,.76-.54,2.81,2.81,0,0,0,.3-1.39,2.76,2.76,0,0,0-.82-2.06,3.1,3.1,0,0,0-2.26-.8,3,3,0,0,0-2.3,1,3.39,3.39,0,0,0-.91,2.42,3.13,3.13,0,0,0,.88,2.31,3.19,3.19,0,0,0,2.36.88,4.57,4.57,0,0,0,2-.4v.75A5.51,5.51,0,0,1,8,14a4,4,0,0,1-2.89-1.07A3.72,3.72,0,0,1,4,10.13,4,4,0,0,1,8.11,6a4.08,4.08,0,0,1,2.8,1A3.26,3.26,0,0,1,12,9.55a2.9,2.9,0,0,1-.6,1.9,1.82,1.82,0,0,1-1.47.74C9.2,12.19,8.82,11.85,8.82,11.15ZM8,8.54a1,1,0,0,0-.86.52,2.41,2.41,0,0,0-.33,1.31,1.38,1.38,0,0,0,.22.83.7.7,0,0,0,.59.3A1,1,0,0,0,8.51,11a3,3,0,0,0,.31-1.46C8.82,8.86,8.56,8.54,8,8.54Z"/></g><path id="colorAction" class="cls-4" d="M6,1V2.36l-.89-.77A2.34,2.34,0,0,0,3.5,1,2.5,2.5,0,0,0,1.87,5.4l2,1.68.63-.74L2.53,4.64A1.5,1.5,0,0,1,3.5,2a1.76,1.76,0,0,1,1,.36L5.24,3H4L5,4H7V1.95Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 14h-7v2h-9v-16h16v14z" id="outline"/><path class="icon-vs-bg" d="M15 1v12h-6v-1h5v-8h-7.055c-.632-.617-1.492-1-2.445-1-.952 0-1.813.383-2.444 1h-.056v.056c-.617.631-1 1.492-1 2.444v-5.5h14zm-13 8c-.65-.635-1-1.52-1-2.5v2.5h1zm2.5 3l-1.5-2h-2v5h7v-5h-2l-1.5 2zm2.5-5.5c0-1.38-1.121-2.5-2.5-2.5-1.381 0-2.5 1.12-2.5 2.5s1.119 2.5 2.5 2.5c1.379 0 2.5-1.119 2.5-2.5z" id="iconBg"/><path class="icon-vs-fg" d="M2 4h.056l-.056.056v-.056zm4.945 0c.649.635 1.055 1.52 1.055 2.5s-.35 1.865-1 2.5h2v3h5v-8h-7.055z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 859 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>assemblyfile_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M4,15a2,2,0,0,1-2-2V3A2,2,0,0,1,4,1h6.06L14,4.56V13a2,2,0,0,1-2,2Z"/></g><g id="icon_bg"><path class="cls-3" d="M9.64,2H4A1,1,0,0,0,3,3V13a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5ZM12,13H4V3H9V6h3Z"/><rect class="cls-3" x="5" y="5" width="3" height="1"/><rect class="cls-3" x="5" y="7" width="6" height="1"/><rect class="cls-3" x="5" y="9" width="6" height="1"/><rect class="cls-3" x="5" y="11" width="6" height="1"/></g><g id="icon_fg"><path class="cls-4" d="M9,6V3H4V13h8V6ZM5,5H8V6H5Zm6,7H5V11h6Zm0-2H5V9h6Zm0-2H5V7h6Z"/></g></svg>

After

Width:  |  Height:  |  Size: 838 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M13.775 8.361l2.225 2.225v1.828l-1.586 1.586h-6.184c-.829 1.247-2.208 2-3.73 2-2.481 0-4.5-2.019-4.5-4.5 0-2.482 2.019-4.5 4.5-4.5 1.057 0 2.043.362 2.826 1h1.361c-.348-.283-.662-.615-.917-1h-6.184l-1.586-1.586v-1.828l2.586-2.586h6.088c.783-.638 1.77-1 2.826-1 2.481 0 4.5 2.018 4.5 4.5 0 1.648-.9 3.077-2.225 3.861z" id="outline"/><path class="icon-vs-bg" d="M8.35 6c.563 1.179 1.756 2 3.15 2 1.934 0 3.5-1.567 3.5-3.5s-1.566-3.5-3.5-3.5c-1.394 0-2.587.821-3.15 2h-.35v-1h-1l-1 1v-1h-1l-1 1v-1h-1l-2 2v1l1 1h6.35zm3.65-3c.553 0 1 .448 1 1s-.447 1-1 1-1-.448-1-1 .447-1 1-1zm0 6v1l-1-1h-1v1l-1-1h-1v1h-.35c-.563-1.179-1.756-2-3.15-2-1.933 0-3.5 1.566-3.5 3.5s1.567 3.5 3.5 3.5c1.394 0 2.587-.82 3.15-2h6.35l1-1v-1l-2-2h-1zm2 3h-7.051c-.231 1.141-1.239 2-2.449 2-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c1.21 0 2.218.859 2.449 2h7.051v1zm-9-1c0 .553-.448 1-1 1s-1-.447-1-1 .448-1 1-1 1 .447 1 1z" id="iconBg"/><path class="icon-vs-fg" d="M6.949 11c-.231-1.141-1.239-2-2.449-2-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5c1.21 0 2.218-.859 2.449-2h7.051v-1h-7.051zm-2.949 1c-.553 0-1-.448-1-1s.447-1 1-1 1 .448 1 1-.447 1-1 1z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;} .icon-vs-action-blue{fill:#00539C;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 4v12h-16v-12.414l3.586-3.586h.828l3.586 3.586v.414h8z" id="outline"/><path class="icon-vs-bg" d="M15 5v10h-14v-4.586l1 1v2.586h12v-7l-5 5h-2l-.793-.793 1-1 .793.793 5-5h-5v-1h7z" id="iconBg"/><path class="icon-vs-fg" d="M13 6l-5 5-.793-.793.793-.793v-3.414h5zm-4 6h-2l-.793-.793-2.207 2.207-2-2v2.586h12v-7l-5 5z" id="iconFg"/><path class="icon-vs-action-blue" d="M5 9l2-2v2l-3 3-3-3v-2l2 2v-5l-2 2v-2l3-3 3 3v2l-2-2v5z" id="colorAction"/></svg>

After

Width:  |  Height:  |  Size: 816 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 14h-9.719l.5 2h-3.002l-.279-.838-.279.838h-3.001l.78-3.125v-1.24c-.317-.483-.5-1.047-.5-1.635 0-.438.099-.85.268-1.225.067-.149.143-.293.232-.427v-7.348h15v13z" id="outline"/><path class="icon-vs-bg" d="M5.5 10c0-1.104-.896-2-2-2s-2 .896-2 2c0 .672.335 1.264.843 1.627l-.843 3.373h1l1-3 1 3h1l-.843-3.373c.508-.363.843-.955.843-1.627zm-2 1c-.552 0-1-.447-1-1 0-.553.448-1 1-1s1 .447 1 1c0 .553-.448 1-1 1zm11.5-9v11h-8.969l-.261-1.045c.122-.141.228-.293.32-.452l.002-.006c.092-.158.167-.324.229-.496v-.001h.679v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v-1h1v-1h-1v1h-1v-1h-1v1h-1v-1h-1v1h-1v-1h-1v1h-1v-1h-1v1h-1v-1h-1v1h1v1h-1v1h1v1.051c-.164-.028-.329-.051-.5-.051-.549 0-1.057.159-1.5.417v-5.417h13zm-3 4h-7v-1h7v1zm-1 1v1h-5v-1h5zm-7.62.009l.12-.009-.12.009zm-.38.029l.38-.029-.38.04v-.011z" id="iconBg"/><path class="icon-vs-fg" d="M4.5 10c0 .553-.448 1-1 1s-1-.447-1-1c0-.553.448-1 1-1s1 .447 1 1zm9.5-7h-1v1h1v-1zm0 8h-1v1h1v-1zm-8.219 1zm-2.781-4.95c.164-.027.329-.05.5-.05-.172 0-.338.021-.5.05zm10-1.05v1h1v1h-1v1h1v1h-1v1h-1v1h-1v-1h-1v1h-1v-1h-1v1h-1v-1h-1c.002-.318.339-.655.339-1 0-1.483-.923-2.71-2.339-2.949v-1.051h-1v-1h1v-1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v-1h1v1h1v1h1v1h-1zm-2 1h-5v1h5v-1zm1-2h-7v1h7v-1zm-6 6.003zm.09.5c-.092.159-.198.312-.32.452l.011.045-.011-.045c.242-.281.427-.606.551-.952-.063.171-.137.337-.229.494l-.002.006zm-2.09-4.452c-.164-.028-.329-.051-.5-.051.172 0 .336.023.5.051zm0-4.051h-1v1h1v-1z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M13 16h-10v-16h10v16z" id="outline"/><path class="icon-vs-bg" d="M4 1v14h8v-14h-8zm7 13h-6v-3h6v3zm0-4h-6v-3h6v3zm0-4h-6v-3h6v3z" id="iconBg"/><path class="icon-vs-fg" d="M11 6h-6v-3h6v3zm0 1h-6v3h6v-3zm0 4h-6v3h6v-3z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 569 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>column_encryption_key_16x</title><path class="cls-1" d="M13,7.44a4,4,0,1,0-4,0V10H9V9.88A3.34,3.34,0,0,0,5.5,7,3.36,3.36,0,0,0,2,9.87V10H2v6H9V14h4V13h2V8H13Z"/><path class="cls-2" d="M3,15H8V11H3Zm2-3H6v2H5Zm3-2H7A1.47,1.47,0,0,0,5.5,9,1.45,1.45,0,0,0,4,10H3A2.37,2.37,0,0,1,5.5,8,2.36,2.36,0,0,1,8,10ZM8,4a3,3,0,0,0,2,2.82V13h2V12h2V11H12V10h2V9H12V6.82A3,3,0,1,0,8,4Zm4,0a1,1,0,1,1-1-1A1,1,0,0,1,12,4Z"/><path class="cls-3" d="M11,3a1,1,0,1,1-1,1,1,1,0,0,1,1-1M5,14H6V12H5Z"/></svg>

After

Width:  |  Height:  |  Size: 676 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>column_master_key_16x</title><rect class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,4A4,4,0,0,0,7.56,6H1v4H2v2H7V10h.56A4,4,0,1,0,11,4Z"/><path id="iconBG" class="cls-3" d="M11,5A3,3,0,0,0,8.18,7H2V9H3v2H4V9H5v2H6V9H8.18A3,3,0,1,0,11,5Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,11,9Z"/><path id="iconFG" class="cls-4" d="M12,8a1,1,0,1,0-1,1,1,1,0,0,0,1-1"/></svg>

After

Width:  |  Height:  |  Size: 595 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:none;}.cls-5{fill:#f0eff1;}</style></defs><title>default_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M15,0V16H1V8H5V0Z"/></g><g id="icon_bg"><path class="cls-3" d="M6,1V8H7V7h6v3H10v1h3v3H10v1h4V1Zm7,5H7V3h6Z"/><path class="cls-3" d="M4.52,10.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S4.89,10.65,4.52,10.65Z"/><path class="cls-3" d="M2,9v6H9V9Zm3.61,4.46A1.33,1.33,0,0,1,4.48,14C3.49,14,3,13.34,3,12.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,4.56,10Q6,10,6,12A2.45,2.45,0,0,1,5.61,13.46ZM8,14H7.15V11L7,11.12l-.2.1-.12,0v-.77c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,7.49,10H8Z"/></g><g id="icon_fg"><rect class="cls-4" x="4" y="12" width="1" height="1"/><rect class="cls-5" x="7" y="3" width="6" height="3"/><rect class="cls-5" x="10.01" y="11" width="2.99" height="3"/><polygon class="cls-5" points="7 8 10.01 8 10.01 10 13 10 13 7 7 7 7 8"/><path class="cls-5" d="M4.56,10a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,3,12.05C3,13.34,3.49,14,4.48,14a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,6,12Q6,10,4.56,10Zm-.05,3.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C5.07,12.89,4.88,13.34,4.51,13.34Z"/><path class="cls-5" d="M7,10.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L7.15,11v3H8V10H7.49A3.39,3.39,0,0,1,7,10.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>contract_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M4,15a2,2,0,0,1-2-2V3A2,2,0,0,1,3.85,1h6.22L14,4.56v8.37a2,2,0,0,1-.45,1.45,1.9,1.9,0,0,1-1.5.63Z"/><g id="iconBG"><path class="cls-3" d="M9.68,2H3.93A1,1,0,0,0,3,3V13a1,1,0,0,0,1,1h8.06A.88.88,0,0,0,13,13V5ZM12,13H4V3H9V6h3Z"/><rect class="cls-3" x="8" y="10" width="4" height="1"/><path class="cls-3" d="M7.61,8h-1l-.43.83L6.09,9V9H6l-.5-1H4.41l1,1.51L4.34,11H5.41s.48-.89.5-.94S6,10,6,10v0l.51.95H7.6l-1-1.55Z"/></g><g id="iconFG"><path class="cls-4" d="M12,10V6H9V3H4V13h8V11H8V10ZM7.6,11H6.54l-.44-.81s-.18-.16-.19-.13l-.06.12L5.41,11H4.34l1-1.49L4.41,8H5.48l.43.84A.55.55,0,0,0,6.09,9l.07-.15L6.59,8h1l-1,1.45Z"/></g></svg>

After

Width:  |  Height:  |  Size: 957 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>database_16x</title><g id="outline"><path class="cls-1" d="M8,0C4,0,1,1.72,1,4v8c0,2.28,3,4,7,4s7-1.72,7-4V4C15,1.72,12,0,8,0Z"/></g><g id="icon_bg"><path class="cls-2" d="M8,1C4.69,1,2,2.34,2,4v8c0,1.66,2.69,3,6,3s6-1.34,6-3V4C14,2.34,11.31,1,8,1ZM8,5.88C5.07,5.88,3.12,4.75,3.12,4S5.07,2.13,8,2.13,12.87,3.25,12.87,4,10.93,5.88,8,5.88Z"/></g><g id="icon_fg"><path class="cls-3" d="M8,2.13C5.07,2.13,3.12,3.25,3.12,4S5.07,5.88,8,5.88,12.87,4.75,12.87,4,10.93,2.13,8,2.13Z"/></g></svg>

After

Width:  |  Height:  |  Size: 666 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>queue_16x</title><g id="canvas" class="cls-1"><rect class="cls-2" width="16" height="16"/></g><path id="outline" class="cls-2" d="M15,1V9H12v3H9v3H1V7H4V4H7V1Z"/><path id="iconBG" class="cls-3" d="M8,2V5H5V8H2v6H8V11h3V8h3V2ZM7,13H3V9H7Zm3-3H8V8H6V6h4Zm3-3H11V5H9V3h4Z"/><path id="iconFG" class="cls-4" d="M13,3V7H11V5H9V3ZM6,8H8v2h2V6H6ZM3,13H7V9H3Z"/></svg>

After

Width:  |  Height:  |  Size: 568 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>DatabaseAuditSpecification_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,0C8.15,0,6,1.29,6,3V4.28A4.45,4.45,0,0,0,4.5,4a4.5,4.5,0,1,0,1.74,8.65L9.59,16h.83l2-2-2-2c.21,0,.41,0,.62,0,2.85,0,5-1.29,5-3V3C16,1.29,13.85,0,11,0Z"/><g id="iconBG"><path class="cls-3" d="M8,8.5a3.51,3.51,0,1,0-1.58,2.92L10,15l1-1L7.42,10.42A3.49,3.49,0,0,0,8,8.5ZM4.5,11A2.5,2.5,0,1,1,7,8.5,2.5,2.5,0,0,1,4.5,11Z"/><path class="cls-3" d="M11,1C8.79,1,7,1.9,7,3V4.76a4.49,4.49,0,0,1,1.65,5.47l.54.54A7.33,7.33,0,0,0,11,11c2.21,0,4-.9,4-2V3C15,1.9,13.21,1,11,1Zm0,3.33c-2,0-3.33-.8-3.33-1.33S9,1.67,11,1.67s3.33.8,3.33,1.33S13,4.33,11,4.33Z"/></g><g id="iconFG"><circle class="cls-4" cx="4.5" cy="8.5" r="2.5"/><path class="cls-4" d="M11,1.67c-2,0-3.33.8-3.33,1.33S9,4.33,11,4.33s3.33-.8,3.33-1.33S13,1.67,11,1.67Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>column_encryption_key_16x</title><path class="cls-1" d="M13,7.44a4,4,0,1,0-4,0V10H9V9.88A3.34,3.34,0,0,0,5.5,7,3.36,3.36,0,0,0,2,9.87V10H2v6H9V14h4V13h2V8H13Z"/><path class="cls-2" d="M3,15H8V11H3Zm2-3H6v2H5Zm3-2H7A1.47,1.47,0,0,0,5.5,9,1.45,1.45,0,0,0,4,10H3A2.37,2.37,0,0,1,5.5,8,2.36,2.36,0,0,1,8,10ZM8,4a3,3,0,0,0,2,2.82V13h2V12h2V11H12V10h2V9H12V6.82A3,3,0,1,0,8,4Zm4,0a1,1,0,1,1-1-1A1,1,0,0,1,12,4Z"/><path class="cls-3" d="M11,3a1,1,0,1,1-1,1,1,1,0,0,1,1-1M5,14H6V12H5Z"/></svg>

After

Width:  |  Height:  |  Size: 676 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>database_roles_16x_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M9,0C5,0,2,1.72,2,4v.06A3.48,3.48,0,0,0,1,6.5,3.44,3.44,0,0,0,2,9H0v7H9c4,0,7-1.72,7-4V4C16,1.72,13,0,9,0Z"/><g id="iconBG"><path class="cls-3" d="M2,6.5A2.5,2.5,0,1,1,4.5,9,2.5,2.5,0,0,1,2,6.5M8,10v5H1V10H3l1.5,2L6,10Z"/><path class="cls-3" d="M9,1C6.2,1,3.85,2,3.19,3.26A3.49,3.49,0,0,1,4.5,3,3.5,3.5,0,0,1,5,3a8.16,8.16,0,0,1,4-.92c2.93,0,4.88,1.13,4.88,1.88S11.93,5.88,9,5.88c-.37,0-.73,0-1.07-.05A3.51,3.51,0,0,1,8,6.5,3.44,3.44,0,0,1,7,9H9v6c3.31,0,6-1.34,6-3V4C15,2.34,12.31,1,9,1Z"/></g><path id="iconFG" class="cls-4" d="M9,2.13A8.16,8.16,0,0,0,5,3a3.49,3.49,0,0,1,3,2.78c.34,0,.69.05,1.07.05,2.93,0,4.88-1.13,4.88-1.87S11.93,2.13,9,2.13Z"/></svg>

After

Width:  |  Height:  |  Size: 994 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>credential_16x</title><rect class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M15,13H8v3H1V10A3.47,3.47,0,0,1,4.5,7,3.65,3.65,0,0,1,6,7.33V6H8A3.44,3.44,0,0,1,7,3.5a3.5,3.5,0,0,1,7,0A3.44,3.44,0,0,1,13,6h2Z"/><g id="iconBG"><path class="cls-3" d="M3,10H2A2.37,2.37,0,0,1,4.5,8,2.36,2.36,0,0,1,7,10H6A1.47,1.47,0,0,0,4.5,9,1.45,1.45,0,0,0,3,10Z"/><path class="cls-3" d="M2,11v4H7V11Zm3,3H4V12H5Z"/><circle class="cls-3" cx="10.5" cy="3.5" r="2.5"/><path class="cls-3" d="M12,7,10.5,9,9,7H7V8a3.34,3.34,0,0,1,1,2v2h6V7Z"/></g><path id="iconFG" class="cls-4" d="M5,14H4V12H5Z"/></svg>

After

Width:  |  Height:  |  Size: 821 B

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px"
height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0;fill:#F6F6F6;}
.st1{fill:#F6F6F6;}
.st2{fill:#424242;}
</style>
<g id="outline">
<rect class="st0" width="16" height="16"/>
<polygon class="st1" points="14,0 6.382,0 2,8.764 2,10 5.371,10 3,14.766 3,16 5.414,16 14,7.414 14,6 9.414,6 14,1.414 "/>
</g>
<g id="icon_x5F_bg">
<polygon class="st2" points="13,1 7,1 3,9 6.985,9 4,15 5,15 13,7 7,7 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 862 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}.cls-5{fill:#e51400;}</style></defs><title>Availability_Database_Offline_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M15,11.4l1-1V9.59l-1-1V4c0-2.28-3-4-7-4S1,1.72,1,4v8c0,2.28,3,4,7,4a13.05,13.05,0,0,0,1.5-.09l.09.09h.83l.29-.29A8.73,8.73,0,0,0,12.63,15l1,1h.83L16,14.41v-.82l-1.06-1.07A2.6,2.6,0,0,0,15,12Z"/></g><g id="icon_bg"><path class="cls-3" d="M8,1C4.69,1,2,2.34,2,4v8c0,1.66,2.69,3,6,3h.57l-1-1,2-2-2-2L10,7.59l2,2,2-2V4C14,2.34,11.31,1,8,1ZM8,6C4.95,6,3,4.82,3,4S4.95,2,8,2s5,1.18,5,2S11.05,6,8,6Z"/></g><g id="icon_fg"><path class="cls-4" d="M8,2C4.95,2,3,3.18,3,4S4.95,6,8,6s5-1.18,5-2S11.05,2,8,2Z"/></g><g id="not_bg"><path class="cls-5" d="M13,12l2,2-1,1-2-2-2,2L9,14l2-2L9,10l1-1,2,2,2-2,1,1Z"/></g></svg>

After

Width:  |  Height:  |  Size: 957 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M0 16v-13h2v-3h14v13h-2v3h-14z" id="outline"/><path class="icon-vs-bg" d="M15 1h-12v3h-2v11h12v-3h2v-11zm-3 13h-10v-8h1v6h9v2zm0-3h-8v-5h8v5zm2 0h-1v-7h-9v-1h10v8zm-9-2v-1h6v1h-6z" id="iconBg"/><path class="icon-vs-fg" d="M2 6h1v6h9v2h-10v-8zm2-3v1h9v7h1v-8h-10zm8 3v5h-8v-5h8zm-1 2h-6v1h6v-1z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 645 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><title>ExternalDataSource_16x</title><path d="M9,0c-.34,0-.67,0-1,0V0H4L3,1V0H0V8H2v4c0,2.28,3,4,7,4s7-1.72,7-4V4C16,1.72,13,0,9,0Z" fill="#f6f6f6"/><path d="M9,1c-.34,0-.67,0-1,0V2.17c.32,0,.65,0,1,0,2.93,0,4.87,1.13,4.87,1.88S11.93,5.88,9,5.88c-.35,0-.68,0-1,0V8H3v4c0,1.66,2.69,3,6,3s6-1.34,6-3V4C15,2.34,12.31,1,9,1Z" fill="#424242"/><path d="M9,2.13c-.35,0-.68,0-1,0V4L7,5H8v.83c.32,0,.65,0,1,0,2.93,0,4.87-1.13,4.87-1.87S11.93,2.13,9,2.13Z" fill="#f0eff1"/><polygon points="7 6 2 6 2 1 1 1 1 7 7 7 7 6" fill="#00539c"/><polygon points="4.43 1 3.57 1.86 5.54 1.86 3.22 4.18 3.82 4.78 6.14 2.46 6.14 4.43 7 3.57 7 1 4.43 1" fill="#00539c"/></svg>

After

Width:  |  Height:  |  Size: 733 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><title>ExternalFileFormat_16x</title><path d="M16,16H0V0H16Z" fill="#f6f6f6" opacity="0"/><path d="M12.06,1H8V0H4L3,1V0H0V8H4v5a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z" fill="#f6f6f6"/><path d="M11.64,2H8V3h3V6h3v7H6V8H5v5a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z" fill="#424242"/><polygon points="11 6 11 3 8 3 8 3.98 6.99 5 8 5 8 8 6 8 6 13 14 13 14 6 11 6" fill="#f0eff1"/><polygon points="7 6 2 6 2 1 1 1 1 7 7 7 7 6" fill="#00539c"/><polygon points="4.43 1 3.57 1.86 5.54 1.86 3.22 4.18 3.82 4.78 6.14 2.46 6.14 4.43 7 3.57 7 1 4.43 1" fill="#00539c"/></svg>

After

Width:  |  Height:  |  Size: 634 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M15 0v15h-14v-15h14z" id="outline"/><path class="icon-vs-bg" d="M2 1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h12v-13h-12zm11 12h-9v-11h9v11zm-2-9v2h-5v-2h5z" id="iconBg"/><path class="icon-vs-fg" d="M4 2v11h9v-11h-9zm7 3v1h-5v-2h5v1z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 600 B

View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" width="15.996" height="16" viewBox="0 0 15.996 16">
<title>FileGroupFile_mounted_V2</title>
<path d="M15.984,16h-16V0h16Z" fill="#f6f6f6" fill-opacity="0"/>
<path d="M14.985,0V15h-14V0Z" fill="#f6f6f6"/>
<path d="M1.986,1V2h1V3h-1V4h1V5h-1V6h1V7h-1V8h1V9h-1v1h1v1h-1v1h1v1h-1v1h12V1Zm11,12h-9V2h9Zm-2-9V6h-5V4Z" fill="#424242"/>
<path d="M4,2V12.987h8.991V2Zm6.993,3v1h-5V4h5Z" fill="#f0eff1"/>
<path d="M7.2,15.961a2.559,2.559,0,0,1-.263-.013H4.139L3.9,15.332a4.765,4.765,0,0,0-.436-.823l-.044-.066-.039-.077a1.8,1.8,0,0,1,.081-1.723,1.376,1.376,0,0,1,1.143-.657,1.241,1.241,0,0,1,.684.2l.081.058a4.7,4.7,0,0,1,.72.718h.3L4.836,9.973h2.3a2.641,2.641,0,0,1,2.85,2.415V12.4a2.593,2.593,0,0,1-.007.506,2.793,2.793,0,0,1-2.514,3.042C7.378,15.957,7.287,15.961,7.2,15.961Z" fill="#f0eff1"/>
<path d="M7.138,10.978H6.471l.518,1c.379,0,1,0,1,1,0,.379,0,1-.777,1H5.573a3.719,3.719,0,0,0-.827-.937c-.288-.189-.747.289-.458.927a5.667,5.667,0,0,1,.528,1H6.989a1.8,1.8,0,0,0,2-1.57,1.769,1.769,0,0,0,0-.424C8.982,11.477,8.255,10.978,7.138,10.978Z" fill="#424242"/>
<path d="M2.906,15.961A2.664,2.664,0,0,1,.012,13.548h0a2.576,2.576,0,0,1,0-.512A2.793,2.793,0,0,1,2.526,9.99a2.75,2.75,0,0,1,.529,0h2.83l.253.62a4.821,4.821,0,0,0,.435.822l.044.066.034.075A1.793,1.793,0,0,1,6.57,13.3a1.376,1.376,0,0,1-1.146.653,1.249,1.249,0,0,1-.684-.2l-.081-.058a4.593,4.593,0,0,1-.715-.72H3.6l1.615,2.994Z" fill="#f0eff1"/>
<path d="M2.905,14.965h.638l-.538-1c-.369,0-1,0-1-1,0-.369,0-1,.777-1H4.458a3.714,3.714,0,0,0,.827.936c.288.19.747-.289.458-.926a5.671,5.671,0,0,1-.528-1H3.005A1.8,1.8,0,0,0,1.01,12.553a1.727,1.727,0,0,0,0,.431C1.01,14.467,1.776,14.965,2.905,14.965Z" fill="#424242"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-fg{fill:#F0EFF1;} .icon-folder{fill:#DCB67A;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 2.5v10c0 .827-.673 1.5-1.5 1.5h-11.996c-.827 0-1.5-.673-1.5-1.5v-8c0-.827.673-1.5 1.5-1.5h2.886l1-2h8.11c.827 0 1.5.673 1.5 1.5z" id="outline"/><path class="icon-folder" d="M14.5 2h-7.492l-1 2h-3.504c-.277 0-.5.224-.5.5v8c0 .276.223.5.5.5h11.996c.275 0 .5-.224.5-.5v-10c0-.276-.225-.5-.5-.5zm-.496 2h-6.496l.5-1h5.996v1z" id="iconBg"/><path class="icon-vs-fg" d="M14 3v1h-6.5l.5-1h6z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 740 B

View File

@@ -0,0 +1,21 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="15.984" height="15.984" viewBox="0 0 15.984 15.984">
<defs>
<clipPath id="a">
<rect width="15.984" height="15.984" fill="none"/>
</clipPath>
</defs>
<title>Folder_mounted_updatedSize</title>
<g clip-path="url(#a)">
<g>
<path d="M15.984,2.5v9.99a1.5,1.5,0,0,1-1.5,1.5H2.5a1.5,1.5,0,0,1-1.5-1.5V4.5A1.5,1.5,0,0,1,2.5,3H5.385l1-2h8.1A1.5,1.5,0,0,1,15.984,2.5Z" fill="#f6f6f6"/>
<path d="M14.486,2H7L6,4H2.5a.5.5,0,0,0-.5.5v7.992a.5.5,0,0,0,.5.5H14.486a.5.5,0,0,0,.5-.5V2.5A.5.5,0,0,0,14.486,2Zm-.5,2H7.493l.5-1h5.994Z" fill="#dcb67a"/>
<path d="M13.986,3V4H7.493l.5-1Z" fill="#f0eff1"/>
</g>
</g>
<path d="M7.143,10.989H6.474l.519,1c.38,0,1,0,1,1,0,.38,0,1-.779,1H5.574a3.735,3.735,0,0,0-.829-.939c-.289-.19-.749.29-.459.929a5.716,5.716,0,0,1,.529,1H6.993a1.8,1.8,0,0,0,2-1.573,1.777,1.777,0,0,0,0-.425C8.991,11.489,8.262,10.989,7.143,10.989Z" fill="#424242"/>
<path d="M2.9,14.985h.639l-.539-1c-.37,0-1,0-1-1,0-.37,0-1,.779-1H4.456a3.735,3.735,0,0,0,.829.939c.289.19.749-.29.459-.929a5.716,5.716,0,0,1-.529-1H3a1.8,1.8,0,0,0-2,1.573A1.777,1.777,0,0,0,1,13C1,14.486,1.768,14.985,2.9,14.985Z" fill="#424242"/>
<path d="M7.2,15.984a2.592,2.592,0,0,1-.264-.013h-2.8L3.9,15.354a4.752,4.752,0,0,0-.437-.825l-.044-.066-.039-.077a1.8,1.8,0,0,1,.081-1.727A1.38,1.38,0,0,1,4.606,12a1.248,1.248,0,0,1,.686.205l.081.058a4.675,4.675,0,0,1,.721.72h.3l-1.559-3H7.143A2.647,2.647,0,0,1,10,12.415a2.6,2.6,0,0,1-.007.507,2.8,2.8,0,0,1-2.52,3.049A2.617,2.617,0,0,1,7.2,15.984Z" fill="#f6f6f6"/>
<path d="M7.143,10.989H6.474l.519,1c.38,0,1,0,1,1,0,.38,0,1-.779,1H5.574a3.735,3.735,0,0,0-.829-.939c-.289-.19-.749.29-.459.929a5.716,5.716,0,0,1,.529,1H6.993a1.8,1.8,0,0,0,2-1.573,1.777,1.777,0,0,0,0-.425C8.991,11.489,8.262,10.989,7.143,10.989Z" fill="#424242"/>
<path d="M2.9,15.984A2.67,2.67,0,0,1,0,13.565a2.587,2.587,0,0,1,0-.513A2.8,2.8,0,0,1,2.52,10a2.707,2.707,0,0,1,.53,0H5.886l.254.621a4.738,4.738,0,0,0,.436.824l.044.066.034.075a1.8,1.8,0,0,1-.081,1.727,1.38,1.38,0,0,1-1.149.655,1.248,1.248,0,0,1-.686-.205l-.081-.058a4.65,4.65,0,0,1-.716-.721H3.6l1.619,3Z" fill="#f6f6f6"/>
<path d="M2.9,14.985h.639l-.539-1c-.37,0-1,0-1-1,0-.37,0-1,.779-1H4.456a3.735,3.735,0,0,0,.829.939c.289.19.749-.29.459-.929a5.716,5.716,0,0,1-.529-1H3a1.8,1.8,0,0,0-2,1.573A1.777,1.777,0,0,0,1,13C1,14.486,1.768,14.985,2.9,14.985Z" fill="#424242"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}.cls-4{fill:none;}</style></defs><title>fulltext_16x</title><g id="Icon-2" data-name="Icon"><polygon id="Outline" class="cls-1" points="1 0 1 16 5 16 12 16 16 16 16 0 1 0"/><polygon class="cls-2" points="2 15 4 15 4 14 3 14 3 2 4 2 4 1 2 1 2 15"/><polygon class="cls-2" points="13 1 13 2 14 2 14 14 13 14 13 15 15 15 15 1 13 1"/><polygon class="cls-2" points="6 11 9 11 6 14 6 15 11 15 11 14 8.01 14 11 11.05 10.95 11 11 11 11 10 6 10 6 11"/><path class="cls-2" d="M5,8h7V1H5ZM8,2H9l2,5H10L9.6,6H7.4L7,7H6Z"/><polygon class="cls-2" points="8.5 3.25 7.8 5 9.2 5 8.5 3.25"/><path class="cls-3" d="M7.4,6H9.6L10,7h1L9,2H8L6,7H7ZM8.5,3.25,9.2,5H7.8Z"/></g><rect id="Canvas" class="cls-4" width="16" height="16"/></svg>

After

Width:  |  Height:  |  Size: 883 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#e51400;}.cls-4{fill:#fff;}.cls-5{fill:none;}</style></defs><title>full_text_stoplist_16x</title><path id="Outline" class="cls-1" d="M15,8.69V1H0V15H8.69a4.43,4.43,0,0,0,5.61,0H15v-.7a4.43,4.43,0,0,0,0-5.61ZM1,14V2H14V7.76a4.48,4.48,0,0,0-1-.48V5H2v8H7.28a4.48,4.48,0,0,0,.48,1ZM7,8V9H3V8ZM3,7V6H7V7Zm4,3v1H3V10ZM8,7V6h4V7H8Zm.7,1a4.5,4.5,0,0,0-.7.7V8Zm2.8,7A3.5,3.5,0,1,1,15,11.5,3.5,3.5,0,0,1,11.5,15Z"/><rect class="cls-2" x="3" y="6" width="4" height="1"/><polygon class="cls-2" points="12 7 12 6 8 6 8 7 11.5 7 12 7"/><rect class="cls-2" x="3" y="8" width="4" height="1"/><path class="cls-2" d="M8,8.7A4.5,4.5,0,0,1,8.7,8H8Z"/><rect class="cls-2" x="3" y="10" width="4" height="1"/><path class="cls-2" d="M2,13V5H13V7.28a4.48,4.48,0,0,1,1,.48V2H1V14H7.76a4.48,4.48,0,0,1-.48-1Z"/><path class="cls-3" d="M11.5,8A3.5,3.5,0,1,0,15,11.5,3.5,3.5,0,0,0,11.5,8ZM13,13H10V10h3Z"/><polygon class="cls-4" points="10 10 10 13 13 13 13 10 12 10 10 10"/><rect id="Canvas" class="cls-5" width="16" height="16"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a,.b{fill:#f6f6f6;}.a{opacity:0;}.c{fill:#424242;}.d{fill:#f0eff1;}</style></defs><title>Index_16x</title><rect class="a" width="16" height="16"/><polygon class="b" points="15 10 15 7 10 7 10 6 12 6 12 0 5 0 5 6 7 6 7 7 2 7 2 10 1 10 1 15 16 15 16 10 15 10"/><path class="c" d="M14,11V8H9V5h2V1H6V5H8V8H3v3H2v3H5V11H4V9H8v2H7v3h3V11H9V9h4v2H12v3h3V11ZM4,13H3V12H4Zm5,0H8V12H9ZM7,4V2h3V4Zm7,9H13V12h1Z"/><rect class="d" x="7" y="2" width="3" height="2"/><rect class="d" x="3" y="12" width="1" height="1"/><rect class="d" x="8" y="12" width="1" height="1"/><rect class="d" x="13" y="12" width="1" height="1"/></svg>

After

Width:  |  Height:  |  Size: 710 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a,.b{fill:#f6f6f6;}.a{opacity:0;}.c{fill:#424242;}.d{fill:#f0eff1;}</style></defs><title>foreign_key_16x</title><rect class="a" width="16" height="16"/><path class="b" d="M13.41,5H7.33A4.44,4.44,0,0,0,4.5,4a4.5,4.5,0,0,0,0,9,4.45,4.45,0,0,0,3.73-2h6.18L16,9.41V7.59Z"/><path class="c" d="M13,6H12V7L11,6H10V7L9,6H8V7H7.65a3.5,3.5,0,1,0,0,3H14l1-1V8Zm1,3H6.95a2.5,2.5,0,1,1,0-1H14Z"/><circle class="c" cx="4" cy="8" r="1"/><path class="d" d="M6.95,8a2.5,2.5,0,1,0,0,1H14V8ZM4,9A1,1,0,1,1,5,8,1,1,0,0,1,4,9Z"/></svg>

After

Width:  |  Height:  |  Size: 611 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>column_master_key_16x</title><rect class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,4A4,4,0,0,0,7.56,6H1v4H2v2H7V10h.56A4,4,0,1,0,11,4Z"/><path id="iconBG" class="cls-3" d="M11,5A3,3,0,0,0,8.18,7H2V9H3v2H4V9H5v2H6V9H8.18A3,3,0,1,0,11,5Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,11,9Z"/><path id="iconFG" class="cls-4" d="M12,8a1,1,0,1,0-1,1,1,1,0,0,0,1-1"/></svg>

After

Width:  |  Height:  |  Size: 595 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}</style></defs><title>unique_key_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M12,8.67V2.59L9.41,0H7.59L6,1.59V7.77A4.45,4.45,0,0,0,4,11.5a4.5,4.5,0,0,0,9,0A4.45,4.45,0,0,0,12,8.67Z"/></g><g id="icon_bg"><path class="cls-3" d="M10,8.35V8h1V7L10,6h1V5L10,4h1V3L9,1H8L7,2V8.35a3.5,3.5,0,1,0,3,0ZM9,13a1,1,0,1,1,1-1A1,1,0,0,1,9,13Z"/></g></svg>

After

Width:  |  Height:  |  Size: 553 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>column_master_key_16x</title><rect class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,4A4,4,0,0,0,7.56,6H1v4H2v2H7V10h.56A4,4,0,1,0,11,4Z"/><path id="iconBG" class="cls-3" d="M11,5A3,3,0,0,0,8.18,7H2V9H3v2H4V9H5v2H6V9H8.18A3,3,0,1,0,11,5Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,11,9Z"/><path id="iconFG" class="cls-4" d="M12,8a1,1,0,1,0-1,1,1,1,0,0,0,1-1"/></svg>

After

Width:  |  Height:  |  Size: 595 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>message_type_16x</title><path class="cls-1" d="M16,0H6V7H0v9H10V15h1.5a2.5,2.5,0,0,0,2.37-1.71L15,14.41V10.09L13.91,9H16ZM10,10.09V9h1.09Z"/><path class="cls-2" d="M7,1V8H1v7H9V8h6V1ZM8,14H2V11l2,2H6l2-2ZM5,12,2,9H8Zm9-5H8V4l2,2h2l2-2ZM11,5,8,2h6Zm1.5,4L14,10.5V12l-1-1v1.5A1.5,1.5,0,0,1,11.5,14H10V13h1.5a.5.5,0,0,0,.5-.5V11l-1,1V10.5Z"/><path class="cls-3" d="M12,6l2-2V7H8V4l2,2Zm2-4H8l3,3ZM4,13,2,11v3H8V11L6,13ZM8,9H2l3,3Z"/></svg>

After

Width:  |  Height:  |  Size: 627 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a,.b{fill:#f6f6f6;}.a{opacity:0;}.c{fill:#424242;}.d{fill:#f0eff1;}</style></defs><title>partition_function_16x</title><rect class="a" width="16" height="16"/><path class="b" d="M13.5,3.8l-1,.67v-1L7.3,0H6.7L0,4.46v6.07l1.47,1L1.32,12h.54l-.37,1.33H1.43a1.46,1.46,0,0,0-1,.33,1.29,1.29,0,0,0-.48,1A1.3,1.3,0,0,0,.55,15.7a1.7,1.7,0,0,0,1,.3A2.61,2.61,0,0,0,3,15.62a3,3,0,0,0,1-1.06L4,14.43l.09.09a1.41,1.41,0,0,0,1,.35,1.86,1.86,0,0,0,.74-.15,2.38,2.38,0,0,0,.62-.43l0,0v.21L8.7,16H9.3L16,11.54V5.46Z"/><path class="c" d="M13.5,5l-2,1.33V4L7,1,1,5v5l.78.52.29-.93h.13L2,9.46V6.27l2.69,1.8A2.84,2.84,0,0,1,5.26,8a1.88,1.88,0,0,1,.85.19L10.5,5.27V7l-3,2v.72l.08.12.23-.14a1.76,1.76,0,0,1,.78-.18,1.41,1.41,0,0,1,1,.37,1.38,1.38,0,0,1,0,2,1.31,1.31,0,0,1-.39.26l1.11.58-.63.93a3.2,3.2,0,0,1-.92.94,1.86,1.86,0,0,1-.23.11L9,15l6-4V6Zm-8,2.4L2.35,5.3,7,2.2l3.15,2.1Z"/><path class="c" d="M5.47,12.19l.05-.06,0-.06-.44.08h.05A1.39,1.39,0,0,1,5.47,12.19Z"/><path class="c" d="M4.22,10.6a2.79,2.79,0,0,1,.59-1.21.62.62,0,0,1,.44-.24.1.1,0,0,1,.07,0,.07.07,0,0,1,0,.06.33.33,0,0,1-.06.12.32.32,0,0,0-.06.17.25.25,0,0,0,.09.2.35.35,0,0,0,.24.08.35.35,0,0,0,.36-.37.38.38,0,0,0-.16-.31A.82.82,0,0,0,5.26,9a1.74,1.74,0,0,0-1,.29,2.84,2.84,0,0,0-.84,1,.79.79,0,0,1-.26.29.87.87,0,0,1-.39.06L2.68,11h.5l-.74,2.62c-.12.43-.21.7-.25.8a1,1,0,0,1-.29.37.28.28,0,0,1-.18.06l-.05,0,0,0s0,0,.05-.07a.21.21,0,0,0,.05-.16.24.24,0,0,0-.09-.19.36.36,0,0,0-.25-.08.47.47,0,0,0-.31.1.29.29,0,0,0-.12.23.31.31,0,0,0,.14.25.76.76,0,0,0,.45.11,1.61,1.61,0,0,0,.86-.23,2,2,0,0,0,.66-.71,7,7,0,0,0,.58-1.56L4.11,11h.51l.13-.38Z"/><path class="c" d="M8.84,13.08,8.72,13a1.87,1.87,0,0,1-.32.34.3.3,0,0,1-.16,0A.3.3,0,0,1,8,13.27a6,6,0,0,1-.6-1.43,2.13,2.13,0,0,1,.46-.57.49.49,0,0,1,.29-.1l.21,0a1.1,1.1,0,0,0,.27,0,.37.37,0,0,0,.27-.1A.33.33,0,0,0,9,10.88a.34.34,0,0,0-.11-.27.43.43,0,0,0-.3-.1.76.76,0,0,0-.33.08,1.61,1.61,0,0,0-.4.33,7.8,7.8,0,0,0-.53.67,3.1,3.1,0,0,0-.48-1.08H5.31v.56c.09,0,.42-.26.49-.26a.38.38,0,0,1,.31.15,5.12,5.12,0,0,1,.54,1.4c-.18.22-.52.59-.59.66a1.08,1.08,0,0,1-.27.21.41.41,0,0,1-.19,0,.73.73,0,0,1-.26-.08.6.6,0,0,0-.22-.05.43.43,0,0,0-.3.11.35.35,0,0,0-.12.27.33.33,0,0,0,.11.26.43.43,0,0,0,.3.1.86.86,0,0,0,.34-.07,1.59,1.59,0,0,0,.4-.29c.16-.15.6-.61.88-.94a7.68,7.68,0,0,0,.4.9.82.82,0,0,0,.27.3.72.72,0,0,0,.38.09.83.83,0,0,0,.45-.15A2.26,2.26,0,0,0,8.84,13.08Z"/><polygon class="d" points="7 2.2 2.35 5.3 5.5 7.4 10.15 4.3 7 2.2"/><path class="d" d="M6.11,8.19a1.49,1.49,0,0,1,.27.14,1.36,1.36,0,0,1,.54,1.1s0,.06,0,.09h.44l.14.2V9l3-2V5.27Z"/><path class="d" d="M2,9.46l.19.13h.48A3.69,3.69,0,0,1,3.74,8.45a2.7,2.7,0,0,1,1-.39L2,6.27Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a{fill:#f6f6f6;}.b{fill:#424242;}.c{fill:#f0eff1;}</style></defs><title>partition_scheme_16x</title><polygon class="a" points="13.5 3.8 12.5 4.46 12.5 3.46 7.3 0 6.7 0 0 4.46 0 10.54 1 11.2 1 13 0 13 0 16 8.7 16 9 16 9.3 16 16 11.54 16 5.46 13.5 3.8"/><polygon class="b" points="7 11 5 11 5 9 6 9 6 8 3 8 3 9 4 9 4 11 2 11 2 14 1 14 1 15 4 15 4 14 3 14 3 12 6 12 6 14 5 14 5 15 8 15 8 14 7 14 7 11"/><polygon class="b" points="13.5 5 11.5 6.33 11.5 4 7 1 1 5 1 10 2 10 2 7 2 6.27 3.1 7 4.9 7 2.35 5.3 7 2.2 10.15 4.3 6.1 7 7 7 7 7.6 10.5 5.27 10.5 7 7.5 9 7.5 10 8 10 8 13 9 13 9 15 15 11 15 6 13.5 5"/><polygon class="c" points="10.5 7 10.5 5.27 7 7.6 7 10 7.5 10 7.5 9 10.5 7"/><polygon class="c" points="2 7 3.1 7 2 6.27 2 7"/><polygon class="c" points="7 2.2 2.35 5.3 4.9 7 6.1 7 10.15 4.3 7 2.2"/></svg>

After

Width:  |  Height:  |  Size: 905 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>queue_16x</title><g id="canvas" class="cls-1"><rect class="cls-2" width="16" height="16"/></g><path id="outline" class="cls-2" d="M15,1V9H12v3H9v3H1V7H4V4H7V1Z"/><path id="iconBG" class="cls-3" d="M8,2V5H5V8H2v6H8V11h3V8h3V2ZM7,13H3V9H7Zm3-3H8V8H6V6h4Zm3-3H11V5H9V3h4Z"/><path id="iconFG" class="cls-4" d="M13,3V7H11V5H9V3ZM6,8H8v2h2V6H6ZM3,13H7V9H3Z"/></svg>

After

Width:  |  Height:  |  Size: 568 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:none;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>remote_service_16x</title><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M13.44,4.37l-.1-.77-1.12-.14.7-.9-.48-.61a5,5,0,0,0-.89-.89L10.94.58l-.9.7L9.9.16,9,0A3.81,3.81,0,0,0,8.5,0,3.81,3.81,0,0,0,8,0L7.1.16,7,1.28l-.9-.7-.61.48a5,5,0,0,0-.89.89l-.48.61.7.9-.35,0-.78.19-.1.77A3.87,3.87,0,0,0,3.5,5a4.61,4.61,0,0,0,.06.63l.1.77,1.12.14-.7.89L4.56,8a5,5,0,0,0,.89.89l.61.48.9-.7L7,9v1H5v1H3v3H5v1h7V14h2V11H12V10H10V9l0-.32.9.7.61-.48A5,5,0,0,0,12.44,8l.48-.61-.7-.89.35,0,.78-.19.1-.77a3.87,3.87,0,0,0,0-.54A4.61,4.61,0,0,0,13.44,4.37Z"/><path class="cls-3" d="M11,12V11H9V8.95H9l.15-1.24a2.78,2.78,0,0,0,.8-.33l1,.77a4,4,0,0,0,.71-.71l-.77-1a2.74,2.74,0,0,0,.33-.79l1.24-.15A3.9,3.9,0,0,0,12.5,5a3.9,3.9,0,0,0-.05-.5l-1.24-.15a2.74,2.74,0,0,0-.33-.79l.77-1a4,4,0,0,0-.71-.71l-1,.77a2.76,2.76,0,0,0-.8-.33L9,1.05A4,4,0,0,0,8.5,1a4,4,0,0,0-.5.05L7.84,2.29a2.76,2.76,0,0,0-.8.33l-1-.77a4,4,0,0,0-.71.71l.77,1a2.74,2.74,0,0,0-.33.79L4.55,4.5A3.9,3.9,0,0,0,4.5,5a3.9,3.9,0,0,0,.05.5l1.24.15a2.74,2.74,0,0,0,.33.79l-.77,1a4,4,0,0,0,.71.71l1-.77a2.78,2.78,0,0,0,.8.33L8,8.95H8V11H6v1H4v1H6v1h5V13h2V12ZM6.5,5a2,2,0,1,1,2,2A2,2,0,0,1,6.5,5Zm2,1a1,1,0,1,1,1-1A1,1,0,0,1,8.5,6Z"/><path class="cls-4" d="M8.5,3a2,2,0,1,0,2,2A2,2,0,0,0,8.5,3Zm0,3a1,1,0,1,1,1-1A1,1,0,0,1,8.5,6Z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>route_16x</title><g class="cls-1"><rect class="cls-2" width="16" height="16"/></g><path id="outline" class="cls-2" d="M15.94,10.37l-.1-.77-1.12-.14.7-.9L14.94,8a5,5,0,0,0-.89-.89l-.61-.48-.9.7,0-.35-.19-.78L11.54,6A3.85,3.85,0,0,0,11,6a4.55,4.55,0,0,0-.63.06l-.77.1L9.46,7.28l-.9-.7-.61.48c-.12.09-.23.2-.35.31l-.1.09h0a5.05,5.05,0,0,0-.44.5L7,8V6H4.91l2.5-2.5L4.91,1H3V0H0V2.5A2.5,2.5,0,0,0,1.71,4.87L.59,6H0v9H7V14l.06.08a5.08,5.08,0,0,0,.44.49h0a5.09,5.09,0,0,0,.4.35l0,0,.61.48.9-.7,0,.35.19.78.77.1A3.86,3.86,0,0,0,11,16a4.63,4.63,0,0,0,.63-.06l.77-.1.14-1.12.9.7.61-.48a5.05,5.05,0,0,0,.89-.89l.48-.61-.7-.9.35,0,.78-.19.1-.77A3.88,3.88,0,0,0,16,11,4.66,4.66,0,0,0,15.94,10.37ZM6.16,9.6,6,10V9h.92l.36.46Z"/><g id="iconBG"><path class="cls-3" d="M14.95,11.5A3.86,3.86,0,0,0,15,11a3.93,3.93,0,0,0-.05-.5l-1.24-.15a2.8,2.8,0,0,0-.33-.79l.77-1a4,4,0,0,0-.71-.71l-1,.77a2.77,2.77,0,0,0-.79-.33L11.5,7.05A3.9,3.9,0,0,0,11,7a3.9,3.9,0,0,0-.5.05l-.15,1.24a2.77,2.77,0,0,0-.79.33l-1-.77a4,4,0,0,0-.71.71l.77,1a2.8,2.8,0,0,0-.33.79l-1.24.15A3.93,3.93,0,0,0,7,11a3.86,3.86,0,0,0,.05.5l1.24.15a2.8,2.8,0,0,0,.33.79l-.77,1a4,4,0,0,0,.71.71l1-.77a2.83,2.83,0,0,0,.79.33l.15,1.23A3.89,3.89,0,0,0,11,15a3.89,3.89,0,0,0,.5-.05l.15-1.23a2.83,2.83,0,0,0,.79-.33l1,.77a4,4,0,0,0,.71-.71l-.77-1a2.8,2.8,0,0,0,.33-.79ZM11,13a2,2,0,1,1,2-2A2,2,0,0,1,11,13Z"/><circle class="cls-3" cx="11" cy="11" r="1"/><rect class="cls-3" x="1" y="7" width="5" height="1"/><rect class="cls-3" x="1" y="10" width="4" height="1"/><rect class="cls-3" x="1" y="13" width="5" height="1"/><path class="cls-3" d="M4,4,3,5H4.5L6,3.5,4.5,2H3L4,3H2.5A.5.5,0,0,1,2,2.5V1H1V2.5A1.5,1.5,0,0,0,2.5,4Z"/></g><path id="iconFG" class="cls-4" d="M11,9a2,2,0,1,0,2,2A2,2,0,0,0,11,9Zm0,3a1,1,0,1,1,1-1A1,1,0,0,1,11,12Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>aggregate_valued_function_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M10,10h6V0H5V7a2.69,2.69,0,0,0-1.26.43A3.67,3.67,0,0,0,2.67,8.6H2.06L1.32,11h.54l-.37,1.33H1.43a1.45,1.45,0,0,0-.95.33,1.29,1.29,0,0,0-.49,1A1.3,1.3,0,0,0,.55,14.7a1.69,1.69,0,0,0,1,.3A2.6,2.6,0,0,0,3,14.62a3,3,0,0,0,1-1.06L4,13.42l.09.11a1.41,1.41,0,0,0,1,.35,1.88,1.88,0,0,0,.74-.15,2.37,2.37,0,0,0,.62-.43,1.64,1.64,0,0,0,.4.34,1.71,1.71,0,0,0,.9.24,1.79,1.79,0,0,0,1-.3,3.19,3.19,0,0,0,.92-.94l.64-.93-1.12-.58A1.29,1.29,0,0,0,10,10Zm-4.5,1.19a1.44,1.44,0,0,0-.35,0H5l.46-.08,0,.06Z"/><g id="iconBG"><path class="cls-3" d="M4.22,9.6a2.79,2.79,0,0,1,.59-1.21.62.62,0,0,1,.43-.24.1.1,0,0,1,.07,0,.07.07,0,0,1,0,.06.33.33,0,0,1-.06.12.32.32,0,0,0-.06.17.25.25,0,0,0,.09.2.35.35,0,0,0,.24.08.35.35,0,0,0,.36-.37.38.38,0,0,0-.16-.31A.82.82,0,0,0,5.26,8a1.74,1.74,0,0,0-1,.29,2.83,2.83,0,0,0-.83,1,.8.8,0,0,1-.26.29.87.87,0,0,1-.39.06L2.68,10h.5l-.74,2.62c-.12.43-.21.7-.25.8a1,1,0,0,1-.29.37.28.28,0,0,1-.18.06l-.05,0,0,0s0,0,.05-.07a.21.21,0,0,0,.05-.16.24.24,0,0,0-.09-.19.36.36,0,0,0-.25-.08.47.47,0,0,0-.31.1.29.29,0,0,0-.12.23.3.3,0,0,0,.14.25.76.76,0,0,0,.45.11,1.61,1.61,0,0,0,.86-.23,2,2,0,0,0,.66-.71,7,7,0,0,0,.58-1.56L4.11,10h.51l.13-.38Z"/><path class="cls-3" d="M8.59,9.52a.76.76,0,0,0-.33.08,1.6,1.6,0,0,0-.4.33,7.68,7.68,0,0,0-.53.67,3.08,3.08,0,0,0-.48-1.08H5.31v.56c.09,0,.42-.26.49-.26a.38.38,0,0,1,.31.15,5.12,5.12,0,0,1,.54,1.4c-.18.22-.52.59-.59.66a1.07,1.07,0,0,1-.27.21.41.41,0,0,1-.19,0,.73.73,0,0,1-.26-.08.59.59,0,0,0-.22-.05.43.43,0,0,0-.3.11.35.35,0,0,0-.12.27.33.33,0,0,0,.11.26.43.43,0,0,0,.3.1.86.86,0,0,0,.34-.07,1.59,1.59,0,0,0,.4-.29c.16-.15.6-.61.88-.94a7.77,7.77,0,0,0,.39.9.82.82,0,0,0,.27.3.72.72,0,0,0,.38.09.83.83,0,0,0,.45-.15,2.26,2.26,0,0,0,.62-.66L8.71,12a1.86,1.86,0,0,1-.32.34A.27.27,0,0,1,8,12.27a6,6,0,0,1-.6-1.43,2.13,2.13,0,0,1,.46-.57.49.49,0,0,1,.29-.1l.21,0a1.1,1.1,0,0,0,.27,0,.37.37,0,0,0,.27-.1A.34.34,0,0,0,9,9.88a.34.34,0,0,0-.11-.27A.43.43,0,0,0,8.59,9.52Z"/><path class="cls-3" d="M9.56,3a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,8,5.05C8,6.34,8.49,7,9.48,7a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,11,5Q11,3,9.56,3ZM9.51,6.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C10.07,5.89,9.88,6.34,9.51,6.34Z"/><path class="cls-3" d="M12,3.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L12.15,4V7H13V3h-.51A3.39,3.39,0,0,1,12,3.37Z"/><path class="cls-3" d="M6,1V7.14a1.48,1.48,0,0,1,.38.19,1.37,1.37,0,0,1,.54,1.1s0,.06,0,.09h.45l.22.32.22-.13a1.78,1.78,0,0,1,.79-.19,1.41,1.41,0,0,1,1,.37A1.23,1.23,0,0,1,9.66,9H15V1Zm8,7H7V2h7Z"/></g><g id="iconFG"><path class="cls-4" d="M9.52,3.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S9.89,3.65,9.52,3.65Z"/><path class="cls-4" d="M7,2V8h7V2Zm3.61,4.46A1.33,1.33,0,0,1,9.48,7C8.49,7,8,6.34,8,5.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,9.56,3Q11,3,11,5A2.45,2.45,0,0,1,10.61,6.46ZM13,7h-.85V4L12,4.12l-.2.1-.12,0V3.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,12.49,3H13Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}.cls-4{fill:#00539c;}</style></defs><title>input_parameter_16x</title><path id="outline" class="cls-1" d="M16,10.33a5.43,5.43,0,0,1-.29,1.83,4.5,4.5,0,0,1-.78,1.38,3.57,3.57,0,0,1-1.19.91l-.12.05V16H6.46a5.06,5.06,0,0,1-2-2.43A6.08,6.08,0,0,1,4,11.21a6.75,6.75,0,0,1,.14-1.35L4,10,0,6V0L2,2V0H6V2L8,0V5.37c.14,0,.28-.1.42-.15A6.63,6.63,0,0,1,10.16,5a6.81,6.81,0,0,1,2.2.35,5.66,5.66,0,0,1,1.86,1,5.07,5.07,0,0,1,1.3,1.69A5.23,5.23,0,0,1,16,10.33Z"/><path id="iconBG" class="cls-2" d="M14.62,8.52a4.07,4.07,0,0,0-1-1.36A4.64,4.64,0,0,0,12,6.3,5.77,5.77,0,0,0,10.16,6a5.57,5.57,0,0,0-1.47.19,5.07,5.07,0,0,0-1.26.53,4.71,4.71,0,0,0-1,.81,4.78,4.78,0,0,0-.76,1.05,5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,4,4,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.65,4.65,0,0,1,11.39,7a3.77,3.77,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33,4.21,4.21,0,0,0,14.62,8.52Zm-3.68,2.83a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53A5.54,5.54,0,0,1,10.94,11.35Z"/><path id="iconFG" class="cls-3" d="M10.74,9.46a.82.82,0,0,0-.31-.22,1.08,1.08,0,0,0-1,.14,1.74,1.74,0,0,0-.46.55,2.82,2.82,0,0,0-.28.75,3.9,3.9,0,0,0-.09.81,2.13,2.13,0,0,0,.08.61,1.37,1.37,0,0,0,.22.43.91.91,0,0,0,.32.26.86.86,0,0,0,.38.09,1.07,1.07,0,0,0,.64-.2,1.57,1.57,0,0,0,.45-.53,2.83,2.83,0,0,0,.27-.8,5.54,5.54,0,0,0,.09-1A1.71,1.71,0,0,0,11,9.83,1,1,0,0,0,10.74,9.46Z"/><path id="colorAction" class="cls-4" d="M7,5,4,8,1,5V3L3,5V1H5V5L7,3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>output_parameter_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M14.22,6.39a5.65,5.65,0,0,0-1.86-1A6.8,6.8,0,0,0,10.16,5a6.63,6.63,0,0,0-1.73.22c-.15,0-.28.1-.42.15V3L5,0H3L0,3V9L2,7V9H4.38c-.07.19-.13.38-.18.58A6.69,6.69,0,0,0,4,11.21a6.08,6.08,0,0,0,.44,2.36,5.06,5.06,0,0,0,2,2.43h7.16V14.51l.12-.05a3.57,3.57,0,0,0,1.19-.91,4.5,4.5,0,0,0,.78-1.38A5.43,5.43,0,0,0,16,10.33a5.22,5.22,0,0,0-.48-2.25A5.07,5.07,0,0,0,14.22,6.39Z"/><path id="iconBG" class="cls-3" d="M13.57,7.16A4.65,4.65,0,0,0,12,6.3,5.78,5.78,0,0,0,10.16,6a5.59,5.59,0,0,0-1.47.19,5.09,5.09,0,0,0-1.26.52A4.78,4.78,0,0,0,5.64,8.58a5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,3.92,3.92,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.63,4.63,0,0,1,11.39,7a3.72,3.72,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33a4.21,4.21,0,0,0-.38-1.82,4.07,4.07,0,0,0-1-1.36m-2.63,4.19a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53,5.54,5.54,0,0,1-.09,1"/><path id="colorAction" class="cls-4" d="M7,6,5,4V8H3V4L1,6V4L4,1,7,4Z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>parameter_return_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,5v.83A5.2,5.2,0,0,0,8.11,5a5.13,5.13,0,0,0-2.77.76L3.18,3.89A.5.5,0,0,1,3,3.5a.49.49,0,0,1,0-.08L4.59,5H8V1.51L6.4,0H5V.34A3,3,0,0,0,3.5,0,3.49,3.49,0,0,0,.34,5H0V15H5v-.86A5.12,5.12,0,0,0,8,15a6.51,6.51,0,0,0,2.52-.44l.51-.22V15h5V5ZM1.17,6.11h0ZM3,12V10.32A5.21,5.21,0,0,0,3.31,12Zm0-2V7.69L3.4,8A5.3,5.3,0,0,0,3,10Zm10,2h-.75A3.84,3.84,0,0,0,13,9.77Zm0-2.61A4.56,4.56,0,0,0,12.74,8H13Z"/><g id="iconBG"><polygon class="cls-3" points="12 6 12 7 14 7 14 13 12 13 12 14 15 14 15 6 12 6"/><path class="cls-3" d="M2,13V6.83l-.78-.67A1.53,1.53,0,0,1,1.07,6H1v8H4V13Z"/><path class="cls-3" d="M8.82,11.15h0a1.36,1.36,0,0,1-1.37,1,1.3,1.3,0,0,1-1.05-.49A2,2,0,0,1,6,10.39a2.92,2.92,0,0,1,.55-1.82A1.73,1.73,0,0,1,8,7.85,1,1,0,0,1,8.57,8a.84.84,0,0,1,.35.45h0c0-.09,0-.28.07-.56h.81q-.23,2.56-.23,2.61,0,1,.5,1a.87.87,0,0,0,.76-.54,2.81,2.81,0,0,0,.3-1.39,2.76,2.76,0,0,0-.82-2.06,3.1,3.1,0,0,0-2.26-.8,3,3,0,0,0-2.3,1,3.39,3.39,0,0,0-.91,2.42,3.13,3.13,0,0,0,.88,2.31,3.19,3.19,0,0,0,2.36.88,4.57,4.57,0,0,0,2-.4v.75A5.51,5.51,0,0,1,8,14a4,4,0,0,1-2.89-1.07A3.72,3.72,0,0,1,4,10.13,4,4,0,0,1,8.11,6a4.08,4.08,0,0,1,2.8,1A3.26,3.26,0,0,1,12,9.55a2.9,2.9,0,0,1-.6,1.9,1.82,1.82,0,0,1-1.47.74C9.2,12.19,8.82,11.85,8.82,11.15ZM8,8.54a1,1,0,0,0-.86.52,2.41,2.41,0,0,0-.33,1.31,1.38,1.38,0,0,0,.22.83.7.7,0,0,0,.59.3A1,1,0,0,0,8.51,11a3,3,0,0,0,.31-1.46C8.82,8.86,8.56,8.54,8,8.54Z"/></g><path id="colorAction" class="cls-4" d="M6,1V2.36l-.89-.77A2.34,2.34,0,0,0,3.5,1,2.5,2.5,0,0,0,1.87,5.4l2,1.68.63-.74L2.53,4.64A1.5,1.5,0,0,1,3.5,2a1.76,1.76,0,0,1,1,.36L5.24,3H4L5,4H7V1.95Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0;fill:#F6F6F6;}
.st1{fill:#F6F6F6;}
.st2{fill:#424242;}
.st3{fill:#F0EFF1;}
</style>
<g id="outline">
<rect class="st0" width="16" height="16"/>
<path class="st1" d="M16,16H1V0h15V16z"/>
</g>
<g id="icon_x5F_bg">
<path class="st2" d="M2,1v14h13V1H2z M14,14H3V3h11V14z"/>
<path class="st2" d="M12.5,10H11L9.5,7h1L11,6.5v-2L10.5,4h-4L6,4.5v2L6.5,7h1L6,10H4.5L4,10.5v2L4.5,13h3L8,12.5v-2L7.5,10H7
l1.5-3l1.5,3H9.5L9,10.5v2L9.5,13h3l0.5-0.5v-2L12.5,10z M7,12H5v-1h2V12z M8,6H7V5h3v1H9H8z M12,12h-2v-1h2V12z"/>
</g>
<g id="icon_x5F_fg">
<path class="st3" d="M5,11h2v1H5V11z M10,12h2v-1h-2V12z M10,5H7v1h3V5z M14,3v11H3V3H14z M13,10.5L12.5,10H11L9.5,7h1L11,6.5v-2
L10.5,4h-4L6,4.5v2L6.5,7h1L6,10H4.5L4,10.5v2L4.5,13h3L8,12.5v-2L7.5,10H7l1.5-3l1.5,3H9.5L9,10.5v2L9.5,13h3l0.5-0.5V10.5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>search_property_list_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M7.94,1A3.48,3.48,0,0,0,3.06,1H1V5.59l-1,1v.83l1,1V15H16V1Z"/><g id="iconBG"><rect class="cls-3" x="5" y="7" width="7" height="1"/><rect class="cls-3" x="5" y="9" width="7" height="1"/><path class="cls-3" d="M14,5v8H3V8.41l-1,1V14H15V2H8.65A3.46,3.46,0,0,1,9,3.5,3.46,3.46,0,0,1,8.65,5Z"/><path class="cls-3" d="M8,3.5A2.5,2.5,0,0,1,5.5,6a2.47,2.47,0,0,1-1.19-.31L2,8,1,7,3.31,4.69A2.47,2.47,0,0,1,3,3.5a2.5,2.5,0,0,1,5,0Zm-4,0A1.5,1.5,0,1,0,5.5,2,1.5,1.5,0,0,0,4,3.5Z"/></g><g id="iconFG"><circle class="cls-4" cx="5.5" cy="3.5" r="1.5"/><path class="cls-4" d="M8.65,5A3.5,3.5,0,0,1,5.5,7H12V8H5V7h.5a3.36,3.36,0,0,1-.95-.14L3,8.41V13H14V5ZM12,10H5V9h7Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1007 B

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px"
height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.icon-canvas-transparent{opacity:0;fill:#F6F6F6;}
.icon-vs-out{fill:#F6F6F6;}
.icon-vs-bg{fill:#424242;}
.icon-vs-fg{fill:#F0EFF1;}
</style>
<g id="canvas">
<path class="icon-canvas-transparent" d="M16,16H0V0h16V16z"/>
</g>
<g id="outline">
<path class="icon-vs-out" d="M16,2v14H1V7.88l-1-0.8V0h8v2H16z"/>
</g>
<g id="iconBg">
<path class="icon-vs-bg" d="M7,1H1v5.6L4,9l3-2.4V1z M6,5.8L4,7.401L2,5.8V3h4V5.8z M8,3v3h2v2H7V7.88L5.6,9H6v2H3
V9.48l-1-0.8V15h13V3H8z M6,14H3v-2h3V14z M10,14H7v-2h3V14z M10,11H7V9h3V11z M14,14h-3v-2h3V14z M14,11h-3V9h3V11z M14,8h-3V6h3
V8z"/>
</g>
<g id="iconFg">
<path class="icon-vs-fg" d="M6,5.8L4,7.401L2,5.8V3h4V5.8z M4,10.28l-1-0.8V11h3V9H5.6L4,10.28z M7,14h3v-2H7V14z
M3,14h3v-2H3V14z M7,11h3V9H7V11z M11,6v2h3V6H11z M8,7.081l-1,0.8V8h3V6H8V7.081z M11,11h3V9h-3V11z M11,14h3v-2h-3V14z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}</style></defs><title>sequence_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M3,16a2,2,0,0,1-2-2V2A2,2,0,0,1,3,0h8.06L15,3.56V14a2,2,0,0,1-2,2Z"/></g><g id="icon_bg"><path class="cls-3" d="M10.64,1H3A1,1,0,0,0,2,2V14a1,1,0,0,0,1,1H13a1,1,0,0,0,1-1V4ZM13,14H3V2h7V5h3Z"/><rect class="cls-3" x="4" y="7" width="2" height="2"/><rect class="cls-3" x="4" y="3" width="2" height="2"/><rect class="cls-3" x="7" y="11" width="2" height="2"/><rect class="cls-3" x="4" y="11" width="2" height="2"/><rect class="cls-3" x="10" y="11" width="2" height="2"/><rect class="cls-3" x="7" y="7" width="2" height="2"/></g><g id="icon_fg"><path class="cls-2" d="M10,5V2H3V14H13V5ZM6,13H4V11H6ZM6,9H4V7H6ZM6,5H4V3H6Zm3,8H7V11H9ZM9,9H7V7H9Zm3,4H10V11h2Z"/></g></svg>

After

Width:  |  Height:  |  Size: 954 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>add_certificate_16x</title><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M13,16H3V0H13Z"/><path class="cls-3" d="M4,1V15h8V1Zm6,12H9V12h1Zm0-7H6V5h4Zm0-2H6V3h4Z"/><path class="cls-4" d="M10,4H6V3h4Zm0,1H6V6h4Zm0,7H9v1h1Z"/></svg>

After

Width:  |  Height:  |  Size: 466 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>credential_16x</title><rect class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M15,13H8v3H1V10A3.47,3.47,0,0,1,4.5,7,3.65,3.65,0,0,1,6,7.33V6H8A3.44,3.44,0,0,1,7,3.5a3.5,3.5,0,0,1,7,0A3.44,3.44,0,0,1,13,6h2Z"/><g id="iconBG"><path class="cls-3" d="M3,10H2A2.37,2.37,0,0,1,4.5,8,2.36,2.36,0,0,1,7,10H6A1.47,1.47,0,0,0,4.5,9,1.45,1.45,0,0,0,3,10Z"/><path class="cls-3" d="M2,11v4H7V11Zm3,3H4V12H5Z"/><circle class="cls-3" cx="10.5" cy="3.5" r="2.5"/><path class="cls-3" d="M12,7,10.5,9,9,7H7V8a3.34,3.34,0,0,1,1,2v2h6V7Z"/></g><path id="iconFG" class="cls-4" d="M5,14H4V12H5Z"/></svg>

After

Width:  |  Height:  |  Size: 821 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>cryptographicprovider_enabled_16x</title><g id="canvas" class="cls-1"><rect class="cls-2" width="16" height="16"/></g><path id="outline" class="cls-2" d="M12,6V5h1V2H6.71A3.57,3.57,0,0,0,3.5,0,3.49,3.49,0,0,0,1.06,6H0v6H1v1H5V12h6v1h4V12h1V6ZM6.71,5H7V6H6A3.48,3.48,0,0,0,6.71,5Z"/><g id="iconBG"><path class="cls-3" d="M1,7v4H2v1H4V11h8v1h2V11h1V7ZM3,9H2V8H3Z"/><path class="cls-3" d="M1,3.5A2.5,2.5,0,0,0,3.5,6,2.56,2.56,0,0,0,6,4H8V6H9V4h1V6h1V4h1V3H6A2.56,2.56,0,0,0,3.5,1,2.5,2.5,0,0,0,1,3.5Zm1,0A1.5,1.5,0,1,1,3.5,5,1.5,1.5,0,0,1,2,3.5Z"/></g><g id="iconFG"><rect id="iconFG-2" data-name="iconFG" class="cls-4" x="2" y="8" width="1" height="1"/><circle id="iconFG-3" data-name="iconFG" class="cls-4" cx="3.5" cy="3.5" r="1.5"/></g></svg>

After

Width:  |  Height:  |  Size: 952 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>endpoint_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M13,9V3A2.58,2.58,0,0,0,11.5.82,7.17,7.17,0,0,0,8,0,7.17,7.17,0,0,0,4.5.82,2.58,2.58,0,0,0,3,3V9a2.8,2.8,0,0,0,2,2.43V12H3v3H5v1h6V15h2V12H11v-.57A2.8,2.8,0,0,0,13,9Z"/></g><g id="icon_bg"><path class="cls-3" d="M11,1.69A6.21,6.21,0,0,0,8,1a6.21,6.21,0,0,0-3,.69A1.65,1.65,0,0,0,4,3V9c0,.93,1.28,1.71,3,1.93V12H6v1H4v1H6v1h4V14h2V13H10V12H9V10.93c1.72-.22,3-1,3-1.93V3A1.65,1.65,0,0,0,11,1.69ZM8,4.33c-2,0-3.33-.8-3.33-1.33S6,1.67,8,1.67s3.33.8,3.33,1.33S10,4.33,8,4.33Z"/></g><g id="icon_fg"><path class="cls-4" d="M8,1.67c-2,0-3.33.8-3.33,1.33S6,4.33,8,4.33s3.33-.8,3.33-1.33S10,1.67,8,1.67Z"/></g></svg>

After

Width:  |  Height:  |  Size: 918 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>linked_server_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M3,0V10a2.78,2.78,0,0,0-3,3H0a2.68,2.68,0,0,0,2.79,3H13V0Z"/><g id="iconBG"><path class="cls-3" d="M4,1v9H7.08a2.6,2.6,0,0,1,2.73,1.82.69.69,0,0,1,.07.21A3.94,3.94,0,0,1,10,13a1.21,1.21,0,0,1,0,.41A2.92,2.92,0,0,1,9.35,15H12V1Zm6,5H6V5h4Zm0-2H6V3h4Z"/><path class="cls-3" d="M7.15,11H6.48L7,12c.38,0,1,0,1,1,0,.38,0,1-.78,1H5.58a3.75,3.75,0,0,0-.83-.94c-.29-.19-.75.29-.46.93a5.76,5.76,0,0,1,.53,1H7a1.8,1.8,0,0,0,2-2C9,11.5,8.27,11,7.15,11Z"/><path class="cls-3" d="M2.9,15h.64L3,14c-.37,0-1,0-1-1,0-.37,0-1,.78-1H4.46a3.75,3.75,0,0,0,.83.94c.29.19.75-.29.46-.93a5.76,5.76,0,0,1-.53-1H3a1.8,1.8,0,0,0-2,2C1,14.5,1.77,15,2.9,15Z"/></g><g id="iconFG"><rect class="cls-4" x="6" y="5" width="4" height="1"/><rect class="cls-4" x="6" y="3" width="4" height="1"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M14 7v9h-12v-9h3.5c-.839-.733-1.5-1.798-1.5-3 0-2.209 1.791-4 4-4s4 1.791 4 4c0 1.202-.661 2.267-1.5 3h3.5z" id="outline"/><path class="icon-vs-bg" d="M5 4c0-1.656 1.343-3 3-3 1.654 0 3 1.344 3 3 0 1.657-1.346 3-3 3-1.657 0-3-1.343-3-3zm5 4l-2 3-2-3h-3v7h10v-7h-3z" id="iconBg"/></svg>

After

Width:  |  Height:  |  Size: 589 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#e51400;}</style></defs><title>login_disabled_16x</title><path class="cls-1" d="M16,9.59l-2-2-2,2V7H8.62A4,4,0,1,0,3.38,7H0v9H12V14.41L13.59,16h.83L16,14.41v-.82L14.41,12,16,10.42Z"/><path class="cls-2" d="M10.41,8H11v.59ZM7.59,14l2-2-2-2,2-2H8L6,11,4,8H1v7H8.59ZM6,7A3,3,0,1,0,3,4,3,3,0,0,0,6,7Z"/><path class="cls-3" d="M13,12l2,2-1,1-2-2-2,2L9,14l2-2L9,10l1-1,2,2,2-2,1,1Z"/></svg>

After

Width:  |  Height:  |  Size: 544 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M14 7v9h-12v-9h3.5c-.839-.733-1.5-1.798-1.5-3 0-2.209 1.791-4 4-4s4 1.791 4 4c0 1.202-.661 2.267-1.5 3h3.5z" id="outline"/><path class="icon-vs-bg" d="M5 4c0-1.656 1.343-3 3-3 1.654 0 3 1.344 3 3 0 1.657-1.346 3-3 3-1.657 0-3-1.343-3-3zm5 4l-2 3-2-3h-3v7h10v-7h-3z" id="iconBg"/></svg>

After

Width:  |  Height:  |  Size: 589 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#e51400;}</style></defs><title>login_disabled_16x</title><path class="cls-1" d="M16,9.59l-2-2-2,2V7H8.62A4,4,0,1,0,3.38,7H0v9H12V14.41L13.59,16h.83L16,14.41v-.82L14.41,12,16,10.42Z"/><path class="cls-2" d="M10.41,8H11v.59ZM7.59,14l2-2-2-2,2-2H8L6,11,4,8H1v7H8.59ZM6,7A3,3,0,1,0,3,4,3,3,0,0,0,6,7Z"/><path class="cls-3" d="M13,12l2,2-1,1-2-2-2,2L9,14l2-2L9,10l1-1,2,2,2-2,1,1Z"/></svg>

After

Width:  |  Height:  |  Size: 544 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M11.108 0c2.774.481 4.892 2.898 4.892 5.808 0 3.255-2.648 5.901-5.9 5.901-.646 0-1.283-.111-1.906-.331l-4.625 4.622h-.887l-2.682-2.641v-1.156l4.508-4.488c-.22-.623-.31-1.261-.31-1.907 0-2.91 2.118-5.327 4.892-5.808h2.018" id="outline"/><path class="icon-vs-bg" d="M1.323 13.07l1.607 1.609 4.822-4.82c.649.326.968.797 2.419.797 2.669 0 4.829-2.162 4.829-4.828 0-2.667-2.16-4.828-4.828-4.828-2.666 0-4.804 2.161-4.804 4.828 0 1.609.447 1.771.776 2.422l-4.821 4.82zm5.117-7.242c0-2.092 1.63-3.755 3.723-3.755 2.092 0 3.787 1.663 3.787 3.755 0 2.092-1.695 3.754-3.787 3.754-2.093 0-3.723-1.662-3.723-3.754" id="iconBg"/><path class="icon-vs-fg" d="M6.44 5.828c0-2.092 1.63-3.755 3.723-3.755 2.092 0 3.787 1.663 3.787 3.755 0 2.092-1.695 3.754-3.787 3.754-2.093 0-3.723-1.662-3.723-3.754" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>ServerAuditSpecification_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M6,0V4.28a4.48,4.48,0,0,0-2.65,6L0,13.59v.83L1.59,16h.83l3.35-3.35.24.07V16H16V0Z"/></g><g id="icon_bg"><path class="cls-3" d="M11,8.5a3.5,3.5,0,1,0-6.42,1.92L1,14l1,1,3.58-3.58A3.5,3.5,0,0,0,11,8.5Zm-6,0A2.5,2.5,0,1,1,7.5,11,2.5,2.5,0,0,1,5,8.5Z"/><path class="cls-3" d="M7,1V4.05A4.34,4.34,0,0,1,7.5,4a4.46,4.46,0,0,1,2.79,1H13V6H11.24A4.5,4.5,0,0,1,7.5,13a4.2,4.2,0,0,1-.5-.05V15h8V1Zm6,12H12V12h1Zm0-9H9V3h4Z"/></g><g id="icon_fg"><path class="cls-4" d="M11.24,6H13V5H10.29A4.54,4.54,0,0,1,11.24,6Z"/><rect class="cls-4" x="12" y="12" width="1" height="1"/><rect class="cls-4" x="9" y="3" width="4" height="1"/><circle class="cls-4" cx="7.5" cy="8.5" r="2.5"/></g></svg>

After

Width:  |  Height:  |  Size: 999 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>credential_16x</title><rect class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M15,13H8v3H1V10A3.47,3.47,0,0,1,4.5,7,3.65,3.65,0,0,1,6,7.33V6H8A3.44,3.44,0,0,1,7,3.5a3.5,3.5,0,0,1,7,0A3.44,3.44,0,0,1,13,6h2Z"/><g id="iconBG"><path class="cls-3" d="M3,10H2A2.37,2.37,0,0,1,4.5,8,2.36,2.36,0,0,1,7,10H6A1.47,1.47,0,0,0,4.5,9,1.45,1.45,0,0,0,3,10Z"/><path class="cls-3" d="M2,11v4H7V11Zm3,3H4V12H5Z"/><circle class="cls-3" cx="10.5" cy="3.5" r="2.5"/><path class="cls-3" d="M12,7,10.5,9,9,7H7V8a3.34,3.34,0,0,1,1,2v2h6V7Z"/></g><path id="iconFG" class="cls-4" d="M5,14H4V12H5Z"/></svg>

After

Width:  |  Height:  |  Size: 821 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>Trigger_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><rect id="outline" class="cls-2" y="1" width="16" height="14"/><g id="iconBG"><polygon class="cls-3" points="1 2 1 14 4.38 14 4.88 13 2 13 2 5 14 5 14 13 7.41 13 6.41 14 15 14 15 2 1 2"/><polygon class="cls-3" points="10 9 7 9 10 6 7 6 5 10 7.5 10 6 13 10 9"/></g><g id="iconFG"><polygon class="cls-4" points="6.38 5 2 5 2 13 4.88 13 5.88 11 4 11 4 9.76 6.38 5"/><polygon class="cls-4" points="11 5 11 6.41 9.41 8 11 8 11 9.41 7.41 13 14 13 14 5 11 5"/></g></svg>

After

Width:  |  Height:  |  Size: 754 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a,.b{fill:#f6f6f6;}.a{opacity:0;}.c{fill:#424242;}.d{fill:#f0eff1;}</style></defs><title>broker_service_16x</title><rect class="a" width="16" height="16"/><path class="b" d="M16,5.74l-1-.56,1-.6V4l-.1-.35a4.07,4.07,0,0,0-.18-.56,4.29,4.29,0,0,0-.27-.5L15,1.84l-1.29.38L14,.91,13.36.53A5.42,5.42,0,0,0,12.1,0L12,0h-.72L10.7,1l-.6-1H9.52L9.16.1a4.08,4.08,0,0,0-.54.18,4.07,4.07,0,0,0-.51.27L7.35,1,7.73,2.3,6.42,2,6,2.64a5.42,5.42,0,0,0-.5,1.26l-.19.75,1.18.65L5.37,6V6A3.15,3.15,0,0,0,5,6a4.55,4.55,0,0,0-.63.06l-.77.1L3.46,7.28l-.9-.7-.61.48A5,5,0,0,0,1.06,8l-.48.61.7.9-.35,0L.15,9.7l-.1.77A3.85,3.85,0,0,0,0,11a4.55,4.55,0,0,0,.06.63l.1.77,1.12.14-.7.9.48.61a5,5,0,0,0,.89.89l.61.48.9-.7,0,.35.19.78.77.1A3.87,3.87,0,0,0,5,16a4.62,4.62,0,0,0,.63-.06l.77-.1.14-1.12.9.7.61-.48A5,5,0,0,0,8.94,14l.48-.61-.7-.9.35,0,.78-.19.1-.77A3.85,3.85,0,0,0,10,11a3.58,3.58,0,0,0,0-.4l.2.05.65-1.18.68,1.16.85-.24a4.05,4.05,0,0,0,.55-.18,4.88,4.88,0,0,0,.6-.33l.66-.4-.37-1.28,1.31.34.38-.68A5.46,5.46,0,0,0,16,6.58l0-.12Z"/><path class="c" d="M13.8,5.67a3.06,3.06,0,0,0,0-.95L15,4a4.25,4.25,0,0,0-.17-.53A4.56,4.56,0,0,0,14.53,3l-1.32.38a3,3,0,0,0-.68-.66l.35-1.33a4.42,4.42,0,0,0-1-.41l-.66,1.2a3.08,3.08,0,0,0-.95,0L9.55,1A4.36,4.36,0,0,0,9,1.2a4.32,4.32,0,0,0-.49.27l.38,1.31a3,3,0,0,0-.66.68L6.92,3.12a4.44,4.44,0,0,0-.41,1l1.2.66a3,3,0,0,0,0,.95l-1.18.69A4.29,4.29,0,0,0,6.72,7,4.24,4.24,0,0,0,7,7.47L8.3,7.09A3,3,0,0,0,9,7.75L8.64,9.08a4.45,4.45,0,0,0,1,.41l.66-1.2a3.08,3.08,0,0,0,.95,0L12,9.45a4.28,4.28,0,0,0,.53-.17A4.11,4.11,0,0,0,13,9L12.6,7.7A3,3,0,0,0,13.26,7l1.33.35a4.39,4.39,0,0,0,.41-1ZM11.63,7.26a2.2,2.2,0,1,1,1.15-2.89A2.2,2.2,0,0,1,11.63,7.26Z"/><path class="c" d="M7.71,10.34a2.74,2.74,0,0,0-.33-.79l.77-1a4,4,0,0,0-.71-.71l-1,.77a2.78,2.78,0,0,0-.8-.33L5.5,7.05A3.9,3.9,0,0,0,5,7a3.9,3.9,0,0,0-.5.05L4.34,8.29a2.78,2.78,0,0,0-.8.33l-1-.77a4,4,0,0,0-.71.71l.77,1a2.74,2.74,0,0,0-.33.79l-1.24.15A3.9,3.9,0,0,0,1,11a3.9,3.9,0,0,0,.05.5l1.24.15a2.74,2.74,0,0,0,.33.79l-.77,1a4,4,0,0,0,.71.71l1-.77a2.78,2.78,0,0,0,.8.33l.15,1.24A3.89,3.89,0,0,0,5,15a3.89,3.89,0,0,0,.5-.05l.15-1.24a2.78,2.78,0,0,0,.8-.33l1,.77a4,4,0,0,0,.71-.71l-.77-1a2.74,2.74,0,0,0,.33-.79l1.24-.15A3.9,3.9,0,0,0,9,11a3.9,3.9,0,0,0-.05-.5ZM5,13a2,2,0,1,1,2-2A2,2,0,0,1,5,13Z"/><circle class="c" cx="5" cy="11" r="1"/><circle class="c" cx="10.76" cy="5.24" r="1.1" transform="translate(-1.2 4.68) rotate(-23.3)"/><path class="d" d="M5,9a2,2,0,1,0,2,2A2,2,0,0,0,5,9Zm0,3a1,1,0,1,1,1-1A1.05,1.05,0,0,1,5,12Z"/><path class="d" d="M12.78,4.37a2.2,2.2,0,1,0-1.15,2.89A2.2,2.2,0,0,0,12.78,4.37ZM11.21,6.3a1.15,1.15,0,1,1,.6-1.52A1.15,1.15,0,0,1,11.21,6.3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M15 0v15h-14v-15h14z" id="outline"/><path class="icon-vs-bg" d="M2 1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h1v1h-1v1h12v-13h-12zm11 12h-9v-11h9v11zm-2-9v2h-5v-2h5z" id="iconBg"/><path class="icon-vs-fg" d="M4 2v11h9v-11h-9zm7 3v1h-5v-2h5v1z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 600 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 16h-15v-16h15v16z" id="outline"/><path class="icon-vs-bg" d="M2 1.003v13.997h13v-14l-13 .003zm12 .997v12h-1v-10h-2v10h-1v-6h-2v6h-1v-9h-2v9h-2v-12h11z" id="iconBg"/><path class="icon-vs-fg" d="M3 14v-12h11v12h-1v-10h-2v10h-1v-6h-2v6h-1v-9h-2v9h-2z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 603 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>stored_procedure_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><rect id="outline" class="cls-2" x="1" width="15" height="15"/><path id="iconBG" class="cls-3" d="M2,1V14H15V1ZM14,13H3V4H14ZM8,6H4V5H8Zm3,2H9V7h2ZM6,12H4V11H6Zm6-2H9V9h3Zm1,2H7V11h6ZM8,8H4V7H8Zm0,2H4V9H8Z"/><path id="iconFG" class="cls-4" d="M3,4v9H14V4ZM9,7h2V8H9ZM9,9h3v1H9ZM4,5H8V6H4ZM4,7,8,7V8H4ZM4,9H8v1H4Zm2,3H4V11H6Zm7,0H7V11h6Z"/></svg>

After

Width:  |  Height:  |  Size: 645 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}.cls-4{fill:#00539c;}</style></defs><title>input_parameter_16x</title><path id="outline" class="cls-1" d="M16,10.33a5.43,5.43,0,0,1-.29,1.83,4.5,4.5,0,0,1-.78,1.38,3.57,3.57,0,0,1-1.19.91l-.12.05V16H6.46a5.06,5.06,0,0,1-2-2.43A6.08,6.08,0,0,1,4,11.21a6.75,6.75,0,0,1,.14-1.35L4,10,0,6V0L2,2V0H6V2L8,0V5.37c.14,0,.28-.1.42-.15A6.63,6.63,0,0,1,10.16,5a6.81,6.81,0,0,1,2.2.35,5.66,5.66,0,0,1,1.86,1,5.07,5.07,0,0,1,1.3,1.69A5.23,5.23,0,0,1,16,10.33Z"/><path id="iconBG" class="cls-2" d="M14.62,8.52a4.07,4.07,0,0,0-1-1.36A4.64,4.64,0,0,0,12,6.3,5.77,5.77,0,0,0,10.16,6a5.57,5.57,0,0,0-1.47.19,5.07,5.07,0,0,0-1.26.53,4.71,4.71,0,0,0-1,.81,4.78,4.78,0,0,0-.76,1.05,5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,4,4,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.65,4.65,0,0,1,11.39,7a3.77,3.77,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33,4.21,4.21,0,0,0,14.62,8.52Zm-3.68,2.83a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53A5.54,5.54,0,0,1,10.94,11.35Z"/><path id="iconFG" class="cls-3" d="M10.74,9.46a.82.82,0,0,0-.31-.22,1.08,1.08,0,0,0-1,.14,1.74,1.74,0,0,0-.46.55,2.82,2.82,0,0,0-.28.75,3.9,3.9,0,0,0-.09.81,2.13,2.13,0,0,0,.08.61,1.37,1.37,0,0,0,.22.43.91.91,0,0,0,.32.26.86.86,0,0,0,.38.09,1.07,1.07,0,0,0,.64-.2,1.57,1.57,0,0,0,.45-.53,2.83,2.83,0,0,0,.27-.8,5.54,5.54,0,0,0,.09-1A1.71,1.71,0,0,0,11,9.83,1,1,0,0,0,10.74,9.46Z"/><path id="colorAction" class="cls-4" d="M7,5,4,8,1,5V3L3,5V1H5V5L7,3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>output_parameter_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M14.22,6.39a5.65,5.65,0,0,0-1.86-1A6.8,6.8,0,0,0,10.16,5a6.63,6.63,0,0,0-1.73.22c-.15,0-.28.1-.42.15V3L5,0H3L0,3V9L2,7V9H4.38c-.07.19-.13.38-.18.58A6.69,6.69,0,0,0,4,11.21a6.08,6.08,0,0,0,.44,2.36,5.06,5.06,0,0,0,2,2.43h7.16V14.51l.12-.05a3.57,3.57,0,0,0,1.19-.91,4.5,4.5,0,0,0,.78-1.38A5.43,5.43,0,0,0,16,10.33a5.22,5.22,0,0,0-.48-2.25A5.07,5.07,0,0,0,14.22,6.39Z"/><path id="iconBG" class="cls-3" d="M13.57,7.16A4.65,4.65,0,0,0,12,6.3,5.78,5.78,0,0,0,10.16,6a5.59,5.59,0,0,0-1.47.19,5.09,5.09,0,0,0-1.26.52A4.78,4.78,0,0,0,5.64,8.58a5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,3.92,3.92,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.63,4.63,0,0,1,11.39,7a3.72,3.72,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33a4.21,4.21,0,0,0-.38-1.82,4.07,4.07,0,0,0-1-1.36m-2.63,4.19a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53,5.54,5.54,0,0,1-.09,1"/><path id="colorAction" class="cls-4" d="M7,6,5,4V8H3V4L1,6V4L4,1,7,4Z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>parameter_return_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,5v.83A5.2,5.2,0,0,0,8.11,5a5.13,5.13,0,0,0-2.77.76L3.18,3.89A.5.5,0,0,1,3,3.5a.49.49,0,0,1,0-.08L4.59,5H8V1.51L6.4,0H5V.34A3,3,0,0,0,3.5,0,3.49,3.49,0,0,0,.34,5H0V15H5v-.86A5.12,5.12,0,0,0,8,15a6.51,6.51,0,0,0,2.52-.44l.51-.22V15h5V5ZM1.17,6.11h0ZM3,12V10.32A5.21,5.21,0,0,0,3.31,12Zm0-2V7.69L3.4,8A5.3,5.3,0,0,0,3,10Zm10,2h-.75A3.84,3.84,0,0,0,13,9.77Zm0-2.61A4.56,4.56,0,0,0,12.74,8H13Z"/><g id="iconBG"><polygon class="cls-3" points="12 6 12 7 14 7 14 13 12 13 12 14 15 14 15 6 12 6"/><path class="cls-3" d="M2,13V6.83l-.78-.67A1.53,1.53,0,0,1,1.07,6H1v8H4V13Z"/><path class="cls-3" d="M8.82,11.15h0a1.36,1.36,0,0,1-1.37,1,1.3,1.3,0,0,1-1.05-.49A2,2,0,0,1,6,10.39a2.92,2.92,0,0,1,.55-1.82A1.73,1.73,0,0,1,8,7.85,1,1,0,0,1,8.57,8a.84.84,0,0,1,.35.45h0c0-.09,0-.28.07-.56h.81q-.23,2.56-.23,2.61,0,1,.5,1a.87.87,0,0,0,.76-.54,2.81,2.81,0,0,0,.3-1.39,2.76,2.76,0,0,0-.82-2.06,3.1,3.1,0,0,0-2.26-.8,3,3,0,0,0-2.3,1,3.39,3.39,0,0,0-.91,2.42,3.13,3.13,0,0,0,.88,2.31,3.19,3.19,0,0,0,2.36.88,4.57,4.57,0,0,0,2-.4v.75A5.51,5.51,0,0,1,8,14a4,4,0,0,1-2.89-1.07A3.72,3.72,0,0,1,4,10.13,4,4,0,0,1,8.11,6a4.08,4.08,0,0,1,2.8,1A3.26,3.26,0,0,1,12,9.55a2.9,2.9,0,0,1-.6,1.9,1.82,1.82,0,0,1-1.47.74C9.2,12.19,8.82,11.85,8.82,11.15ZM8,8.54a1,1,0,0,0-.86.52,2.41,2.41,0,0,0-.33,1.31,1.38,1.38,0,0,0,.22.83.7.7,0,0,0,.59.3A1,1,0,0,0,8.51,11a3,3,0,0,0,.31-1.46C8.82,8.86,8.56,8.54,8,8.54Z"/></g><path id="colorAction" class="cls-4" d="M6,1V2.36l-.89-.77A2.34,2.34,0,0,0,3.5,1,2.5,2.5,0,0,0,1.87,5.4l2,1.68.63-.74L2.53,4.64A1.5,1.5,0,0,1,3.5,2a1.76,1.76,0,0,1,1,.36L5.24,3H4L5,4H7V1.95Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>symmetric_key_16x</title><path id="outline" class="cls-1" d="M14.29,8A4.49,4.49,0,1,0,8.67,1H2.59L0,3.59V5.41L1.59,7H7.77a4.49,4.49,0,0,0,.91,1H2.59L0,10.59v1.83L1.59,14H7.77a4.45,4.45,0,0,0,3.73,2,4.48,4.48,0,0,0,2.79-8Z"/><g id="iconBG"><path class="cls-2" d="M15,4.5A3.49,3.49,0,0,0,8.35,3H8V2H7L6,3V2H5L4,3V2H3L1,4V5L2,6H8.35A3.49,3.49,0,0,0,15,4.5ZM12,5a1,1,0,1,1,1-1A1,1,0,0,1,12,5Z"/><path class="cls-2" d="M11.5,8a3.49,3.49,0,0,0-3.15,2H8V9H7L6,10V9H5L4,10V9H3L1,11v1l1,1H8.35A3.5,3.5,0,1,0,11.5,8Zm0,6a2.5,2.5,0,0,1-2.45-2H2V11H9.05a2.5,2.5,0,1,1,2.45,3Z"/><circle class="cls-2" cx="12" cy="11" r="1"/></g><path id="iconFG" class="cls-3" d="M11.5,9a2.5,2.5,0,0,0-2.45,2H2v1H9.05A2.5,2.5,0,1,0,11.5,9Zm.5,3a1,1,0,1,1,1-1A1,1,0,0,1,12,12Z"/></svg>

After

Width:  |  Height:  |  Size: 945 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>synonym_16x</title><g id="outline"><path class="cls-1" d="M16,16H0V0H16Z"/></g><g id="icon_bg"><path class="cls-2" d="M12,4V9l-2,2V7.5L5.5,12,4,10.5,8.5,6H5L7,4Zm3-3V15H1V1ZM14,2H2V14H14Z"/></g><g id="icon_fg"><path class="cls-3" d="M2,2V14H14V2ZM12,9l-2,2V7.5L5.5,12,4,10.5,8.5,6H5L7,4h5Z"/></g></svg>

After

Width:  |  Height:  |  Size: 483 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>contract_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M4,15a2,2,0,0,1-2-2V3A2,2,0,0,1,3.85,1h6.22L14,4.56v8.37a2,2,0,0,1-.45,1.45,1.9,1.9,0,0,1-1.5.63Z"/><g id="iconBG"><path class="cls-3" d="M9.68,2H3.93A1,1,0,0,0,3,3V13a1,1,0,0,0,1,1h8.06A.88.88,0,0,0,13,13V5ZM12,13H4V3H9V6h3Z"/><rect class="cls-3" x="8" y="10" width="4" height="1"/><path class="cls-3" d="M7.61,8h-1l-.43.83L6.09,9V9H6l-.5-1H4.41l1,1.51L4.34,11H5.41s.48-.89.5-.94S6,10,6,10v0l.51.95H7.6l-1-1.55Z"/></g><g id="iconFG"><path class="cls-4" d="M12,10V6H9V3H4V13h8V11H8V10ZM7.6,11H6.54l-.44-.81s-.18-.16-.19-.13l-.06.12L5.41,11H4.34l1-1.49L4.41,8H5.48l.43.84A.55.55,0,0,0,6.09,9l.07-.15L6.59,8h1l-1,1.45Z"/></g></svg>

After

Width:  |  Height:  |  Size: 957 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}</style></defs><title>message_type_16x</title><path class="cls-1" d="M16,0H6V7H0v9H10V15h1.5a2.5,2.5,0,0,0,2.37-1.71L15,14.41V10.09L13.91,9H16ZM10,10.09V9h1.09Z"/><path class="cls-2" d="M7,1V8H1v7H9V8h6V1ZM8,14H2V11l2,2H6l2-2ZM5,12,2,9H8Zm9-5H8V4l2,2h2l2-2ZM11,5,8,2h6Zm1.5,4L14,10.5V12l-1-1v1.5A1.5,1.5,0,0,1,11.5,14H10V13h1.5a.5.5,0,0,0,.5-.5V11l-1,1V10.5Z"/><path class="cls-3" d="M12,6l2-2V7H8V4l2,2Zm2-4H8l3,3ZM4,13,2,11v3H8V11L6,13ZM8,9H2l3,3Z"/></svg>

After

Width:  |  Height:  |  Size: 627 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>queue_16x</title><g id="canvas" class="cls-1"><rect class="cls-2" width="16" height="16"/></g><path id="outline" class="cls-2" d="M15,1V9H12v3H9v3H1V7H4V4H7V1Z"/><path id="iconBG" class="cls-3" d="M8,2V5H5V8H2v6H8V11h3V8h3V2ZM7,13H3V9H7Zm3-3H8V8H6V6h4Zm3-3H11V5H9V3h4Z"/><path id="iconFG" class="cls-4" d="M13,3V7H11V5H9V3ZM6,8H8v2h2V6H6ZM3,13H7V9H3Z"/></svg>

After

Width:  |  Height:  |  Size: 568 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a,.b{fill:#f6f6f6;}.a{opacity:0;}.c{fill:#424242;}.d{fill:#f0eff1;}</style></defs><title>broker_service_16x</title><rect class="a" width="16" height="16"/><path class="b" d="M16,5.74l-1-.56,1-.6V4l-.1-.35a4.07,4.07,0,0,0-.18-.56,4.29,4.29,0,0,0-.27-.5L15,1.84l-1.29.38L14,.91,13.36.53A5.42,5.42,0,0,0,12.1,0L12,0h-.72L10.7,1l-.6-1H9.52L9.16.1a4.08,4.08,0,0,0-.54.18,4.07,4.07,0,0,0-.51.27L7.35,1,7.73,2.3,6.42,2,6,2.64a5.42,5.42,0,0,0-.5,1.26l-.19.75,1.18.65L5.37,6V6A3.15,3.15,0,0,0,5,6a4.55,4.55,0,0,0-.63.06l-.77.1L3.46,7.28l-.9-.7-.61.48A5,5,0,0,0,1.06,8l-.48.61.7.9-.35,0L.15,9.7l-.1.77A3.85,3.85,0,0,0,0,11a4.55,4.55,0,0,0,.06.63l.1.77,1.12.14-.7.9.48.61a5,5,0,0,0,.89.89l.61.48.9-.7,0,.35.19.78.77.1A3.87,3.87,0,0,0,5,16a4.62,4.62,0,0,0,.63-.06l.77-.1.14-1.12.9.7.61-.48A5,5,0,0,0,8.94,14l.48-.61-.7-.9.35,0,.78-.19.1-.77A3.85,3.85,0,0,0,10,11a3.58,3.58,0,0,0,0-.4l.2.05.65-1.18.68,1.16.85-.24a4.05,4.05,0,0,0,.55-.18,4.88,4.88,0,0,0,.6-.33l.66-.4-.37-1.28,1.31.34.38-.68A5.46,5.46,0,0,0,16,6.58l0-.12Z"/><path class="c" d="M13.8,5.67a3.06,3.06,0,0,0,0-.95L15,4a4.25,4.25,0,0,0-.17-.53A4.56,4.56,0,0,0,14.53,3l-1.32.38a3,3,0,0,0-.68-.66l.35-1.33a4.42,4.42,0,0,0-1-.41l-.66,1.2a3.08,3.08,0,0,0-.95,0L9.55,1A4.36,4.36,0,0,0,9,1.2a4.32,4.32,0,0,0-.49.27l.38,1.31a3,3,0,0,0-.66.68L6.92,3.12a4.44,4.44,0,0,0-.41,1l1.2.66a3,3,0,0,0,0,.95l-1.18.69A4.29,4.29,0,0,0,6.72,7,4.24,4.24,0,0,0,7,7.47L8.3,7.09A3,3,0,0,0,9,7.75L8.64,9.08a4.45,4.45,0,0,0,1,.41l.66-1.2a3.08,3.08,0,0,0,.95,0L12,9.45a4.28,4.28,0,0,0,.53-.17A4.11,4.11,0,0,0,13,9L12.6,7.7A3,3,0,0,0,13.26,7l1.33.35a4.39,4.39,0,0,0,.41-1ZM11.63,7.26a2.2,2.2,0,1,1,1.15-2.89A2.2,2.2,0,0,1,11.63,7.26Z"/><path class="c" d="M7.71,10.34a2.74,2.74,0,0,0-.33-.79l.77-1a4,4,0,0,0-.71-.71l-1,.77a2.78,2.78,0,0,0-.8-.33L5.5,7.05A3.9,3.9,0,0,0,5,7a3.9,3.9,0,0,0-.5.05L4.34,8.29a2.78,2.78,0,0,0-.8.33l-1-.77a4,4,0,0,0-.71.71l.77,1a2.74,2.74,0,0,0-.33.79l-1.24.15A3.9,3.9,0,0,0,1,11a3.9,3.9,0,0,0,.05.5l1.24.15a2.74,2.74,0,0,0,.33.79l-.77,1a4,4,0,0,0,.71.71l1-.77a2.78,2.78,0,0,0,.8.33l.15,1.24A3.89,3.89,0,0,0,5,15a3.89,3.89,0,0,0,.5-.05l.15-1.24a2.78,2.78,0,0,0,.8-.33l1,.77a4,4,0,0,0,.71-.71l-.77-1a2.74,2.74,0,0,0,.33-.79l1.24-.15A3.9,3.9,0,0,0,9,11a3.9,3.9,0,0,0-.05-.5ZM5,13a2,2,0,1,1,2-2A2,2,0,0,1,5,13Z"/><circle class="c" cx="5" cy="11" r="1"/><circle class="c" cx="10.76" cy="5.24" r="1.1" transform="translate(-1.2 4.68) rotate(-23.3)"/><path class="d" d="M5,9a2,2,0,1,0,2,2A2,2,0,0,0,5,9Zm0,3a1,1,0,1,1,1-1A1.05,1.05,0,0,1,5,12Z"/><path class="d" d="M12.78,4.37a2.2,2.2,0,1,0-1.15,2.89A2.2,2.2,0,0,0,12.78,4.37ZM11.21,6.3a1.15,1.15,0,1,1,.6-1.52A1.15,1.15,0,0,1,11.21,6.3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#efeef0;opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>udt_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M12.06,1H6A2,2,0,0,0,4,3H0v8H4v2a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V4.56Z"/><g id="iconBG"><path class="cls-3" d="M11.64,2H6A1,1,0,0,0,5,3h6V6h3v7H6V11H5v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V5Z"/><path class="cls-3" d="M3.52,5.65q-.59,0-.59,1.38t.58,1.3c.38,0,.57-.45.57-1.34S3.89,5.65,3.52,5.65Z"/><path class="cls-3" d="M1,4v6H8V4ZM4.61,8.46A1.33,1.33,0,0,1,3.48,9C2.49,9,2,8.34,2,7.05a2.49,2.49,0,0,1,.4-1.53A1.37,1.37,0,0,1,3.56,5Q5,5,5,7A2.45,2.45,0,0,1,4.61,8.46ZM7,9H6.15V6L6,6.12l-.2.1-.12,0V5.48c.1,0,.2-.07.29-.12A3.39,3.39,0,0,0,6.49,5H7Z"/></g><g id="iconFG"><polygon class="cls-4" points="11 6 11 3 9 3 9 11 6 11 6 13 14 13 14 6 11 6"/><path class="cls-4" d="M3.56,5a1.37,1.37,0,0,0-1.16.53A2.49,2.49,0,0,0,2,7.05C2,8.34,2.49,9,3.48,9a1.33,1.33,0,0,0,1.13-.52A2.45,2.45,0,0,0,5,7Q5,5,3.56,5ZM3.51,8.34q-.58,0-.58-1.3t.59-1.38q.55,0,.55,1.34C4.07,7.89,3.88,8.34,3.51,8.34Z"/><path class="cls-4" d="M6,5.37c-.09,0-.19.08-.29.12v.77l.12,0,.2-.1L6.15,6V9H7V5H6.49A3.39,3.39,0,0,1,6,5.37Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 15h-15v-14h15v14z" id="outline"/><path class="icon-vs-bg" d="M2 2v12h13v-12h-13zm4 11h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2zm4 6h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2zm4 6h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2z" id="iconBg"/><path class="icon-vs-fg" d="M14 7h-3v-2h3v2zm0 1h-3v2h3v-2zm-4-3h-3v2h3v-2zm0 3h-3v2h3v-2zm-4-3h-3v2h3v-2zm0 3h-3v2h3v-2zm8 3h-3v2h3v-2zm-4 0h-3v2h3v-2zm-4 0h-3v2h3v-2z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 755 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:none;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>table_valued_function</title><g id="outline"><path class="cls-1" d="M16,0H1V13.17a1.52,1.52,0,0,0-.51.29,1.4,1.4,0,0,0,.07,2.18A1.86,1.86,0,0,0,1.74,16a2.91,2.91,0,0,0,1.63-.47,3.6,3.6,0,0,0,1.15-1.31c0-.06.07-.15.1-.22H5s0,.07.07.1a1.49,1.49,0,0,0,1.07.41A2,2,0,0,0,7,14.32,2.33,2.33,0,0,0,7.46,14h.72a1.73,1.73,0,0,0,.26.22,1.83,1.83,0,0,0,1,.29,2,2,0,0,0,1.12-.36l.18-.14H16Z"/></g><g id="icon_bg"><rect class="cls-2" x="11" y="4" width="3" height="2"/><rect class="cls-2" x="3" y="4" width="3" height="2"/><rect class="cls-2" x="7" y="4" width="3" height="2"/><path class="cls-3" d="M2,1V9.83l.5-1.71H3V7H4a3.46,3.46,0,0,1,.5-.44A3.07,3.07,0,0,1,6.33,6a1.92,1.92,0,0,1,1.27.39A1.49,1.49,0,0,1,8,7h2V8.1A1.89,1.89,0,0,1,10.49,8a1.61,1.61,0,0,1,.51.08V7h3V9H11.91a1.41,1.41,0,0,1,0,1H14v2H12v.42l-.35.55,0,0H15V1ZM6,6H3V4H6Zm4,0H7V4h3Zm4,0H11V4h3Z"/><path class="cls-3" d="M5,9.13a3.82,3.82,0,0,1,.74-1.62.76.76,0,0,1,.54-.32.13.13,0,0,1,.09,0,.1.1,0,0,1,0,.08.43.43,0,0,1-.08.17.46.46,0,0,0-.07.23A.35.35,0,0,0,6.4,8a.42.42,0,0,0,.3.11A.43.43,0,0,0,7,7.94a.49.49,0,0,0,.13-.36A.51.51,0,0,0,7,7.16,1,1,0,0,0,6.33,7a2.08,2.08,0,0,0-1.22.38,3.73,3.73,0,0,0-1,1.27,1,1,0,0,1-.32.39,1,1,0,0,1-.49.08l-.15.51h.63l-.92,3.5q-.23.86-.31,1.06a1.26,1.26,0,0,1-.36.5.33.33,0,0,1-.23.08l-.06,0,0,0s0,0,.07-.09A.28.28,0,0,0,2,14.44a.33.33,0,0,0-.11-.25.43.43,0,0,0-.31-.1.57.57,0,0,0-.39.13.4.4,0,0,0-.15.31.42.42,0,0,0,.18.33.9.9,0,0,0,.56.14,1.91,1.91,0,0,0,1.08-.31,2.6,2.6,0,0,0,.82-1,9.81,9.81,0,0,0,.72-2.08l.53-2h.63l.16-.51Z"/><path class="cls-3" d="M10.49,9a.89.89,0,0,0-.42.1,2,2,0,0,0-.5.44,10.81,10.81,0,0,0-.67.89A4.28,4.28,0,0,0,8.3,9H6.39v.75c.12,0,.53-.35.61-.35a.47.47,0,0,1,.39.2,7.14,7.14,0,0,1,.68,1.86c-.23.29-.65.79-.74.88a1.32,1.32,0,0,1-.34.28.49.49,0,0,1-.23.05.88.88,0,0,1-.32-.11.7.7,0,0,0-.27-.07.52.52,0,0,0-.38.15.48.48,0,0,0-.15.37.45.45,0,0,0,.14.34.52.52,0,0,0,.37.13,1,1,0,0,0,.42-.09,2,2,0,0,0,.5-.39c.2-.2.75-.82,1.1-1.25A10.7,10.7,0,0,0,8.64,13a1.07,1.07,0,0,0,.34.41.87.87,0,0,0,.48.12,1,1,0,0,0,.57-.2,3,3,0,0,0,.78-.87l-.16-.09a2.46,2.46,0,0,1-.4.46.36.36,0,0,1-.2.06.37.37,0,0,1-.27-.17A8.33,8.33,0,0,1,9,10.79,2.79,2.79,0,0,1,9.59,10a.59.59,0,0,1,.36-.13l.26,0a1.32,1.32,0,0,0,.33.05.45.45,0,0,0,.33-.13A.47.47,0,0,0,11,9.51a.47.47,0,0,0-.13-.35A.52.52,0,0,0,10.49,9Z"/><path class="cls-3" d="M6.15,11.52a1.55,1.55,0,0,1,.51.09l.3-.35c-.07-.23-.13-.42-.18-.56l-.2.06L6,10.87v.67Z"/><path class="cls-3" d="M10.11,10.94l.11.31.16-.21.63.36v-.49a1.47,1.47,0,0,1-.46.08A2.14,2.14,0,0,1,10.11,10.94Z"/><path class="cls-3" d="M2,10.65v1.62l.43-1.62Z"/></g><g id="icon_fg"><rect class="cls-4" x="11" y="4" width="3" height="2"/><rect class="cls-4" x="7" y="4" width="3" height="2"/><path class="cls-4" d="M8.15,7.58A1.6,1.6,0,0,1,8.09,8h.75l.34.52a2.18,2.18,0,0,1,.42-.3A2,2,0,0,1,10,8.1V7H8A1.55,1.55,0,0,1,8.15,7.58Z"/><path class="cls-4" d="M5.38,11.72A1.52,1.52,0,0,1,6,11.54v-.67L5.58,11Z"/><rect class="cls-4" x="3" y="4" width="3" height="2"/><path class="cls-4" d="M11,8.11a1.45,1.45,0,0,1,.58.34,1.43,1.43,0,0,1,.33.55H14V7H11Z"/><path class="cls-4" d="M11.58,10.56a1.44,1.44,0,0,1-.58.35v.49L12,12v0h2V10H11.91A1.41,1.41,0,0,1,11.58,10.56Z"/><path class="cls-4" d="M3,8.13h.21A5.42,5.42,0,0,1,4,7H3Z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f6f6f6;}.cls-2{fill:#424242;}.cls-3{fill:#f0eff1;}.cls-4{fill:#00539c;}</style></defs><title>input_parameter_16x</title><path id="outline" class="cls-1" d="M16,10.33a5.43,5.43,0,0,1-.29,1.83,4.5,4.5,0,0,1-.78,1.38,3.57,3.57,0,0,1-1.19.91l-.12.05V16H6.46a5.06,5.06,0,0,1-2-2.43A6.08,6.08,0,0,1,4,11.21a6.75,6.75,0,0,1,.14-1.35L4,10,0,6V0L2,2V0H6V2L8,0V5.37c.14,0,.28-.1.42-.15A6.63,6.63,0,0,1,10.16,5a6.81,6.81,0,0,1,2.2.35,5.66,5.66,0,0,1,1.86,1,5.07,5.07,0,0,1,1.3,1.69A5.23,5.23,0,0,1,16,10.33Z"/><path id="iconBG" class="cls-2" d="M14.62,8.52a4.07,4.07,0,0,0-1-1.36A4.64,4.64,0,0,0,12,6.3,5.77,5.77,0,0,0,10.16,6a5.57,5.57,0,0,0-1.47.19,5.07,5.07,0,0,0-1.26.53,4.71,4.71,0,0,0-1,.81,4.78,4.78,0,0,0-.76,1.05,5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,4,4,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.65,4.65,0,0,1,11.39,7a3.77,3.77,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33,4.21,4.21,0,0,0,14.62,8.52Zm-3.68,2.83a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53A5.54,5.54,0,0,1,10.94,11.35Z"/><path id="iconFG" class="cls-3" d="M10.74,9.46a.82.82,0,0,0-.31-.22,1.08,1.08,0,0,0-1,.14,1.74,1.74,0,0,0-.46.55,2.82,2.82,0,0,0-.28.75,3.9,3.9,0,0,0-.09.81,2.13,2.13,0,0,0,.08.61,1.37,1.37,0,0,0,.22.43.91.91,0,0,0,.32.26.86.86,0,0,0,.38.09,1.07,1.07,0,0,0,.64-.2,1.57,1.57,0,0,0,.45-.53,2.83,2.83,0,0,0,.27-.8,5.54,5.54,0,0,0,.09-1A1.71,1.71,0,0,0,11,9.83,1,1,0,0,0,10.74,9.46Z"/><path id="colorAction" class="cls-4" d="M7,5,4,8,1,5V3L3,5V1H5V5L7,3Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>output_parameter_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M14.22,6.39a5.65,5.65,0,0,0-1.86-1A6.8,6.8,0,0,0,10.16,5a6.63,6.63,0,0,0-1.73.22c-.15,0-.28.1-.42.15V3L5,0H3L0,3V9L2,7V9H4.38c-.07.19-.13.38-.18.58A6.69,6.69,0,0,0,4,11.21a6.08,6.08,0,0,0,.44,2.36,5.06,5.06,0,0,0,2,2.43h7.16V14.51l.12-.05a3.57,3.57,0,0,0,1.19-.91,4.5,4.5,0,0,0,.78-1.38A5.43,5.43,0,0,0,16,10.33a5.22,5.22,0,0,0-.48-2.25A5.07,5.07,0,0,0,14.22,6.39Z"/><path id="iconBG" class="cls-3" d="M13.57,7.16A4.65,4.65,0,0,0,12,6.3,5.78,5.78,0,0,0,10.16,6a5.59,5.59,0,0,0-1.47.19,5.09,5.09,0,0,0-1.26.52A4.78,4.78,0,0,0,5.64,8.58a5.33,5.33,0,0,0-.47,1.24A5.67,5.67,0,0,0,5,11.21a5.08,5.08,0,0,0,.37,2,4.37,4.37,0,0,0,1,1.51,4.58,4.58,0,0,0,1.57,1A5.74,5.74,0,0,0,10,16c.34,0,.64,0,.92,0s.52-.06.74-.1a4.79,4.79,0,0,0,.57-.14l.42-.15v-.95l-.51.2a4.5,4.5,0,0,1-.58.16,6.38,6.38,0,0,1-.67.1,7.12,7.12,0,0,1-.78,0,4.52,4.52,0,0,1-1.68-.29A3.61,3.61,0,0,1,7.15,14a3.5,3.5,0,0,1-.79-1.25,4.54,4.54,0,0,1-.27-1.59,4.63,4.63,0,0,1,.3-1.69,4.18,4.18,0,0,1,.84-1.36,3.92,3.92,0,0,1,1.28-.91,4,4,0,0,1,1.62-.33A4.63,4.63,0,0,1,11.39,7a3.72,3.72,0,0,1,1,.41,3,3,0,0,1,.71.61,3.45,3.45,0,0,1,.49.74,3.63,3.63,0,0,1,.27.81,4.41,4.41,0,0,1,0,1.85,3,3,0,0,1-.3.77,1.43,1.43,0,0,1-.43.48.88.88,0,0,1-.5.16.58.58,0,0,1-.24,0,.4.4,0,0,1-.18-.17,1,1,0,0,1-.12-.34,2.85,2.85,0,0,1,0-.55c0-.07,0-.19,0-.36s0-.37,0-.59,0-.46.06-.71,0-.49.06-.72,0-.43.05-.61,0-.3,0-.38h-1l-.06.67h0A.86.86,0,0,0,11,8.75a1,1,0,0,0-.26-.24,1.27,1.27,0,0,0-.34-.16A1.46,1.46,0,0,0,10,8.3a2.18,2.18,0,0,0-1,.24,2.42,2.42,0,0,0-.8.67,3.09,3.09,0,0,0-.52,1,4,4,0,0,0-.19,1.26,3.08,3.08,0,0,0,.15,1,2.15,2.15,0,0,0,.4.72,1.58,1.58,0,0,0,.59.42,1.81,1.81,0,0,0,.71.14,1.71,1.71,0,0,0,.55-.09,1.61,1.61,0,0,0,.48-.26,1.77,1.77,0,0,0,.39-.42,2,2,0,0,0,.26-.58h0a1.39,1.39,0,0,0,.34,1,1.29,1.29,0,0,0,1,.37,2.22,2.22,0,0,0,1-.22,2.55,2.55,0,0,0,.85-.65,3.48,3.48,0,0,0,.6-1.07A4.42,4.42,0,0,0,15,10.33a4.21,4.21,0,0,0-.38-1.82,4.07,4.07,0,0,0-1-1.36m-2.63,4.19a2.83,2.83,0,0,1-.27.8,1.57,1.57,0,0,1-.45.53,1.07,1.07,0,0,1-.64.2.86.86,0,0,1-.38-.09.91.91,0,0,1-.32-.26,1.37,1.37,0,0,1-.22-.43,2.13,2.13,0,0,1-.08-.61,3.9,3.9,0,0,1,.09-.81,2.82,2.82,0,0,1,.28-.75,1.74,1.74,0,0,1,.46-.55,1.08,1.08,0,0,1,1-.14.82.82,0,0,1,.31.22,1,1,0,0,1,.21.37,1.71,1.71,0,0,1,.08.53,5.54,5.54,0,0,1-.09,1"/><path id="colorAction" class="cls-4" d="M7,6,5,4V8H3V4L1,6V4L4,1,7,4Z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#00539c;}</style></defs><title>parameter_return_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M11,5v.83A5.2,5.2,0,0,0,8.11,5a5.13,5.13,0,0,0-2.77.76L3.18,3.89A.5.5,0,0,1,3,3.5a.49.49,0,0,1,0-.08L4.59,5H8V1.51L6.4,0H5V.34A3,3,0,0,0,3.5,0,3.49,3.49,0,0,0,.34,5H0V15H5v-.86A5.12,5.12,0,0,0,8,15a6.51,6.51,0,0,0,2.52-.44l.51-.22V15h5V5ZM1.17,6.11h0ZM3,12V10.32A5.21,5.21,0,0,0,3.31,12Zm0-2V7.69L3.4,8A5.3,5.3,0,0,0,3,10Zm10,2h-.75A3.84,3.84,0,0,0,13,9.77Zm0-2.61A4.56,4.56,0,0,0,12.74,8H13Z"/><g id="iconBG"><polygon class="cls-3" points="12 6 12 7 14 7 14 13 12 13 12 14 15 14 15 6 12 6"/><path class="cls-3" d="M2,13V6.83l-.78-.67A1.53,1.53,0,0,1,1.07,6H1v8H4V13Z"/><path class="cls-3" d="M8.82,11.15h0a1.36,1.36,0,0,1-1.37,1,1.3,1.3,0,0,1-1.05-.49A2,2,0,0,1,6,10.39a2.92,2.92,0,0,1,.55-1.82A1.73,1.73,0,0,1,8,7.85,1,1,0,0,1,8.57,8a.84.84,0,0,1,.35.45h0c0-.09,0-.28.07-.56h.81q-.23,2.56-.23,2.61,0,1,.5,1a.87.87,0,0,0,.76-.54,2.81,2.81,0,0,0,.3-1.39,2.76,2.76,0,0,0-.82-2.06,3.1,3.1,0,0,0-2.26-.8,3,3,0,0,0-2.3,1,3.39,3.39,0,0,0-.91,2.42,3.13,3.13,0,0,0,.88,2.31,3.19,3.19,0,0,0,2.36.88,4.57,4.57,0,0,0,2-.4v.75A5.51,5.51,0,0,1,8,14a4,4,0,0,1-2.89-1.07A3.72,3.72,0,0,1,4,10.13,4,4,0,0,1,8.11,6a4.08,4.08,0,0,1,2.8,1A3.26,3.26,0,0,1,12,9.55a2.9,2.9,0,0,1-.6,1.9,1.82,1.82,0,0,1-1.47.74C9.2,12.19,8.82,11.85,8.82,11.15ZM8,8.54a1,1,0,0,0-.86.52,2.41,2.41,0,0,0-.33,1.31,1.38,1.38,0,0,0,.22.83.7.7,0,0,0,.59.3A1,1,0,0,0,8.51,11a3,3,0,0,0,.31-1.46C8.82,8.86,8.56,8.54,8,8.54Z"/></g><path id="colorAction" class="cls-4" d="M6,1V2.36l-.89-.77A2.34,2.34,0,0,0,3.5,1,2.5,2.5,0,0,0,1.87,5.4l2,1.68.63-.74L2.53,4.64A1.5,1.5,0,0,1,3.5,2a1.76,1.76,0,0,1,1,.36L5.24,3H4L5,4H7V1.95Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="16" height="16" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<path style="fill:#F6F6F6;" d="M4,0v56h24.038c3.653,4.847,9.439,8,15.962,8c11.028,0,20-8.972,20-20V0H4z"/>
<g>
<path style="fill:#424242;" d="M44,28c-8.836,0-16,7.163-16,16s7.164,16,16,16s16-7.163,16-16S52.836,28,44,28z M44,56
c-6.62,0-12-5.38-12-12s5.38-12,12-12s12,5.38,12,12S50.62,56,44,56z"/>
<polygon style="fill:#424242;" points="44,44 44,36 40,36 40,48 52,48 52,44 "/>
<path style="fill:#424242;" d="M8,4v48h17.682c-0.557-1.271-0.985-2.609-1.271-4H12v-8h12.423c0.605-2.931,1.843-5.633,3.577-7.949
V28h4.051c3.339-2.5,7.468-4,11.949-4v-8h12v8H44c4.482,0,8.61,1.5,11.949,4H56v0.038c1.517,1.143,2.861,2.493,4,4.013V4H8z M24,36
H12v-8h12V36z M24,24H12v-8h12V24z M40,24H28v-8h12V24z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>Trigger_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><rect id="outline" class="cls-2" y="1" width="16" height="14"/><g id="iconBG"><polygon class="cls-3" points="1 2 1 14 4.38 14 4.88 13 2 13 2 5 14 5 14 13 7.41 13 6.41 14 15 14 15 2 1 2"/><polygon class="cls-3" points="10 9 7 9 10 6 7 6 5 10 7.5 10 6 13 10 9"/></g><g id="iconFG"><polygon class="cls-4" points="6.38 5 2 5 2 13 4.88 13 5.88 11 4 11 4 9.76 6.38 5"/><polygon class="cls-4" points="11 5 11 6.41 9.41 8 11 8 11 9.41 7.41 13 14 13 14 5 11 5"/></g></svg>

After

Width:  |  Height:  |  Size: 754 B

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1{opacity:0;}.cls-2{fill:#f6f6f6;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}.cls-5{fill:#e51400;}</style></defs><title>Trigger_disabled_16x</title><g id="canvas" class="cls-1"><rect class="cls-2" width="16" height="16"/></g><polygon id="outline" class="cls-2" points="16 1 0 1 0 15 8.59 15 9.5 15.91 10.41 15 12.59 15 13.5 15.91 14.41 15 16 15 16 1"/><g id="iconBG"><path class="cls-3" d="M14,11.4v.17l1,1V10.41ZM2,5H14V7.59l1,1V2H1V14H4.38l.5-1H2Z"/><polygon class="cls-3" points="8.3 10.7 7.08 9.51 7.59 9 7 9 10 6 7 6 5 10 7.5 10 6 13 8.3 10.7"/></g><g id="iconFG"><polygon class="cls-4" points="6.38 5 2 5 2 13 4.88 13 5.88 11 4 11 4 9.76 6.38 5"/><polygon class="cls-4" points="13.91 11.48 14 11.57 14 11.4 13.91 11.48"/><polygon class="cls-4" points="10.41 8 11 8 11 8.59 11.5 9.09 13.5 7.09 14 7.59 14 5 11 5 11 6.41 9.91 7.5 10.41 8"/></g><path id="colorAction" class="cls-5" d="M12.5,11.47l2,2-1,1-2-2-2,2-1-1,2-2-2-2,1-1,2,2,2-2,1,1Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:#424242;}.cls-4{fill:#f0eff1;}</style></defs><title>database_roles_16x_16x</title><rect id="canvas" class="cls-1" width="16" height="16"/><path id="outline" class="cls-2" d="M9,0C5,0,2,1.72,2,4v.06A3.48,3.48,0,0,0,1,6.5,3.44,3.44,0,0,0,2,9H0v7H9c4,0,7-1.72,7-4V4C16,1.72,13,0,9,0Z"/><g id="iconBG"><path class="cls-3" d="M2,6.5A2.5,2.5,0,1,1,4.5,9,2.5,2.5,0,0,1,2,6.5M8,10v5H1V10H3l1.5,2L6,10Z"/><path class="cls-3" d="M9,1C6.2,1,3.85,2,3.19,3.26A3.49,3.49,0,0,1,4.5,3,3.5,3.5,0,0,1,5,3a8.16,8.16,0,0,1,4-.92c2.93,0,4.88,1.13,4.88,1.88S11.93,5.88,9,5.88c-.37,0-.73,0-1.07-.05A3.51,3.51,0,0,1,8,6.5,3.44,3.44,0,0,1,7,9H9v6c3.31,0,6-1.34,6-3V4C15,2.34,12.31,1,9,1Z"/></g><path id="iconFG" class="cls-4" d="M9,2.13A8.16,8.16,0,0,0,5,3a3.49,3.49,0,0,1,3,2.78c.34,0,.69.05,1.07.05,2.93,0,4.88-1.13,4.88-1.87S11.93,2.13,9,2.13Z"/></svg>

After

Width:  |  Height:  |  Size: 994 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#f6f6f6;}.cls-1{opacity:0;}.cls-3{fill:none;}.cls-4{fill:#424242;}.cls-5{fill:#f0eff1;}</style></defs><title>UserDefinedType_16x</title><g id="outline"><rect class="cls-1" width="16" height="16"/><path class="cls-2" d="M10.5,7A4.09,4.09,0,0,0,12,4,4,4,0,1,0,4,4,4.09,4.09,0,0,0,5.5,7H2V8.25A2.52,2.52,0,0,0,0,10.5v3a2.53,2.53,0,0,0,2,2.27V16H14V7Z"/></g><g id="icon_bg"><path class="cls-3" d="M3.5,9.5c-1.14,0-2,.53-2,1s.86,1,2,1,2-.53,2-1S4.64,9.5,3.5,9.5Z"/><circle class="cls-4" cx="8" cy="4" r="3"/><path class="cls-4" d="M10,8,8,11,6,8H3.5C5.5,8,7,9.07,7,10.5v3A2.08,2.08,0,0,1,6.32,15H13V8Z"/><path class="cls-4" d="M3.5,9C2.12,9,1,9.67,1,10.5v3C1,14.33,2.12,15,3.5,15S6,14.33,6,13.5v-3C6,9.67,4.88,9,3.5,9Zm0,2.43c-1.08,0-1.92-.5-1.92-.93s.84-.92,1.92-.92,1.92.5,1.92.92S4.58,11.43,3.5,11.43Z"/></g><g id="icon_fg"><path class="cls-5" d="M3.5,9.58c-1.08,0-1.92.5-1.92.92s.84.93,1.92.93,1.92-.5,1.92-.93S4.58,9.58,3.5,9.58Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M16 15h-15v-14h15v14z" id="outline"/><path class="icon-vs-bg" d="M2 2v12h13v-12h-13zm4 11h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2zm4 6h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2zm4 6h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2z" id="iconBg"/><path class="icon-vs-fg" d="M14 7h-3v-2h3v2zm0 1h-3v2h3v-2zm-4-3h-3v2h3v-2zm0 3h-3v2h3v-2zm-4-3h-3v2h3v-2zm0 3h-3v2h3v-2zm8 3h-3v2h3v-2zm-4 0h-3v2h3v-2zm-4 0h-3v2h3v-2z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 755 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-bg{fill:#424242;} .icon-vs-fg{fill:#F0EFF1;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M13 16h-10v-16h10v16z" id="outline"/><path class="icon-vs-bg" d="M4 1v14h8v-14h-8zm7 13h-6v-3h6v3zm0-4h-6v-3h6v3zm0-4h-6v-3h6v3z" id="iconBg"/><path class="icon-vs-fg" d="M11 6h-6v-3h6v3zm0 1h-6v3h6v-3zm0 4h-6v3h6v-3z" id="iconFg"/></svg>

After

Width:  |  Height:  |  Size: 569 B

Some files were not shown because too many files have changed in this diff Show More