"use client"; import { LockKeyhole } from "lucide-react"; import styles from "./private-message-card.module.css"; export interface PrivateMessageCardProps { hint?: string | null; isUnlocking?: boolean; onUnlock?: () => void; } export function PrivateMessageCard({ hint, isUnlocking = false, onUnlock, }: PrivateMessageCardProps) { return (

{hint && hint.length > 0 ? hint : "Elio has a private message for you."}

); }