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