12 lines
236 B
JavaScript
Raw Normal View History

2025-04-15 16:38:39 +08:00
import { commonLight } from "../../_styles/common/index.mjs";
function self(vars) {
2025-04-15 16:38:39 +08:00
return {
borderRadius: vars.borderRadius
};
}
2025-04-15 16:38:39 +08:00
const themeLight = {
name: 'QrCode',
common: commonLight,
self
};
export default themeLight;