mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
411 B
TypeScript
21 lines
411 B
TypeScript
import React = require('react');
|
|
import Rnd = require('react-rnd');
|
|
|
|
const onResize: Rnd.ResizeHandler = (e, direction, ref, delta, position) => {
|
|
direction === 'right';
|
|
delta.width;
|
|
delta.height;
|
|
position.x;
|
|
position.y;
|
|
};
|
|
|
|
<Rnd
|
|
className="class"
|
|
lockAspectRatio
|
|
maxWidth={100}
|
|
enableResizing={false}
|
|
resizeHandleStyles={{
|
|
top: { background: '#000' }
|
|
}}
|
|
/>;
|