For more information about Code Connect as well as guides for other platforms and frameworks, please go here.
This documentation will help you connect your React (or React Native) components with Figma components using Code Connect. We'll cover basic setup to display your first connected code snippet, followed by making snippets dynamic by using property mappings. Code Connect for React works as both a standalone implementation and as an integration with existing Storybook files to enable easily maintaining both systems in parallel.
Code Connect is used through a command line interface (CLI). The CLI comes bundled with the @figma/code-connect
package, which you'll need to install through npm
. This package also includes helper functions and types associated with Code Connect, which you import from @figma/code-connect/react
(note that we also support @figma/code-connect
imports for backwards compatibility, but new projects should import from @figma/code-connect/react
).
Install this package into your React project's directory.
npm install @figma/code-connect
For first-time setup of Code Connect in a codebase, we recommend using the interactive setup, which makes it easier to quickly connect a large codebase. Code Connect will attempt to automatically connect your codebase to your Figma design system components based on name, which you can then make any edits to before batch-creating Code Connect files. No data gets published or unpublished in this flow, so feel free to try it out!
To start the interactive setup, enter figma connect
without any subcommands:
npx figma connect
The interactive flow will ask you for information to help automatically link your codebase, including:
- Your Figma access token
- Your Figma design system file's URL
- The path to your code files you wish to connect
After providing those, Code Connect will attempt to link your code files to your design system components based on name, allowing you to review and edit the results before proceeding to create Code Connect files:
Tip
If you have too many components to connect at once, try entering a subfolder when prompted for the path to your code files. You can later change this to another folder, and any already-connected code files will be filtered out of the list of connectable components.
Code Connect gives you the option to use AI to improve the accuracy of the generated prop mappings. If you choose to use AI, the following is sent to OpenAI for any components you're connecting:
- React code prop names
- Figma property names
- Figma variant values
Figma’s agreement with OpenAI provides that data is not to be used for model training. For more information, see: https://help.figma.com/hc/en-us/articles/23920389749655-Code-Connect
If you choose not to use AI, fuzzy matching is used instead.
After confirming the above, Code Connect will create Code Connect files for each of your linked components, and where possible will map your React props to your Figma component properties. You can now review each of these and make any updates you like before publishing (see Publishing). Here's how they'll look:
import React from 'react'
import { Modal } from './Modal'
import figma from '@figma/code-connect'
/**
* -- This file was auto-generated by Code Connect --
* \`props\` includes a mapping from your code props to Figma properties.
* You should check this is correct, and update the \`example\` function
* to return the code example you'd like to see in Figma
*/
figma.connect(Modal, 'https://www.figma.com/design/123/MyFile?node-id=1-1', {
props: {
// These props were automatically mapped based on your linked code:
isOpen: figma.boolean('Open'),
title: figma.string('Heading'),
// No matching props could be found for these Figma properties:
// "withLeadingIcon": figma.boolean('With Leading Icon'),
},
example: (props) => (
<Modal
isOpen={props.isOpen}
title={props.title}
onClose={/* TODO */}
/>
),
})
Your newly generated Code Connect files will have placeholders for anything you need to fill out. We recommend reviewing these and checking everything looks correct, and adding any properties you'd like to connect. See Dynamic code snippets.
We recommend publishing a small set of your new Code Connect files to see how they look in Figma. You can do this by specifying the folder you wish to publish:
npx figma connect publish --dir ./Components --token <auth token>
To connect your first component go to Dev Mode in Figma and right-click on the component you want to connect, then choose Copy link to selection
from the menu. Make sure you are copying the link to a main component and not an instance of the component. The main component will typically be located in a centralized design system library file. Using this link, run figma connect create
from inside your React project. Note that depending on what terminal software you're using, you might need to wrap the URL in quotes.
npx figma connect create "https://..." --token <auth token>
This will create a Code Connect file with some basic scaffolding for the component you want to connect. By default this file will be called <component-name>.figma.tsx
based on the name of the component in Figma. However, you may rename this file as you see fit. The scaffolding that is generated is based on the interface of the component in Figma. Depending on how closely this matches your code component you'll need to make some edits to this file before you publish it.
Some CLI commands, like create
, require a valid authentication token with write permission for the Code Connect scope as well as the read permission for the File content scope. You can either pass this via the --token
flag, or set the FIGMA_ACCESS_TOKEN
environment variable. The Figma CLI reads this from a .env
file in the same folder, if it exists.
To keep things simple, we're going to start by replacing the contents of the generated file with the most basic Code Connect configuration possible to make sure everything is set up and working as expected. Replace the contents of the file with the following, replacing the Button
reference with a reference to whatever component you are trying to connect. The object called by figma.connect
is your Code Connect doc.
import figma from '@figma/code-connect/react'
import { Button } from 'src/components'
figma.connect(Button, 'https://...', {
example: () => {
return <Button />
},
})
Once you've made the edits you want to the Code Connect file you can simply publish it to Figma to have it show up when the corresponding component or instance is selected in Dev Mode.
npx figma connect publish --token <auth token>
Now go back to Dev Mode in Figma and select the component that you just connected. You should see a connected code snippet show up with a simple reference to your component.
Note
Code Connect files are not executed. While they're written using real components from your codebase, the Figma CLI essentially treats code snippets as strings. This means you can use, for example, hooks without needing to mock data. However, this also means that logical operators such as ternaries or conditionals will be output verbatim in your example code rather than executed to show the result. You also won't be able to dynamically construct figma.connect
calls in a for-loop, as an example. If something you're trying to do is not possible because of this restriction in the API, we'd love to hear your feedback.
If you already have Storybook set up for your design system then we recommend using the Storybook integration that comes with Code Connect. Storybook and Code Connect complement each other nicely and with this integration they are easy to maintain in parallel. The syntax for integrating with Storybook is slightly different to ensure alignment with the Storybook API.
To define a Code Connect doc using Storybook simply add a parameters
block to your story configuration object that references the Figma component you want to pull into Code Connect. This syntax is an extension of the existing Storybook integration offered by Figma, so you'll automatically get all the benefits that come with that such as a Figma preview of the component embedded in your Storybook documentation.
export default {
component: Button,
parameters: {
design: {
type: 'figma',
url: 'https://...',
examples: [ButtonExample],
},
},
}
// Existing story
export function ButtonExample() {
return <Button disabled />
}
To publish your connected components to Figma simply run figma connect publish
. This will find all Code Connect files in your repository, parse them, and upload the necessary metadata to Figma for display in Dev Mode. Code Connect only uploads the explicit code snippets and metadata related to Code Connect. It does not upload any other parts of your source code.
npx figma connect publish --token <token>
To unpublish your connected components from Figma, you can run the unpublish
command. This will find all the Code Connect files in your repository and remove the metadata from Figma.
npx figma connect unpublish --token <token>
figma connect
as well as figma connect publish
can accept a variety of flags to customize the behavior of these commands.
-t --token <access_token>
Specify the Figma auth token to use. Can also be specified using theFIGMA_ACCESS_TOKEN
environment variable.-c --config <path>
Path to config file (by default looks for "figma.config.json" in the current directory).-r --dir <folder>
Directory to parse (uses current directory by default)--dry-run
Perform a dry run of publishing, returning errors if any exist but does not publish your connected components.--skip-validation
By default,publish
will validate your Code Connect file with the Figma component to ensure that their properties match. This flag can be used to skip this validation.--verbose
Enable verbose logging for debugging--node <node-url>
For unpublishing only a single specific component withunpublish
--label <label>
For publishing or unpublishing under a custom label
To configure the behaviour of the CLI and Code Connect you can create a figma.config.json
file. This file must be located in the project root, i.e. alongside your package.json
file. This config file will automatically be picked up by the CLI if it's in the same folder where you run the commands, but you can also specify a path to the config file via the --config
flag.
In addition to the general configuration for the CLI, there is React-specific project configuration that can be specified in the configuration file. This configuration is mainly used to ensure Code Connect can correctly locate your imports as well as display the correct imports within Dev Mode.
{
"codeConnect": {
"parser": "react",
"include": [],
"exclude": ["test/**", "docs/**", "build/**"],
"importPaths": {
"src/components/*": "@ui/components"
},
"paths": {
"@ui/components/*": ["src/components/*"]
}
}
}
importPaths
maps relative imports to non-relative imports. This is useful for when you want users of your design system to import components from a specific package as opposed to using relative imports. The mapping uses the file location on disk. For example, if your Code Connect file looks like this:
import { Button } from './'
figma.connect(Button, 'https://...')
You can use importPaths
by specifying where Button
lives in your repo and map it to something else. You can use partial paths here, as it will
consider the full absolute path of the source file Button.tsx
.
{
"codeConnect": {
"importPaths": {
"src/components/*": "@ui/components"
}
}
}
Which will end up changing your connected code snippet in Figma to
import { Button } from '@ui/components'
This is needed if you're using path aliases in your TypeScript project configuration, so Code Connect can know how to resolve your imports. It should match the paths
object used in your tsconfig.json.
You can override the generated import statements for a connected component by passing an array of imports
. This might be useful if the automatic resolution does not work well for your use case.
figma.connect(Button, "https://...", {
imports: ["import { Button } from '@lib'"]
})
With the basic setup as described above, you should have a connected code snippet visible in Dev Mode when inspecting instances of that component. However, the code snippet doesn't yet reflect the entirety of the design. For example, we see the same code snippet for a button whether it has the type
variant set to primary
or secondary
.
To ensure the connected code snippet accurately reflects the design, we need to make use of property mappings. This enables you to link specific props in the design to props in code. In most cases, design and code props don't match 1:1, so it's necessary for us to configure this to ensure the correct code is shown in Dev Mode.
Here is a simple example for a button with a label
, disabled
, and type
property.
import figma from '@figma/code-connect/react'
figma.connect(Button, 'https://...', {
props: {
label: figma.string('Text Content'),
disabled: figma.boolean('Disabled'),
type: figma.enum('Type', {
Primary: 'primary',
Secondary: 'secondary',
}),
},
example: ({ disabled, label, type }) => {
return (
<Button disabled={disabled} type={type}>
{label}
</Button>
)
},
})
And this is how we would achieve the same thing using the Storybook integration. Notice how this works well with existing args
configuration you may already be using in Storybook.
import figma from "@figma/code-connect"
export default {
component: Button,
parameters: {
design: {
type: 'figma',
url: 'https://...',
examples: [ButtonExample],
props: {
label: figma.string('Text Content'),
disabled: figma.boolean('Disabled'),
type: figma.enum('Type', {
Primary: ButtonType.Primary,
Secondary: ButtonType.Secondary
},
},
},
argTypes: {
label: { control: 'string' },
disabled: { control: 'boolean' },
type: {
control: {
type: 'select',
options: [ButtonType.Primary, ButtonType.Secondary]
}
}
},
args: {
label: 'Hello world',
disabled: false,
type: ButtonType.Primary
}
}
}
export function ButtonExample({ label, disabled, type }) {
return <Button disabled={disabled} type={type}>{ label }</Button>
}
The figma
import contains helpers for mapping all sorts of properties from design to code. They work for simple mappings where only the naming differs between Figma and code, as well as more complex mappings where the type differs. See the below reference for all the helpers that exist and the ways you can use them to connect Figma and code components using Code Connect.
figma.connect()
has two signatures for connecting components.
// connect a component in code to a Figma component
figma.connect(Button, "https://...")
// connect a Figma component to e.g a native element
figma.connect("https://...")
TODO DEPRECTATE?
The second option is useful if you want to just render a HTML tag instead of a React component. The first argument is used to determine where your component lives in code, in order to generate an import statement for the component. This isn't needed if you just want to render e.g a button
tag.
figma.connect("https://...", {
example: () => <button>click me</button>
})
Strings are the simplest value to map from Figma to code. Simply call figma.string
with the Figma prop name you want to reference as a parameter. This is useful for things like button labels, header titles, tooltips, etc.
figma.string('Title')
Booleans work similar to strings. However Code Connect also provides helpers for mapping booleans in Figma to more complex types in code. For example you may want to map a Figma boolean to the existence of a specific sublayer in code. In addition to mapping boolean props, figma.boolean
can be used to map boolean Variants in Figma. A boolean Variant is a Variant with only two options that are either "Yes"/"No", "True"/"False" or "On"/Off". For figma.boolean
these values are normalized to true
and false
.
// simple mapping of boolean from figma to code
figma.boolean('Has Icon')
// map a boolean value to one of two options of any type
figma.boolean('Has Icon', {
true: <Icon />,
false: <Spacer />,
})
In some cases, you only want to render a certain prop if it matches some value in Figma. You can do this either by passing a partial mapping object, or setting the value to undefined
.
// Don't render the prop if 'Has label' in figma is `false`
figma.boolean('Has label', {
true: figma.string('Label'),
false: undefined,
})
Variants (or enums) in Figma are commonly used to control the look and feel of components that require more complex options than a simple boolean toggle. Variant properties are always strings in Figma but they can be mapped to any type in code. The first parameter is the name of the Variant in Figma, and the second parameter is a value mapping. The keys in this object should match the different options of that Variant in Figma, and the value is whatever you want to output instead.
// maps the 'Options' variant in Figma to enum values in code
figma.enum('Options', {
'Option 1': Option.first,
'Option 2': Option.second,
})
// maps the 'Options' variant in Figma to sub-component values in code
figma.enum('Options', {
'Option 1': <Icon />,
'Option 2': <IconButton />,
})
// result is true for disabled variants otherwise undefined
figma.enum('Variant', { Disabled: true })
// enums mappings can be used to show a component based on a Figma variant
figma.connect(Modal, 'https://...', {
props: {
cancelButton: figma.enum('Type', {
Cancellable: <CancelButton />,
}),
// ...
},
example: ({ cancelButton }) => {
return (
<Modal>
<Title>Title</Title>
<Content>Some content</Content>
{cancelButton}
</Modal>
)
},
})
Mapping objects for figma.enum
as well as figma.boolean
allows nested references, which is useful if you want to conditionally render a nested instance for example. (see the next section for how to use figma.instance
)
// maps the 'Options' variant in Figma to enum values in code
figma.enum('Type', {
WithIcon: figma.instance('Icon'),
WithoutIcon: undefined,
})
Note that in contrast to figma.boolean
, values are not normalized for figma.enum
. You always need to pass the exact literal values to the mapping object.
// These two are equivalent for a variant with the options "Yes" and "No"
disabled: figma.enum("Boolean Variant", {
Yes: // ...
No: // ...
})
disabled: figma.boolean("Boolean Variant", {
true: // ...
false: // ...
})
Instances is a Figma term for nested component references. For example, in the case of a Button
containing an Icon
as a nested component, we would call the Icon
an instance. In Figma instances can be properties, (that is, inputs to the component), just like we have render props in code. Similarly to how we can map booleans, enums, and strings from Figma to code, we can also map these to instance props.
To ensure instance properties are as useful as possible with Code Connect, it is advised that you also provide Code Connect for the common components which you would expect to be used as values to this property. Dev Mode will automatically hydrate the referenced component's connected code snippet example and how changes it in Dev Mode for instance props.
// maps an instance-swap property from Figma
figma.instance('PropName')
The return value of figma.instance
is a JSX component and can be used in your example like a typical JSX component prop would be in your codebase.
figma.connect(Button, 'https://...', {
props: {
icon: figma.instance('Icon'),
},
example: ({ icon }) => {
return <Button icon={icon}>Instance prop Example</Button>
},
})
You should then have a separate figma.connect
call that connects the Icon component with the nested Figma component. Make sure to connect the backing component of that instance, not the instance itself.
figma.connect(Icon32Add, 'https://...')
It's common for components in Figma to have child instances that aren't bound to an instance-swap prop. Similarly to figma.instance
, we can render the code snippets for these nested instances with figma.children
. This helper takes the name of the instance layer within the parent component as its parameter, rather than a Figma prop name.
To illustrate this, consider the layer hierarchy in a component vs an instance of that component:
Button (Component)
Icon (Instance) -- "Icon" is the original name of the layer, this is what you should pass to figma.children()
Button (Instance) RenamedIcon (Instance) -- here the instance layer was renamed, which won't break the mapping since we're not using this name
Note that the nested instance also must be connected separately.
Layer names may differ between variants in a component set. To ensure the component (Button) can render a nested instance (Icon) for any of those variants, you must either use the wildcard option
figma.children("*")
or ensure that the layer name representing the instance (Icon) is the same across all variants of your component set (Button).
// map one child instance with the layer name "Tab"
figma.children('Tab')
// map multiple child instances by their layer names to a single prop
figma.children(['Tab 1', 'Tab 2'])
figma.children()
can be used with a single wildcard '*' character, to partially match names or to render any nested child. Wildcards cannot be used with the array argument. Matches are case sensitive.
// map any (all) child instances
figma.children('*')
// map any child instances that starts with "Icon"
figma.children('Icon*')
In cases where you don't want to connect a child component, but instead map its properties on the parent level, you can use figma.nestedProps()
to achieve this. This helper takes the name of the layer as it's first parameter, and a mapping object as the second parameter. These props can then be referenced in the example function. nestedProps
will always select a single instance, and cannot be used to map multiple children.
// map the properties of a nested instance named "Button Shape"
figma.connect(Button, "https://...", {
props: {
buttonShape: figma.nestedProps('Button Shape', {
size: figma.enum({ ... }),
})
},
example: ({ buttonShape }) => <Button size={buttonShape.size} />
}
A common pattern is to use nestedProps
to access a conditionally hidden layer. This can be achieved by using nestedProps
in conjunction with boolean
, and passing a fallback object in the false
case.
figma.connect(Button, "https://...", {
props: {
childProps: figma.boolean("showChild", {
true: figma.nestedProps('Child', {
label: figma.string("Label")
},
false: { label: undefined }
})
},
example: ({ childProps }) => <Button label={childProps.label} />
}
A common pattern for design systems in Figma is to not use props for texts, but rather rely on instances overriding the text content. figma.textContent()
allows you to select a child text layer and render its content. It takes a single parameter which is the name of the layer in the original component.
figma.connect(Button, "https://...", {
props: {
label: figma.textContent("Text Layer")
},
example: ({ label }) => <Button>{label}</Button>
}
For mapping figma properties to a className string, you can use the figma.className
helper. It takes an array of strings and returns the concatenated string. Any other helper that returns a string (or undefined) can be used in conjunction with this. Undefined values or empty strings will be filtered out from the result
figma.connect("https://...", {
props: {
className: figma.className([
'btn-base',
figma.enum("Size", { Large: 'btn-large' }),
figma.boolean("Disabled", { true: 'btn-disabled', false: '' }),
])
},
example: ({ className }) => <button className={className} />
}
In Dev Mode this will display as:
<button className="btn-base btn-large btn-disabled" />
Sometimes a component in Figma is represented by more than one component in code. For example you may have a single Button
in your Figma design system with a type
property to switch between primary, secondary, and danger variants. However, in code this may be represented by three different components, a PrimaryButton
, SecondaryButton
and DangerButton
.
To model this behaviour with Code Connect we can make use of something called variant restrictions. Variant restrictions allow you to provide entirely different code samples for different variants of a single Figma component. The keys and values used should match the name of the variant (or property) in Figma and it's options respectively.
figma.connect(PrimaryButton, 'https://...', {
variant: { Type: 'Primary' },
example: () => <PrimaryButton />,
})
figma.connect(SecondaryButton, 'https://...', {
variant: { Type: 'Secondary' },
example: () => <SecondaryButton />,
})
figma.connect(DangerButton, 'https://...', {
variant: { Type: 'Danger' },
example: () => <DangerButton />,
})
This will also work for Figma properties that aren't variants (for example, boolean props).
figma.connect(IconButton, 'https://...', {
variant: { "Has Icon": true },
example: () => <IconButton />,
})
In some complex cases you may also want to map a code component to a combination of variants in Figma.
figma.connect(DangerButton, 'https://...', {
variant: { Type: 'Danger', Disabled: true },
example: () => <DangerButton />,
})
You can achieve the same thing using the Storybook API.
export default {
component: Button,
parameters: {
design: {
type: 'figma',
url: 'https://...',
examples: [
{ example: PrimaryButtonStory, variant: { Type: 'Primary' } },
{ example: SecondaryButtonStory, variant: { Type: 'Secondary' } },
{ example: DangerButtonStory, variant: { Type: 'Danger' } },
],
},
},
}
export function PrimaryButtonStory() {
return <PrimaryButton />
}
export function SecondaryButtonStory() {
return <SecondaryButton />
}
export function DangerButtonStory() {
return <DangerButton />
}
For connecting a lot of icons, we recommend creating a script that pulls icons from a Figma file to generate an icons.figma.tsx
file that includes all icons. You can use the script here as a starting point. The script is marked with "EDIT THIS" in areas where you'll need to make edits for it to work with how your Figma design system is setup and how your icons are defined in code.
Icons can be configured in many different ways in Figma and code. We recommend using instance-swap props in Figma for icons, to be able to access the nested Code Connect icon using a stable instance-swap prop ID.
If your icons are passed as JSX elements in code, you can use Code Connect in the same way you create components.
// icon
figma.connect("my-icon-url", {
example: () => <IconHeart />
})
// parent
figma.connect("my-button-url, {
props: {
icon: figma.instance("InstanceSwapPropName")
},
example: ({ icon }) => <Button>{icon}</Button>
})
// renders in Dev Mode
<Button><IconHeart/></Button>
If your icons are passed as React components, you can return a React component instead of a JSX element in your icon Code Connect file.
// icon
figma.connect("my-icon-url", {
example: () => IconHeart
})
// parent
figma.connect("my-button-url, {
props: {
Icon: figma.instance<React.FunctionComponent>("InstanceSwapPropName")
},
example: ({ Icon }) => <Button Icon={Icon} />
})
// renders in Dev Mode
<Button Icon={IconHeart} />
It's common to use IDs instead of passing around components for icons. In this case, you'll want your icon CC files to just return that string. figma.instance
takes a type paremeter, to match what the nested template returns.
// icon
figma.connect("my-icon-url", {
example: () => "icon-heart"
})
// parent
figma.connect("my-button-url, {
props: {
iconId: figma.instance<string>("InstanceSwapPropName")
},
example: ({ iconId }) => <Button iconId={iconId} />
})
// renders in Dev Mode
<Button iconId="icon-heart" />
If you have different ways of rendering icons depending on parent, or, if you want to use icon strings but still be able to map properties of the icon components, you'll want to use getProps
or render
which are exposed on the return value of figma.instance()
. The example
function of the icon itself determines how that icon renders when clicked in Figma, but can be "overriden" via these additional helpers.
getProps
gives access to the props of the child (e.g. the icon) from the parent, so you can use those props in your parent component. Note the static prop iconId: "my-icon"
- any custom/static props like this one will be included in the object returned from getProps
.
// icon
figma.connect("my-icon-url", {
props: {
iconId: "my-icon",
size: figma.enum("Size", {
'large': 'large',
'small': 'small'
})
}
example: ({ size }) => <MyIcon size={size}/>
})
// parent
figma.connect("icon-button-url", {
props: {
iconProps: figma.instance("InstanceSwapPropName").getProps<{iconId: string, size: "small" | "large"}>()
},
example: ({ iconProps }) => <IconButton iconId={iconProps.iconId} iconSize={iconProps.size} />
})
// renders in Dev Mode
<IconButton iconId="my-icon" size="small" />
render
allows you to conditionally render nested connected components. The argument is passed the resolved props of the nested component.
This is useful if you need to dynamically render different JSX elements based on e.g a boolean prop.
// icon
figma.connect("my-icon-url", {
props: {
iconId: "my-icon",
size: figma.enum("Size", {
'large': 'large',
'small': 'small'
})
}
example: ({ size }) => <MyIcon size={size}/>
})
// parent
figma.connect("icon-button-url", {
props: {
icon: figma.boolean("Show icon", {
true: figma.instance("InstanceSwapPropName").render<{iconId: string, size: "small" | "large"}>(props => <ButtonIcon id={props.iconId} size={props.size}/>),
}
},
example: ({ icon }) => <Button icon={icon}/>
})
// renders in Dev Mode
<Button icon={<ButtonIcon id="my-icon" size="small" />} />
The easiest way to get started using Code Connect is by using the CLI locally. However, once you have set up your first connected components it may be beneficial to integrate Code Connect with your CI/CD environment to simplify maintenance and to ensure component connections are always up to date. Using GitHub actions, we can specify that we want to publish new files when any PR is merged to the main branch. We recommend only running this on pull requests that are relevant to Code Connect to minimize impact on other pull requests.
on:
push:
paths:
- src/components/**/*.figma.tsx
branches:
- main
jobs:
code-connect:
name: Code Connect
runs-on: ubuntu-latest
steps:
- run: npx figma connect publish --exit-on-unreadable-files
By default Code Connect creates a new file which lives alongside the components you want to connect to Figma. However, Code Connect may also be co-located with the component it is connecting in code. To do this, simply move the contents of the <component-name>.figma.tsx
file into your component definition file.
import figma from "@figma/code-connect"
interface ButtonProps { ... }
export function Button(props: ButtonProps) { ... }
figma.connect(Button, "https://...", {
example: () => {
return <Button />
}
})