-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7b5aec
commit 731dcfd
Showing
1 changed file
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
# Icons | ||
> Simple, easy to use icons. | ||
Simply find the icon you want to use from here: https://feathericons.com/ and use it by calling: | ||
Simply find the icon you want to use from either of these icon sets: | ||
|
||
* [Feather Icons](https://feathericons.com/) | ||
* [Box Icons](https://boxicons.com) | ||
|
||
## Usage | ||
|
||
The icon pack will default to the Feather Icon pack. | ||
|
||
|
||
Feather 'Archive' Icon: | ||
```php | ||
\Zeek\Icons\get_svg_path( 'archive' ); | ||
``` | ||
> ![Archive SVG Icon](./assets/img/svg/feather/archive.svg) | ||
Box Icons 'Archive' Icon: | ||
```php | ||
\Zeek\Icons\get_svg_path( 'icon' ); | ||
``` | ||
\Zeek\Icons\get_svg_path( 'bx-archive', 'boxicons' ); | ||
``` | ||
> ![Archive SVG Icon](./assets/img/svg/boxicons/bx-archive.svg) |