UNPKG

@ark-ui/react

Version:

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

10 lines (9 loc) 573 B
import { HiddenInputProps } from '@zag-js/signature-pad'; import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface SignaturePadHiddenInputBaseProps extends HiddenInputProps, PolymorphicProps { } export interface SignaturePadHiddenInputProps extends Assign<HTMLProps<'input'>, SignaturePadHiddenInputBaseProps> { } export declare const SignaturePadHiddenInput: ForwardRefExoticComponent<SignaturePadHiddenInputProps & RefAttributes<HTMLInputElement>>;