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 }) => (
|
2022-09-27 22:20:20 +00:00
|
|
|
<span className="font-hash text-black break-all">{value}</span>
|
2021-11-26 08:22:08 +00:00
|
|
|
);
|
2021-07-03 22:40:47 +00:00
|
|
|
|
2021-11-26 08:22:08 +00:00
|
|
|
export default HexValue;
|