Files
DefinitelyTyped/types/react-rnd/react-rnd-tests.tsx
2018-05-28 15:55:05 +09:00

27 lines
537 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={{
bottom: true,
bottomLeft: true,
bottomRight: false,
left: false
}}
disableDragging={false}
resizeHandleStyles={{
top: { background: '#000' }
}}
/>;