export type IThemedColor = { light: string; dark: string; }; export type ColorType = string | IThemedColor; export type CustomCSSProperties = React.CSSProperties & Record; export interface IQRCodeProps { /** * defined the pixel width of the qrcode * @default 256 */ size?: number; /** * the text to be encoded in the qrcode */ value: string; /** * define a custom background color for the qrcode * @default 'transparent' */ bgColor?: ColorType; /** * define a custom foreground color for the qrcode */ fgColor?: ColorType; level?: 'L' | 'M' | 'Q' | 'H'; } //# sourceMappingURL=types.d.ts.map