onsitesurvey/src/components/popup/SuitableDetailPopupButton.tsx
Daseul Kim 36bcdd00a1 feat: 지붕재 적합성 전체선택/전체해제 기능 및 관련 기능 추가
- 지붕재 적합성 전체선택/전체해제 기능 추가
- 검색조건에 따른 데이터 조회 api 추가
- 선택된 데이터 조회 api 추가
2025-05-23 17:14:07 +09:00

24 lines
633 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client'
export default function SuitableDetailPopupButton() {
return (
<div className="btn-flex-wrap com">
<div className="btn-bx">
<button className="btn-frame n-blue icon">
<i className="btn-arr"></i>
</button>
</div>
<div className="btn-bx">
<button className="btn-frame red icon">
<i className="btn-arr"></i>
</button>
</div>
<div className="btn-bx">
<button className="btn-frame n-blue icon">
11<i className="btn-arr"></i>
</button>
</div>
</div>
)
}