SheetNonmodal() — supabase Function Reference
Architecture documentation for the SheetNonmodal() function in sheet-nonmodal.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/sheet-nonmodal.tsx lines 13–38
export default function SheetNonmodal() {
return (
<Sheet modal={false}>
<SheetTrigger asChild>
<Button type="outline">Show Sheet</Button>
</SheetTrigger>
<SheetContent className="flex flex-col gap-0">
<SheetHeader>
<SheetTitle>Log details</SheetTitle>
</SheetHeader>
<div className="overflow-auto flex-grow px-0">
<SheetSection>
<p className="text-sm text-foreground-lighter">
This sheet does not block the underlying content, but it does overlap it.
</p>
</SheetSection>
</div>
<SheetFooter>
<SheetClose asChild>
<Button type="outline">Close</Button>
</SheetClose>
</SheetFooter>
</SheetContent>
</Sheet>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free