@project44-manifest/react
Version:
Manifest Design System react components
21 lines (18 loc) • 524 B
text/typescript
import type { CSS } from '@project44-manifest/react-styles';
import type { IconButton } from '../button';
import type { Typography } from '../Typography';
export 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>;
}