@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
14 lines • 520 B
TypeScript
import * as React from 'react';
/**
* Renders filtered list items.
* Doesn't render its own HTML element.
*
* If rendering a flat list, pass a function child to the `List` component instead, which implicitly wraps it.
*/
export declare function ComboboxCollection(props: ComboboxCollection.Props): React.JSX.Element | null;
export interface ComboboxCollectionProps {
children: (item: any, index: number) => React.ReactNode;
}
export declare namespace ComboboxCollection {
type Props = ComboboxCollectionProps;
}