3.0.0 • Published 2 years ago

@comparaonline/ui-input-helpers v3.0.0

Weekly downloads
43
License
-
Repository
-
Last release
2 years ago

@comparaonline/ui-input-helpers

Utility helpers to improve the input, using the native HTML attributes like autocomplete and inputmode

Installation

yarn add @comparaonline/ui-input-helpers

Usage

import { AutoCompleteProps, InputModeProps } from '@comparaonline/ui-input-helpers';

const inputProps = {
  ...InputModeProps.numeric,
  ...AutoCompleteProps.email
}
const Input = (props) => (
  <input {...inputProps} {...prop} />
);