@helpscout/artboard
Version:
A tool kit for React UI development and design
18 lines (17 loc) • 448 B
TypeScript
import * as React from 'react';
export declare class Resizer extends React.PureComponent<any> {
static defaultProps: {
height: number;
width: number;
withResponsiveHeight: boolean;
withResponsiveWidth: boolean;
};
getResizableProps: () => {
minConstraints: any[];
maxConstraints: any[];
height: any;
width: any;
};
render(): JSX.Element;
}
export default Resizer;