@mozaic-ds/vue
Version:
Mozaic-Vue is the Vue.js implementation of ADEO Design system
21 lines (18 loc) • 572 B
text/typescript
/**
* Code Connect mapping for MSidebarShortcutItem
* Links Figma _sidebar / shortcut item 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-6376',
{
props: {
label: figma.string('Text'),
},
example: ({ label }) =>
html`<script setup>
import { MSidebarShortcutItem } from '@mozaic-ds/vue';
</script>
<MSidebarShortcutItem label=${label} href="#" />`,
},
);