Feliday-UI/src/shared/components/cake-day.tsx

25 lines
559 B
TypeScript
Raw Normal View History

import { Component } from 'inferno';
import { i18n } from '../i18next';
2021-02-11 20:35:27 +00:00
import { Icon } from './icon';
interface CakeDayProps {
creatorName: string;
}
export class CakeDay extends Component<CakeDayProps, any> {
render() {
return (
<div
className={`mx-2 d-inline-block unselectable pointer`}
data-tippy-content={this.cakeDayTippy()}
>
2021-02-11 20:35:27 +00:00
<Icon icon="cake" classes="icon-inline" />
</div>
);
}
cakeDayTippy(): string {
return i18n.t('cake_day_info', { creator_name: this.props.creatorName });
}
}