remix-forms icon indicating copy to clipboard operation
remix-forms copied to clipboard

Add prop types of custom components

Open bvangraafeiland opened this issue 2 years ago • 4 comments

When using the field children, you can pass some props to the Label/Input etc. However, the prop types of the components are JSX.IntrinsicElements['input'] for example, so if you have a custom input component that takes a size prop, you end up with a typescript error.

In reality the props are being passed through, so it will work if you ignore the type error, but it would be nice if the prop types could be merged somehow.

bvangraafeiland avatar Dec 07 '22 10:12 bvangraafeiland