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.

13 lines 562 B
import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; /** * A container for the chips in a multiselectable input. * Renders a `<div>` element. */ export declare const ComboboxChips: React.ForwardRefExoticComponent<ComboboxChipsProps & React.RefAttributes<HTMLDivElement>>; export interface ComboboxChipsState {} export interface ComboboxChipsProps extends BaseUIComponentProps<'div', ComboboxChips.State> {} export declare namespace ComboboxChips { type State = ComboboxChipsState; type Props = ComboboxChipsProps; }