Repository URL to install this package:
|
Version:
0.14.1 ▾
|
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,
}