Update icons to v3
This commit is contained in:
parent
be60b3d225
commit
51d1a62f70
461 changed files with 1189 additions and 1570 deletions
|
@ -872,27 +872,29 @@ export function StoryViewer({
|
|||
>
|
||||
{isSent || replyCount > 0 ? (
|
||||
<span className="StoryViewer__reply__chevron">
|
||||
{isSent && !hasViewReceiptSetting && !replyCount && (
|
||||
<>{i18n('icu:StoryViewer__views-off')}</>
|
||||
)}
|
||||
{isSent && hasViewReceiptSetting && (
|
||||
<Intl
|
||||
i18n={i18n}
|
||||
id="icu:MyStories__views--strong"
|
||||
components={{
|
||||
views: viewCount,
|
||||
strong: renderStrong,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
{(isSent || viewCount > 0) && replyCount > 0 && ' '}
|
||||
{replyCount > 0 && (
|
||||
<Intl
|
||||
i18n={i18n}
|
||||
id="icu:MyStories__replies"
|
||||
components={{ replyCount, strong: renderStrong }}
|
||||
/>
|
||||
)}
|
||||
<span>
|
||||
{isSent && !hasViewReceiptSetting && !replyCount && (
|
||||
<>{i18n('icu:StoryViewer__views-off')}</>
|
||||
)}
|
||||
{isSent && hasViewReceiptSetting && (
|
||||
<Intl
|
||||
i18n={i18n}
|
||||
id="icu:MyStories__views--strong"
|
||||
components={{
|
||||
views: viewCount,
|
||||
strong: renderStrong,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
{(isSent || viewCount > 0) && replyCount > 0 && ' '}
|
||||
{replyCount > 0 && (
|
||||
<Intl
|
||||
i18n={i18n}
|
||||
id="icu:MyStories__replies"
|
||||
components={{ replyCount, strong: renderStrong }}
|
||||
/>
|
||||
)}
|
||||
</span>
|
||||
</span>
|
||||
) : null}
|
||||
{!isSent && !replyCount && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue