swordev / suid

A port of Material-UI (MUI) built with SolidJS.
https://suid.io
MIT License
673 stars 48 forks source link

Fix input label positioning for small TextField size #198

Closed martinpengellyphillips closed 1 year ago

martinpengellyphillips commented 1 year ago

When setting size='small' on a TextField the label is incorrectly positioned.

Screenshot 2023-03-29 at 21 36 14

Looking at the code it appears the styling logic is correct, but the ownerState is missing the relevant size prop. This PR ensures the size prop is correctly passed from the TextField to fix the issue.

Screenshot 2023-03-29 at 21 35 22

As part of this I also added a 'sizes' example to the doc site.