mirror of
https://github.com/strapi/strapi.git
synced 2025-08-06 07:50:02 +00:00
15 lines
413 B
JavaScript
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;
|