import { styled } from "@linaria/react"; import * as React from "react"; interface WrapperProps { inWidth: number | string; inHeight: number | string; } function toCss(x: number | string) { if (typeof x === "string") return x; return `${x}px`; } const Wrapper = styled.div<{ innerWidth: string; innerHeight: string }>` position: relative; min-width: 10px; min-height: 10px; max-width: 100%; max-height: 100%; width: ${p => p.innerWidth}; height: ${p => p.innerHeight}; overflow: hidden; overflow: clip; direction: ltr; > :first-child { position: absolute; left: 0; top: 0; width: 100%; height: 100%; } `; interface Props extends WrapperProps, React.HTMLAttributes {} export const DataEditorContainer: React.FunctionComponent> = p => { const { inWidth, inHeight, children, ...rest } = p; return ( {children} ); };