@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
10 lines (9 loc) • 312 B
TypeScript
import { ReactNode } from "react";
declare type DialogContentAlign = "left" | "center" | "right";
interface DialogContentProps {
align?: DialogContentAlign;
isolated?: boolean;
children?: ReactNode;
}
export default function DialogContent(props: DialogContentProps): JSX.Element;
export {};