import type { ReactNode } from "react"; export function ShareDetailCard({ children }: { children: ReactNode }) { return (
{children}
); } export function ShareRow({ label, children }: { label: string; children: ReactNode }) { return (
{label} {children}
); }