UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

13 lines 516 B
import * as React from 'react'; export interface NavGroupProps extends React.HTMLProps<HTMLDivElement> { /** Title shown for the group */ title?: string; /** Anything that can be rendered inside of the group */ children?: React.ReactNode; /** Additional classes added to the container */ className?: string; /** Identifier to use for the section aria label */ id?: string; } export declare const NavGroup: React.FunctionComponent<NavGroupProps>; //# sourceMappingURL=NavGroup.d.ts.map