@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
16 lines • 525 B
TypeScript
import * as React from 'react';
export declare enum TextListVariants {
ul = "ul",
ol = "ol",
dl = "dl"
}
export interface TextListProps extends React.HTMLProps<HTMLElement> {
/** Content rendered within the TextList */
children?: React.ReactNode;
/** Additional classes added to the TextList */
className?: string;
/** The text list component */
component?: 'ul' | 'ol' | 'dl';
}
export declare const TextList: React.FunctionComponent<TextListProps>;
//# sourceMappingURL=TextList.d.ts.map