@mozaic-ds/vue
Version:
Mozaic-Vue is the Vue.js implementation of ADEO Design system
23 lines (20 loc) • 680 B
text/typescript
/**
* Code Connect mapping for MSidebarExpandableItem
* Links Figma _sidebar / section menu item (multiple levels) to @mozaic-ds/vue
*/
import figma, { html } from '@figma/code-connect/html';
figma.connect(
'https://www.figma.com/design/Zyh9RyabNaqkjbuFWP9Aqj/%E2%9C%A8-Components--ADS2---Stable-version-?node-id=11697-6356',
{
example: () =>
html`<script setup>
import {
MSidebarExpandableItem,
MSidebarNavItem,
} from '@mozaic-ds/vue';
</script>
<MSidebarExpandableItem label="Section" menu-label="Section">
<MSidebarNavItem label="Sub item" />
</MSidebarExpandableItem>`,
},
);