/* Simple1 — mascote oficial da SimplesDesk (bolinha com olhos) */ function Simple1Mascot({ size = 220, aura = true }) { const uid = React.useMemo(() => "s1m" + Math.random().toString(36).slice(2, 8), []); return (
{aura && (
)} {/* olhos (sem pupila) */} {/* brilho */}
); } window.Simple1Mascot = Simple1Mascot;