1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x 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')} ` |