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.

21 lines 461 B
import { css } from 'lit'; import { styles as bootstrap } from './shared/actions/card.actions.bootstrap.css.js'; import { styles as indigo } from './shared/actions/card.actions.indigo.css.js'; const light = { bootstrap: css ` ${bootstrap} `, indigo: css ` ${indigo} `, }; const dark = { bootstrap: css ` ${bootstrap} `, indigo: css ` ${indigo} `, }; export const all = { light, dark }; //# sourceMappingURL=actions.js.map