2024-04-26 17:57:25 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
use PHPIcons\Config\PHPIconsConfig;
|
|
|
|
|
|
|
|
|
|
return PHPIconsConfig::configure()
|
|
|
|
|
->withPaths([__DIR__ . '/app', __DIR__ . '/themes'])
|
|
|
|
|
->withLocalIconSets([
|
|
|
|
|
'funding' => __DIR__ . '/app/Resources/icons/funding',
|
|
|
|
|
'podcasting' => __DIR__ . '/app/Resources/icons/podcasting',
|
|
|
|
|
'social' => __DIR__ . '/app/Resources/icons/social',
|
2025-08-22 09:56:45 +00:00
|
|
|
|
'custom' => __DIR__ . '/app/Resources/icons/custom',
|
2024-04-26 17:57:25 +00:00
|
|
|
|
])
|
|
|
|
|
->withDefaultIconPerSet([
|
|
|
|
|
'funding' => 'funding:default',
|
|
|
|
|
'podcasting' => 'podcasting:default',
|
|
|
|
|
'social' => 'social:default',
|
|
|
|
|
])
|
|
|
|
|
->withDefaultPrefix('ri')
|
|
|
|
|
->withPlaceholder('<27>');
|