react-ionicons
Version:
A React SVG ionicon component
12 lines (10 loc) • 323 B
JavaScript
// @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]])
)