PHP Classes

File: resources/js/components/ui/dropdown-menu/DropdownMenuLabel.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/dropdown-menu/DropdownMenuLabel.vue   Download  
File: resources/js/components/ui/dropdown-menu/DropdownMenuLabel.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 2 months ago
Size: 682 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { DropdownMenuLabelProps } from "reka-ui" import type { HTMLAttributes } from "vue" import { reactiveOmit } from "@vueuse/core" import { DropdownMenuLabel, useForwardProps } from "reka-ui" import { cn } from "@/lib/utils" const props = defineProps<DropdownMenuLabelProps & { class?: HTMLAttributes["class"], inset?: boolean }>() const delegatedProps = reactiveOmit(props, "class") const forwardedProps = useForwardProps(delegatedProps) </script> <template> <DropdownMenuLabel v-bind="forwardedProps" :class="cn('px-2 py-1.5 text-sm font-semibold', inset && 'pl-8', props.class)" > <slot /> </DropdownMenuLabel> </template>