element-web/src/components/views/elements/StyledRadioButton.tsx

49 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-06-10 15:03:00 +03:00
/*
Copyright 2020 The Matrix.org Foundation C.I.C.
2020-06-10 15:49:52 +03:00
Licensed under the Apache License, Version 2.0 (the "License");
2020-06-10 15:03:00 +03:00
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
2020-06-10 15:49:52 +03:00
2020-06-10 15:03:00 +03:00
http://www.apache.org/licenses/LICENSE-2.0
2020-06-10 15:49:52 +03:00
2020-06-10 15:03:00 +03:00
Unless required by applicable law or agreed to in writing, software
2020-06-10 15:49:52 +03:00
distributed under the License is distributed on an "AS IS" BASIS,
2020-06-10 15:03:00 +03:00
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.
*/
import React from 'react';
import classnames from 'classnames';
interface IProps extends React.InputHTMLAttributes<HTMLInputElement> {
}
interface IState {
}
export default class StyledRadioButton extends React.PureComponent<IProps, IState> {
public static readonly defaultProps = {
className: '',
}
public render() {
const { children, className, disabled, ...otherProps } = this.props;
const _className = classnames(
'mx_RadioButton',
className,
{
"mx_RadioButton_disabled": disabled,
"mx_RadioButton_enabled": !disabled,
});
return <label className={_className}>
<input type='radio' disabled={disabled} {...otherProps} />
2020-06-10 15:03:00 +03:00
{/* Used to render the radio button circle */}
<div><div></div></div>
<span>{children}</span>
<div className="mx_RadioButton_spacer" />
</label>
}
}