10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import type { Dialog } from "@radix-ui/themes"
|
|
import type { ComponentProps } from "react"
|
|
|
|
export interface ICreateProjectModalProps extends Pick<
|
|
ComponentProps<typeof Dialog.Root>,
|
|
"open" | "onOpenChange"
|
|
> {
|
|
onCreated?: () => void | Promise<void>
|
|
}
|