Netra / frontend /src /components /EmptyState.jsx
chikentikka's picture
plate recog by TrOCR and frontend and some other things updated
f09c2db
Raw
History Blame Contribute Delete
360 Bytes
export default function EmptyState({ icon: Icon, title, hint }) {
return (
<div className="empty-state">
{Icon && (
<span className="empty-icon">
<Icon size={22} strokeWidth={1.5} />
</span>
)}
<p className="empty-title">{title}</p>
{hint && <span className="empty-hint">{hint}</span>}
</div>
);
}