Repository URL to install this package:
|
Version:
2.0.17 ▾
|
import React from 'react'
import { styled } from 'styleh-components'
import { Text } from '@skava/ui/dist/components/atoms/Text'
import {
SelectDropDown,
StyledOption,
} from '@skava/ui/dist/components/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,
}