UNPKG

750 BTypeScriptView Raw
1import * as React from 'react';
2export interface AboutModalBoxContentProps extends React.HTMLProps<HTMLDivElement> {
3 /** content rendered inside the AboutModalBoxContent */
4 children: React.ReactNode;
5 /** additional classes added to the AboutModalBoxContent */
6 className?: string;
7 /** id to use for About Modal Box aria described by */
8 id: string;
9 /** The Trademark info for the product */
10 trademark: string;
11 /** Prevents the about modal from rendering content inside a container; allows for more flexible layouts */
12 noAboutModalBoxContentContainer?: boolean;
13}
14export declare const AboutModalBoxContent: React.FunctionComponent<AboutModalBoxContentProps>;
15//# sourceMappingURL=AboutModalBoxContent.d.ts.map
\No newline at end of file