13 lines
344 B
JavaScript
13 lines
344 B
JavaScript
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>
|
|
);
|
|
}
|