@bund-x/core
Version:
Master Components Core Library
20 lines • 616 B
TypeScript
export default QRCodeCell;
declare function QRCodeCell({ d, fill, transformX, transformY }: {
d: any;
fill: any;
transformX: any;
transformY: any;
}): JSX.Element;
declare namespace QRCodeCell {
export { propTypes };
export { defaultProps };
}
declare namespace propTypes {
const d: PropTypes.Validator<string>;
const fill: PropTypes.Validator<string>;
const transformX: PropTypes.Validator<number>;
const transformY: PropTypes.Validator<number>;
}
declare const defaultProps: {};
import PropTypes from "prop-types";
//# sourceMappingURL=QRCodeCell.d.ts.map