modal styles

This commit is contained in:
Jan Prochazka
2020-05-13 21:04:13 +02:00
parent 2a0437e8b5
commit 7d844fe892
12 changed files with 142 additions and 51 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react';
import styled from 'styled-components';
const Wrapper = styled.div`
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
padding: 15px;
`;
export default function ModalContent({ children }) {
return <Wrapper>{children}</Wrapper>;
}