// Shared icon set (Lucide — modern line icons). Use ic('name', size) for any UI icon.
// Add new icons here so the whole app stays visually consistent.
(function () {
const P = {
chat: '',
screenShare: '',
wifi: '',
video: '',
paperclip: '',
smile: '',
smilePlus: '',
reply: '',
info: '',
x: '',
arrowLeft: '',
users: '',
userPlus: '',
send: '',
search: '',
edit: '',
trash: '',
logOut: '',
plus: '',
check: '',
download: '',
copy: '',
file: '',
mic: '',
micOff: '',
camera: '',
cameraOff: '',
phoneOff: '',
phone: '',
calendar: '',
pencil: '',
chevronDown: '',
layoutDashboard:'',
arrowRight: '',
alertTriangle:'',
lock: '',
monitor: '',
barChart: '',
bell: '',
bold: '',
italic: '',
strikethrough:'',
code: '',
list: '',
listOrdered: '',
type: '',
crown: '',
checkCheck: '',
calendarX: '',
calendarClock:'',
fileText: '',
record: '',
callEnd: '',
settings: '',
};
window.ICON = P;
window.ic = function (name, size) {
const s = size || 18;
return '';
};
})();