export function FactorRow({ label, value, detail }: { label: string; value: string; detail: string }) { return (

{label}

{detail}

{value}

); }