DocSpace-client/packages/shared/utils/image-thirdparties.ts

58 lines
2.9 KiB
TypeScript

import AppleidSvgUrl from "PUBLIC_DIR/images/thirdparties/appleid.svg?url";
import BitlySvgUrl from "PUBLIC_DIR/images/thirdparties/bitly.svg?url";
import BoxSvgUrl from "PUBLIC_DIR/images/thirdparties/box.svg?url";
import ClickatellSvgUrl from "PUBLIC_DIR/images/thirdparties/clickatell.svg?url";
import DocusignSvgUrl from "PUBLIC_DIR/images/thirdparties/docusign.svg?url";
import DropboxSvgUrl from "PUBLIC_DIR/images/thirdparties/dropbox.svg?url";
import EasybibSvgUrl from "PUBLIC_DIR/images/thirdparties/easybib.svg?url";
import FacebookSvgUrl from "PUBLIC_DIR/images/thirdparties/facebook.svg?url";
import FirebaseSvgUrl from "PUBLIC_DIR/images/thirdparties/firebase.svg?url";
import GoogleSvgUrl from "PUBLIC_DIR/images/thirdparties/google.svg?url";
import GooglecloudSvgUrl from "PUBLIC_DIR/images/thirdparties/googlecloud.svg?url";
import LinkedinSvgUrl from "PUBLIC_DIR/images/thirdparties/linkedin.svg?url";
import MailruSvgUrl from "PUBLIC_DIR/images/thirdparties/mailru.svg?url";
import MicrosoftSvgUrl from "PUBLIC_DIR/images/thirdparties/microsoft.svg?url";
import RackspaceSvgUrl from "PUBLIC_DIR/images/thirdparties/rackspace.svg?url";
import S3SvgUrl from "PUBLIC_DIR/images/thirdparties/s3.svg?url";
import SelectelSvgUrl from "PUBLIC_DIR/images/thirdparties/selectel.svg?url";
import SkydriveSvgUrl from "PUBLIC_DIR/images/thirdparties/skydrive.svg?url";
import SmscSvgUrl from "PUBLIC_DIR/images/thirdparties/smsc.svg?url";
import TelegramSvgUrl from "PUBLIC_DIR/images/thirdparties/telegram.svg?url";
import TwilioSvgUrl from "PUBLIC_DIR/images/thirdparties/twilio.svg?url";
import TwitterSvgUrl from "PUBLIC_DIR/images/thirdparties/twitter.svg?url";
import VkSvgUrl from "PUBLIC_DIR/images/thirdparties/vk.svg?url";
import WordpressSvgUrl from "PUBLIC_DIR/images/thirdparties/wordpress.svg?url";
import YahooSvgUrl from "PUBLIC_DIR/images/thirdparties/yahoo.svg?url";
import YandexSvgUrl from "PUBLIC_DIR/images/thirdparties/yandex.svg?url";
import ZoomSvgUrl from "PUBLIC_DIR/images/thirdparties/zoom.svg?url";
export const thirdpartiesLogo = new Map([
["appleid.svg", AppleidSvgUrl],
["bitly.svg", BitlySvgUrl],
["box.svg", BoxSvgUrl],
["clickatell.svg", ClickatellSvgUrl],
["docusign.svg", DocusignSvgUrl],
["dropbox.svg", DropboxSvgUrl],
["easybib.svg", EasybibSvgUrl],
["facebook.svg", FacebookSvgUrl],
["firebase.svg", FirebaseSvgUrl],
["google.svg", GoogleSvgUrl],
["googlecloud.svg", GooglecloudSvgUrl],
["linkedin.svg", LinkedinSvgUrl],
["mailru.svg", MailruSvgUrl],
["microsoft.svg", MicrosoftSvgUrl],
["rackspace.svg", RackspaceSvgUrl],
["s3.svg", S3SvgUrl],
["selectel.svg", SelectelSvgUrl],
["skydrive.svg", SkydriveSvgUrl],
["smsc.svg", SmscSvgUrl],
["telegram.svg", TelegramSvgUrl],
["twilio.svg", TwilioSvgUrl],
["twitter.svg", TwitterSvgUrl],
["vk.svg", VkSvgUrl],
["wordpress.svg", WordpressSvgUrl],
["yahoo.svg", YahooSvgUrl],
["yandex.svg", YandexSvgUrl],
["zoom.svg", ZoomSvgUrl],
]);