@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
10 lines (9 loc) • 327 B
TypeScript
import { ReactElement } from 'react';
import { Props } from './ListBoxItem.types';
declare function ListBoxItem<T>(props: Props<T>): ReactElement;
/**
* ListBoxItem component used internally as a wrapper for items inside a listbox.
* It's using the ListItem component internally.
* @internal
*/
export default ListBoxItem;