UNPKG

dgz-ui-shared

Version:

Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library

8 lines 613 B
import type { FieldValues } from 'react-hook-form'; import { type FormItemProps, type InputProps } from 'dgz-ui/form'; import type { ButtonProps } from 'dgz-ui/button'; export type MyDateRangePickerProps<TFieldValues extends FieldValues> = FormItemProps<TFieldValues> & ButtonProps & InputProps & { format?: string; }; export declare const MyDateRangePicker: <TFieldValues extends FieldValues>({ control, name, label, helperText, required, rules, format, placeholder, ...props }: MyDateRangePickerProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MyDateRangePicker.d.ts.map