// Custom gold-tinted feature icons for WuClock capability cards.
// Stroke 1.5, gold (#D4A852), 32x32 viewBox.
const GOLD = "#D4A852";
const GOLD_LITE = "#E4BE6A";
// 1. Clock with check badge — "Medí"
const FeatClockCheck = ({ size = 56 }) => (
);
// 2. Brain with sparkle — "Entendé"
const FeatBrainSpark = ({ size = 56 }) => (
);
// 3. Lotus flower — "Actuá"
const FeatLotus = ({ size = 56 }) => (
);
Object.assign(window, { FeatClockCheck, FeatBrainSpark, FeatLotus });