libmodulor
Version:
A TypeScript library to create platform-agnostic applications
9 lines (8 loc) • 328 B
TypeScript
/**
* The icon code (e.g. https://fontawesome.com/v6/search?o=s&m=free)
*
* There are thousands of them so we voluntarily keep it a simple string and not a union type that would become unmaintainable.
*
* You can naturally use a different icon library as long as the renderer handles it.
*/
export type IconCode = string;