Static Custom Components

Hello @elir-usafacts,

Yes, when you pass noWrap: true, the component will not be directly clickable—you’ll need to select it from the Layers panel in order to modify its values.

If you’d like to make the noWrap component clickable, you can pass props.attributes in the component JSX. However, please note that doing so will also make the component draggable and droppable:

{...props.attributes} 
className={`my-class ${props.attributes.className}`}

You can also reference this related discussion for more context:
Custom component with noWrap true causes focus issue