otterscan/src/components/HexValue.tsx
2021-11-26 05:22:08 -03:00

12 lines
216 B
TypeScript

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;