47 lines
2.3 KiB
JavaScript
47 lines
2.3 KiB
JavaScript
import WithDraggable from "@/components/common/draggable/withDraggable";
|
|
|
|
export default function AuxiliaryCopy(){
|
|
return(
|
|
<WithDraggable isShow={true}>
|
|
<div className={`modal-pop-wrap xm`}>
|
|
<div className="modal-head">
|
|
<h1 className="title">補助線のコピー </h1>
|
|
<button className="modal-close">닫기</button>
|
|
</div>
|
|
<div className="modal-body">
|
|
<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>
|
|
<div className="input-move-wrap">
|
|
<div className="input-move">
|
|
<input type="text" className="input-origin" defaultValue={910}/>
|
|
</div>
|
|
<span>mm</span>
|
|
</div>
|
|
</div>
|
|
<div className="direction-move-wrap">
|
|
<button className="direction up"></button>
|
|
<button className="direction down act"></button>
|
|
<button className="direction left"></button>
|
|
<button className="direction right"></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="grid-btn-wrap">
|
|
<button className="btn-frame modal act">保存</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</WithDraggable>
|
|
)
|
|
} |