tanuki-ui
Version:
HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor
10 lines (9 loc) • 496 B
TypeScript
import { Dialog } from '../Dialog';
import * as React from "react";
export type PopupLayoutProps = React.PropsWithChildren<{
variant?: "alert" | "drawer" | string;
potal?: boolean;
animationName?: string;
direction?: "ltr" | "rtl" | "ttb" | "btt";
}> & React.ComponentPropsWithRef<typeof Dialog>;
export declare const PopupLayout: React.MemoExoticComponent<({ potal, open, onClose, onCancel, children, variant, animationName, direction }: PopupLayoutProps) => React.JSX.Element>;