@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
7 lines (6 loc) • 374 B
TypeScript
import { ComponentProps, Props } from "./Dialog.types";
export declare const Dialog: {
({ defaultOpened, id: propId, ...props }: Props): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export declare const DialogComponent: ({ padding, size, radius, title, children, trapFocus, ...props }: ComponentProps) => import("react/jsx-runtime").JSX.Element;