UNPKG

styled-components

Version:

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

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