Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-qrcode/props.ts

18 lines
366 B
TypeScript
Raw Normal View History

2025-07-21 16:47:04 +08:00
import type { QrcodeOptions } from "./draw";
import type { ClQrcodeMode } from "../../types";
export type ClQrcodeProps = {
className?: string;
width?: string;
height?: string;
foreground?: string;
background?: string;
pdColor?: string | any;
pdRadius?: number;
text?: string;
logo?: string;
logoSize?: string;
padding?: number;
mode?: ClQrcodeMode;
};