31 lines
1.5 KiB
JavaScript
31 lines
1.5 KiB
JavaScript
import WithDraggable from "@/components/common/draggable/withDraggable";
|
|
|
|
export default function PropertiesSetting() {
|
|
return(
|
|
<WithDraggable isShow={true}>
|
|
<div className={`modal-pop-wrap ssm`}>
|
|
<div className="modal-head handle">
|
|
<h1 className="title">外壁のプロパティの設定</h1>
|
|
<button className="modal-close">닫기</button>
|
|
</div>
|
|
<div className="modal-body">
|
|
<div className="properties-guide">
|
|
※属性を変更する外壁線を選択し、軒で設定またはケラバで設定 ボタンをクリックして設定値を適用します。
|
|
</div>
|
|
<div className="properties-setting-wrap">
|
|
<div className="setting-tit">設定</div>
|
|
<div className="setting-btn-wrap">
|
|
<button className="setting-btn green mr5">軒で設定</button>
|
|
<button className="setting-btn blue">ケラバに設定</button>
|
|
</div>
|
|
</div>
|
|
<div className="grid-btn-wrap">
|
|
<button className="btn-frame modal mr5">一変戦に戻る</button>
|
|
<button className="btn-frame modal act">設定完了</button>
|
|
</div>
|
|
</div>
|
|
<div className="modal-foot handle"></div>
|
|
</div>
|
|
</WithDraggable>
|
|
)
|
|
} |