UNPKG

styled-components

Version:

**This is a work in progress** based off of [this demo](https://github.com/geelen/css-components-demo).

8 lines (5 loc) 278 B
import type { Component } from 'react' export type Interpolation = Function | Object | string /* todo: I want this to actually be an array of Function | string but that causes errors */ export type RuleSet = Array<Interpolation> export type Target = string | Class<Component>