import styled from 'styled-components'; export const HiddenInput = styled.input` display: none; `; export const DropzoneWrapper = styled.div` display: flex; justify-content: center; align-items: center; text-align: center; cursor: pointer; min-height: ${({ theme }) => theme.sizes.file.dragAndDropMinHeight}; margin: 0; padding: ${({ theme }) => theme.space.file.dragAndDropPadding}; border-radius: ${({ theme }) => theme.radii.file.dragAndDrop}; border: dotted 1px ${({ theme }) => theme.colors.file.dragAndDropBorder}; background-color: ${({ theme }) => theme.colors.file.dragAndDropBackground}; &:hover { border-color: ${({ theme }) => theme.colors.file.dragAndDropBorderHover}; } div { margin: 0; padding: 0; } `;