import { Box, BoxProps, forwardRef } from "@chakra-ui/react"; export interface CardProps extends BoxProps {} /** * Implements a with simple card styles. */ export const Card = forwardRef((props, ref) => { return ( ); }); Card.displayName = "Card";