feature: add step prop in Input Text

This commit is contained in:
George Lima 2019-01-08 11:34:36 -03:00
parent 0cdab5071f
commit 77d57c510c
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ type Props = {
rows?: number,
disabled?: boolean,
type?: string,
step?: number,
};
export const InputComponent = ({ inputType, onChange, ...props }: Props) => {