Skip to content

pantoken / packages/core/src / runIconPlugins

関数: runIconPlugins()

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

ベータ

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.

パラメーター

tokens

Token[]

plugins

読み取り専用 PantokenPlugin[]

theme?

Theme = "rebrand"

戻り値

Token[]

追加のグリフを <image> トークンとして登録する

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