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;