import { PropsWithChildren } from 'react'; import { IoClose } from 'react-icons/io5'; import { Button } from '@chakra-ui/react'; import style from './PanelContent.module.scss'; interface PanelContentProps { onClose: () => void; } export default function PanelContent(props: PropsWithChildren) { const { onClose, children } = props; return (
{children}
); }