UNPKG

dgz-ui-shared

Version:

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

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