import React from "react"; import { cn } from "~/lib/utils"; type Props = React.ComponentProps<"div">; const Card = ({ className, ...props }: Props) => { return (
); }; export const CardTitle = ({ className, ...props }: React.ComponentProps<"p">) => ( ); export default Card;