mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 01:46:07 +00:00
18 lines
323 B
Vue
18 lines
323 B
Vue
<template>
|
|
<div class="collapse-icon">
|
|
<IBiArrowUpCircle v-if="visible" class="text-black h2" />
|
|
<IBiArrowDownCircle v-else class="text-muted h2" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'CollapseIcon',
|
|
props: {
|
|
visible: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|