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