2021-07-03 22:40:47 +00:00
|
|
|
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-07-03 22:40:47 +00:00
|
|
|
|
2021-11-26 08:22:08 +00:00
|
|
|
export default HexValue;
|