feat(saju): 사주풀이 5 컴포넌트 + useSajuReading hook

This commit is contained in:
2026-05-26 08:31:10 +09:00
parent 2dd92d025f
commit 36665ec308
6 changed files with 176 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react';
import HoryungMascot from './HoryungMascot';
export default function HoryungQuote({ pose = 'thinking', text }) {
if (!text) return null;
return (
<div className="saju-horyung-quote">
<HoryungMascot pose={pose} size="sm" />
<div className="saju-horyung-quote__text">{text}</div>
</div>
);
}