@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
21 lines (20 loc) • 549 B
TypeScript
/// <reference types="react" />
export declare type DialogBodyAccessibilityProps = {
id?: string;
role?: 'document';
};
export interface DialogBodyProps {
accessibility?: DialogBodyAccessibilityProps;
/**
* Component children, usually the included another component.
*/
children: React.ReactNode;
/**
* Specify an optional className to be added to your DialogBody
*/
className?: string;
/**
* If `true`, will show a Divider above and below the DialogBody
*/
showDivider?: boolean;
}