feat(SW-350): update classes for booking widget input

This commit is contained in:
Pontus Dreij
2024-10-08 10:49:26 +02:00
parent 3160174701
commit 2b20172b73
3 changed files with 8 additions and 13 deletions

View File

@@ -10,11 +10,7 @@ const Input = forwardRef<
>(function InputComponent(props, ref) {
return (
<Body asChild>
<input
{...props}
ref={ref}
className={`${styles.input} ${props.className}`}
/>
<input {...props} ref={ref} className={styles.input} />
</Body>
)
})