2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
import { PureComponent } from 'react';
|
2017-03-25 10:01:43 +11:00
|
|
|
|
2019-08-04 03:10:50 +10:00
|
|
|
const iconStyle = {
|
|
|
|
height: null,
|
|
|
|
lineHeight: '27px',
|
|
|
|
width: `${18 * 1.28571429}px`,
|
|
|
|
};
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
export default class TextIconButton extends PureComponent {
|
2017-03-25 10:01:43 +11:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
|
|
|
label: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
2017-05-21 01:31:47 +10:00
|
|
|
ariaControls: PropTypes.string,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
2017-03-25 10:01:43 +11:00
|
|
|
render () {
|
2017-04-24 04:33:44 +10:00
|
|
|
const { label, title, active, ariaControls } = this.props;
|
2017-03-25 10:01:43 +11:00
|
|
|
|
|
|
|
return (
|
2019-08-04 03:10:50 +10:00
|
|
|
<button
|
2022-11-05 23:43:37 +11:00
|
|
|
type='button'
|
2019-08-04 03:10:50 +10:00
|
|
|
title={title}
|
|
|
|
aria-label={title}
|
|
|
|
className={`text-icon-button ${active ? 'active' : ''}`}
|
|
|
|
aria-expanded={active}
|
2022-05-16 19:18:35 +10:00
|
|
|
onClick={this.props.onClick}
|
2019-08-04 03:10:50 +10:00
|
|
|
aria-controls={ariaControls} style={iconStyle}
|
|
|
|
>
|
2017-03-25 10:01:43 +11:00
|
|
|
{label}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|