UNPKG

@tldraw/core

Version:

The tldraw core renderer and utilities.

13 lines 492 B
import * as React from 'react'; import { TLBounds, TLBoundsCorner } from '../../types'; export interface CornerHandleProps { size: number; targetSize: number; bounds: TLBounds; corner: TLBoundsCorner; isHidden?: boolean; } declare function _CornerHandle({ size, targetSize, isHidden, corner, bounds }: CornerHandleProps): JSX.Element; export declare const CornerHandle: React.MemoExoticComponent<typeof _CornerHandle>; export {}; //# sourceMappingURL=CornerHandle.d.ts.map