summaryrefslogtreecommitdiff
path: root/component/IconBase.svelte
blob: c4a3eef824cb721e81531e8d5a740b76de271aa8 (plain) (blame)
1
2
3
4
5
6
7
8
9
<script type="text/typescript">
  export let svgContent: string = "";
</script>

<svg
  enable-background="new 0 0 24 24"
  viewBox="0 0 24 24"
  xmlns="http://www.w3.org/2000/svg"
>{@html svgContent}</svg>