This commit is contained in:
2026-01-06 10:17:05 +00:00
parent 942896a3ef
commit fafa98bc19
7 changed files with 2061 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { html } from '@design.estate/dees-element';
export const demo = () => html`
<style>
.demo-container {
width: 100%;
height: 600px;
background: hsl(240 10% 4%);
border-radius: 12px;
overflow: hidden;
}
</style>
<div class="demo-container">
<eco-settings
.activePanel=${'general'}
></eco-settings>
</div>
`;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
export * from './eco-settings.js';