feat: initial commit with seeded database and premium ui changes
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { cn } from "@/lib/utils";
|
||||
import type * as React from "react";
|
||||
import { Card } from "@/components/ui/card";
|
||||
|
||||
export function DashboardCard({
|
||||
className,
|
||||
...props
|
||||
}: React.ComponentProps<typeof Card>) {
|
||||
return (
|
||||
<Card
|
||||
className={cn("rounded-none bg-background shadow-none ring-0 border-none", className)}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user