@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
24 lines (23 loc) • 554 B
TypeScript
import type { QrCodeOptions } from './useQrCode';
/**
* Props for branded qr code.
*/
type BrandedQrCodeProps = QrCodeOptions & {
/**
* Width and height of the QR code canvas
*
* @default 250
*/
size?: number;
/**
* Additional CSS class names to apply to the container div
*/
className?: string;
};
/**
* Handles branded qr code.
*
* @public exported from `@promptbook/components`
*/
export declare function BrandedQrCode(props: BrandedQrCodeProps): import("react/jsx-runtime").JSX.Element;
export {};