Skip to content

pantoken / packages/core/src / decodeIconSvg

Mahi: decodeIconSvg()

decodeIconSvg(value): string

Beta

Wetewetehia te uara url('data:…') o tētahi token paki kia huri anō ki te SVG whakauru.

Ngā Tawhā

value

string

Whakahokia

string

Tauira

ts
import { decodeIconSvg } from "@pantoken/core";

const svg = "<svg viewBox='0 0 24 24'><path d='M1 1'/></svg>";
const value = `url('data:image/svg+xml;utf8,${encodeURIComponent(svg)}')`;
decodeIconSvg(value); // → "<svg viewBox='0 0 24 24'><path d='M1 1'/></svg>"