This commit is contained in:
chamikaJ
2025-04-17 18:28:54 +05:30
parent f583291d8a
commit 8825b0410a
2837 changed files with 241385 additions and 127578 deletions

View File

@@ -0,0 +1,3 @@
.notification-icon:hover .anticon {
color: #1677ff;
}

View File

@@ -0,0 +1,23 @@
import { QuestionCircleOutlined } from '@ant-design/icons';
import { Button, Tooltip } from 'antd';
import React from 'react';
import { useTranslation } from 'react-i18next';
import './HelpButton.css';
const HelpButton = () => {
// localization
const { t } = useTranslation('navbar');
return (
<Tooltip title={t('help')}>
<Button
className="notification-icon"
style={{ height: '62px', width: '60px' }}
type="text"
icon={<QuestionCircleOutlined style={{ fontSize: 20 }} />}
/>
</Tooltip>
);
};
export default HelpButton;