@fe-free/icons 4.0.5 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @fe-free/icons
2
2
 
3
+ ## 5.0.0
4
+
3
5
  ## 4.0.5
4
6
 
5
7
  ## 4.0.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/icons",
3
- "version": "4.0.5",
3
+ "version": "5.0.0",
4
4
  "description": "Icon components library for @fe-free packages",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,4 +1,3 @@
1
- import { DeleteOutlined } from '@ant-design/icons';
2
1
  import * as Icons from '@fe-free/icons';
3
2
  import { copyToClipboard } from '@fe-free/tool';
4
3
  import type { Meta, StoryObj } from '@storybook/react-vite';
@@ -153,9 +152,6 @@ export const Usages: Story = {
153
152
  <div className="text-2xl">
154
153
  @fe-free/icons 图标 <Icons.DeleteOutlined />
155
154
  </div>
156
- <div className="text-2xl">
157
- @ant-design/icons 图标 <DeleteOutlined />
158
- </div>
159
155
  </div>
160
156
  ),
161
157
  };