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.

16 lines 560 B
import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; /** * An individual chip that represents a value in a multiselectable input. * Renders a `<div>` element. */ export declare const ComboboxChip: React.ForwardRefExoticComponent<ComboboxChip.Props & React.RefAttributes<HTMLDivElement>>; export declare namespace ComboboxChip { interface State { /** * Whether the component should ignore user interaction. */ disabled: boolean; } interface Props extends BaseUIComponentProps<'div', State> {} }