UNPKG

next

Version:

The React Framework

8 lines (7 loc) 243 B
import * as React from 'react'; type DialogContentProps = { children?: React.ReactNode; className?: string; } & React.HTMLAttributes<HTMLDivElement>; declare const DialogContent: React.FC<DialogContentProps>; export { DialogContent };