fix: correct Shortcuts

This commit is contained in:
Arvid Norlin
2024-04-24 16:15:46 +02:00
parent dd2127749a
commit 03daf0540e
5 changed files with 23 additions and 8 deletions

View File

@@ -1,7 +1,13 @@
import { ReactNode } from "react"
export type ShortcutsProps = {
shortcuts: { url: string; title: string }[]
shortcuts: {
url: string
title: string
openInNewTab?: boolean
text?: string
}[]
title: string | ReactNode
subtitle?: string
openInNewTab?: boolean
}