Convert Tooltip to TypeScript

pull/21833/head
Germain Souquet 2021-05-24 15:01:59 +01:00
parent b5295b03ce
commit 19569f3897
2 changed files with 15 additions and 4 deletions

View File

@ -19,8 +19,9 @@ import {_t} from "../../../languageHandler";
import {replaceableComponent} from "../../../utils/replaceableComponent";
interface IProps {
w?: number,
h?: number,
w?: number;
h?: number;
children?: React.ReactNode;
}
@replaceableComponent("views.elements.InlineSpinner")
@ -37,7 +38,9 @@ export default class InlineSpinner extends React.PureComponent<IProps> {
className="mx_InlineSpinner_icon mx_Spinner_icon"
style={{width: this.props.w, height: this.props.h}}
aria-label={_t("Loading...")}
/>
>
{this.props.children}
</div>
</div>
);
}

View File

@ -19,8 +19,16 @@ import React from 'react';
import * as sdk from '../../../index';
import {replaceableComponent} from "../../../utils/replaceableComponent";
interface IProps {
helpText: string;
}
interface IState {
hover: boolean;
}
@replaceableComponent("views.elements.TooltipButton")
export default class TooltipButton extends React.Component {
export default class TooltipButton extends React.Component<IProps, IState> {
state = {
hover: false,
};