Skip to content

pantoken / packages/core/src / decodeIconSvg

Fonksyon: decodeIconSvg()

decodeIconSvg(value): string

Beta

Dekode valè url('data:…') nan yon token ikon pou l tounen nan SVG anliy.

Paramèt

value

string

Retounen

string

Egzanp

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