({
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( |
| 178 | "ml-auto text-xs tracking-widest opacity-60", |
| 179 | className, |
| 180 | )} |
| 181 | {...props} |
| 182 | /> |
| 183 | ); |
| 184 | }; |
| 185 | DropdownMenuShortcut.displayName = "DropdownMenuShortcut"; |
| 186 | |
| 187 | export { |
nothing calls this directly
no test coverage detected
searching dependent graphs…