@trackpilots/week-picker
Version:
A customizable week picker component for React, built with Tailwind CSS.
19 lines (15 loc) • 498 B
TypeScript
declare module "@trackpilots/date-picker" {
import React from "react";
import { IconType } from "react-icons";
export interface DateFilterProps {
defaultChoosenDate?: string | null;
startDate?: Date | null;
endDate?: Date | null;
onSelect?: (date: Date | null) => void;
onChoose?: (date: Date | null) => void;
selectedColor?: string;
icon?: IconType;
}
const DateFilterProps: React.FC<DateFilterProps>;
export default DateFilterProps;
}