UNPKG

@ark-ui/react

Version:

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

11 lines (10 loc) 316 B
import { PropsWithChildren } from 'react'; export interface FieldItemBaseProps { value: string; } export interface FieldItemProps extends PropsWithChildren<FieldItemBaseProps> { } export declare const FieldItem: { (props: FieldItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; };