UNPKG

@mozaic-ds/vue

Version:

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

26 lines (23 loc) 677 B
/** * Code Connect mapping for MToaster * Links Figma Toaster (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=12131-26443', { props: { status: figma.enum('Status', { Information: 'info', Success: 'success', Warning: 'warning', Error: 'error', }), }, example: ({ status }) => html`<script setup> import { MToaster } from '@mozaic-ds/vue'; </script> <MToaster description="Notification message" status=${status} />`, }, );