import * as React from "react";

interface VerificationStampProps {
  analystName: string;
  verificationId: string;
  date: string;
}

export function VerificationStamp({
  analystName,
  verificationId,
  date,
}: VerificationStampProps) {
  return (
    <div className="inline-flex items-center space-x-3 bg-green/5 border border-green/20 rounded-xs px-3 py-1.5 text-xs text-green">
      <div className="w-2 h-2 rounded-full bg-green animate-pulse" />
      <div className="font-sans">
        Verified by <span className="font-semibold">{analystName}</span>
      </div>
      <div className="font-mono text-[10px] text-green/70">
        ID: {verificationId} {"//"} {date}
      </div>
    </div>
  );
}
