From 2946921ff5f40bd4630fda3d9ac12271c76ebe9b Mon Sep 17 00:00:00 2001 From: lahirusudesh Date: Tue, 18 Jun 2024 05:56:53 +0530 Subject: [PATCH] PB-267: Added pre-boarding related OXD icons (#782) * Add new icons oxd-dollar-note oxd-document-consent oxd-document-disclosure oxd-document-info oxd-document-home oxd-document-text-2 oxd-employee-info-card oxd-employee-reference oxd-employee-question oxd-employee-welcome oxd-contact oxd-emergency-contact oxd-wallet * Update changelog.md * revert unintended changes --------- Co-authored-by: lahirusudesh Co-authored-by: lahirud --- changelog.md | 2 + components/src/core/components/Icon/icons.ts | 128 +++++++++++++++++++ 2 files changed, 130 insertions(+) diff --git a/changelog.md b/changelog.md index 4e138c1a..94bad0ca 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,5 @@ +2024-06-17 - d2aa0e5610ea393c9cd0e963123a84e4ff8d4f4c - Icon/icons.ts - Add oxd-dollar-note,oxd-document-consent,oxd-document-disclosure,oxd-document-info,oxd-document-home,oxd-document-text-2,oxd-employee-info-card,oxd-employee-reference,oxd-employee-question,oxd-employee-welcome,oxd-contact,oxd-emergency-contact,oxd-wallet icons + 2024-05-14 - f91c5a9ac899c5e8a431447d7611d95b9ca38cce - styles/_colors.scss - label-feedback-reject color changed 2024-05-14 - f91c5a9ac899c5e8a431447d7611d95b9ca38cce - Icon/icons.ts - Add oxd-unarchive icon diff --git a/components/src/core/components/Icon/icons.ts b/components/src/core/components/Icon/icons.ts index 17024868..1f68d641 100644 --- a/components/src/core/components/Icon/icons.ts +++ b/components/src/core/components/Icon/icons.ts @@ -1551,6 +1551,121 @@ export const oxdUnarchive: icon = { `, }; +export const oxdDollarNote: icon = { + name: 'oxd-dollar-note', + value: ` + +`, +}; +export const oxdDocumnetConsent: icon = { + name: 'oxd-document-consent', + value: ` + + + + + + + + +`, +}; +export const oxdDocumnetDisclosure: icon = { + name: 'oxd-document-disclosure', + value: ` + + + +`, +}; +export const oxdDocumentInfo: icon = { + name: 'oxd-document-info', + value: ` + + +`, +}; +export const oxdDocumentHome: icon = { + name: 'oxd-document-home', + value: ` + + + +`, +}; +export const oxdDocumentText2: icon = { + name: 'oxd-document-text-2', + value: ` + +`, +}; +export const oxdEmployeeInfoCard: icon = { + name: 'oxd-employee-info-card', + value: ` + + + + + + + + +`, +}; +export const oxdEmployeeReference: icon = { + name: 'oxd-employee-reference', + value: ` + + + + + + + + + + + + +`, +}; +export const oxdEmployeeQuestion: icon = { + name: 'oxd-employee-question', + value: ` + +`, +}; +export const oxdEmployeeWelcome: icon = { + name: 'oxd-employee-welcome', + value: ` + +`, +}; +export const oxdContact: icon = { + name: 'oxd-contact', + value: ` + +`, +}; +export const oxdEmergencyContact: icon = { + name: 'oxd-emergency-contact', + value: ` + + + + + + +`, +}; + +export const oxdWallet: icon = { + name: 'oxd-wallet', + value: ` + +`, +}; + const icons: Icons = { 'oxd-likes': oxdLikes, 'oxd-birthday': oxdBirthday, @@ -1727,6 +1842,19 @@ const icons: Icons = { 'oxd-shortlist': oxdShortlist, 'oxd-time-zone': oxdTimeZone, 'oxd-unarchive': oxdUnarchive, + 'oxd-dollar-note': oxdDollarNote, + 'oxd-document-consent': oxdDocumnetConsent, + 'oxd-document-disclosure': oxdDocumnetDisclosure, + 'oxd-document-info': oxdDocumentInfo, + 'oxd-document-home': oxdDocumentHome, + 'oxd-document-text-2': oxdDocumentText2, + 'oxd-employee-info-card': oxdEmployeeInfoCard, + 'oxd-employee-reference': oxdEmployeeReference, + 'oxd-employee-question': oxdEmployeeQuestion, + 'oxd-employee-welcome': oxdEmployeeWelcome, + 'oxd-contact': oxdContact, + 'oxd-emergency-contact': oxdEmergencyContact, + 'oxd-wallet': oxdWallet, }; export default icons;