Source code

Revision control

Copy as Markdown

Other Tools

import figma, { html } from "@figma/code-connect/html";
// Desktop v3 (newest)
figma.connect(
{
props: {
items: figma.children("*"),
},
example: props =>
html` <moz-box-group type="list"> ${props.items} </moz-box-group>`,
}
);