@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
10 lines • 427 B
TypeScript
/// <reference types="react" />
import { MenuListProps } from '../Menu';
export interface DropdownListProps extends MenuListProps {
/** Anything which can be rendered in a dropdown list */
children: React.ReactNode;
/** Classes applied to root element of dropdown list */
className?: string;
}
export declare const DropdownList: React.FunctionComponent<MenuListProps>;
//# sourceMappingURL=DropdownList.d.ts.map