mirror of
https://github.com/unraid/api.git
synced 2026-02-05 07:29:21 -06:00
14 lines
319 B
Vue
14 lines
319 B
Vue
<script setup lang="ts">
|
|
import { Bars3Icon, XMarkIcon } from "@heroicons/vue/24/solid";
|
|
|
|
export interface Props {
|
|
open?: boolean;
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
open: false,
|
|
});
|
|
</script>
|
|
<template>
|
|
<Bars3Icon v-if="!open" class="w-16px" />
|
|
<XMarkIcon v-else class="w-16px" />
|
|
</template> |