import * as React from 'react'; import { Slot } from '@radix-ui/react-slot'; import { ctw } from '@ballerine/ui'; export const SidebarMenuSubButton = React.forwardRef< HTMLAnchorElement, React.ComponentProps<'a'> & { asChild?: boolean; size?: 'sm' | 'md'; isActive?: boolean; } >(({ asChild = false, size = 'md', isActive, className, ...props }, ref) => { const Comp = asChild ? Slot : 'a'; return ( svg]:text-sidebar-accent-foreground flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 outline-none focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0', 'data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground', size === 'sm' && 'text-xs', size === 'md' && 'text-sm', 'group-data-[collapsible=icon]:hidden', className, )} {...props} /> ); }); SidebarMenuSubButton.displayName = 'SidebarMenuSubButton';