import { Activity } from 'lucide-react'; import { useTranslation } from 'react-i18next'; type Variant = 'inline' | 'overlay'; /** * Small amber "animated theme" chip, shown only on animation-risk setups * (Nvidia/Linux or compositing off). A motion glyph rather than a hazard * triangle — the CPU-usage caveat lives in the tooltip. * * - `inline` — sits after a theme name (Theme Store rows). * - `overlay` — pinned top-centre on an installed theme's preview swatch * (top-right is the active indicator, top-left the uninstall X). */ export function AnimatedThemeBadge({ variant }: { variant: Variant }) { const { t } = useTranslation(); const overlay = variant === 'overlay'; return ( ); }