chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-05 00:54:49 +00:00
commit 9211ef7e95
3 changed files with 14 additions and 10 deletions

View file

@ -18,7 +18,17 @@ export function DialogFooter(props: ParentProps) {
}
export function Dialog(props: DialogProps) {
const [local] = splitProps(props, ["title", "description", "action", "size", "variant", "class", "classList", "fit", "children"])
const [local] = splitProps(props, [
"title",
"description",
"action",
"size",
"variant",
"class",
"classList",
"fit",
"children",
])
const title = children(() => local.title)
const description = children(() => local.description)
const action = children(() => local.action)