Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { styled } from 'styleh-components'
import Button from 'atoms/Button'

const CardWrapper = styled.div`
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
`
const ToggleButton = styled.withComponent(Button)`
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
`
const DefaultWrapperView = styled.div`
  width: 100%;
  height: 300px;
  background-color: red;
`
const ExpandedWrapperView = styled.div`
  width: 100%;
  height: 600px;
  color: white;
  background-color: black;
  overflow: hidden;
`

export { CardWrapper, ToggleButton, DefaultWrapperView, ExpandedWrapperView }