mirror of
https://github.com/unraid/api.git
synced 2026-04-22 15:21:30 -05:00
refactor: resize menu icon
This commit is contained in:
@@ -4,11 +4,11 @@ import { Bars3Icon, XMarkIcon } from "@heroicons/vue/24/solid";
|
||||
export interface Props {
|
||||
open?: boolean;
|
||||
}
|
||||
const props = withDefaults(defineProps<Props>(), {
|
||||
withDefaults(defineProps<Props>(), {
|
||||
open: false,
|
||||
});
|
||||
</script>
|
||||
<template>
|
||||
<Bars3Icon v-if="!open" class="w-16px" />
|
||||
<XMarkIcon v-else class="w-16px" />
|
||||
</template>
|
||||
<Bars3Icon v-if="!open" class="w-20px" />
|
||||
<XMarkIcon v-else class="w-20px" />
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user