import { html } from '@design.estate/dees-element'; export const demoFunc = () => html`
console.log('Dashboard') }, { key: 'Inbox', iconName: 'lucide:inbox', action: () => console.log('Inbox') }, ] }, { name: 'Workspace', tabs: [ { key: 'Projects', iconName: 'lucide:folder', action: () => console.log('Projects') }, { key: 'Tasks', iconName: 'lucide:checkSquare', action: () => console.log('Tasks') }, { key: 'Documents', iconName: 'lucide:fileText', action: () => console.log('Documents') }, ] }, { name: 'Analytics', tabs: [ { key: 'Reports', iconName: 'lucide:barChart3', action: () => console.log('Reports') }, { key: 'Insights', iconName: 'lucide:lightbulb', action: () => console.log('Insights') }, ] } ]} .bottomTabs=${[ { key: 'Settings', iconName: 'lucide:settings', action: () => console.log('Settings') }, { key: 'Help', iconName: 'lucide:helpCircle', action: () => console.log('Help') }, ]} >
`;