-
{type.issuer.name}
-
{type.title}
-
- {type.min_year !== type.max_year
- ? type.min_year + " - " + type.max_year
- : type.min_year}
-
-
{(type.count ?? 1) + " in collection"}
+
{issuer.name}
+
{title}
+
{min_year !== max_year ? min_year + " - " + max_year : min_year}
+
{(count ?? 1) + " in collection"}
{category === "coins" && (
<>
- {type.weight &&
{type.weight + "g"}
}
- {type.size &&
{type.size + "mm"}
}
- {type.thickness &&
{type.thickness + "mm"}
}
+ {weight &&
{weight + "g"}
}
+ {size &&
{size + "mm"}
}
+ {thickness &&
{thickness + "mm"}
}
>
)}
@@ -74,19 +78,19 @@ export const InfoBox = ({
}}
>