/* blueyetutor — inline SVG icon set. * Stroke-based, 1.5px, 14×14 default. Stroke=currentColor so icons inherit * whatever color the surrounding text has — keep `color: var(--navy)` on * the parent if you want navy. * * Replaces every emoji used previously (📤 📚 📘 📜 👥 📕 📄 🗑 ✅ ⬜ etc). */ const SvgBase = ({ size, children, className }) => ( {children} ); const Icon = { Upload: (p) => , Library: (p) => , Workbook: (p) => , History: (p) => , Students: (p) => , File: (p) => , Download: (p) => , Trash: (p) => , Plus: (p) => , Close: (p) => , Check: (p) => , Edit: (p) => , Save: (p) => , Stop: (p) => , ChevDown: (p) => , ChevRight:(p) => , Key: (p) => , Tag: (p) => , Wand: (p) => , Folder: (p) => , Target: (p) => , Notebook: (p) => , Info: (p) => , Search: (p) => , Expand: (p) => , }; Object.assign(window, { Icon });