UNPKG

655 BTypeScriptView Raw
1import * as React from 'react';
2export interface SimpleListGroupProps extends Omit<React.HTMLProps<HTMLTableSectionElement>, 'title'> {
3 /** Content rendered inside the SimpleList group */
4 children?: React.ReactNode;
5 /** Additional classes added to the SimpleList <ul> */
6 className?: string;
7 /** Additional classes added to the SimpleList group title */
8 titleClassName?: string;
9 /** Title of the SimpleList group */
10 title?: React.ReactNode;
11 /** ID of SimpleList group */
12 id?: string;
13}
14export declare const SimpleListGroup: React.FunctionComponent<SimpleListGroupProps>;
15//# sourceMappingURL=SimpleListGroup.d.ts.map
\No newline at end of file