Updated classNames constant in components that werent using

• Updated:
- classNames constant in components that werent using
This commit is contained in:
mgabdev
2020-08-18 19:39:06 -05:00
parent 99982c0391
commit 2f4700e89f
23 changed files with 64 additions and 112 deletions

View File

@@ -1,13 +1,11 @@
import React from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames/bind'
import { CX } from '../constants'
import Button from './button'
import Icon from './icon'
import Image from './image'
import Text from './text'
const cx = classNames.bind(_s)
class ListItem extends React.PureComponent {
handleOnClick = (e) => {
@@ -55,7 +53,7 @@ class ListItem extends React.PureComponent {
const imageSize = large ? '22px' : '18px'
const showActive = isActive !== undefined
const containerClasses = cx({
const containerClasses = CX({
d: 1,
cursorPointer: 1,
noUnderline: 1,
@@ -73,14 +71,14 @@ class ListItem extends React.PureComponent {
borderBottom1PX: !isLast,
})
const iconClasses = cx({
const iconClasses = CX({
mr10: !large,
mr15: large,
cPrimary: !!icon,
circle: !icon && !!image,
})
const textContainerClasses = cx({
const textContainerClasses = CX({
d: 1,
pr5: 1,
maxW100PC42PX: !hideArrow || showActive,