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.
47 lines • 1.31 kB
JavaScript
import { css } from 'lit';
import { styles as bootstrapDark } from './dark/container.bootstrap.css.js';
import { styles as fluentDark } from './dark/container.fluent.css.js';
import { styles as indigoDark } from './dark/container.indigo.css.js';
import { styles as materialDark } from './dark/container.material.css.js';
import { styles as sharedDark } from './dark/container.shared.css.js';
import { styles as bootstrapLight } from './light/container.bootstrap.css.js';
import { styles as fluentLight } from './light/container.fluent.css.js';
import { styles as indigoLight } from './light/container.indigo.css.js';
import { styles as materialLight } from './light/container.material.css.js';
import { styles as sharedLight } from './light/container.shared.css.js';
const light = {
shared: css `
${sharedLight}
`,
bootstrap: css `
${bootstrapLight}
`,
material: css `
${materialLight}
`,
fluent: css `
${fluentLight}
`,
indigo: css `
${indigoLight}
`,
};
const dark = {
shared: css `
${sharedDark}
`,
bootstrap: css `
${bootstrapDark}
`,
material: css `
${materialDark}
`,
fluent: css `
${fluentDark}
`,
indigo: css `
${indigoDark}
`,
};
export const all = { light, dark };
//# sourceMappingURL=container.js.map