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