geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
18 lines • 448 B
TypeScript
export interface OTPInputProps {
length: number;
containerClassName?: string;
className?: string;
onChange?: (value: string) => void;
disabled?: boolean;
isError?: boolean;
message?: string;
value?: string;
}
export interface InputOTPSlotProps {
index: number;
className?: string;
isError?: boolean;
disabled?: boolean;
style?: React.CSSProperties;
}
//# sourceMappingURL=otp-input.types.d.ts.map