// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import '../kit.js'; import * as Lit from '../../lit/lit.js'; const {html} = Lit; export function render(container: HTMLElement): void { Lit.render( html`
Icon description Icon
Created through html template with default size and color
Created through html template with custom size and color
`, container); }