Files
web/components/Forms/BookingWidget/FormContent/Input/index.tsx
2024-10-08 08:57:19 +02:00

23 lines
478 B
TypeScript

import React, { forwardRef, InputHTMLAttributes } from "react"
import Body from "@/components/TempDesignSystem/Text/Body"
import styles from "./input.module.css"
const Input = forwardRef<
HTMLInputElement,
InputHTMLAttributes<HTMLInputElement>
>(function InputComponent(props, ref) {
return (
<Body asChild>
<input
{...props}
ref={ref}
className={`${styles.input} ${props.className}`}
/>
</Body>
)
})
export default Input