"use client" import { dmSansClassName } from "@/lib/fonts" import { SpaceProfileContent } from "@/components/space-profile-panel" import { cn } from "@lib/utils" import { Dialog, DialogContent, DialogTitle } from "@ui/components/dialog" type SpaceProfileModalProps = { containerTag: string open: boolean onOpenChange: (open: boolean) => void } export function SpaceProfileModal({ containerTag, open, onOpenChange, }: SpaceProfileModalProps) { return ( Space Profile
onOpenChange(false)} />
) }