add component color picker

This commit is contained in:
hamid zarghami
2025-11-22 15:17:38 +03:30
parent 8b98f47bd5
commit 9eadbb568b
4 changed files with 134 additions and 0 deletions
+7
View File
@@ -2,6 +2,7 @@ import Tabs from '@/components/Tabs'
import { Card, KeySquare, Setting4, TruckFast } from 'iconsax-react'
import { useState, type FC } from 'react'
import { SettingTabEnum } from './enum/Enum'
import GeneralSettings from './GeneralSettings'
const Setting: FC = () => {
@@ -39,6 +40,12 @@ const Setting: FC = () => {
active={activeTab}
/>
</div>
<div className='mt-8'>
{
activeTab === SettingTabEnum.GENERAL && <GeneralSettings />
}
</div>
</div>
)
}