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.

50 lines 1.18 kB
import { css } from 'lit'; import { all as inputThemes } from '../../input/themes/themes.js'; import { styles as bootstrap } from './shared/file-input.bootstrap.css.js'; import { styles as fluent } from './shared/file-input.fluent.css.js'; import { styles as indigo } from './shared/file-input.indigo.css.js'; import { styles as material } from './shared/file-input.material.css.js'; const light = { shared: css ` ${inputThemes.light.shared} `, bootstrap: css ` ${bootstrap} ${inputThemes.light.bootstrap} `, material: css ` ${material} ${inputThemes.light.material} `, indigo: css ` ${indigo} ${inputThemes.light.indigo} `, fluent: css ` ${fluent} ${inputThemes.light.fluent} `, }; const dark = { shared: css ` ${inputThemes.dark.shared} `, bootstrap: css ` ${bootstrap} ${inputThemes.dark.bootstrap} `, material: css ` ${material} ${inputThemes.dark.material} `, indigo: css ` ${indigo} ${inputThemes.dark.indigo} `, fluent: css ` ${fluent} ${inputThemes.dark.fluent} `, }; export const all = { light, dark }; //# sourceMappingURL=themes.js.map