UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 437 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { UseFieldProps } from './use-field'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface FieldRootBaseProps extends UseFieldProps, PolymorphicProps { } export interface FieldRootProps extends HTMLProps<'div'>, FieldRootBaseProps { } export declare const FieldRoot: ForwardRefExoticComponent<FieldRootProps & RefAttributes<HTMLDivElement>>;