You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { getRect } from 'css-box-model';
|
|
import type { Rect, Position } from 'css-box-model';
|
|
import { offsetByPosition } from './spacing';
|
|
|
|
export const offsetRectByPosition = (rect: Rect, point: Position): Rect =>
|
|
getRect(offsetByPosition(rect, point));
|