color sidebar and color button + ...

This commit is contained in:
hamid zarghami
2025-08-21 11:32:19 +03:30
parent 3e31a813ee
commit 1fbbc0519c
7 changed files with 23 additions and 17 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ import Button from '@/components/Button'
import { Add } from 'iconsax-react'
import { useTranslation } from 'react-i18next'
import { useSharedStore } from './store/sharedStore'
import { getIconColor } from '@/utils/colorUtils'
const Main: FC = () => {
@@ -33,7 +34,7 @@ const Main: FC = () => {
}}
>
<div className='flex gap-2 items-center'>
<Add size={18} color='black' />
<Add size={18} color={getIconColor('primary')} />
<div>{t('sidebar.new_message')}</div>
</div>
</Button>