@vurilo/nepali-date-picker
Version:
Nepali Calendars, date and time pickers based on Mantine components
16 lines (15 loc) • 577 B
TypeScript
import { Factory, InputBaseProps, __InputStylesNames, ElementProps } from '@mantine/core';
export interface TimeInputProps extends InputBaseProps, ElementProps<'input', 'size'> {
/** Determines whether seconds input should be rendered */
withSeconds?: boolean;
}
export type TimeInputFactory = Factory<{
props: TimeInputProps;
ref: HTMLInputElement;
stylesNames: __InputStylesNames;
}>;
export declare const TimeInput: import("@mantine/core").MantineComponent<{
props: TimeInputProps;
ref: HTMLInputElement;
stylesNames: __InputStylesNames;
}>;