// health/WakeSchedule.jsx // Bottom sheet (medium detent) over the Sleep detail. Per-day wake editor, // Mon โ Sun, with time wheel preview for the focused row (Thursday). function WakeSchedule({ dark = false }) { const rows = [ { d: 'Mon', t: '6:15 AM', goal: '8h 00m', enabled: true }, { d: 'Tue', t: '6:15 AM', goal: '8h 00m', enabled: true }, { d: 'Wed', t: '6:15 AM', goal: '8h 00m', enabled: true }, { d: 'Thu', t: '5:45 AM', goal: '8h 30m', enabled: true, focus: true }, { d: 'Fri', t: '6:15 AM', goal: '8h 00m', enabled: true }, { d: 'Sat', t: '8:30 AM', goal: '9h 00m', enabled: true }, { d: 'Sun', t: '8:30 AM', goal: '9h 00m', enabled: false }, ]; const Wheel = ({ values, active }) => { const visible = 5; const start = Math.max(0, active - 2); const slice = values.slice(start, start + visible); return (