lune-ui-lib
Version:
Lune UI Components Library
16 lines (15 loc) • 511 B
TypeScript
import type { SxProps } from '@mui/material';
/**
* A "standard" Layout for a title/subTitle-type Header of a Modal Dialog
* Only meant to be passed as "header" prop to ui-lib's Modal (help with DRY)
* @param title
* @param subTitle - optional
* @param sx - optional custom style
* @constructor
*/
declare const StandardModalHeader: ({ title, subTitle, sx }: {
title: string;
subTitle?: string;
sx?: SxProps;
}) => import("react/jsx-runtime").JSX.Element;
export default StandardModalHeader;