UNPKG

@orca-fe/painter

Version:
9 lines (8 loc) 322 B
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;