wongyip / html-icons
HTMl 图标
v0.1.0
2024-06-25 23:19 UTC
Requires
- php: >=8.1
- wongyip/html-tags: *
This package is auto-updated.
Last update: 2024-09-25 23:49:20 UTC
README
- 开发初期,请谨慎使用。
- 在 FontAwesome 6 图标包的初始支持下开发。
- 可扩展以支持其他图标字体包。
使用说明(默认,FontAwesome 图标)
PHP
echo implode("\n", [ Icon::make('ufo')->render(), Icon::make('ufo')->duotone()->render(), Icon::make('ufo')->flipVertical()->render(), Icon::make('ufo')->fixedWidth()->render(), Icon::make('ufo')->size(5)->render(), Icon::make('ufo')->duotone()->flipVertical()->fixedWidth()->size(5)->render(), ]);
输出
<i class="fa-regular fa-ufo" aria-hidden="true">‌</i> <i class="fa-duotone fa-ufo" aria-hidden="true">‌</i> <i class="fa-regular fa-ufo fa-flip-vertical" aria-hidden="true">‌</i> <i class="fa-regular fa-ufo fa-fw" aria-hidden="true">‌</i> <i class="fa-regular fa-ufo fa-5x" aria-hidden="true">‌</i> <i class="fa-duotone fa-ufo fa-5x fa-flip-vertical fa-fw" aria-hidden="true">‌</i>