react-time-picker
Version:
A time picker for your React app.
9 lines (8 loc) • 339 B
TypeScript
import Input from './Input.js';
type Hour24InputProps = {
maxTime?: string;
minTime?: string;
value?: string | null;
} & Omit<React.ComponentProps<typeof Input>, 'max' | 'min' | 'name' | 'nameForClass'>;
export default function Hour24Input({ maxTime, minTime, ...otherProps }: Hour24InputProps): React.ReactElement;
export {};