All files / Select/partials SelectValue.js

100% Statements 4/4
100% Branches 0/0
100% Functions 0/0
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 181x 1x   1x 1x                          
import styled from 'styled-components'
import { autoCssGenerator } from '../cssHelpers';
 
const globalCss = autoCssGenerator('select');
const g = autoCssGenerator('select-value');
 
export default styled.div`
  display: inline-block;
  vertical-align: top;
  ${g('color')}
  ${g('padding')}
  ${g('max-width')}
  ${g('overflow')}
  ${g('text-overflow')}
  ${g('line-height')}
  ${g('white-space')}
`