Repository URL to install this package:
Version:
0.9.6 ▾
|
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 }