Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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