import React from "react";
export const Badge = ({ className = "", ...props }) => (
<span
className={`inline-block text-xs px-2 py-1 rounded bg-black/20 text-white ${className}`}
{...props}
/>
);