@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 423 B
text/typescript
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface SwapIndicatorBaseProps extends PolymorphicProps {
type: 'on' | 'off';
}
export interface SwapIndicatorProps extends HTMLProps<'span'>, SwapIndicatorBaseProps {
}
export declare const SwapIndicator: ForwardRefExoticComponent<SwapIndicatorProps & RefAttributes<HTMLSpanElement>>;