'action-link'];
/**
* Create a action link
*
* @param mixed $content
* @param Url|string $url
* @param string $icon
* @param Attributes|array $attributes
*/
public function __construct($content, $url, $icon = null, $attributes = null)
{
parent::__construct($content, $url, $attributes);
if ($icon !== null) {
$this->prepend(new Icon($icon));
}
}
}