UNPKG

@heroui/listbox

Version:

A listbox displays a list of options and allows a user to select one or more of them.

24 lines (21 loc) 711 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { UseListboxItemProps } from './use-listbox-item.js'; import './base/listbox-item-base.js'; import '@heroui/theme'; import '@react-aria/listbox'; import '@react-types/shared'; import '@heroui/aria-utils'; import 'react'; import 'tailwind-variants'; import '@heroui/system'; import '@react-stately/list'; interface ListboxItemProps<T extends object = object> extends Omit<UseListboxItemProps<T>, "hasDescriptionTextChild" | "hasTitleTextChild"> { } /** * @internal */ declare const ListboxItem: { (props: ListboxItemProps): react_jsx_runtime.JSX.Element; displayName: string; }; export { type ListboxItemProps, ListboxItem as default };