2021-10-27 16:04:58 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PluginIcon
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { Icon } from '@strapi/design-system/Icon';
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
|
2021-11-10 19:57:29 +01:00
|
|
|
import pluginPkg from '../../../../package.json';
|
|
|
|
|
|
|
|
const PluginIcon = () => <Icon as={() => <FontAwesomeIcon icon={pluginPkg.strapi.icon} />} width="16px" />;
|
2021-10-27 16:04:58 +02:00
|
|
|
|
|
|
|
export default PluginIcon;
|