import React from "react";
type HexValueProps = {
value: string;
};
const HexValue: React.FC<HexValueProps> = ({ value }) => (
<span className="font-hash text-black">{value}</span>
);
export default HexValue;