Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Workplace Search] Update SourceIcon to match latest changes in ent-search #83714

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/

import confluence from './confluence.svg';
import custom from './custom.svg';
import dropbox from './dropbox.svg';
import github from './github.svg';
import gmail from './gmail.svg';
import googleDrive from './google_drive.svg';
import jira from './jira.svg';
import jiraServer from './jira_server.svg';
import oneDrive from './onedrive.svg';
import salesforce from './salesforce.svg';
import serviceNow from './servicenow.svg';
import sharePoint from './sharepoint.svg';
import slack from './slack.svg';
import zendesk from './zendesk.svg';

export const imagesFull = {
confluence,
confluenceCloud: confluence,
confluenceServer: confluence,
custom,
dropbox,
github,
githubEnterpriseServer: github,
gmail,
googleDrive,
jira,
jiraServer,
jiraCloud: jira,
oneDrive,
salesforce,
salesforceSandbox: salesforce,
serviceNow,
sharePoint,
slack,
zendesk,
} as { [key: string]: string };
Loading