PHP Classes

File: resources/js/components/ui/sidebar/SidebarMenuBadge.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/sidebar/SidebarMenuBadge.vue   Download  
File: resources/js/components/ui/sidebar/SidebarMenuBadge.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: 809 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { HTMLAttributes } from "vue" import { cn } from "@/lib/utils" const props = defineProps<{ class?: HTMLAttributes["class"] }>() </script> <template> <div data-sidebar="menu-badge" :class="cn( 'absolute right-1 flex h-5 min-w-5 items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground select-none pointer-events-none', 'peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground', 'peer-data-[size=sm]/menu-button:top-1', 'peer-data-[size=default]/menu-button:top-1.5', 'peer-data-[size=lg]/menu-button:top-2.5', 'group-data-[collapsible=icon]:hidden', props.class, )" > <slot /> </div> </template>