Merge pull request #15016 from tomscytale/fix/plugin-example

This commit is contained in:
Josh 2022-12-05 15:26:00 +00:00 committed by GitHub
commit c6d875982b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,7 @@
*/
import React from 'react';
import Puzzle from '@strapi/icons/Puzzle';
import { Puzzle } from '@strapi/icons';
const PluginIcon: React.VoidFunctionComponent = () => <Puzzle />;

View File

@ -7,7 +7,9 @@
"description": "Description of {{ pluginName }} plugin",
"kind": "plugin"
},
"dependencies": {},
"dependencies": {
"@strapi/icons": "^1.3.1"
},
"devDependencies": {
"typescript": "4.6.3"
},