We will be sunsetting Advisor during Jan, 2026 and will instead be providing information in Snyk Security DB.

You can begin to take advantage of Snyk Security DB today for a unified, package-centric experience.

How to use the @material/mwc-base/base-element.customElement function in @material/mwc-base

To help you get started, we’ve selected a few @material/mwc-base examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wiredjs / www / node_modules / @material / mwc-icon / mwc-icon.js View on Github external
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import { LitElement, html, customElement } from '@material/mwc-base/base-element';
import { style } from './mwc-icon-host-css.js';
import './mwc-icon-font.js';
let Icon = class Icon extends LitElement {
    render() {
        return html ``;
    }
};
Icon.styles = style;
Icon = __decorate([
    customElement('mwc-icon')
], Icon);
export { Icon };
//# sourceMappingURL=mwc-icon.js.map