@base-ui/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 • 675 B
TypeScript
import * as React from 'react';
import type { BaseUIComponentProps } from "../../internals/types.js";
/**
* An icon that indicates that the trigger button opens the popup.
* Renders a `<span>` element.
*
* Documentation: [Base UI Combobox](https://base-ui.com/react/components/combobox)
*/
export declare const ComboboxIcon: React.ForwardRefExoticComponent<Omit<ComboboxIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
export interface ComboboxIconState {}
export interface ComboboxIconProps extends BaseUIComponentProps<'span', ComboboxIconState> {}
export declare namespace ComboboxIcon {
type State = ComboboxIconState;
type Props = ComboboxIconProps;
}