@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
12 lines (11 loc) • 501 B
TypeScript
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface SelectValueTextBaseProps extends PolymorphicProps {
/**
* Text to display when no value is selected.
*/
placeholder?: string;
}
export interface SelectValueTextProps extends HTMLProps<'span'>, SelectValueTextBaseProps {
}
export declare const SelectValueText: ForwardRefExoticComponent<SelectValueTextProps & RefAttributes<HTMLSpanElement>>;