UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

12 lines (11 loc) 507 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ListboxValueTextBaseProps extends PolymorphicProps { /** * Text to display when no value is listboxed. */ placeholder?: string; } export interface ListboxValueTextProps extends HTMLProps<'span'>, ListboxValueTextBaseProps { } export declare const ListboxValueText: ForwardRefExoticComponent<ListboxValueTextProps & RefAttributes<HTMLSpanElement>>;