xmake-icons.ts 360 B

1234567891011121314151617
  1. export type XmakeIconsId =
  2. | "xmake-logo"
  3. | "xmake-build";
  4. export type XmakeIconsKey =
  5. | "XmakeLogo"
  6. | "XmakeBuild";
  7. export enum XmakeIcons {
  8. XmakeLogo = "xmake-logo",
  9. XmakeBuild = "xmake-build",
  10. }
  11. export const XMAKE_ICONS_CODEPOINTS: { [key in XmakeIcons]: string } = {
  12. [XmakeIcons.XmakeLogo]: "61697",
  13. [XmakeIcons.XmakeBuild]: "61698",
  14. };