import { Card, CardBody } from '@chakra-ui/react'; import { TileInfo } from '../tile-info'; type CardAttributesProps = { heading: string; info: string; }; export const CardAttributes = ({ heading, info }: CardAttributesProps) => ( );