import styled from 'styled-components' import { IConfig, IOnCanvasClick } from '../../' export interface ICanvasInnerDefaultProps { config: IConfig children: any onClick: IOnCanvasClick tabIndex: number onKeyDown: (e: React.KeyboardEvent) => void onDrop: (e: React.DragEvent) => void onDragOver: (e: React.DragEvent) => void } export const CanvasInnerDefault = styled.div` position: relative; outline: 1px dashed rgba(0,0,0,0.1); width: 10000px; height: 20000px; cursor: move; ` as any