mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:36:13 +01:00
12 lines
300 B
PHP
12 lines
300 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
// Icon identifier
|
||
|
'tea_plugin' => [
|
||
|
// Icon provider class
|
||
|
'provider' => \TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
|
||
|
// The source SVG for the SvgIconProvider
|
||
|
'source' => 'EXT:tea/Resources/Public/Icons/Plugin.svg',
|
||
|
],
|
||
|
];
|