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/ModalFooter/ModalFooter.tsx

10 lines
199 B
TypeScript
Raw Normal View History

2022-08-30 18:08:54 +00:00
import styles from '../Modal/Modal.module.scss';
export default function ModalFooter({
children,
}: {
children: React.ReactNode;
2022-08-30 18:08:54 +00:00
}) {
return <div className={styles.footer}>{children}</div>;
}