taxonomy/components/dashboard/shell.tsx

18 lines
358 B
TypeScript
Raw Permalink Normal View History

2022-10-26 13:18:06 +00:00
import * as React from "react"
2022-10-26 13:18:06 +00:00
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>
)
}