aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/utils/svgURL.ts
blob: 9b8ecbd579a220523cad701a8af58ab76d58b499 (plain) (blame)
1
2
3
4
5
6
7
8
9
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

export default function svgURL(svg: string): string {
  return `url('data:image/svg+xml;utf8,${svg}')`;
}