20 lines
492 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import { commonDark } from "../../_styles/common/index.mjs";
import { internalSelectMenuDark } from "../../_internal/select-menu/styles/index.mjs";
import { inputDark } from "../../input/styles/index.mjs";
const listDark = {
name: 'Mention',
common: commonDark,
peers: {
InternalSelectMenu: internalSelectMenuDark,
Input: inputDark
},
self(vars) {
const {
boxShadow2
} = vars;
return {
menuBoxShadow: boxShadow2
};
}
};
export default listDark;