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.

10 lines
199 B
TypeScript
Raw Normal View History

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