UNPKG

@y0c/react-datepicker

Version:

Flexible, Reusable, Mobile friendly DatePicker Component

12 lines (11 loc) 317 B
import * as React from 'react'; interface Props { /** Backdrop background color invert option */ invert?: boolean; /** Backdrop show or hide */ show?: boolean; /** Backdrop click event */ onClick?: () => void; } declare const Backdrop: React.FunctionComponent<Props>; export default Backdrop;