import { Badge } from './badge';
import { Sparkles } from 'lucide-react';
/**
* Canonical "AI Generated" chip (Sparkles + label). Single source of truth for
* every AI-generated indicator across the app — replaces the byte-identical
* inline ` AI Generated` that was
* copy-pasted across the summary / video / SEO editors.
*/
export function AIGeneratedBadge({ className }: { className?: string }) {
return (
AI Generated
);
}