UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

13 lines (12 loc) 495 B
/// <reference types="react" /> import * as Dialog from "@radix-ui/react-dialog"; export type ModalContentProps = { children: React.ReactNode; disableAutofocus?: boolean; dialogContentProps?: Omit<Dialog.DialogContentProps, "onOpenAutoFocus" | "className" | "asChild">; container?: HTMLElement | null | undefined; }; export declare const Content: { ({ children, disableAutofocus, container, dialogContentProps, }: ModalContentProps): JSX.Element; displayName: string; };