@@ -299,14 +299,14 @@ The arguments of the ``addTab()`` method are:
299
299
icon for the tab or users won't be able to click on it); You can also pass
300
300
``string `` and ``TranslatableInterface `` variables. In both cases, if they
301
301
contain HTML tags they will be rendered in stead of escaped;
302
- * ``$icon ``: (type: ``?string ``) the full icon name (e.g. ``fa6regular :folder-open ``);
302
+ * ``$icon ``: (type: ``?string ``) the full icon name (e.g. ``fa6-regular :folder-open ``);
303
303
if you don't display a text label for the tab, make sure to display an icon or
304
304
users won't be able to click on the tab.
305
305
306
306
.. note ::
307
307
308
308
By default, EasyAdmin includes the full icon sets for `FontAwesome `_ icons
309
- (``fa6regular : ``, ``fa6solid : `` and ``fa6brands : ``), but you can
309
+ (``fa6-regular : ``, ``fa6-solid : `` and ``fa6-brands : ``), but you can
310
310
:ref: `use your own icon sets <icon-customization >`.
311
311
312
312
.. deprecated :: 4.16
@@ -372,7 +372,7 @@ The arguments of the ``addColumn()`` method are:
372
372
or an empy string, no title is displayed. You can also pass ``string `` and
373
373
``TranslatableInterface `` variables. In both cases, if they contain HTML tags
374
374
they will be rendered in stead of escaped;
375
- * ``$icon ``: (type: ``?string ``) the full icon name (e.g. ``fa6regulat :folder-open ``)
375
+ * ``$icon ``: (type: ``?string ``) the full icon name (e.g. ``fa6-regulat :folder-open ``)
376
376
that is displayed next to the column label;
377
377
* ``$help ``: (type: ``?string ``) an optional content that is displayed below the
378
378
column label; it's mostly used to describe the column contents or provide further
@@ -382,7 +382,7 @@ The arguments of the ``addColumn()`` method are:
382
382
.. note ::
383
383
384
384
By default, EasyAdmin includes the full icon sets for `FontAwesome `_ icons
385
- (``fa6regular : ``, ``fa6solid : `` and ``fa6brands : ``), but you can
385
+ (``fa6-regular : ``, ``fa6-solid : `` and ``fa6-brands : ``), but you can
386
386
:ref: `use your own icon sets <icon-customization >`.
387
387
388
388
.. deprecated :: 4.16
@@ -475,7 +475,7 @@ Add fieldsets with the created with the ``addFieldset()`` method of the special
475
475
476
476
// fieldsets can also define their icon, CSS class and help message
477
477
FormField::addFieldset('Contact information')
478
- ->setIcon('fa6solid :phone')->addCssClass('optional')
478
+ ->setIcon('fa6-solid :phone')->addCssClass('optional')
479
479
->setHelp('Phone number is preferred'),
480
480
TextField::new('phone'),
481
481
TextField::new('email')->hideOnIndex(),
@@ -495,13 +495,13 @@ The arguments of the ``addFieldset()`` method are:
495
495
or an empy string, no title is displayed. You can also pass ``string `` and
496
496
``TranslatableInterface `` variables. In both cases, if they contain HTML tags
497
497
they will be rendered in stead of escaped;
498
- * ``$icon ``: (type: ``?string ``) the full icon name (e.g. ``fa6regular :folder-open ``)
498
+ * ``$icon ``: (type: ``?string ``) the full icon name (e.g. ``fa6-regular :folder-open ``)
499
499
that is displayed next to the fieldset label.
500
500
501
501
.. note ::
502
502
503
503
By default, EasyAdmin includes the full icon sets for `FontAwesome `_ icons
504
- (``fa6regular : ``, ``fa6solid : `` and ``fa6brands : ``), but you can
504
+ (``fa6-regular : ``, ``fa6-solid : `` and ``fa6-brands : ``), but you can
505
505
:ref: `use your own icon sets <icon-customization >`.
506
506
507
507
.. deprecated :: 4.16
0 commit comments