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

22 lines
576 B
JavaScript

import { commonLight } from "../../_styles/common/index.mjs";
import { createTheme } from "../../_mixins/index.mjs";
import { internalSelectMenuLight } from "../../_internal/select-menu/styles/index.mjs";
import { inputLight } from "../../input/styles/index.mjs";
const self = vars => {
const {
boxShadow2
} = vars;
return {
menuBoxShadow: boxShadow2
};
};
const mentionLight = createTheme({
name: 'Mention',
common: commonLight,
peers: {
InternalSelectMenu: internalSelectMenuLight,
Input: inputLight
},
self
});
export default mentionLight;