@bund-x/core
Version:
Master Components Core Library
26 lines • 780 B
TypeScript
export default QRCodeSurface;
declare function QRCodeSurface({ children, size, style, xmlns, ...props }: {
[x: string]: any;
children: any;
size: any;
style: any;
xmlns: any;
}): JSX.Element;
declare namespace QRCodeSurface {
export { propTypes };
export { defaultProps };
}
declare namespace propTypes {
const children: PropTypes.Validator<any[]>;
const size: PropTypes.Validator<number>;
const style: PropTypes.Requireable<object>;
const xmlns: PropTypes.Requireable<string>;
}
declare namespace defaultProps {
const style_1: any;
export { style_1 as style };
const xmlns_1: string;
export { xmlns_1 as xmlns };
}
import PropTypes from "prop-types";
//# sourceMappingURL=QRCodeSurface.d.ts.map