soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
19 lines (18 loc) • 721 B
TypeScript
/// <reference types="react" />
import './dialog.scss';
/**
* @specs https://m3.material.io/components/dialogs/specs#bbf1acde-f8d2-4ae1-9d51-343e96c4ac20
*/
export declare const FullScreenDialog: import("react").ForwardRefExoticComponent<{
headline?: React.ReactNode;
/**
* The button's child node inside the top area
*/
button?: React.ReactNode;
/**
* Fires when the close icon button is click
*/
onCloseClick?: (() => void) | undefined;
children?: React.ReactNode;
footer?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "button" | "footer" | "headline" | "onCloseClick"> & import("react").RefAttributes<HTMLDivElement>>;