/* Alis AI — ícones (Lucide, inline para conviver com React) Lucide é ISC-licensed. Uso: */ (function () { const P = { "arrow-right": '', "check": '', "chevron-down": '', "play": '', "menu": '', "x": '', "sparkles": '', "message": '', "calendar": '', "calendar-check": '', "bell": '', "brush": '', "headset": '', "megaphone": '', "id-card": '', "bar-chart": '', "qr-code": '', "shield-check": '', "star": '', "clock": '', "whatsapp": '', "zap": '', "instagram": '', "linkedin": '', "youtube": '', "twitter": '' }; function Icon({ name, size, style, className }) { const d = P[name] || ""; return React.createElement("svg", { width: size || 24, height: size || 24, viewBox: "0 0 24 24", fill: name === "star" ? "currentColor" : "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", style, className, dangerouslySetInnerHTML: { __html: d } }); } window.Icon = Icon; })();