'use client'
import { useState } from 'react'
function Toggle({ on, onChange }: { on: boolean; onChange: (v: boolean) => void }) {
return (
<button onClick={() => onChange(!on)} style={{
width: 40, height: 22, borderRadius: 11, border: 'none', cursor: 'pointer', position: 'relative',
background: on ? '#C9A84C' : 'rgba(255,255,255SettingsPanel