Source code
Revision control
Copy as Markdown
Other Tools
import figma, { html } from "@figma/code-connect/html";
// Desktop V3
figma.connect(
{
props: {
label: figma.string("Label"),
disabled: figma.enum("State", {
Disabled: true,
}),
},
example: props => html`
<moz-input-color
label=${props.label}
disabled=${props.disabled}
value="#D9D9D9"
/>
`,
}
);