({
className,
...props
}: React.HTMLAttributes<HTMLSpanElement>)
| 169 | DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName |
| 170 | |
| 171 | const DropdownMenuShortcut = ({ |
| 172 | className, |
| 173 | ...props |
| 174 | }: React.HTMLAttributes<HTMLSpanElement>) => { |
| 175 | return ( |
| 176 | <span |
| 177 | className={cn("ml-auto text-xs tracking-widest opacity-60", className)} |
| 178 | {...props} |
| 179 | /> |
| 180 | ) |
| 181 | } |
| 182 | DropdownMenuShortcut.displayName = "DropdownMenuShortcut" |
| 183 | |
| 184 | export { |
nothing calls this directly
no test coverage detected
searching dependent graphs…