Edit component input field instance

I have created a styled input field and converted it to a component. What I cannot seem to do is edit the placeholder or input type for an instance.

I was hoping for simply styling the input and then being able to apply that styling to other inputs. Element templates also do not seem to achieve this.

Is this correct and are inputs not really best use case for components.

Hi @Sebastian1 :wave:

Does your component have props?

You could have a placeholder property for example and bind the placeholder to the prop value. You won’t be able to do that for the input type because that’s not bindable.

Here’s a video explaining what I mean: https://tella.video/video-for-sebastian-fv73

Does that help?