This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Menu
skyroc-ui/menuRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/menu.jsonSource
1import type { ComponentRef } from 'react';2import { forwardRef } from 'react';3import { Arrow as _Arrow } from '@radix-ui/react-menu';4import { cn } from '@/lib/utils';5import { menuVariants } from './menu-variants';6import type { MenuArrowProps } from './types';78const MenuArrow = forwardRef<ComponentRef<typeof _Arrow>, MenuArrowProps>((props, ref) => {9 const { className, component: Arrow = _Arrow, ...rest } = props;1011 const { arrow } = menuVariants();1213 const mergedCls = cn(arrow(), className);1415 return (16 <Arrow17 className={mergedCls}18 ref={ref}19 {...rest}20 />21 );22});2324MenuArrow.displayName = 'MenuArrow';2526export default MenuArrow;
What it pulls in
Other registry items
