import { Drawer, DrawerBody, DrawerOverlay, DrawerContent } from '@chakra-ui/react'; import { Markdown } from '~/components'; import type { TFooterContent } from './types'; export const FooterContent = (props: TFooterContent) => { const { isOpen, onClose, content, side = 'left', ...rest } = props; return ( ); };