UNPKG

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