. The given * name will be used as automatically added CSS class for the icon element in the format 'iicon-$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(string $name, $attributes = null) { $this ->getAttributes() ->add('class', ['icon', "iicon-$name"]) ->add($attributes); } }