mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
40 lines
1.5 KiB
Vue
40 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import {
|
|
DropdownMenuItem,
|
|
type DropdownMenuItemProps,
|
|
useForwardProps,
|
|
} from "reka-ui";
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = withDefaults(
|
|
defineProps<
|
|
DropdownMenuItemProps & {
|
|
class?: HTMLAttributes["class"];
|
|
inset?: boolean;
|
|
variant?: "default" | "destructive";
|
|
}
|
|
>(),
|
|
{
|
|
variant: "default",
|
|
},
|
|
);
|
|
|
|
const delegatedProps = reactiveOmit(props, "inset", "variant");
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuItem
|
|
data-slot="dropdown-menu-item"
|
|
:data-inset="inset ? '' : undefined"
|
|
:data-variant="variant"
|
|
v-bind="forwardedProps"
|
|
:class="cn(`focus:bg-accent w-full focus:text-accent-foreground data-[variant=destructive]:text-destructive-foreground data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/40 data-[variant=destructive]:focus:text-destructive-foreground data-[variant=destructive]:*:[svg]:!text-destructive-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`, props.class)"
|
|
>
|
|
<slot />
|
|
</DropdownMenuItem>
|
|
</template>
|