'use client'; import React from 'react'; import { Box } from '@/ui/Box'; import { Stack } from '@/ui/Stack'; 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} ); }