Files
dees-catalog/ts_web/elements/00group-chart/dees-chart-gauge/template.ts

14 lines
424 B
TypeScript
Raw Normal View History

2026-04-04 11:05:01 +00:00
import { html, type TemplateResult } from '@design.estate/dees-element';
import type { DeesChartGauge } from './component.js';
export const renderChartGauge = (component: DeesChartGauge): TemplateResult => {
return html`
<dees-tile>
<div slot="header" class="chartHeader">
<span class="chartLabel">${component.label}</span>
</div>
<div class="chartContainer"></div>
</dees-tile>
`;
};