// Minimal inline lucide-style icons (stroke-based) const I = (paths, viewBox = '0 0 24 24') => ({ size = 16, color, fill = 'none', strokeWidth = 2, style, className }) => ( {paths} ); const Lock = I(<>); const Plus = I(<>); const MoreVertical = I(<>); const MoreHorizontal = I(<>); const Signal = I(<>); const Wifi = I(<>); const BatteryFull = I(<>); const Home = I(<>); const Search = I(<>); const Bell = I(<>); const Folder = I(<>); const User = I(<>); const Compass = I(<>); const Users = I(<>); const ArrowRight = I(<>); const Sparkles = I(<>); const Bookmark = I(<>); const Share2 = I(<>); const ChevronLeft = I(<>); const ChevronRight = I(<>); const ChevronDown = I(<>); const ChevronUp = I(<>); const Check = I(<>); const X = I(<>); const MessageCircle= I(<>); const MessageSquare= I(<>); const Lightbulb = I(<>); const Layers = I(<>); const Link = I(<>); const Grid3x3 = I(<>); const Paperclip = I(<>); const Calendar = I(<>); const Star = I(<>); const Code = I(<>); const Globe = I(<>); const Github = I(<>); const Figma = I(<>); const Download = I(<>); const Settings = I(<>); const Smartphone = I(<>); const Monitor = I(<>); const Info = I(<>); const FileCheck = I(<>); window.lucideReact = { Lock, Plus, MoreVertical, MoreHorizontal, Signal, Wifi, BatteryFull, Home, Search, Bell, Folder, User, Compass, Users, ArrowRight, Sparkles, Bookmark, Share2, ChevronLeft, ChevronRight, ChevronDown, ChevronUp, Check, X, MessageCircle, MessageSquare, Lightbulb, Layers, Link, Grid3x3, Paperclip, Calendar, Star, Code, Globe, Github, Figma, Download, Settings, Smartphone, Monitor, Info, FileCheck, };