@project44-manifest/react
Version:
Manifest Design System react components
20 lines • 634 B
TypeScript
/// <reference types="react" />
import type { CSS } from '@project44-manifest/react-styles';
import type { IconButton } from '../button';
import type { Typography } from '../Typography';
export declare type DialogHeaderElement = 'div';
export interface DialogHeaderProps {
/**
* Theme aware style object
*/
css?: CSS;
/**
* Props bassed to the button component.
*/
buttonProps?: React.ComponentProps<typeof IconButton>;
/**
* Props bassed to the typography component.
*/
typographyProps?: React.ComponentProps<typeof Typography>;
}
//# sourceMappingURL=DialogHeader.types.d.ts.map