From 9087616287a010fd9d654156a193d43267c1c45f Mon Sep 17 00:00:00 2001 From: Mifdha Milan Date: Fri, 5 Jan 2024 19:16:13 +0530 Subject: [PATCH] oxd-add-question,oxd-add-star, oxd-best-match,oxd-save-pin-default,oxd-star icons added --- components/src/core/components/Icon/icons.ts | 38 +++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/components/src/core/components/Icon/icons.ts b/components/src/core/components/Icon/icons.ts index ba5894bcf..d70fe1e48 100644 --- a/components/src/core/components/Icon/icons.ts +++ b/components/src/core/components/Icon/icons.ts @@ -1394,6 +1394,38 @@ export const oxdOrange: icon = { value: ``, }; +export const oxdAddQuestion: icon = { + name: 'oxd-add-question', + value: ` + + + `, +}; + +export const oxdAddStar: icon = { + name: 'oxd-add-star', + value: ``, +}; + +export const oxdBestMatch: icon = { + name: 'oxd-best-match', + value: ` + + + + `, +}; + +export const oxdSavePinDefault: icon = { + name: 'oxd-save-pin-default', + value: ``, +}; + +export const oxdStar: icon = { + name: 'oxd-star', + value: ``, +}; + const icons: Icons = { 'oxd-likes': oxdLikes, 'oxd-birthday': oxdBirthday, @@ -1548,7 +1580,11 @@ const icons: Icons = { 'oxd-window-in': oxdWindowIn, 'oxd-window-out': oxdWindowOut, 'oxd-orange': oxdOrange, - + 'oxd-add-question': oxdAddQuestion, + 'oxd-add-star': oxdAddStar, + 'oxd-best-match': oxdBestMatch, + 'oxd-save-pin-default': oxdSavePinDefault, + 'oxd-star': oxdStar, }; export default icons;