/* JothidaKural mockups — icon set + phone frame */ const I = { star: , chat: , phone: , video: <>, cal: <>, wallet: <>, shield: <>, arrow: , arrowL: , check: , spark: , trend: <>, bell: <>, users: <>, user: <>, home: <>, grid: <>, clock: <>, sun: <>, moon: , mapPin: <>, share: <>, chevR: , chevL: , plus: , scroll: <>, ring: <>, heart: , rupee: , upi: <>, phoneCall: , download: <>, message: , filter: , }; function Icon({ name, size, fill }) { const filled = name === "star" || name === "spark"; return ( ); } /* iOS-style status bar (signal/wifi/battery) */ function StatusBar({ time = "9:41" }) { return (
{time}
); } /* Phone frame: theme = "dark" | "light" */ function Phone({ theme, time, children }) { return (
{children}
); } Object.assign(window, { Icon, StatusBar, Phone });