This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-admin/components/common/Modal/ModalBody/ModalBody.tsx

6 lines
189 B
TypeScript

import styles from '../Modal/Modal.module.scss';
export default function ModalBody({ children }: { children: React.ReactNode }) {
return <div className={styles.body}>{children}</div>;
}