@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
19 lines (18 loc) • 456 B
TypeScript
type PromptbookQrCodeProps = {
value: string | number;
/**
* Width and height of the QR code canvas
*
* @default 250
*/
size?: number;
/**
* Additional CSS class names to apply to the container div
*/
className?: string;
};
/**
* @public exported from `@promptbook/components`
*/
export declare function PromptbookQrCode(props: PromptbookQrCodeProps): import("react/jsx-runtime").JSX.Element;
export {};