dgz-ui-shared
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library
12 lines • 544 B
TypeScript
import { type HTMLAttributes } from "react";
import { type DateRange } from "react-day-picker";
type DateRangePickerProps = HTMLAttributes<HTMLDivElement> & {
format?: string;
placeholder?: string;
selected?: DateRange;
timezone?: string;
onRangeSelected?: (value?: DateRange) => void;
};
export declare const DateRangePicker: ({ className, format, selected, timezone, onRangeSelected, placeholder, }: DateRangePickerProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=DateRangePicker.d.ts.map