UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

13 lines (12 loc) 487 B
import * as React from "react"; import type * as Common from "../../../common/types"; interface Props extends Common.Globals { shown: boolean; lockScrolling?: boolean; dialogId: string; labelClose: React.ReactNode; children: React.ReactNode; onClose: (ev: React.SyntheticEvent<HTMLElement>) => void; } declare const DialogContent: ({ dataTest, shown, lockScrolling, labelClose, dialogId, children, onClose, }: Props) => JSX.Element; export default DialogContent;