import * as React from "react"; import styled, { withTheme } from "../.."; interface Props { theme: { color: string; }; text: string; } const Component = (props: Props) =>
{props.text}
; const ComponentWithTheme = withTheme(Component); ; // ok ; // ok