diff --git a/src/components/data-display/Carousel/Carousel.tsx b/src/components/unused/Carousel/Carousel.tsx
similarity index 100%
rename from src/components/data-display/Carousel/Carousel.tsx
rename to src/components/unused/Carousel/Carousel.tsx
diff --git a/src/components/unused/ColorPicker/ColorPicker.stories.tsx b/src/components/unused/ColorPicker/ColorPicker.stories.tsx
new file mode 100644
index 000000000..53ce1128d
--- /dev/null
+++ b/src/components/unused/ColorPicker/ColorPicker.stories.tsx
@@ -0,0 +1,14 @@
+import type { Meta, StoryObj } from '@storybook/react'
+import { ColorPicker } from 'src/components/unused/ColorPicker/ColorPicker'
+
+const meta: Meta
= {
+ title: 'Components/Unused/ColorPicker',
+ component: ColorPicker,
+
+ args: {},
+}
+export default meta
+
+type Story = StoryObj
+
+export const Primary: Story = {}
diff --git a/src/components/data-entry/ColorPicker/ColorPicker.tsx b/src/components/unused/ColorPicker/ColorPicker.tsx
similarity index 83%
rename from src/components/data-entry/ColorPicker/ColorPicker.tsx
rename to src/components/unused/ColorPicker/ColorPicker.tsx
index bab2aa657..464c41340 100644
--- a/src/components/data-entry/ColorPicker/ColorPicker.tsx
+++ b/src/components/unused/ColorPicker/ColorPicker.tsx
@@ -1,5 +1,5 @@
import { ColorPicker as AntColorPicker } from 'antd'
-import { type ColorPickerProps as AntColorPickerProps } from 'antd'
+import type { ColorPickerProps as AntColorPickerProps } from 'antd'
import { ConfigProvider } from 'src/components'
export interface IColorPickerProps extends AntColorPickerProps {}
diff --git a/src/components/unused/QRCode/QRCode.stories.tsx b/src/components/unused/QRCode/QRCode.stories.tsx
new file mode 100644
index 000000000..2de41c37e
--- /dev/null
+++ b/src/components/unused/QRCode/QRCode.stories.tsx
@@ -0,0 +1,14 @@
+import type { Meta, StoryObj } from '@storybook/react'
+import { QRCode } from 'src/components/unused/QRCode/QRCode'
+
+const meta: Meta = {
+ title: 'Components/Unused/QRCode',
+ component: QRCode,
+
+ args: {},
+}
+export default meta
+
+type Story = StoryObj
+
+export const Primary: Story = {}
diff --git a/src/components/data-display/QRCode/QRCode.tsx b/src/components/unused/QRCode/QRCode.tsx
similarity index 100%
rename from src/components/data-display/QRCode/QRCode.tsx
rename to src/components/unused/QRCode/QRCode.tsx
diff --git a/src/components/data-entry/Rate/Rate.stories.tsx b/src/components/unused/Rate/Rate.stories.tsx
similarity index 50%
rename from src/components/data-entry/Rate/Rate.stories.tsx
rename to src/components/unused/Rate/Rate.stories.tsx
index c30d5c763..844786ed5 100644
--- a/src/components/data-entry/Rate/Rate.stories.tsx
+++ b/src/components/unused/Rate/Rate.stories.tsx
@@ -1,8 +1,8 @@
-import { type Meta, type StoryObj } from '@storybook/react'
-import { Rate } from 'src/components/data-entry/Rate/Rate'
+import type { Meta, StoryObj } from '@storybook/react'
+import { Rate } from 'src/components/unused/Rate/Rate'
const meta: Meta = {
- title: 'Components/Data Entry/Rate',
+ title: 'Components/Unused/Rate',
component: Rate,
args: {},
diff --git a/src/components/data-entry/Rate/Rate.tsx b/src/components/unused/Rate/Rate.tsx
similarity index 83%
rename from src/components/data-entry/Rate/Rate.tsx
rename to src/components/unused/Rate/Rate.tsx
index 37f43b982..5821b11f4 100644
--- a/src/components/data-entry/Rate/Rate.tsx
+++ b/src/components/unused/Rate/Rate.tsx
@@ -1,5 +1,5 @@
import { Rate as AntRate } from 'antd'
-import { type RateProps as AntRateProps } from 'antd'
+import type { RateProps as AntRateProps } from 'antd'
import { ConfigProvider } from 'src/components'
export interface IRateProps extends AntRateProps {}
diff --git a/src/components/feedback/Watermark/Watermark.stories.tsx b/src/components/unused/Watermark/Watermark.stories.tsx
similarity index 94%
rename from src/components/feedback/Watermark/Watermark.stories.tsx
rename to src/components/unused/Watermark/Watermark.stories.tsx
index 1f0f083dd..f1c9aad9f 100644
--- a/src/components/feedback/Watermark/Watermark.stories.tsx
+++ b/src/components/unused/Watermark/Watermark.stories.tsx
@@ -1,11 +1,11 @@
-import { type Meta, type StoryObj } from '@storybook/react'
-import { Watermark } from 'src/components/feedback/Watermark/Watermark'
+import type { Meta, StoryObj } from '@storybook/react'
+import { Watermark } from 'src/components/unused/Watermark/Watermark'
import { ExampleStory } from 'src/utils/ExampleStory'
import { Flex, Form } from 'src/components'
import { type GetProp } from 'antd'
import { useState } from 'react'
import { type IColorPickerProps } from 'src/components'
-import { type IWatermarkProps } from 'src/components/feedback/Watermark/Watermark'
+import { type IWatermarkProps } from 'src/components/unused/Watermark/Watermark'
import { InputNumber } from 'src/components'
import { Typography } from 'src/components/general/Typography/Typography'
import { Input } from 'src/components'
@@ -16,7 +16,7 @@ import { Modal } from 'src/components'
import { Drawer } from 'src/components'
const meta: Meta = {
- title: 'Components/Feedback/Watermark',
+ title: 'Components/Unused/Watermark',
component: props => (
@@ -181,13 +181,23 @@ export const ExampleConfig: Story = {
more natural.