12 lines
216 B
TypeScript
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;
|