@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
15 lines (14 loc) • 650 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import { DialogBodyProps } from "./dialog.types.js";
import "../index.js";
//#region src/dialog/dialogBody.d.ts
/**
* Shows the main content between the Dialog Header and Footer.
* It becomes scrollable when content does not fit vertically. Borders are shown automatically.
* Receives more horizontal padding when Dialog has icon, so align text with title.
* Receives id linked to aria-describedby on the Dialog for accessibility.
*/
declare const DialogBody: VuiComponent<"div", DialogBodyProps>;
//#endregion
export { DialogBody, DialogBody as default };
//# sourceMappingURL=dialogBody.d.ts.map