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