import * as React from "react"; import { numeralWrapper } from "../../ui/numeralFormat"; export function Favor(favor: number | string): JSX.Element { return ( {typeof favor === "number" ? numeralWrapper.formatFavor(favor) : favor} ); }