Files
personal-website/components/Input/types.ts
T
2023-03-19 18:21:12 +01:00

11 lines
266 B
TypeScript

export interface Props {
placeholder?: string;
type: 'text' | 'email';
variant: 'small' | 'big';
name: string;
value: string;
required?: boolean;
onChange?: (event: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
className?: string;
}