import type { FormHTMLAttributes, PropsWithChildren } from "react";
import { cn } from "../../lib/cn";
import { resolveGap, type LayoutSpacing } from "./layout-primitives";
export type FormProps = PropsWithChildren<
FormHTMLAttributes & {
gap?: LayoutSpacing;
}
>;
export function Form({
children,
className,
gap = 16,
style,
...props
}: FormProps) {
return (
);
}