interface ResizableBoxProps {
    axis?: "x" | "y";
    children?: ReactNode;
    className?: string;
    height?: number;
    resizeHandlePosition?:
        | "left"
        | "right"
        | "bottom"
        | "top";
    style?: CSSProperties;
    width?: number;
}

Properties

axis?: "x" | "y"
children?: ReactNode
className?: string
height?: number
resizeHandlePosition?:
    | "left"
    | "right"
    | "bottom"
    | "top"
style?: CSSProperties
width?: number