Source code
Revision control
Copy as Markdown
Other Tools
import figma, { html } from "@figma/code-connect/html";
// Desktop V3
figma.connect(
{
props: {
rating: figma.string("Rating"),
},
example: props => html`
<moz-five-star rating=${props.rating} selectable />
`,
}
);