mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 18:20:47 +01:00
19 lines
349 B
Vue
19 lines
349 B
Vue
<template>
|
|
<svg :width="size" :height="size">
|
|
<image :href="`https://raw.githubusercontent.com/Templarian/MaterialDesign/master/svg/${name}.svg`"
|
|
:width="size"
|
|
:height="size"/>
|
|
</svg>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
name: string,
|
|
size: number
|
|
}>();
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |