@orca-fe/painter
Version:
Konva Painter
9 lines (8 loc) • 322 B
TypeScript
import React from 'react';
export interface AutoScaleBoxProps extends React.HTMLAttributes<HTMLDivElement> {
width: number;
height: number;
mode?: 'contain' | 'cover';
}
declare const AutoScaleBox: React.ForwardRefExoticComponent<AutoScaleBoxProps & React.RefAttributes<unknown>>;
export default AutoScaleBox;