Skip to content

pantoken / packages/core/src / decodeIconSvg

Função: decodeIconSvg()

decodeIconSvg(value): string

Beta

Decodificar o valor url('data:…') de um token de ícone de volta para SVG inline.

Parâmetros

value

string

Retorna

string

Exemplo

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>"