Repository URL to install this package:
|
Version:
1.1.16 ▾
|
@skava/modules
/
___dist
/
view-container
/
styles
/
styled-components
/
src
/
constructors
/
css.js
|
|---|
// @flow
import interleave from '../utils/interleave'
import flatten from '../utils/flatten'
import { Interpolation, RuleSet } from '../types'
export default (
strings: Array<string>,
...interpolations: Array<Interpolation>
): RuleSet => flatten(interleave(strings, interpolations))