// Tremor Raw Card [v0.0.0] import React from "react"; import { Slot } from "@radix-ui/react-slot"; import { cx } from "../../lib/utils"; interface CardProps extends React.ComponentPropsWithoutRef<"div"> { asChild?: boolean; } const Card = React.forwardRef( ({ className, asChild, ...props }, forwardedRef) => { const Component = asChild ? Slot : "div"; return ( ); } ); Card.displayName = "Card"; export { Card, type CardProps };