Repository URL to install this package:
|
Version:
4.0.59 ▾
|
import React from 'react'
import { MaterialIcon } from 'atoms/MaterialIcon'
const PlusMinusIcon = props => {
const { className, isDisabled, nowrap, onClick, type } = props
const attributes = {
className,
isDisabled,
nowrap,
onClick,
type: type ? type : 'plus',
}
return <MaterialIcon {...attributes} />
}
export { PlusMinusIcon }
export default PlusMinusIcon