import React from "react"; import { themeColor } from "../../utils/ThemeColor/backColor"; import { defaultWidthHeight, resizeBorderExtraWidth } from "../../utils/Utils"; function PlaceholderBorder(props) { const getResizeBorderExtraWidth = resizeBorderExtraWidth(); const defaultWidth = props.pos.type === "checkbox" && props.isPlaceholder ? 50 : defaultWidthHeight(props.pos.type).width; const defaultHeight = props.pos.type === "checkbox" && props.isPlaceholder ? 50 : defaultWidthHeight(props.pos.type).height; return (
); } export default PlaceholderBorder;