timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
12 lines (11 loc) • 429 B
TypeScript
import { default as React } from 'react';
type InputProps = {
onChange: (e: React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>) => void;
value: string;
label: string;
className?: string;
dataTestid?: string;
style?: React.CSSProperties;
};
declare function Input({ onChange, value, label, className, dataTestid, style, }: InputProps): import("react/jsx-runtime").JSX.Element;
export default Input;