@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 372 B
text/typescript
import { PropTypes } from '@zag-js/react';
import { Optional } from '../../types';
import * as qrcode from '@zag-js/qr-code';
export interface UseQrCodeProps extends Optional<Omit<qrcode.Props, 'dir' | 'getRootNode'>, 'id'> {
}
export interface UseQrCodeReturn extends qrcode.Api<PropTypes> {
}
export declare const useQrCode: (props?: UseQrCodeProps) => UseQrCodeReturn;