UNPKG

@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.

15 lines 659 B
import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; /** * Renders its children only when the list is empty. * Requires the `items` prop on the root component. * Announces changes politely to screen readers. * Renders a `<div>` element. */ export declare const ComboboxEmpty: React.ForwardRefExoticComponent<ComboboxEmptyProps & React.RefAttributes<HTMLDivElement>>; export interface ComboboxEmptyState {} export interface ComboboxEmptyProps extends BaseUIComponentProps<'div', ComboboxEmpty.State> {} export declare namespace ComboboxEmpty { type State = ComboboxEmptyState; type Props = ComboboxEmptyProps; }