. The given * name will be used as automatically added CSS class for the icon element in the format 'icon-$name'. In addition, * the CSS class 'icon' will be automatically added too. * * @param string $name The name of the icon * @param Attributes|array $attributes The HTML attributes for the element */ public function __construct($name, $attributes = null) { $this ->getAttributes() ->add('class', ['icon', 'fa', "fa-$name"]) ->add($attributes); } }