40 lines
669 B
Vue
40 lines
669 B
Vue
<template>
|
|
<div class="shelf-item" :class="{ active: active }">
|
|
<IconButton :icon="icon" :size="32" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.shelf-item {
|
|
flex: 0 0 auto;
|
|
border-radius: 2px;
|
|
|
|
&:hover {
|
|
background: var(--color-6-lowergray);
|
|
}
|
|
|
|
&.active {
|
|
background: var(--color-accent);
|
|
}
|
|
|
|
svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import IconButton from "./buttons/IconButton.vue";
|
|
|
|
export default defineComponent({
|
|
components: { IconButton },
|
|
props: {
|
|
icon: { type: String, required: true },
|
|
active: { type: Boolean, default: false },
|
|
},
|
|
});
|
|
</script>
|