UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

16 lines (15 loc) 368 B
/** * Props for generic qr code. */ type GenericQrCodeProps = { value: string | number; size?: number; className?: string; }; /** * Handles generic qr code. * * @public exported from `@promptbook/components` */ export declare function GenericQrCode({ value, size, className }: GenericQrCodeProps): import("react/jsx-runtime").JSX.Element; export {};