fenextjs-component
Version:
9 lines (8 loc) • 391 B
TypeScript
import React from "react";
import { DesignBoxUseDataProps } from "../boxUnit";
export interface DesignBoxHeightProps extends DesignBoxUseDataProps {
textHeight?: string;
textMinHeight?: string;
textMaxHeight?: string;
}
export declare const DesignBoxHeight: ({ textHeight, textMinHeight, textMaxHeight, data, onChangeData, ...props }: DesignBoxHeightProps) => React.JSX.Element;