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 { IncrementDecrementProps } from './typings';
/**
 * @todo Text input box needs to be added in this Component
 * as of now its just a up and down arrows within it
 */
declare class IncrementDecrement extends React.PureComponent<IncrementDecrementProps> {
    static defaultProps: {
        className: string;
    };
    render(): JSX.Element;
}
export { IncrementDecrement };
export default IncrementDecrement;