-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathphp-icons.php
More file actions
21 lines (18 loc) · 696 Bytes
/
php-icons.php
File metadata and controls
21 lines (18 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
declare(strict_types=1);
use PHPIcons\Config\PHPIconsConfig;
return PHPIconsConfig::configure()
->withPaths([__DIR__ . '/app', __DIR__ . '/themes', __DIR__ . '/resources'])
->withLocalIconSets([
'funding' => __DIR__ . '/resources/icons/funding',
'podcasting' => __DIR__ . '/resources/icons/podcasting',
'social' => __DIR__ . '/resources/icons/social',
'custom' => __DIR__ . '/resources/icons/custom',
])
->withDefaultIconPerSet([
'funding' => 'funding:default',
'podcasting' => 'podcasting:default',
'social' => 'social:default',
])
->withDefaultPrefix('ri')
->withPlaceholder('�');