2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 New Vector Ltd.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-09-06 20:35:52 +03:00
|
|
|
import React from "react";
|
|
|
|
import createReactClass from 'create-react-class';
|
2020-04-25 00:14:41 +03:00
|
|
|
import {_t} from "../../../languageHandler";
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-12-20 03:45:24 +03:00
|
|
|
export default createReactClass({
|
2018-04-12 01:58:04 +03:00
|
|
|
displayName: 'InlineSpinner',
|
|
|
|
|
|
|
|
render: function() {
|
2018-10-27 06:50:35 +03:00
|
|
|
const w = this.props.w || 16;
|
|
|
|
const h = this.props.h || 16;
|
|
|
|
const imgClass = this.props.imgClassName || "";
|
2020-04-25 00:14:41 +03:00
|
|
|
const alt = this.props.alt || _t("Loading...");
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="mx_InlineSpinner">
|
2020-04-25 00:14:41 +03:00
|
|
|
<img
|
|
|
|
src={require("../../../../res/img/spinner.svg")}
|
|
|
|
width={w}
|
|
|
|
height={h}
|
|
|
|
className={imgClass}
|
|
|
|
alt={alt}
|
|
|
|
/>
|
2018-04-12 01:58:04 +03:00
|
|
|
</div>
|
|
|
|
);
|
2018-10-27 06:50:35 +03:00
|
|
|
},
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|