Skip to content

pantoken / packages/core/src / runIconPlugins

Fonksiyon: runIconPlugins()

runIconPlugins(tokens, plugins, theme?): Token[]

Beta

Run every plugin's icons hook, letting plugins register extra glyphs as <image> tokens. Each hook receives the current icon list and returns new IconEntry records to add. The result is de-duplicated by name.

Parametreler

tokens

Token[]

plugins

salt okunur PantokenPlugin[]

theme?

Theme = "rebrand"

Döndürür

Token[]

Örnek

Ek bir glifi <image> token olarak kaydedin

ts
import { runIconPlugins, type PantokenPlugin } from "@pantoken/core";
import type { Token } from "@pantoken/model";

const base: Token[] = [];
const star: PantokenPlugin = {
  name: "star",
  icons: () => [{ name: "star", path: "M12 2l3 7h7l-6 4 2 7-6-4-6 4 2-7-6-4h7z" }],
};

const tokens = runIconPlugins(base, [star], "rebrand");
// → adds a --instui-icon-star token whose value is a data-URI SVG