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