dashboard 형태의 UI 수정 및 고도화

This commit is contained in:
2026-03-04 08:29:39 +09:00
parent 618d5f8e6f
commit ccc9f7c634
17 changed files with 1296 additions and 224 deletions

View File

@@ -59,3 +59,15 @@ export const IconLab = () =>
<line x1="6.5" y1="15" x2="17.5" y2="15" />
</>
);
export const IconTodo = () =>
svg(
<>
<rect x="3" y="5" width="6" height="6" rx="1" />
<polyline points="9,8 11,10 15,6" />
<rect x="3" y="13" width="6" height="6" rx="1" />
<line x1="13" y1="16" x2="21" y2="16" />
<line x1="13" y1="8" x2="21" y2="8" />
<line x1="17" y1="12" x2="21" y2="12" />
</>
);