feat: Add support for dark mode node icons and colors (#9412)

Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
This commit is contained in:
Elias Meire
2024-06-06 13:34:30 +02:00
committed by GitHub
parent 68e856d155
commit 600013a1ab
294 changed files with 1421 additions and 519 deletions

View File

@@ -1,11 +1,11 @@
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
import type { ICredentialType, INodeProperties, Icon } from 'n8n-workflow';
export class MicrosoftOAuth2Api implements ICredentialType {
name = 'microsoftOAuth2Api';
extends = ['oAuth2Api'];
icon = 'file:icons/Microsoft.svg';
icon: Icon = 'file:icons/Microsoft.svg';
displayName = 'Microsoft OAuth2 API';