UNPKG

@tldraw/core

Version:

The tldraw core renderer and utilities.

11 lines 379 B
import * as React from 'react'; import type { TLBounds } from '../../types'; export interface BrushProps { brush: TLBounds; zoom: number; dashed: boolean | null | undefined; } declare function _Brush({ brush, zoom, dashed }: BrushProps): JSX.Element; export declare const Brush: React.MemoExoticComponent<typeof _Brush>; export {}; //# sourceMappingURL=Brush.d.ts.map