soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
19 lines (18 loc) • 733 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;
onButtonClick?: (() => void) | undefined;
/**
* Emit when the close button is clicked
*/
onCloseClick?: (() => void) | undefined;
children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "button" | "headline" | "onButtonClick" | "onCloseClick"> & import("react").RefAttributes<HTMLDivElement>>;