Initial WatchLink scaffold
This commit is contained in:
5
src/components/status-badge.tsx
Normal file
5
src/components/status-badge.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { clsx } from "clsx";
|
||||
|
||||
export function StatusBadge({ children, tone = "neutral" }: { children: React.ReactNode; tone?: string }) {
|
||||
return <span className={clsx("badge", tone)}>{children}</span>;
|
||||
}
|
||||
Reference in New Issue
Block a user