@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 560 B
TypeScript
import * as React from 'react';
export interface TextContentProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered within the TextContent */
children?: React.ReactNode;
/** Additional classes added to the TextContent */
className?: string;
/** Flag to indicate the all links in a the content block have visited styles applied if the browser determines the link has been visited */
isVisited?: boolean;
}
export declare const TextContent: React.FunctionComponent<TextContentProps>;
//# sourceMappingURL=TextContent.d.ts.map