svgl/src/utils/getSvgContent.ts
2024-04-09 23:43:54 -05:00

6 lines
171 B
TypeScript

export const getSvgContent = async (url: string | undefined) => {
const response = await fetch(url || '');
const content = await response.text();
return content;
};