RTL Support for input text

I'm using Arabic as input text for one of my tools and I would like the formatting to be Right-To-Left (RTL).
Support told me to create custom input as a workaround for now, however, native support would be much better of course.

A potential workaround would be to create a custom text input component that had its 'dir' set to RTL. Is there any chance that could work for your use case?

FWIW, I'm currently doing the following for RTL support via CSS:

._retool-<COMPONENT_NAME> textarea {
  direction: rtl;
}