UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

17 lines (13 loc) 394 B
/* * Copyright 2023 Palantir Technologies, Inc. All rights reserved. */ import { describe, it } from "vitest"; import { getIconPaths } from "./allPaths"; import { Icons } from "./iconLoader"; describe("IconLoader", () => { it("is compatible with getIconPaths", () => { Icons.loadAll({ loader: async (name, size) => getIconPaths(name, size), }); }); });