chore(DropdownMenu/ContextMenu): item type default to link

This commit is contained in:
Benjamin Canac
2024-05-27 14:47:57 +02:00
parent 316eeea482
commit a8dfa0ff29
2 changed files with 4 additions and 4 deletions

View File

@@ -19,9 +19,9 @@ export interface DropdownMenuItem extends Omit<LinkProps, 'type' | 'custom'>, Pi
kbds?: KbdProps['value'][] | KbdProps[]
/**
* The item type.
* @defaultValue `'item'`
* @defaultValue `'link'`
*/
type?: 'label' | 'separator' | 'item'
type?: 'label' | 'separator' | 'link'
slot?: string
open?: boolean
defaultOpen?: boolean