@lifespikes/ui
Version:
Lifespikes ui
10 lines (9 loc) • 415 B
TypeScript
import { FC, PropsWithChildren, ReactNode } from 'react';
import { DialogContentProps } from '@lifespikes/ui/components/ui';
import { ClosableProps } from '@lifespikes/ui/types/global';
export interface SimpleDialogProps extends PropsWithChildren, ClosableProps, DialogContentProps {
title?: string;
description?: string;
trigger?: ReactNode;
}
export declare const SimpleDialog: FC<SimpleDialogProps>;