Forked chat

This commit is contained in:
v0
2026-09-09 19:22:56 +00:00
committed by Tom Hicks
parent addda6f54f
commit f2140c19b7
87 changed files with 8129 additions and 0 deletions

16
types/menu.ts Normal file
View File

@@ -0,0 +1,16 @@
import type React from "react"
export interface MenuItem {
id: string
label: string
children?: MenuItem[]
onClick?: () => void
icon?: React.ReactNode
disabled?: boolean
isActive?: boolean
isVisible?: boolean
isSelected?: boolean
isExpanded?: boolean
isLoading?: boolean
isChecked?: boolean
}