'use client'; import { Stack } from '@/ui/primitives/Stack'; import React from 'react'; interface AuthFormProps { children: React.ReactNode; onSubmit: (e: React.FormEvent) => void; } /** * AuthForm * * Semantic form wrapper for auth flows. */ export function AuthForm({ children, onSubmit }: AuthFormProps) { return ( {children} ); }