mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 01:08:28 +00:00
17 lines
358 B
TypeScript
17 lines
358 B
TypeScript
import * as React from "react"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
interface DashboardShellProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
|
|
export function DashboardShell({
|
|
children,
|
|
className,
|
|
...props
|
|
}: DashboardShellProps) {
|
|
return (
|
|
<div className={cn("grid items-start gap-8", className)} {...props}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|