UNPKG

ar-design

Version:

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

7 lines (6 loc) 298 B
import { IColors, IVariant } from "../../../../libs/types/IGlobalProps"; interface IProps extends IVariant, IColors, Omit<React.InputHTMLAttributes<HTMLInputElement>, "children" | "color"> { character: number; onChange?: React.ChangeEventHandler<HTMLInputElement>; } export default IProps;