UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 431 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { UseSwapProps } from './use-swap'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface SwapRootBaseProps extends UseSwapProps, PolymorphicProps { } export interface SwapRootProps extends HTMLProps<'span'>, SwapRootBaseProps { } export declare const SwapRoot: ForwardRefExoticComponent<SwapRootProps & RefAttributes<HTMLSpanElement>>;