blob: 783dd1a86b476405d0fda1519c37f334f67013c3 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {html} from '//resources/lit/v3_0/lit.rollup.js';
import type {SpEmptyStateElement} from './sp_empty_state.js';
export function getHtml(this: SpEmptyStateElement) {
return html`<!--_html_template_start_-->
<picture>
<source media="(prefers-color-scheme: dark)" srcset="${this.darkImagePath}">
<img id="product-logo" srcset="${this.imagePath}" alt="">
</picture>
<div id="heading">${this.heading}</div>
<div id="body">${this.body}</div>
<!--_html_template_end_-->`;
}