When using the SolidJS integration, the following results in `Uncaught ReferenceError: props is not defined` in the browser: ```ts const BrokenInput = (props: InputProps) => ( <input css={{ ...tw`border`, ...(props.hasHover && tw`hover:border-red-600`), }} /> ) ``` On the other hand, this works fine: ```ts const WorkingInput = styled.input((props: InputProps) => ({ ...tw`border`, ...(props.hasHover && tw`hover:border-red-600`), })) ```