Components
- Accordion
- Alert
- Alert Dialog
- Aspect Ratio
- Avatar
- Badge
- Breadcrumb
- Button
- Button Group
- Calendar
- Card
- Carousel
- Chart
- Checkbox
- Collapsible
- Combobox
- Command
- Context Menu
- Data Table
- Date Picker
- Dialog
- Direction
- Drawer
- Dropdown Menu
- Empty
- Field
- Hover Card
- Input
- Input Group
- Input OTP
- Item
- Kbd
- Label
- Menubar
- Native Select
- Navigation Menu
- Pagination
- Popover
- Progress
- Radio Group
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Sonner
- Spinner
- Switch
- Table
- Tabs
- Textarea
- Toast
- Toggle
- Toggle Group
- Tooltip
- Typography
Get Started
Right click hereLong press here
import {
ContextMenu,
ContextMenuCheckboxItem,Installation
pnpm dlx shadcn@latest add context-menu
Usage
import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuTrigger,
} from "@/components/ui/context-menu"<ContextMenu>
<ContextMenuTrigger>Right click here</ContextMenuTrigger>
<ContextMenuContent>
<ContextMenuItem>Profile</ContextMenuItem>
<ContextMenuItem>Billing</ContextMenuItem>
<ContextMenuItem>Team</ContextMenuItem>
<ContextMenuItem>Subscription</ContextMenuItem>
</ContextMenuContent>
</ContextMenu>Examples
Basic
A simple context menu with a few actions.
Right click hereLong press here
import {
ContextMenu,
ContextMenuContent,Submenu
Use ContextMenuSub to nest secondary actions.
Right click hereLong press here
import {
ContextMenu,
ContextMenuContent,Shortcuts
Add ContextMenuShortcut to show keyboard hints.
Right click hereLong press here
import {
ContextMenu,
ContextMenuContent,Groups
Group related actions and separate them with dividers.
Right click hereLong press here
import {
ContextMenu,
ContextMenuContent,Icons
Combine icons with labels for quick scanning.
Right click hereLong press here
import {
ClipboardPasteIcon,
CopyIcon,Checkboxes
Use ContextMenuCheckboxItem for toggles.
Right click hereLong press here
import {
ContextMenu,
ContextMenuCheckboxItem,Radio
Use ContextMenuRadioItem for exclusive choices.
Right click hereLong press here
"use client"
import * as React from "react"Destructive
Use variant="destructive" to style the menu item as destructive.
Right click hereLong press here
import { ArchiveIcon, PencilIcon, ShareIcon, TrashIcon } from "lucide-react"
import {Sides
Control submenu placement with side and align props.
Right click (top)Long press (top)
Right click (right)Long press (right)
Right click (bottom)Long press (bottom)
Right click (left)Long press (left)
import {
ContextMenu,
ContextMenuContent,RTL
To enable RTL support in StyleDriven UI, see the RTL configuration guide.
انقر بزر الماوس الأيمن هنااضغط مطولاً هنا
"use client"
import * as React from "react"Use side="inline-end" to place the menu on the logical right side of the trigger.
<ContextMenu>
<ContextMenuTrigger>Right click here</ContextMenuTrigger>
<ContextMenuContent side="inline-end">
<ContextMenuItem>Profile</ContextMenuItem>
<ContextMenuItem>Billing</ContextMenuItem>
<ContextMenuItem>Team</ContextMenuItem>
<ContextMenuItem>Subscription</ContextMenuItem>
</ContextMenuContent>
</ContextMenu>API Reference
See the Base UI documentation for more information.
Deploy your StyleDriven UI app on Vercel
Trusted by OpenAI, Sonos, Adobe, and more.
Vercel provides tools and infrastructure to deploy apps and features at scale.
Deploy to Vercel