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