( type: React.FunctionComponent<P> | React.ComponentClass<P> | string, props: React.Attributes & P, ...children: React.ReactNode[] )
| 37 | const __EMOTION_VERSION__ = packageInfo.version |
| 38 | |
| 39 | export const jsx: typeof React.createElement = <P extends {}>( |
| 40 | type: React.FunctionComponent<P> | React.ComponentClass<P> | string, |
| 41 | props: React.Attributes & P, |
| 42 | ...children: React.ReactNode[] |
| 43 | ): any => emotionJsx(type, parseProps(props), ...children) |
| 44 | |
| 45 | /** |
| 46 | * @internal for Babel JSX pragma |
no test coverage detected