props.ts 366 B

1234567891011121314151617
  1. import type { QrcodeOptions } from "./draw";
  2. import type { ClQrcodeMode } from "../../types";
  3. export type ClQrcodeProps = {
  4. className?: string;
  5. width?: number;
  6. height?: number;
  7. foreground?: string;
  8. background?: string;
  9. pdColor?: string | any;
  10. pdRadius?: number;
  11. text?: string;
  12. logo?: string;
  13. logoSize?: number;
  14. padding?: number;
  15. mode?: ClQrcodeMode;
  16. };