2025-03-13 14:16:15 +09:00

50 lines
2.6 KiB
JavaScript

import WithDraggable from "@/components/common/draggable/withDraggable";
export default function AuxiliaryCopy(){
return(
<WithDraggable isShow={true} size={'xm'}>
<div className="modal-head handle">
<h1 className="title">補助線のコピー </h1>
<button className="modal-close">닫기</button>
</div>
<div className="modal-body">
<div className="left-bar handle"></div>
<div className="right-bar handle"></div>
<div className="grid-option-tit">
コピーする方向を入力してください
</div>
<div className="grid-option-wrap">
<div className="grid-option-box">
<div className="move-form">
<p className="mb5">長さ</p>
<div className="input-move-wrap mb5">
<div className="input-move">
<input type="text" className="input-origin" defaultValue={910}/>
</div>
<span>mm</span>
<div className="direction-move-wrap">
<button className="direction up"></button>
<button className="direction down act"></button>
</div>
</div>
<div className="input-move-wrap">
<div className="input-move">
<input type="text" className="input-origin" defaultValue={910}/>
</div>
<span>mm</span>
<div className="direction-move-wrap">
<button className="direction left act"></button>
<button className="direction right"></button>
</div>
</div>
</div>
</div>
</div>
<div className="grid-btn-wrap">
<button className="btn-frame modal act">保存</button>
</div>
</div>
<div className="modal-foot handle"></div>
</WithDraggable>
)
}