You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library consists of a free Bootstrap Icons style icons from Bootstrap. See the entire collection or search via a filter at https://icons.getbootstrap.com/ .
484
+
485
+
Use it by including the file that contains all the sprites: `!include <bootstrap/bootstrap>`.
486
+
When imported, you can use the sprite as normally you would, using `<$bi_sprite_name>`.
487
+
Notice that this library requires an `bi_` preffix on sprites names, this is to avoid clash of names if multiple sprites have the same name on different libraries. `bi` stands for Bootstrap Icon and this name is also used in the Bootstrap framework.
488
+
489
+
Example of usage:
490
+
```plantuml
491
+
@startuml
492
+
skinparam UsecaseBackgroundColor white
493
+
!include <bootstrap/bootstrap>
494
+
495
+
usecase a as "<$bi-globe>\nbi-globe"
496
+
usecase b as "<$bi-globe,scale=2.5>"
497
+
usecase c as "<$bi-globe{scale=2.5}>" #line:red
498
+
499
+
usecase d as "<$bi-bootstrap-fill>"
500
+
usecase e as "<$bi-bootstrap-fill{scale=2.5,color=blue}>"
501
+
usecase f as "<$bi-bootstrap-fill,scale=2.5,color=#00f>"
0 commit comments