Fixed NavLink styled buttons.

This commit is contained in:
2018-10-28 21:31:49 +11:00
parent 2bf2a2301f
commit 21aed1b61f

View File

@ -38,7 +38,7 @@ export default props => {
"warning", "manager"
].forEach(e => delete newProps[e]);
type = type || "button";
type = type;
children = children || value;
if(primary) style = "primary";
@ -67,8 +67,8 @@ export default props => {
} else {
//Everything Else (button without a type);
type = "button";
clazzes += " is-not-button";
}
if(style) clazzes += ` o-btn--style-${style}`;