UNPKG

@vaadin/vaadin-material-styles

Version:

Vaadin Material is a complete theme for Vaadin components, inspired by Google’s Material Design guidelines.

25 lines (20 loc) 586 B
/** * @license * Copyright (c) 2017 - 2025 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import { defineCustomElement } from '@vaadin/component-base/src/define.js'; /** * Dummy custom element used for collecting * development time usage statistics. * * @private */ class Material extends HTMLElement { static get is() { return 'vaadin-material-styles'; } } defineCustomElement(Material); console.warn('The Material theme is deprecated and will be removed in Vaadin 25.'); export { Material };