openreplay/frontend/app/components/Header/PreferencesView/PreferencesView.tsx
Андрей Бабушкин 2b1a9f3378 add locales and lint the project
2025-03-05 16:09:18 +01:00

34 lines
919 B
TypeScript

import React from 'react';
import { Icon } from 'UI';
import { withRouter } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
interface Props {
history: any;
}
function PreferencesView(props: Props) {
const { t } = useTranslation();
const onExit = () => {
props.history.push('/');
};
return (
<>
<div
className="flex items-center p-3 cursor-pointer text-lg ml-1"
onClick={onExit}
>
<Icon name="arrow-bar-left" color="teal" size="18" />
<span className="color-teal ml-2">{t('Exit Preferences')}</span>
</div>
<div className="flex items-center p-3 text-lg">
<Icon name="info-circle" size="16" color="gray-dark" />
<span className="ml-2">
{t('Any changes will be put into effect across your organization.')}
</span>
</div>
</>
);
}
export default withRouter(PreferencesView);