// icons.jsx — simple line/solid UI icons (stroke-based, standard UI glyphs) const Ic = ({ d, size = 20, fill = "none", stroke = "currentColor", sw = 1.8, children, ...p }) => ( {d ? : children} ); const IconCar = (p) => (); const IconBike = (p) => (); const IconSearch = (p) => (); const IconWhats = ({ size = 20, ...p }) => ( ); const IconCalendar = (p) => (); const IconClock = (p) => (); const IconPin = (p) => (); const IconGauge = (p) => (); const IconGear = (p) => (); const IconFuel = (p) => (); const IconPalette = (p) => (); const IconCalDay = (p) => (); const IconArrowLeft = (p) => (); const IconArrowRight = (p) => (); const IconCheck = (p) => (); const IconCheckCircle = (p) => (); const IconX = (p) => (); const IconPlus = (p) => (); const IconEdit = (p) => (); const IconTrash = (p) => (); const IconLogout = (p) => (); const IconLock = (p) => (); const IconUser = (p) => (); const IconImage = (p) => (); const IconCamera = (p) => (); const IconSliders = (p) => (); const IconStar = (p) => (); const IconPhone = (p) => (); const IconChevDown = (p) => (); const IconShield = (p) => (); const IconMenu = (p) => (); const IconInsta = (p) => (); const IconBolt = (p) => (); const IconTag = (p) => (); Object.assign(window, { IconCar, IconBike, IconSearch, IconWhats, IconCalendar, IconClock, IconPin, IconGauge, IconGear, IconFuel, IconPalette, IconCalDay, IconArrowLeft, IconArrowRight, IconCheck, IconCheckCircle, IconX, IconPlus, IconEdit, IconTrash, IconLogout, IconLock, IconUser, IconImage, IconCamera, IconSliders, IconStar, IconPhone, IconChevDown, IconShield, IconMenu, IconInsta, IconBolt, IconTag, });