Fixed NavLink styled buttons.
This commit is contained in:
@ -38,7 +38,7 @@ export default props => {
|
|||||||
"warning", "manager"
|
"warning", "manager"
|
||||||
].forEach(e => delete newProps[e]);
|
].forEach(e => delete newProps[e]);
|
||||||
|
|
||||||
type = type || "button";
|
type = type;
|
||||||
children = children || value;
|
children = children || value;
|
||||||
|
|
||||||
if(primary) style = "primary";
|
if(primary) style = "primary";
|
||||||
@ -67,8 +67,8 @@ export default props => {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
//Everything Else (button without a type);
|
//Everything Else (button without a type);
|
||||||
|
type = "button";
|
||||||
clazzes += " is-not-button";
|
clazzes += " is-not-button";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(style) clazzes += ` o-btn--style-${style}`;
|
if(style) clazzes += ` o-btn--style-${style}`;
|
||||||
|
Reference in New Issue
Block a user