import type React from "react"; export const inputCls = "w-full bg-neutral-900 border border-neutral-800 rounded px-1.5 py-0.5 text-2xs text-neutral-200 font-mono outline-none focus:border-neutral-600"; export function Section({ label, children }: { label: string; children: React.ReactNode }) { return (
{label}
{children}
); } export function Row({ label, children }: { label: string; children: React.ReactNode }) { return (
{label}
{children}
); }