ar-design
Version:
AR Design is a (react | nextjs) ui library.
12 lines (11 loc) • 464 B
TypeScript
import { IBorder, IColors, IStatus, IValidation, IVariant } from "../../../libs/types/IGlobalProps";
type Props = {
label?: string;
onChange: (value: string) => void;
config?: {
locale?: Intl.LocalesArgument;
isClock?: boolean;
isFooterButton?: boolean;
};
} & IVariant & IColors & IStatus & IBorder & IValidation & Omit<React.InputHTMLAttributes<HTMLInputElement>, "children" | "onChange" | "color">;
export default Props;