4so-fourseasons/react-hoc-spinners

View on GitHub
src/components/Cube/LargeBox.jsx

Summary

Maintainability
A
1 hr
Test Coverage
// @flow

import styled from 'styled-components'

const LargeBox = styled.div`
  position: fixed;

  width: ${props => props.size}px;
  height: ${props => props.size}px;

  background-color: ${props => props.outerColor};
  outline: 1px solid transparent;
`

export default LargeBox