feat(saju): api helpers (saju + compat) + 라우트 + 아이콘 + placeholder pages

This commit is contained in:
2026-05-25 20:31:35 +09:00
parent e634cdedba
commit eab52ca424
7 changed files with 136 additions and 0 deletions

View File

@@ -143,3 +143,13 @@ export const IconTarot = () =>
<circle cx="12" cy="12" r="3" />
</>
);
export const IconSaju = () =>
svg(
<>
<circle cx="12" cy="12" r="10" />
<path d="M12 2a10 10 0 0 0 0 20 5 5 0 0 1 0-10 5 5 0 0 0 0-10z" fill="currentColor" />
<circle cx="12" cy="7" r="1.5" fill="#fff" />
<circle cx="12" cy="17" r="1.5" fill="currentColor" />
</>
);