@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 • 611 B
TypeScript
import * as React from 'react';
import { BaseUIComponentProps } from "../../utils/types.js";
/**
* Displays a single row of items in a grid list.
* Enable `grid` on the root component to turn the listbox into a grid.
* Renders a `<div>` element.
*/
export declare const ComboboxRow: React.ForwardRefExoticComponent<ComboboxRowProps & React.RefAttributes<HTMLDivElement>>;
export interface ComboboxRowState {}
export interface ComboboxRowProps extends BaseUIComponentProps<'div', ComboboxRow.State> {}
export declare namespace ComboboxRow {
type State = ComboboxRowState;
type Props = ComboboxRowProps;
}