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.
35 lines • 752 B
JavaScript
import { css } from 'lit';
import { styles as bootstrap } from './shared/button/button.bootstrap.css.js';
import { styles as fluent } from './shared/button/button.fluent.css.js';
import { styles as indigo } from './shared/button/button.indigo.css.js';
import { styles as material } from './shared/button/button.material.css.js';
const light = {
bootstrap: css `
${bootstrap}
`,
fluent: css `
${fluent}
`,
indigo: css `
${indigo}
`,
material: css `
${material}
`,
};
const dark = {
bootstrap: css `
${bootstrap}
`,
fluent: css `
${fluent}
`,
indigo: css `
${indigo}
`,
material: css `
${material}
`,
};
export const all = { light, dark };
//# sourceMappingURL=button.js.map