@clerk/clerk-js
Version:
Clerk JS library
9 lines (8 loc) • 304 B
TypeScript
import { Flex } from '../customizables';
import type { PropsOfComponent } from '../styledSystem';
type QRCodeProps = PropsOfComponent<typeof Flex> & {
url: string;
size?: number;
};
export declare const QRCode: (props: QRCodeProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};