diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6cd7e5b03f..547f278b96 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -9,6 +9,7 @@ ### Non breaking UI changes - add possibility to disable rotation of the dropdown toggle icon on active state +- add possibility to style bank-id button as secondary ## Testing diff --git a/src/App/ComponentsDocumentation/components/Buttons/constants.js b/src/App/ComponentsDocumentation/components/Buttons/constants.js index d8f54782b7..50d35e1bb3 100644 --- a/src/App/ComponentsDocumentation/components/Buttons/constants.js +++ b/src/App/ComponentsDocumentation/components/Buttons/constants.js @@ -289,6 +289,24 @@ export const overviewButtons = { }, ], }, + { + id: "button-type", + title: "Button type", + values: [ + { + name: "Primary", + value: { + type: "primary", + }, + }, + { + name: "Secondary", + value: { + type: "secondary", + }, + }, + ], + }, ], }, title: "BankID button",