initial commit
This commit is contained in:
8
components/ui/badge.jsx
Normal file
8
components/ui/badge.jsx
Normal file
@@ -0,0 +1,8 @@
|
||||
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}
|
||||
/>
|
||||
);
|
||||
Reference in New Issue
Block a user