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