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

chore: Update CKR Dub and Logo References #3082

Open
wants to merge 1 commit into
base: prerelease/minor
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions modules/preview-react/common/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/parts';
19 changes: 19 additions & 0 deletions modules/preview-react/common/lib/parts/_brand-assets.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const CDN_URI = 'https://static.workday.com/brand-logos/';

export const dubLogoBlue = `<img src="${CDN_URI}wd-dub-primary.svg" alt="">`;

export const dubLogoWhite = `<img src="${CDN_URI}wd-dub-reversed.svg" alt="">`;

export const dubLogoMonoBlue = `<img src="${CDN_URI}wd-dub-mono-blue.svg" alt="">`;

export const dubLogoMonoWhite = `<img src="${CDN_URI}wd-dub-mono-white.svg" alt="">`;

export const wdayLogoBlue = `<img src="${CDN_URI}wd-logo-primary.svg" alt="">`;

export const wdayLogoWhite = `<img src="${CDN_URI}wd-logo-reversed.svg" alt="">`;

export const wdayLogoMonoBlue = `<img src="${CDN_URI}wd-logo-mono-blue.svg" alt="">`;

export const wdayLogoMonoWhite = `<img src="${CDN_URI}wd-logo-mono-white.svg" alt="">`;

export const miniWdayLogoBlue = `<img src="${CDN_URI}ck-mini-wday-logo-blue.svg" alt="">`;
1 change: 1 addition & 0 deletions modules/preview-react/common/lib/parts/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './_brand-assets';
1 change: 1 addition & 0 deletions modules/preview-react/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ export * from './side-panel';
export * from './status-indicator';
export * from './text-area';
export * from './text-input';
export * from './common';
Loading