import React from "react"; import styled from "styled-components"; import { Icon } from "@blueprintjs/core"; import { Resizable, ResizeDirection } from "re-resizable"; import { WidgetProps, WidgetOperations } from "../widgets/BaseWidget"; import { ContainerProps } from "./ContainerComponent"; export type ResizableComponentProps = WidgetProps & ContainerProps; const ResizableContainer = styled(Resizable)` border: ${props => { return Object.values(props.theme.borders[0]).join(" "); }}; `; const CustomHandle = (props: any) =>
; const BottomRightHandle = () => (