mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 19:08:09 +00:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
export const Badge = ({
|
|
children,
|
|
icon: Icon,
|
|
}: {
|
|
children: React.ReactNode;
|
|
icon?: React.ElementType;
|
|
}) => (
|
|
<span className="inline-flex items-center gap-1 rounded-md bg-gray-100 px-2 py-1 text-xs font-medium text-gray-700 ring-1 ring-inset ring-gray-200 font-poppins">
|
|
{Icon && <Icon className="h-3 w-3" />}
|
|
{children}
|
|
</span>
|
|
);
|