mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 03:13:58 +08:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
import React from 'react';
|
|
import { FlagLabel } from 'plugin-api/beta/client/components/ui';
|
|
import { t } from 'plugin-api/beta/client/services';
|
|
|
|
const SpamLabel = () => (
|
|
<FlagLabel iconName="bug_report">{t('talk-plugin-akismet.spam')}</FlagLabel>
|
|
);
|
|
|
|
export default SpamLabel;
|