import React from 'react'; interface OrbProps { active: boolean; color: string; isSpeaking?: boolean; } const Orb: React.FC = ({ active, color, isSpeaking }) => { return (
{active && (
)}
); }; export default Orb;