fancytextstuff/components/ui/badge.jsx

8 lines
208 B
JavaScript

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}
/>
);