|
|
@@ -9,16 +9,16 @@ interface IWidgetNissayaCtl {
|
|
|
}
|
|
|
const NissayaCtl = ({ pali, meaning, children }: IWidgetNissayaCtl) => {
|
|
|
return (
|
|
|
- <Space style={{ marginRight: 10 }}>
|
|
|
+ <span style={{ marginRight: 10 }}>
|
|
|
<PaliText
|
|
|
lookup={true}
|
|
|
text={pali}
|
|
|
code="my"
|
|
|
termToLocal={false}
|
|
|
style={{ fontWeight: 700 }}
|
|
|
- />
|
|
|
+ />{" "}
|
|
|
<NissayaMeaning text={meaning} />
|
|
|
- </Space>
|
|
|
+ </span>
|
|
|
);
|
|
|
};
|
|
|
|