taxonomy/components/dashboard/shell.tsx
2022-11-17 19:14:41 +04:00

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>
)
}