UNPKG

styled-components

Version:

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

10 lines (8 loc) • 274 B
// @flow import type { Target } from '../types' export default function isStyledComponent(target: Target) /* : %checks */ { return ( // $FlowFixMe TODO: flow for styledComponentId typeof target === 'function' && typeof target.styledComponentId === 'string' ) }