diff --git a/components/system/components/Buttons.js b/components/system/components/Buttons.js index 6d7c851f..2539750c 100644 --- a/components/system/components/Buttons.js +++ b/components/system/components/Buttons.js @@ -112,6 +112,7 @@ const STYLES_BUTTON_SECONDARY = css` color: ${Constants.system.black}; background-color: ${Constants.system.grayLight5}; box-shadow: 0 0 0 1px ${Constants.semantic.bgLight} inset; + text-decoration: none; :hover { background-color: ${Constants.system.grayLight4}; @@ -156,6 +157,16 @@ export const ButtonSecondary = (props) => { ); } + if (props.type === "link") { + return ( + + ); + } + return (