dees-catalog/ts_web/elements/dees-chart-area.demo.ts

22 lines
432 B
TypeScript
Raw Normal View History

2024-02-03 11:26:15 +01:00
import { html } from '@design.estate/dees-element';
export const demoFunc = () => {
return html`
<style>
.demoBox {
position: relative;
background: #000000;
height: 100%;
width: 100%;
padding: 40px;
2024-02-05 13:11:05 +01:00
box-sizing: border-box;
2024-02-03 11:26:15 +01:00
}
</style>
<div class="demoBox">
2024-02-03 14:42:20 +01:00
<dees-chart-area
2024-02-03 14:49:25 +01:00
.label=${'System Usage'}
2024-02-03 14:42:20 +01:00
></dees-chart-area>
2024-02-03 11:26:15 +01:00
</div>
`;
};