UNPKG

560 BTypeScriptView Raw
1import * as React from 'react';
2export interface TextContentProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered within the TextContent */
4 children?: React.ReactNode;
5 /** Additional classes added to the TextContent */
6 className?: string;
7 /** Flag to indicate the all links in a the content block have visited styles applied if the browser determines the link has been visited */
8 isVisited?: boolean;
9}
10export declare const TextContent: React.FunctionComponent<TextContentProps>;
11//# sourceMappingURL=TextContent.d.ts.map
\No newline at end of file