import figma, { html } from "@figma/code-connect/html";
// Desktop v3
figma.connect(
"https://www.figma.com/design/3WoKOSGtaSjhUHKldHCXbc/Desktop-Components-3?node-id=3480-22604",
{
props: {
showIcon: figma.boolean("Show icon", {
true: "chrome://example.svg",
false: undefined,
}),
label: figma.string("Label"),
},
example: props => html`
`,
}
);