otterscan/src/components/HexValue.tsx

12 lines
216 B
TypeScript
Raw Normal View History

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