diff --git a/CHANGELOG.md b/CHANGELOG.md index ababf83f21f..38d4319c883 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,11 @@ The types of changes are: ### Added - Adds support for custom get experiences fn and custom patch notices served fn [#4410](https://github.com/ethyca/fides/pull/4410) +### Changed +- Button ordering in fides.js UI [#4407](https://github.com/ethyca/fides/pull/4407) +- Add different classnames to consent buttons for easier selection [#4411](https://github.com/ethyca/fides/pull/4411) + + ### Fixed - User preferences from cookie should always override experience preferences [#4405](https://github.com/ethyca/fides/pull/4405) diff --git a/clients/fides-js/src/components/Button.tsx b/clients/fides-js/src/components/Button.tsx index da774381316..ff588754466 100644 --- a/clients/fides-js/src/components/Button.tsx +++ b/clients/fides-js/src/components/Button.tsx @@ -5,17 +5,19 @@ interface ButtonProps { buttonType: ButtonType; label?: string; onClick?: () => void; + className?: string; } const Button: FunctionComponent = ({ buttonType, label, onClick, + className = "", }) => (