Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
molecules
/
IncrementDecrement
/
IncrementDecrement.d.ts
|
|---|
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;