"use client" import { cn } from "@/lib/utils" type QuickSettingsOptionProps = { name: string label: string checked: boolean disabled?: boolean onSelect: () => void icon?: React.ReactNode } export function QuickSettingsOption({ name, label, checked, disabled = false, onSelect, icon, }: QuickSettingsOptionProps) { return ( ) } export function QuickSettingsCheckbox({ label, checked, onChange, icon, helpLabel, }: { label: string checked: boolean onChange: (checked: boolean) => void icon?: React.ReactNode helpLabel?: string }) { return ( ) }