'notice']; /** * Create a html notice * * @param mixed $content */ public function __construct($content) { $this->content = $content; } protected function assemble(): void { $this->addHtml(new Icon('triangle-exclamation')); $this->addHtml((new HtmlElement('span'))->add($this->content)); $this->addHtml(new Icon('triangle-exclamation')); } }