UNPKG

react-flexible-datepicker

Version:
9 lines (8 loc) 249 B
import React, { HTMLProps } from 'react'; export interface ICardProps extends HTMLProps<HTMLDivElement> { classes?: { root?: string; }; } declare const Card: ({ classes, children }: ICardProps) => React.JSX.Element; export { Card };