Iconify is a pretty sweet project used in web development, but since they provide SVGs of all icon sets, we can integrate these into Typst documents! 🥰
- Support
<icon-set>:<icon-name>lookups from Typst. - Split the package into something like
typst-iconify-coreandtypst-iconify-<icon-set>so the core remains small (and relatively stagnant once stable) while icon sets can receive updates as-needed. - Support dynamic specification/importing of icons (e.g. say the use doesn't load the
phosphoricons but wants to useph:app-window-duotone, we should be able to lookup/load this icon for them) -- at least whiletypst-iconifyis a monolithic package. - Support configuration of icon sizes, either per-icon or globally with something like a
#show iconify...rule. - Perhaps natively support inline-icons via
#box[#icon(...)], as mentioned here?