부동산 정보 페이지 추가

This commit is contained in:
2026-03-16 02:10:45 +09:00
parent c6ac849a25
commit 1af16dde47
7 changed files with 4369 additions and 6 deletions

View File

@@ -71,3 +71,27 @@ export const IconTodo = () =>
<line x1="17" y1="12" x2="21" y2="12" />
</>
);
export const IconSubscription = () =>
svg(
<>
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
<polyline points="14,2 14,8 20,8" />
<polyline points="9,15 11,17 15,13" />
<line x1="9" y1="10" x2="15" y2="10" />
</>
);
export const IconBuilding = () =>
svg(
<>
<rect x="3" y="3" width="18" height="18" rx="2" />
<path d="M9 21V9" />
<rect x="6" y="6" width="3" height="3" />
<rect x="11" y="6" width="3" height="3" />
<rect x="16" y="6" width="2" height="3" />
<rect x="11" y="11" width="3" height="3" />
<rect x="16" y="11" width="2" height="3" />
<rect x="11" y="16" width="3" height="3" />
</>
);