mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
5 lines
181 B
TypeScript
5 lines
181 B
TypeScript
import { ExcalidrawElement } from "./types";
|
|
|
|
export function isInvisiblySmallElement(element: ExcalidrawElement): boolean {
|
|
return element.width === 0 && element.height === 0;
|
|
}
|