import React from 'react'; import { Box, BoxProps } from '@chakra-ui/react'; export interface CardSubsectionProps extends BoxProps { children?: React.ReactNode; } export function CardSubsection({ children, ...rest }: CardSubsectionProps) { return ( {children} ); }