clone_node
Duplicate a Figma design element by specifying its node ID and positioning the clone at new X and Y coordinates using verbal commands for efficient design adjustments.
Instructions
Clone an existing node in Figma
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | Yes | The ID of the node to clone | |
x | No | New X position for the clone | |
y | No | New Y position for the clone |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nodeId": {
"description": "The ID of the node to clone",
"type": "string"
},
"x": {
"description": "New X position for the clone",
"type": "number"
},
"y": {
"description": "New Y position for the clone",
"type": "number"
}
},
"required": [
"nodeId"
],
"type": "object"
}