Skip to content
Snippets Groups Projects

Display buckets and their objects

Merged Daniel Göbel requested to merge feature/5-display-buckets into development
7 files
+ 104
21
Compare changes
  • Side-by-side
  • Inline
Files
7
<template>
<svg class="bi">
<use v-bind:xlink:href="iconPath + '#' + icon" />
<svg
class="bi bi-bootstrap-fill"
:width="props.width"
:height="props.height"
:fill="props.fill"
>
<use v-bind:xlink:href="iconPath + '#' + props.icon" />
</svg>
</template>
<script setup lang="ts">
import iconPath from "bootstrap-icons/bootstrap-icons.svg";
defineProps<{
icon: string;
}>();
const props = defineProps({
icon: { type: String, required: true },
width: { type: Number, default: 24, required: false },
height: { type: Number, default: 24, required: false },
fill: { type: String, default: "black", required: false },
});
</script>
<style scoped></style>
Loading