import { ServerCogIcon, SettingsIcon } from 'lucide-react' import { type ReactNode } from 'react' export type SettingsSection = 'ui' | 'bird' export type SettingsTabItem = { value: SettingsSection label: string icon: ReactNode } /** Side rail items — settings-7 AccountSettings DNA. */ export const SETTINGS_TAB_ITEMS: SettingsTabItem[] = [ { value: 'ui', label: 'Настройки UI', icon: