UNPKG

@lifespikes/ui

Version:
10 lines (9 loc) 415 B
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>;