Painlessly drive away from using the MaterialDesignIcons webfont!
Add this package to your project:
composer require mesavolt/mdi-phpAdd @mdi/svg npm package to your project:
yarn add @mdi/svg
# or, using npm
npm install @mdi/svgIcons location will be automatically detected.
If you didn't install the icons pack using one of the documentation methods
above, you can globally configure the icons location. This should be done once and before
the first usage of the Mdi::mdi function.
Mdi::withIconsPath(__DIR__.'/../../../node_modules/@mdi/svg/svg/');Use it in your views:
<button>
<?php echo Mdi::mdi('account'); ?>
My account
</button>The mdi function provides 4 arguments to customize its output:
- the icon (you can provide either
account,mdi-accountormdi mdi-account) - its class (
fill-mutedfor instance) - its size (defaults to 24px)
- some more attributes that will be added to the
<svg>tag (['aria-label' => 'My account']for instance)
You can add custom default attributes, or edit and remove the provided defaults.
| Attribute name | Default value |
|---|---|
viewBox |
0 0 24 24 |
xmlns |
http://www.w3.org/2000/svg |
width |
Whatever size was specified (defaults to 24) |
height |
Whatever size was specified (defaults to 24) |
role |
presentation |
Mdi::withDefaultAttributes([
'data-toggle' => 'tooltip', // Add a new one
'role' => 'img', // Replace default `presentation` value with `img`
'xmlns' => null, // Remove default `xmlns` attribute
]);Simply register Mdi::mdi as a Twig simple function and get started!
use Twig\TwigFunction;
$twigEnv->addFunction(new TwigFunction('mdi', [Mdi::class, 'mdi'], ['is_safe' => ['html']]));<button>
{{ mdi('account', 'fill-muted', 42, {'aria-label': 'My account icon'}) }}
My account
</button>