UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 446 B
import { ItemProps } from '@zag-js/steps'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface StepsContentBaseProps extends PolymorphicProps, ItemProps { } export interface StepsContentProps extends HTMLProps<'div'>, StepsContentBaseProps { } export declare const StepsContent: ForwardRefExoticComponent<StepsContentProps & RefAttributes<HTMLDivElement>>;