18 lines
522 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import { inputLight } from "../../input/styles/index.mjs";
import { buttonLight } from "../../button/styles/index.mjs";
import { commonLight } from "../../_styles/common/index.mjs";
import { createTheme } from "../../_mixins/index.mjs";
2024-08-02 18:19:39 +08:00
import commonVariables from "./_common.mjs";
function self() {
2024-01-29 09:26:07 +08:00
return commonVariables;
2024-08-02 18:19:39 +08:00
}
2024-01-29 09:26:07 +08:00
const dynamicInputLight = createTheme({
name: 'DynamicInput',
common: commonLight,
peers: {
Input: inputLight,
Button: buttonLight
},
self
});
export default dynamicInputLight;