febo-ui
Version:
Acelere seu Desenvolvimento com Nossa Biblioteca de Componentes para React, Febo UI
18 lines • 693 B
TypeScript
import { ChangeEvent } from "react";
interface DateProps {
value: string;
minDate?: string;
maxDate?: string;
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
disabled?: boolean;
bold?: boolean;
border?: "default" | "pill" | "rounded";
borderStyle?: "dotted" | "dashed" | "solid";
borderColor?: string;
colorDate?: string;
backgroundColorInput?: string;
displayHours?: string;
}
declare function Date({ value, minDate, maxDate, onChange, disabled, bold, border, borderStyle, borderColor, colorDate, backgroundColorInput, displayHours }: DateProps): JSX.Element;
export default Date;
//# sourceMappingURL=index.d.ts.map