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:
interface ClickHandler {
  (event: Event): void
}

interface RenderProp {
  (props: PlusMinusProps): any
}

interface RenderWrapper {
  (props: PlusMinusProps, attributes?: any, icon?: any): any
}

interface VectorProps {
  className: string
  isDisabled: boolean
  onClick?: ClickHandler
}

interface PlusMinusProps extends VectorProps {
  type: string
  renderIconView: RenderProp
  renderWrapper: RenderWrapper
}

export { VectorProps, PlusMinusProps }