UNPKG

@mozaic-ds/vue

Version:

Mozaic-Vue is the Vue.js implementation of ADEO Design system

21 lines (18 loc) 585 B
/** * Code Connect mapping for MStepperBottomBar * Links Figma Stepper bottom bar (ADS2) 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=10726-18528', { props: { cancel: figma.boolean('Has cancel action'), }, example: ({ cancel }) => html`<script setup> import { MStepperBottomBar } from '@mozaic-ds/vue'; </script> <MStepperBottomBar cancel=${cancel} :steps="3" />`, }, );