Skip to content

pantoken / renderers/react/src / useToken

Swyddogaeth: useToken()

useToken(name, fallback?): string

Arbrofol

Hook React sy'n dychwelyd gwerth tocyn --instui-* wedi'i ddatrys (ail-ddarllen wrth newid name).

Paramedrau

name

string

fallback?

string = ""

Yn dychwelyd

string

Enghraifft

tsx
import { useToken } from "@pantoken/react";

function Banner() {
  const brand = useToken("--instui-color-background-brand", "#0374B5");
  return <div style={{ background: brand }}>Saved</div>;
}