UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 457 B
import { ReactNode, ForwardRefExoticComponent, RefAttributes } from 'react'; import { HTMLProps, PolymorphicProps } from '../factory'; export interface ClipboardIndicatorBaseProps extends PolymorphicProps { copied?: ReactNode; } export interface ClipboardIndicatorProps extends HTMLProps<'div'>, ClipboardIndicatorBaseProps { } export declare const ClipboardIndicator: ForwardRefExoticComponent<ClipboardIndicatorProps & RefAttributes<HTMLDivElement>>;