UNPKG

styled-components

Version:

Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅

9 lines (7 loc) • 267 B
// @flow import type { Interpolation, RuleSet } from '../types' export default (strings: Array<string>, interpolations: Array<Interpolation>): RuleSet => ( interpolations.reduce((array, interp, i) => ( array.concat(interp, strings[i + 1]) ), [strings[0]]) )