UNPKG

reablocks

Version:
18 lines (17 loc) 581 B
import { default as React, ReactNode, HTMLAttributes } from 'react'; import { DialogTheme } from './DialogTheme'; export interface DialogFooterProps extends HTMLAttributes<HTMLElement> { /** * The content to display in the dialog footer. */ children?: ReactNode; /** * Additional CSS class name for the footer container. */ className?: string; /** * Theme for the Dialog Footer. */ theme?: DialogTheme; } export declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLElement>>;