Skip to content

Commit 63f2111

Browse files
authored
feat: Update CKR Dub and Logo References (#3089)
Fixes: #3012 Updated and added new dub and logo references in `preview`. [category:Components] Release Note: Workday has new logos with updated colors. We've added these to the `preview` package for a smooth transition for consumers. If you would like to consume these, here is the import: ```tsx import {dubLogoPrimary, dubLogoReversed} from '@workday/canvas-kit-preview-react/common' ```
1 parent 4fea25c commit 63f2111

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

modules/preview-react/common/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './lib/parts';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
const CDN_URI = 'https://static.workday.com/brand-logos/';
2+
3+
export const dubLogoPrimary = `<img src="${CDN_URI}wd-dub-primary.svg" alt="">`;
4+
5+
export const dubLogoReversed = `<img src="${CDN_URI}wd-dub-reversed.svg" alt="">`;
6+
7+
export const dubLogoMonoBlue = `<img src="${CDN_URI}wd-dub-mono-blue.svg" alt="">`;
8+
9+
export const dubLogoMonoWhite = `<img src="${CDN_URI}wd-dub-mono-white.svg" alt="">`;
10+
11+
export const wdayLogoPrimary = `<img src="${CDN_URI}wd-logo-primary.svg" alt="">`;
12+
13+
export const wdayLogoReversed = `<img src="${CDN_URI}wd-logo-reversed.svg" alt="">`;
14+
15+
export const wdayLogoMonoBlue = `<img src="${CDN_URI}wd-logo-mono-blue.svg" alt="">`;
16+
17+
export const wdayLogoMonoWhite = `<img src="${CDN_URI}wd-logo-mono-white.svg" alt="">`;
18+
19+
export const miniWdayLogoBlue = `<img src="${CDN_URI}ck-mini-wday-logo-blue.svg" alt="">`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './_brand-assets';

0 commit comments

Comments
 (0)