1. Go to this page and download the library: Download blade-ui-kit/blade-icons library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use BladeUI\Icons\Factory;
public function register(): void
{
$this->callAfterResolving(Factory::class, function (Factory $factory) {
$factory->add('heroicons', [
'path' => __DIR__.'/../resources/svg',
'prefix' => 'heroicon',
]);
});
}
use Symfony\Component\Finder\SplFileInfo;
return [
[
// Define a source directory for the sets like a node_modules/ or vendor/ directory...
'source' => __DIR__.'/../node_modules/heroicons/outline',
// Define a destination directory for your icons. The below is a good default...
'destination' => __DIR__.'/../resources/svg',
// Strip an optional prefix from each source icon name...
'input-prefix' => 'o-',
// Set an optional prefix to applied to each destination icon name...
'output-prefix' => 'o-',
// Strip an optional suffix from each source icon name...
'input-suffix' => '-o',
// Set an optional suffix to applied to each destination icon name...
'output-suffix' => '-o',
// Enable "safe" mode which will prevent deletion of old icons...
'safe' => true,
// Call an optional callback to manipulate the icon with the pathname of the icon,
// the settings from above and the original icon file instance...
'after' => static function (string $icon, array $config, SplFileInfo $file) {
// ...
},
],
// More icon sets...
];