Progress
This commit is contained in:
@@ -1,7 +1,25 @@
|
||||
import classnames from 'classnames/bind'
|
||||
|
||||
const cx = classnames.bind(_s)
|
||||
|
||||
export default class Divider extends PureComponent {
|
||||
static propTypes = {
|
||||
small: PropTypes.bool
|
||||
}
|
||||
render() {
|
||||
const { small } = this.props
|
||||
|
||||
const classes = cx({
|
||||
default: 1,
|
||||
borderBottom1PX: 1,
|
||||
borderColorSecondary2: 1,
|
||||
width100PC: 1,
|
||||
marginBottom15PX: !small,
|
||||
marginVertical10PX: small,
|
||||
})
|
||||
|
||||
return (
|
||||
<div className={[_s.default, _s.borderBottom1PX, _s.borderColorSecondary2, _s.marginBottom15PX, _s.width100PC].join(' ')} />
|
||||
<div className={classes} />
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user