@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 443 B
TypeScript
import { ItemProps } from '@zag-js/listbox';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface ListboxItemBaseProps extends ItemProps, PolymorphicProps {
}
export interface ListboxItemProps extends HTMLProps<'div'>, ListboxItemBaseProps {
}
export declare const ListboxItem: ForwardRefExoticComponent<ListboxItemProps & RefAttributes<HTMLDivElement>>;