LmnResizeEvent
Event emitted when an element is resized.
Presentation
type LmnResizeEvent = {
/** The new width of the resized element. */
width: number;
/** The new height of the resized element. */
height: number;
/** The resized element. */
element: HTMLElement;
};