UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 443 B
import { EdgeProps } from '@zag-js/marquee'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface MarqueeEdgeBaseProps extends EdgeProps, PolymorphicProps { } export interface MarqueeEdgeProps extends HTMLProps<'div'>, MarqueeEdgeBaseProps { } export declare const MarqueeEdge: ForwardRefExoticComponent<MarqueeEdgeProps & RefAttributes<HTMLDivElement>>;