import React from 'react'; import styled from 'styled-components'; import useTheme from '../theme/useTheme'; const Wrapper = styled.div` border-bottom: 1px solid ${(props) => props.theme.border}; padding: 15px; background-color: ${(props) => props.theme.modalheader_background}; `; export default function ModalFooter({ children }) { const theme = useTheme(); return {children}; }