diff --git a/src/pages/profile/components/custom-ui.tsx b/src/pages/profile/components/custom-ui.tsx deleted file mode 100644 index f6401a6f..00000000 --- a/src/pages/profile/components/custom-ui.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import { colorPrimary } from '@/config/theme'; -import useUserSettings from '@/hooks/use-user-settings'; -import { Button, ColorPicker } from 'antd'; -import React from 'react'; - -const CustomUI: React.FC = () => { - const { setUserSettings, userSettings } = useUserSettings(); - - const handleOnChange = (color: any, css: string) => { - const colorPrimary = color.toHexString(); - if (!colorPrimary) return; - setUserSettings({ - ...userSettings, - colorPrimary: color.toHexString() - }); - }; - - const handleReset = () => { - setUserSettings({ - ...userSettings, - colorPrimary: colorPrimary - }); - }; - - return ( -