This commit is contained in:
mgabdev
2020-05-03 01:22:49 -04:00
parent 196a906cec
commit 055b5a430f
85 changed files with 1110 additions and 1051 deletions

View File

@@ -1,7 +1,4 @@
import classnames from 'classnames/bind'
// Bind CSS Modules global variable `_s` to classNames module
const cx = classnames.bind(_s)
import { CX } from '../constants'
/**
* Renders a divider component
@@ -18,7 +15,7 @@ export default class Divider extends PureComponent {
render() {
const { isSmall, isInvisible } = this.props
const classes = cx({
const classes = CX({
default: 1,
borderBottom1PX: !isInvisible,
borderColorSecondary: !isInvisible,