mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Use MouseEventHandler as type
This commit is contained in:
parent
3ecd67aa80
commit
6b6af28ea9
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||
limitations under the License.
|
||||
*/
|
||||
|
||||
import React from "react";
|
||||
import React, { MouseEventHandler } from "react";
|
||||
import { useWysiwyg } from "@matrix-org/matrix-wysiwyg";
|
||||
import classNames from "classnames";
|
||||
|
||||
|
@ -39,7 +39,7 @@ function Tooltip({ label, keyCombo }: TooltipProps) {
|
|||
interface ButtonProps extends TooltipProps {
|
||||
className: string;
|
||||
isActive: boolean;
|
||||
onClick: () => void;
|
||||
onClick: MouseEventHandler<HTMLButtonElement>;
|
||||
}
|
||||
|
||||
function Button({ label, keyCombo, onClick, isActive, className }: ButtonProps) {
|
||||
|
|
Loading…
Reference in a new issue