UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

13 lines (12 loc) 507 B
import { IBorder, IColors, IDisabled, IPlaceholder, IUpperCase, IValidation, IVariant } from "../../../../libs/types/IGlobalProps"; interface IProps extends IVariant, IColors, IBorder, IUpperCase, IValidation, IPlaceholder, IDisabled { name: string; value: string | number | readonly string[] | undefined; onChange?: React.ChangeEventHandler<HTMLInputElement>; locale?: Intl.LocalesArgument; digits?: { minimum?: number; maximum?: number; }; } export default IProps;