import * as React from "react" import { Slot } from "@/lib/slot" import { cn } from "@/lib/utils" interface AppMainCardProps extends React.ComponentProps<"div"> { asChild?: boolean } export function AppMainCard({ asChild = false, className, ...props }: AppMainCardProps) { const Comp = asChild ? Slot : "div" return ( ) }