end cleanup

This commit is contained in:
LathanDevers
2026-08-02 21:22:32 +02:00
parent 25c75ba078
commit 80dc61b938
10 changed files with 169 additions and 134 deletions
+23
View File
@@ -0,0 +1,23 @@
import React from 'react';
import { cn } from '@/utils/utils';
interface BadgeProps {
className?: string;
name: string
}
export const StatusBadge: React.FC<BadgeProps> = ({ className, name }) => {
return (
<div
className={cn(
"px-2.5 py-1 rounded-full text-xs font-semibold inline-flex items-center border transition-colors min-w-fit max-h-fit",
className
)}
>
{name}
</div>
);
};
export default StatusBadge;