igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
21 lines • 446 B
JavaScript
import { css } from 'lit';
import { styles as fluent } from './shared/header/dropdown-header.fluent.css.js';
import { styles as indigo } from './shared/header/dropdown-header.indigo.css.js';
const light = {
indigo: css `
${indigo}
`,
fluent: css `
${fluent}
`,
};
const dark = {
indigo: css `
${indigo}
`,
fluent: css `
${fluent}
`,
};
export const all = { light, dark };
//# sourceMappingURL=header.js.map