Files
excalidraw/src/element/sizeChecks.ts
T

6 lines
181 B
TypeScript

import { ExcalidrawElement } from "./types";
export function isInvisiblySmallElement(element: ExcalidrawElement): boolean {
return element.width === 0 && element.height === 0;
}