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