react-restyle-components
Version:
Easy use restyle components
14 lines (13 loc) • 428 B
TypeScript
import React from 'react';
import '../../../../tc.css';
import 'react-datepicker/dist/react-datepicker.css';
interface DatePickerProps {
title: string;
value?: string;
className?: string;
disable?: boolean;
showFormat?: string;
placeholder?: string;
}
export declare const DatePickerComp: ({ title, className, disable, value, showFormat, placeholder, }: DatePickerProps) => React.JSX.Element;
export {};