2024-01-29 09:26:07 +08:00

22 lines
595 B
JavaScript

import { internalSelectMenuLight } from "../../_internal/select-menu/styles/index.mjs";
import { commonLight } from "../../_styles/common/index.mjs";
import { popoverLight } from "../../popover/styles/index.mjs";
import { createTheme } from "../../_mixins/index.mjs";
export function self(vars) {
const {
boxShadow2
} = vars;
return {
menuBoxShadow: boxShadow2
};
}
const popselectLight = createTheme({
name: 'Popselect',
common: commonLight,
peers: {
Popover: popoverLight,
InternalSelectMenu: internalSelectMenuLight
},
self
});
export default popselectLight;