Skip to content

Instantly share code, notes, and snippets.

View oskarius2's full-sized avatar
🎯
Focusing

oskarius2

🎯
Focusing
View GitHub Profile
@oskarius2
oskarius2 / SynergyBar.tsx
Created May 16, 2026 17:27
one of 15 files for my game
import React from 'react';
import { motion, AnimatePresence } from 'motion/react';
import { SynergyLine } from '../buffs/synergies';
interface SynergyBarProps {
lines: SynergyLine[];
compact?: boolean;
}
export const SynergyBar: React.FC<SynergyBarProps> = ({ lines, compact = false }) => {