UNPKG

tanuki-ui

Version:

HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor

11 lines (10 loc) 190 B
export type Point = { x: number; y: number; }; export type Size = { width: number; height: number; }; export type BoundingBox = Size & Point; export type Rect = BoundingBox;