File size: 768 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import clsx from 'clsx';
import PropTypes from 'prop-types';
import { Component } from 'react';
import SegmentedControlItem from './item';
import './style.scss';
export default class SegmentedControl extends Component {
static Item = SegmentedControlItem;
static propTypes = {
className: PropTypes.string,
compact: PropTypes.bool,
primary: PropTypes.bool,
style: PropTypes.object,
children: PropTypes.node.isRequired,
};
render() {
const segmentedClasses = {
'is-compact': this.props.compact,
'is-primary': this.props.primary,
};
return (
<ul
className={ clsx( 'segmented-control', segmentedClasses, this.props.className ) }
style={ this.props.style }
role="radiogroup"
>
{ this.props.children }
</ul>
);
}
}
|