daedalOS/utils/window.ts
Dustin Brett 163a43ac55 Smaller
2020-09-30 21:45:26 -07:00

15 lines
413 B
TypeScript

import type { HandleClasses } from 'react-rnd';
export const resizeHandleClasses = (styles: {
[className: string]: string;
}): HandleClasses => ({
top: styles.resizeTop,
right: styles.resizeRight,
bottom: styles.resizeBottom,
left: styles.resizeLeft,
topRight: styles.resizeTopRight,
bottomRight: styles.resizeBottomRight,
bottomLeft: styles.resizeBottomLeft,
topLeft: styles.resizeTopLeft
});