Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
celsiusnarhwal authored Nov 23, 2024
1 parent 9130c40 commit c60d10a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/fontawesome/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,17 @@ styles are available for free[^2]; other styles require [Font Awesome Pro](pro.m
```python
import RIL as icons

icons.fa("house") # equivalent to fa.solid("house")
icons.fa("house") # equivalent to icons.fa.solid("house")
```

Solid is also the default substyle for Sharp, Duotone, and Sharp Duotone:

```python
import RIL as icons

icons.fa.sharp("download") # equivalent to fa.sharp.solid("download")
icons.fa.duotone("envelope") # equivalent to fa.duotone.solid("envelope")
icons.fa.sharp_duotone("music") # equivalent to fa.sharp_duotone.solid("music")
icons.fa.sharp("download") # equivalent to icons.fa.sharp.solid("download")
icons.fa.duotone("envelope") # equivalent to icons.fa.duotone.solid("envelope")
icons.fa.sharp_duotone("music") # equivalent to icons.fa.sharp_duotone.solid("music")
```

[^1]:
Expand Down

0 comments on commit c60d10a

Please sign in to comment.