mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
mark the onClick prop required on AccessibleButton
This commit is contained in:
parent
1a2bd55c09
commit
2adc578d28
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ interface IProps extends React.InputHTMLAttributes<Element> {
|
|||
tabIndex?: number;
|
||||
disabled?: boolean;
|
||||
className?: string;
|
||||
onClick?(e?: ButtonEvent): void;
|
||||
onClick(e?: ButtonEvent): void;
|
||||
}
|
||||
|
||||
interface IAccessibleButtonProps extends React.InputHTMLAttributes<Element> {
|
||||
|
|
Loading…
Reference in a new issue