@project44-manifest/react
Version:
Manifest Design System react components
16 lines (13 loc) • 349 B
text/typescript
import type { CSS } from '@project44-manifest/react-styles';
import type { ButtonGroupProps } from '../button';
export type DialogFooterElement = 'div';
export interface DialogFooterProps {
/**
* Props passed to the button group component.
*/
buttonGroupProps?: ButtonGroupProps;
/**
* Theme aware style object
*/
css?: CSS;
}