UNPKG

tdesign-react

Version:
12 lines (11 loc) 502 B
import React from 'react'; import type { TdQRCodeProps, StatusRenderInfo } from './type'; import { QRCodeConfig } from '../config-provider/type'; export type QRcodeStatusProps = { locale: QRCodeConfig; classPrefix: string; onRefresh?: TdQRCodeProps['onRefresh']; statusRender?: TdQRCodeProps['statusRender']; status: StatusRenderInfo['status']; }; export default function QRcodeStatus({ locale, classPrefix, onRefresh, statusRender, status }: QRcodeStatusProps): React.JSX.Element;