UNPKG

@patternfly/react-core

Version:

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

12 lines 570 B
/// <reference types="react" /> import { MenuListProps } from '../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; /** Indicates to assistive technologies whether more than one item can be selected for a non-checkbox select */ isAriaMultiselectable?: boolean; } export declare const SelectList: React.FunctionComponent<MenuListProps>; //# sourceMappingURL=SelectList.d.ts.map