mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
fix lint
This commit is contained in:
parent
8cb362002b
commit
0dfb0f5468
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,8 @@ import AccessibleButton from "./AccessibleButton";
|
|||
export default function FormButton(props) {
|
||||
const {className, label, kind, ...restProps} = props;
|
||||
const newClassName = (className || "") + " mx_FormButton";
|
||||
const allProps = Object.assign({}, restProps, {className: newClassName, kind: kind || "primary", children: [label]});
|
||||
const allProps = Object.assign({}, restProps,
|
||||
{className: newClassName, kind: kind || "primary", children: [label]});
|
||||
return React.createElement(AccessibleButton, allProps);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue