UNPKG

ar-design

Version:

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

9 lines (8 loc) 433 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; } export default IProps;