Files
maya-contigo-ui/dist/Input/Input.d.ts
2025-10-23 19:55:47 +00:00

9 lines
311 B
TypeScript

import React from 'react';
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
label?: string;
error?: string;
helperText?: string;
}
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
export default Input;