14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* PluginIcon
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import { Icon } from '@strapi/design-system/Icon';
|
||
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||
|
|
||
|
const PluginIcon = () => <Icon as={() => <FontAwesomeIcon icon="sync" />} width="16px" />;
|
||
|
|
||
|
export default PluginIcon;
|