I am currently in the process of creating a form that includes multiple TextField elements. Within this form, there are various other elements in addition to TextFields, but unfortunately they do not blend well with the TextFields in terms of appearance. You can check out an example below by visiting: https://codesandbox.io/s/material-ui-demo-forked-p8s87?file=/demo.js:488-520
Upon inspection, it is evident that the InputLabel
does not complement non-Input
elements effectively, whereas the FormLabel
does not seem like a suitable replacement for InputLabel
. My goal is to substitute Input
with Link
, while keeping the other elements consistent with those linked to Input
. What would be the most effective approach to achieve this?