@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
10 lines (9 loc) • 515 B
TypeScript
import { Assign } from '../../types';
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseClipboardProps } from './use-clipboard';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface ClipboardRootBaseProps extends UseClipboardProps, PolymorphicProps {
}
export interface ClipboardRootProps extends Assign<HTMLProps<'div'>, ClipboardRootBaseProps> {
}
export declare const ClipboardRoot: ForwardRefExoticComponent<ClipboardRootProps & RefAttributes<HTMLDivElement>>;