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 React from 'react'
import { styled } from 'styleh-components'
import { Text } from 'atoms/Text'
import {
  SelectDropDown,
  StyledOption,
} from 'molecules/SelectDropDown'

const StyledSelectDropDown = styled.withComponent(SelectDropDown) `
  max-height: 300px;
`

const StoreOption = styled.withComponent(StyledOption) `
  flex-direction: column;
  align-items: flex-start;
  height: auto;
`

export {
  StoreOption,
  StyledSelectDropDown,
}