import React, { ComponentPropsWithoutRef, ElementRef, forwardRef } from "react" export type FormProps = Omit, "className"> /** * A simple Form wrapper that doesn't affect the layout of its children. */ export const Form = forwardRef, FormProps>(function Form( { children, ...rest }, ref, ) { return (
{children}
) })