rmrevin\yii\fontawesome\component\Icon::render PHP Method

render() public method

Deprecation:
public render ( string | null $tag = null, string | null $content = null, array $options = [] ) : string
$tag string | null
$content string | null
$options array
return string
    public function render($tag = null, $content = null, $options = [])
    {
        $tag = empty($tag) ? empty($this->tag) ? static::$defaultTag : $this->tag : $tag;
        $options = array_merge($this->options, $options);
        return Html::tag($tag, $content, $options);
    }