图标 Iconify
<h3><strong>SvgIcon</strong></h3>
<p><em>用于显示 iconify 图标</em></p>
<table>
<thead>
<tr>
<th>属性名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>className</td>
<td>Dom 的类名</td>
</tr>
<tr>
<td>icon</td>
<td>图标名称<br>查找图标: <a href="https://icones.js.org"><a href="https://icones.js.org">https://icones.js.org</a></a></td>
</tr>
</tbody>
</table>
<p><br></p>
<h3><strong>示例</strong></h3>
<pre><code class="language-php">use Slowlyo\OwlAdmin\Renderers\WangEditor;
// ...
SvgIcon::make()-&gt;icon('ic:baseline-person');
// 红色图标
SvgIcon::make()-&gt;icon('ic:baseline-person')-&gt;className('text-red-500');
// 或者这样
amis()-&gt;SvgIcon()-&gt;icon('ic:baseline-person');</code></pre>