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 • 312 B
JavaScript
import { css } from 'lit';
import { styles as indigo } from './shared/message-attachments/message-attachments.indigo.css.js';
const light = {
indigo: css `
${indigo}
`,
};
const dark = {
indigo: css `
${indigo}
`,
};
export const all = { light, dark };
//# sourceMappingURL=attachments.js.map