soupette 11a2b3bbfc Design edit modal
Signed-off-by: soupette <cyril.lpz@gmail.com>
2020-02-21 07:58:14 +01:00

15 lines
413 B
JavaScript

import styled from 'styled-components';
import { themePropTypes } from 'strapi-helper-plugin';
const FileDetailsBoxWrapper = styled.div`
width: 100%;
height: 119px;
padding: 16px;
background-color: ${({ theme }) => theme.main.colors.lightGrey};
border-radius: ${({ theme }) => theme.main.sizes.borderRadius};
`;
FileDetailsBoxWrapper.propTypes = themePropTypes;
export default FileDetailsBoxWrapper;