@tldraw/core
Version:
The tldraw core renderer and utilities.
12 lines • 514 B
TypeScript
import * as React from 'react';
import type { TLBounds } from '../../types';
export interface CloneButtonProps {
bounds: TLBounds;
targetSize: number;
size: number;
side: 'top' | 'right' | 'bottom' | 'left' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
}
declare function _CloneButton({ bounds, side, targetSize, size }: CloneButtonProps): JSX.Element;
export declare const CloneButton: React.MemoExoticComponent<typeof _CloneButton>;
export {};
//# sourceMappingURL=CloneButton.d.ts.map