Repository: twbs/icons Branch: main Commit: abd23b9f7526 Files: 2152 Total size: 538.7 KB Directory structure: gitextract_7clwghpa/ ├── .browserslistrc ├── .editorconfig ├── .fantasticonrc.js ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── icon-request.md │ ├── codeql/ │ │ └── codeql-config.yml │ ├── dependabot.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── codeql.yml │ ├── deploy.yml │ ├── lint.yml │ ├── release-notes.yml │ └── test.yml ├── .gitignore ├── .stylelintrc.json ├── LICENSE ├── README.md ├── build/ │ ├── build-pages.mjs │ ├── build-svgs.mjs │ ├── bump-version.mjs │ ├── check-icons.mjs │ ├── font/ │ │ ├── css.hbs │ │ └── scss.hbs │ └── vnu-jar.mjs ├── composer.json ├── docs/ │ ├── assets/ │ │ ├── js/ │ │ │ ├── application.js │ │ │ ├── color-modes.js │ │ │ └── search.js │ │ └── scss/ │ │ ├── _ads.scss │ │ ├── _buttons.scss │ │ ├── _clipboard-js.scss │ │ ├── _footer.scss │ │ ├── _navbar.scss │ │ ├── _skippy.scss │ │ ├── _syntax.scss │ │ ├── _variables.scss │ │ └── docs.scss │ ├── content/ │ │ ├── 404.md │ │ ├── _index.md │ │ ├── icons/ │ │ │ ├── 0-circle-fill.md │ │ │ ├── 0-circle.md │ │ │ ├── 0-square-fill.md │ │ │ ├── 0-square.md │ │ │ ├── 1-circle-fill.md │ │ │ ├── 1-circle.md │ │ │ ├── 1-square-fill.md │ │ │ ├── 1-square.md │ │ │ ├── 123.md │ │ │ ├── 2-circle-fill.md │ │ │ ├── 2-circle.md │ │ │ ├── 2-square-fill.md │ │ │ ├── 2-square.md │ │ │ ├── 3-circle-fill.md │ │ │ ├── 3-circle.md │ │ │ ├── 3-square-fill.md │ │ │ ├── 3-square.md │ │ │ ├── 4-circle-fill.md │ │ │ ├── 4-circle.md │ │ │ ├── 4-square-fill.md │ │ │ ├── 4-square.md │ │ │ ├── 5-circle-fill.md │ │ │ ├── 5-circle.md │ │ │ ├── 5-square-fill.md │ │ │ ├── 5-square.md │ │ │ ├── 6-circle-fill.md │ │ │ ├── 6-circle.md │ │ │ ├── 6-square-fill.md │ │ │ ├── 6-square.md │ │ │ ├── 7-circle-fill.md │ │ │ ├── 7-circle.md │ │ │ ├── 7-square-fill.md │ │ │ ├── 7-square.md │ │ │ ├── 8-circle-fill.md │ │ │ ├── 8-circle.md │ │ │ ├── 8-square-fill.md │ │ │ ├── 8-square.md │ │ │ ├── 9-circle-fill.md │ │ │ ├── 9-circle.md │ │ │ ├── 9-square-fill.md │ │ │ ├── 9-square.md │ │ │ ├── activity.md │ │ │ ├── airplane-engines-fill.md │ │ │ ├── airplane-engines.md │ │ │ ├── airplane-fill.md │ │ │ ├── airplane.md │ │ │ ├── alarm-fill.md │ │ │ ├── alarm.md │ │ │ ├── alexa.md │ │ │ ├── align-bottom.md │ │ │ ├── align-center.md │ │ │ ├── align-end.md │ │ │ ├── align-middle.md │ │ │ ├── align-start.md │ │ │ ├── align-top.md │ │ │ ├── alipay.md │ │ │ ├── alphabet-uppercase.md │ │ │ ├── alphabet.md │ │ │ ├── alt.md │ │ │ ├── amazon.md │ │ │ ├── amd.md │ │ │ ├── android.md │ │ │ ├── android2.md │ │ │ ├── anthropic.md │ │ │ ├── app-indicator.md │ │ │ ├── app.md │ │ │ ├── apple-music.md │ │ │ ├── apple.md │ │ │ ├── archive-fill.md │ │ │ ├── archive.md │ │ │ ├── arrow-90deg-down.md │ │ │ ├── arrow-90deg-left.md │ │ │ ├── arrow-90deg-right.md │ │ │ ├── arrow-90deg-up.md │ │ │ ├── arrow-bar-down.md │ │ │ ├── arrow-bar-left.md │ │ │ ├── arrow-bar-right.md │ │ │ ├── arrow-bar-up.md │ │ │ ├── arrow-clockwise.md │ │ │ ├── arrow-counterclockwise.md │ │ │ ├── arrow-down-circle-fill.md │ │ │ ├── arrow-down-circle.md │ │ │ ├── arrow-down-left-circle-fill.md │ │ │ ├── arrow-down-left-circle.md │ │ │ ├── arrow-down-left-square-fill.md │ │ │ ├── arrow-down-left-square.md │ │ │ ├── arrow-down-left.md │ │ │ ├── arrow-down-right-circle-fill.md │ │ │ ├── arrow-down-right-circle.md │ │ │ ├── arrow-down-right-square-fill.md │ │ │ ├── arrow-down-right-square.md │ │ │ ├── arrow-down-right.md │ │ │ ├── arrow-down-short.md │ │ │ ├── arrow-down-square-fill.md │ │ │ ├── arrow-down-square.md │ │ │ ├── arrow-down-up.md │ │ │ ├── arrow-down.md │ │ │ ├── arrow-left-circle-fill.md │ │ │ ├── arrow-left-circle.md │ │ │ ├── arrow-left-right.md │ │ │ ├── arrow-left-short.md │ │ │ ├── arrow-left-square-fill.md │ │ │ ├── arrow-left-square.md │ │ │ ├── arrow-left.md │ │ │ ├── arrow-repeat.md │ │ │ ├── arrow-return-left.md │ │ │ ├── arrow-return-right.md │ │ │ ├── arrow-right-circle-fill.md │ │ │ ├── arrow-right-circle.md │ │ │ ├── arrow-right-short.md │ │ │ ├── arrow-right-square-fill.md │ │ │ ├── arrow-right-square.md │ │ │ ├── arrow-right.md │ │ │ ├── arrow-through-heart-fill.md │ │ │ ├── arrow-through-heart.md │ │ │ ├── arrow-up-circle-fill.md │ │ │ ├── arrow-up-circle.md │ │ │ ├── arrow-up-left-circle-fill.md │ │ │ ├── arrow-up-left-circle.md │ │ │ ├── arrow-up-left-square-fill.md │ │ │ ├── arrow-up-left-square.md │ │ │ ├── arrow-up-left.md │ │ │ ├── arrow-up-right-circle-fill.md │ │ │ ├── arrow-up-right-circle.md │ │ │ ├── arrow-up-right-square-fill.md │ │ │ ├── arrow-up-right-square.md │ │ │ ├── arrow-up-right.md │ │ │ ├── arrow-up-short.md │ │ │ ├── arrow-up-square-fill.md │ │ │ ├── arrow-up-square.md │ │ │ ├── arrow-up.md │ │ │ ├── arrows-angle-contract.md │ │ │ ├── arrows-angle-expand.md │ │ │ ├── arrows-collapse-vertical.md │ │ │ ├── arrows-collapse.md │ │ │ ├── arrows-expand-vertical.md │ │ │ ├── arrows-expand.md │ │ │ ├── arrows-fullscreen.md │ │ │ ├── arrows-move.md │ │ │ ├── arrows-vertical.md │ │ │ ├── arrows.md │ │ │ ├── aspect-ratio-fill.md │ │ │ ├── aspect-ratio.md │ │ │ ├── asterisk.md │ │ │ ├── at.md │ │ │ ├── award-fill.md │ │ │ ├── award.md │ │ │ ├── back.md │ │ │ ├── backpack-fill.md │ │ │ ├── backpack.md │ │ │ ├── backpack2-fill.md │ │ │ ├── backpack2.md │ │ │ ├── backpack3-fill.md │ │ │ ├── backpack3.md │ │ │ ├── backpack4-fill.md │ │ │ ├── backpack4.md │ │ │ ├── backspace-fill.md │ │ │ ├── backspace-reverse-fill.md │ │ │ ├── backspace-reverse.md │ │ │ ├── backspace.md │ │ │ ├── badge-3d-fill.md │ │ │ ├── badge-3d.md │ │ │ ├── badge-4k-fill.md │ │ │ ├── badge-4k.md │ │ │ ├── badge-8k-fill.md │ │ │ ├── badge-8k.md │ │ │ ├── badge-ad-fill.md │ │ │ ├── badge-ad.md │ │ │ ├── badge-ar-fill.md │ │ │ ├── badge-ar.md │ │ │ ├── badge-cc-fill.md │ │ │ ├── badge-cc.md │ │ │ ├── badge-hd-fill.md │ │ │ ├── badge-hd.md │ │ │ ├── badge-sd-fill.md │ │ │ ├── badge-sd.md │ │ │ ├── badge-tm-fill.md │ │ │ ├── badge-tm.md │ │ │ ├── badge-vo-fill.md │ │ │ ├── badge-vo.md │ │ │ ├── badge-vr-fill.md │ │ │ ├── badge-vr.md │ │ │ ├── badge-wc-fill.md │ │ │ ├── badge-wc.md │ │ │ ├── bag-check-fill.md │ │ │ ├── bag-check.md │ │ │ ├── bag-dash-fill.md │ │ │ ├── bag-dash.md │ │ │ ├── bag-fill.md │ │ │ ├── bag-heart-fill.md │ │ │ ├── bag-heart.md │ │ │ ├── bag-plus-fill.md │ │ │ ├── bag-plus.md │ │ │ ├── bag-x-fill.md │ │ │ ├── bag-x.md │ │ │ ├── bag.md │ │ │ ├── balloon-fill.md │ │ │ ├── balloon-heart-fill.md │ │ │ ├── balloon-heart.md │ │ │ ├── balloon.md │ │ │ ├── ban-fill.md │ │ │ ├── ban.md │ │ │ ├── bandaid-fill.md │ │ │ ├── bandaid.md │ │ │ ├── bank.md │ │ │ ├── bank2.md │ │ │ ├── bar-chart-fill.md │ │ │ ├── bar-chart-line-fill.md │ │ │ ├── bar-chart-line.md │ │ │ ├── bar-chart-steps.md │ │ │ ├── bar-chart.md │ │ │ ├── basket-fill.md │ │ │ ├── basket.md │ │ │ ├── basket2-fill.md │ │ │ ├── basket2.md │ │ │ ├── basket3-fill.md │ │ │ ├── basket3.md │ │ │ ├── battery-charging.md │ │ │ ├── battery-full.md │ │ │ ├── battery-half.md │ │ │ ├── battery-low.md │ │ │ ├── battery.md │ │ │ ├── beaker-fill.md │ │ │ ├── beaker.md │ │ │ ├── behance.md │ │ │ ├── bell-fill.md │ │ │ ├── bell-slash-fill.md │ │ │ ├── bell-slash.md │ │ │ ├── bell.md │ │ │ ├── bezier.md │ │ │ ├── bezier2.md │ │ │ ├── bicycle.md │ │ │ ├── bing.md │ │ │ ├── binoculars-fill.md │ │ │ ├── binoculars.md │ │ │ ├── blockquote-left.md │ │ │ ├── blockquote-right.md │ │ │ ├── bluesky.md │ │ │ ├── bluetooth.md │ │ │ ├── body-text.md │ │ │ ├── book-fill.md │ │ │ ├── book-half.md │ │ │ ├── book.md │ │ │ ├── bookmark-check-fill.md │ │ │ ├── bookmark-check.md │ │ │ ├── bookmark-dash-fill.md │ │ │ ├── bookmark-dash.md │ │ │ ├── bookmark-fill.md │ │ │ ├── bookmark-heart-fill.md │ │ │ ├── bookmark-heart.md │ │ │ ├── bookmark-plus-fill.md │ │ │ ├── bookmark-plus.md │ │ │ ├── bookmark-star-fill.md │ │ │ ├── bookmark-star.md │ │ │ ├── bookmark-x-fill.md │ │ │ ├── bookmark-x.md │ │ │ ├── bookmark.md │ │ │ ├── bookmarks-fill.md │ │ │ ├── bookmarks.md │ │ │ ├── bookshelf.md │ │ │ ├── boombox-fill.md │ │ │ ├── boombox.md │ │ │ ├── bootstrap-fill.md │ │ │ ├── bootstrap-reboot.md │ │ │ ├── bootstrap.md │ │ │ ├── border-all.md │ │ │ ├── border-bottom.md │ │ │ ├── border-center.md │ │ │ ├── border-inner.md │ │ │ ├── border-left.md │ │ │ ├── border-middle.md │ │ │ ├── border-outer.md │ │ │ ├── border-right.md │ │ │ ├── border-style.md │ │ │ ├── border-top.md │ │ │ ├── border-width.md │ │ │ ├── border.md │ │ │ ├── bounding-box-circles.md │ │ │ ├── bounding-box.md │ │ │ ├── box-arrow-down-left.md │ │ │ ├── box-arrow-down-right.md │ │ │ ├── box-arrow-down.md │ │ │ ├── box-arrow-in-down-left.md │ │ │ ├── box-arrow-in-down-right.md │ │ │ ├── box-arrow-in-down.md │ │ │ ├── box-arrow-in-left.md │ │ │ ├── box-arrow-in-right.md │ │ │ ├── box-arrow-in-up-left.md │ │ │ ├── box-arrow-in-up-right.md │ │ │ ├── box-arrow-in-up.md │ │ │ ├── box-arrow-left.md │ │ │ ├── box-arrow-right.md │ │ │ ├── box-arrow-up-left.md │ │ │ ├── box-arrow-up-right.md │ │ │ ├── box-arrow-up.md │ │ │ ├── box-fill.md │ │ │ ├── box-seam-fill.md │ │ │ ├── box-seam.md │ │ │ ├── box.md │ │ │ ├── box2-fill.md │ │ │ ├── box2-heart-fill.md │ │ │ ├── box2-heart.md │ │ │ ├── box2.md │ │ │ ├── boxes.md │ │ │ ├── braces-asterisk.md │ │ │ ├── braces.md │ │ │ ├── bricks.md │ │ │ ├── briefcase-fill.md │ │ │ ├── briefcase.md │ │ │ ├── brightness-alt-high-fill.md │ │ │ ├── brightness-alt-high.md │ │ │ ├── brightness-alt-low-fill.md │ │ │ ├── brightness-alt-low.md │ │ │ ├── brightness-high-fill.md │ │ │ ├── brightness-high.md │ │ │ ├── brightness-low-fill.md │ │ │ ├── brightness-low.md │ │ │ ├── brilliance.md │ │ │ ├── broadcast-pin.md │ │ │ ├── broadcast.md │ │ │ ├── browser-chrome.md │ │ │ ├── browser-edge.md │ │ │ ├── browser-firefox.md │ │ │ ├── browser-safari.md │ │ │ ├── brush-fill.md │ │ │ ├── brush.md │ │ │ ├── bucket-fill.md │ │ │ ├── bucket.md │ │ │ ├── bug-fill.md │ │ │ ├── bug.md │ │ │ ├── building-add.md │ │ │ ├── building-check.md │ │ │ ├── building-dash.md │ │ │ ├── building-down.md │ │ │ ├── building-exclamation.md │ │ │ ├── building-fill-add.md │ │ │ ├── building-fill-check.md │ │ │ ├── building-fill-dash.md │ │ │ ├── building-fill-down.md │ │ │ ├── building-fill-exclamation.md │ │ │ ├── building-fill-gear.md │ │ │ ├── building-fill-lock.md │ │ │ ├── building-fill-slash.md │ │ │ ├── building-fill-up.md │ │ │ ├── building-fill-x.md │ │ │ ├── building-fill.md │ │ │ ├── building-gear.md │ │ │ ├── building-lock.md │ │ │ ├── building-slash.md │ │ │ ├── building-up.md │ │ │ ├── building-x.md │ │ │ ├── building.md │ │ │ ├── buildings-fill.md │ │ │ ├── buildings.md │ │ │ ├── bullseye.md │ │ │ ├── bus-front-fill.md │ │ │ ├── bus-front.md │ │ │ ├── c-circle-fill.md │ │ │ ├── c-circle.md │ │ │ ├── c-square-fill.md │ │ │ ├── c-square.md │ │ │ ├── cake-fill.md │ │ │ ├── cake.md │ │ │ ├── cake2-fill.md │ │ │ ├── cake2.md │ │ │ ├── calculator-fill.md │ │ │ ├── calculator.md │ │ │ ├── calendar-check-fill.md │ │ │ ├── calendar-check.md │ │ │ ├── calendar-date-fill.md │ │ │ ├── calendar-date.md │ │ │ ├── calendar-day-fill.md │ │ │ ├── calendar-day.md │ │ │ ├── calendar-event-fill.md │ │ │ ├── calendar-event.md │ │ │ ├── calendar-fill.md │ │ │ ├── calendar-heart-fill.md │ │ │ ├── calendar-heart.md │ │ │ ├── calendar-minus-fill.md │ │ │ ├── calendar-minus.md │ │ │ ├── calendar-month-fill.md │ │ │ ├── calendar-month.md │ │ │ ├── calendar-plus-fill.md │ │ │ ├── calendar-plus.md │ │ │ ├── calendar-range-fill.md │ │ │ ├── calendar-range.md │ │ │ ├── calendar-week-fill.md │ │ │ ├── calendar-week.md │ │ │ ├── calendar-x-fill.md │ │ │ ├── calendar-x.md │ │ │ ├── calendar.md │ │ │ ├── calendar2-check-fill.md │ │ │ ├── calendar2-check.md │ │ │ ├── calendar2-date-fill.md │ │ │ ├── calendar2-date.md │ │ │ ├── calendar2-day-fill.md │ │ │ ├── calendar2-day.md │ │ │ ├── calendar2-event-fill.md │ │ │ ├── calendar2-event.md │ │ │ ├── calendar2-fill.md │ │ │ ├── calendar2-heart-fill.md │ │ │ ├── calendar2-heart.md │ │ │ ├── calendar2-minus-fill.md │ │ │ ├── calendar2-minus.md │ │ │ ├── calendar2-month-fill.md │ │ │ ├── calendar2-month.md │ │ │ ├── calendar2-plus-fill.md │ │ │ ├── calendar2-plus.md │ │ │ ├── calendar2-range-fill.md │ │ │ ├── calendar2-range.md │ │ │ ├── calendar2-week-fill.md │ │ │ ├── calendar2-week.md │ │ │ ├── calendar2-x-fill.md │ │ │ ├── calendar2-x.md │ │ │ ├── calendar2.md │ │ │ ├── calendar3-event-fill.md │ │ │ ├── calendar3-event.md │ │ │ ├── calendar3-fill.md │ │ │ ├── calendar3-range-fill.md │ │ │ ├── calendar3-range.md │ │ │ ├── calendar3-week-fill.md │ │ │ ├── calendar3-week.md │ │ │ ├── calendar3.md │ │ │ ├── calendar4-event.md │ │ │ ├── calendar4-range.md │ │ │ ├── calendar4-week.md │ │ │ ├── calendar4.md │ │ │ ├── camera-fill.md │ │ │ ├── camera-reels-fill.md │ │ │ ├── camera-reels.md │ │ │ ├── camera-video-fill.md │ │ │ ├── camera-video-off-fill.md │ │ │ ├── camera-video-off.md │ │ │ ├── camera-video.md │ │ │ ├── camera.md │ │ │ ├── camera2.md │ │ │ ├── capslock-fill.md │ │ │ ├── capslock.md │ │ │ ├── capsule-pill.md │ │ │ ├── capsule.md │ │ │ ├── car-front-fill.md │ │ │ ├── car-front.md │ │ │ ├── card-checklist.md │ │ │ ├── card-heading.md │ │ │ ├── card-image.md │ │ │ ├── card-list.md │ │ │ ├── card-text.md │ │ │ ├── caret-down-fill.md │ │ │ ├── caret-down-square-fill.md │ │ │ ├── caret-down-square.md │ │ │ ├── caret-down.md │ │ │ ├── caret-left-fill.md │ │ │ ├── caret-left-square-fill.md │ │ │ ├── caret-left-square.md │ │ │ ├── caret-left.md │ │ │ ├── caret-right-fill.md │ │ │ ├── caret-right-square-fill.md │ │ │ ├── caret-right-square.md │ │ │ ├── caret-right.md │ │ │ ├── caret-up-fill.md │ │ │ ├── caret-up-square-fill.md │ │ │ ├── caret-up-square.md │ │ │ ├── caret-up.md │ │ │ ├── cart-check-fill.md │ │ │ ├── cart-check.md │ │ │ ├── cart-dash-fill.md │ │ │ ├── cart-dash.md │ │ │ ├── cart-fill.md │ │ │ ├── cart-plus-fill.md │ │ │ ├── cart-plus.md │ │ │ ├── cart-x-fill.md │ │ │ ├── cart-x.md │ │ │ ├── cart.md │ │ │ ├── cart2.md │ │ │ ├── cart3.md │ │ │ ├── cart4.md │ │ │ ├── cash-coin.md │ │ │ ├── cash-stack.md │ │ │ ├── cash.md │ │ │ ├── cassette-fill.md │ │ │ ├── cassette.md │ │ │ ├── cast.md │ │ │ ├── cc-circle-fill.md │ │ │ ├── cc-circle.md │ │ │ ├── cc-square-fill.md │ │ │ ├── cc-square.md │ │ │ ├── chat-dots-fill.md │ │ │ ├── chat-dots.md │ │ │ ├── chat-fill.md │ │ │ ├── chat-heart-fill.md │ │ │ ├── chat-heart.md │ │ │ ├── chat-left-dots-fill.md │ │ │ ├── chat-left-dots.md │ │ │ ├── chat-left-fill.md │ │ │ ├── chat-left-heart-fill.md │ │ │ ├── chat-left-heart.md │ │ │ ├── chat-left-quote-fill.md │ │ │ ├── chat-left-quote.md │ │ │ ├── chat-left-text-fill.md │ │ │ ├── chat-left-text.md │ │ │ ├── chat-left.md │ │ │ ├── chat-quote-fill.md │ │ │ ├── chat-quote.md │ │ │ ├── chat-right-dots-fill.md │ │ │ ├── chat-right-dots.md │ │ │ ├── chat-right-fill.md │ │ │ ├── chat-right-heart-fill.md │ │ │ ├── chat-right-heart.md │ │ │ ├── chat-right-quote-fill.md │ │ │ ├── chat-right-quote.md │ │ │ ├── chat-right-text-fill.md │ │ │ ├── chat-right-text.md │ │ │ ├── chat-right.md │ │ │ ├── chat-square-dots-fill.md │ │ │ ├── chat-square-dots.md │ │ │ ├── chat-square-fill.md │ │ │ ├── chat-square-heart-fill.md │ │ │ ├── chat-square-heart.md │ │ │ ├── chat-square-quote-fill.md │ │ │ ├── chat-square-quote.md │ │ │ ├── chat-square-text-fill.md │ │ │ ├── chat-square-text.md │ │ │ ├── chat-square.md │ │ │ ├── chat-text-fill.md │ │ │ ├── chat-text.md │ │ │ ├── chat.md │ │ │ ├── check-all.md │ │ │ ├── check-circle-fill.md │ │ │ ├── check-circle.md │ │ │ ├── check-lg.md │ │ │ ├── check-square-fill.md │ │ │ ├── check-square.md │ │ │ ├── check.md │ │ │ ├── check2-all.md │ │ │ ├── check2-circle.md │ │ │ ├── check2-square.md │ │ │ ├── check2.md │ │ │ ├── chevron-bar-contract.md │ │ │ ├── chevron-bar-down.md │ │ │ ├── chevron-bar-expand.md │ │ │ ├── chevron-bar-left.md │ │ │ ├── chevron-bar-right.md │ │ │ ├── chevron-bar-up.md │ │ │ ├── chevron-compact-down.md │ │ │ ├── chevron-compact-left.md │ │ │ ├── chevron-compact-right.md │ │ │ ├── chevron-compact-up.md │ │ │ ├── chevron-contract.md │ │ │ ├── chevron-double-down.md │ │ │ ├── chevron-double-left.md │ │ │ ├── chevron-double-right.md │ │ │ ├── chevron-double-up.md │ │ │ ├── chevron-down.md │ │ │ ├── chevron-expand.md │ │ │ ├── chevron-left.md │ │ │ ├── chevron-right.md │ │ │ ├── chevron-up.md │ │ │ ├── circle-fill.md │ │ │ ├── circle-half.md │ │ │ ├── circle-square.md │ │ │ ├── circle.md │ │ │ ├── claude.md │ │ │ ├── clipboard-check-fill.md │ │ │ ├── clipboard-check.md │ │ │ ├── clipboard-data-fill.md │ │ │ ├── clipboard-data.md │ │ │ ├── clipboard-fill.md │ │ │ ├── clipboard-heart-fill.md │ │ │ ├── clipboard-heart.md │ │ │ ├── clipboard-minus-fill.md │ │ │ ├── clipboard-minus.md │ │ │ ├── clipboard-plus-fill.md │ │ │ ├── clipboard-plus.md │ │ │ ├── clipboard-pulse.md │ │ │ ├── clipboard-x-fill.md │ │ │ ├── clipboard-x.md │ │ │ ├── clipboard.md │ │ │ ├── clipboard2-check-fill.md │ │ │ ├── clipboard2-check.md │ │ │ ├── clipboard2-data-fill.md │ │ │ ├── clipboard2-data.md │ │ │ ├── clipboard2-fill.md │ │ │ ├── clipboard2-heart-fill.md │ │ │ ├── clipboard2-heart.md │ │ │ ├── clipboard2-minus-fill.md │ │ │ ├── clipboard2-minus.md │ │ │ ├── clipboard2-plus-fill.md │ │ │ ├── clipboard2-plus.md │ │ │ ├── clipboard2-pulse-fill.md │ │ │ ├── clipboard2-pulse.md │ │ │ ├── clipboard2-x-fill.md │ │ │ ├── clipboard2-x.md │ │ │ ├── clipboard2.md │ │ │ ├── clock-fill.md │ │ │ ├── clock-history.md │ │ │ ├── clock.md │ │ │ ├── cloud-arrow-down-fill.md │ │ │ ├── cloud-arrow-down.md │ │ │ ├── cloud-arrow-up-fill.md │ │ │ ├── cloud-arrow-up.md │ │ │ ├── cloud-check-fill.md │ │ │ ├── cloud-check.md │ │ │ ├── cloud-download-fill.md │ │ │ ├── cloud-download.md │ │ │ ├── cloud-drizzle-fill.md │ │ │ ├── cloud-drizzle.md │ │ │ ├── cloud-fill.md │ │ │ ├── cloud-fog-fill.md │ │ │ ├── cloud-fog.md │ │ │ ├── cloud-fog2-fill.md │ │ │ ├── cloud-fog2.md │ │ │ ├── cloud-hail-fill.md │ │ │ ├── cloud-hail.md │ │ │ ├── cloud-haze-fill.md │ │ │ ├── cloud-haze.md │ │ │ ├── cloud-haze2-fill.md │ │ │ ├── cloud-haze2.md │ │ │ ├── cloud-lightning-fill.md │ │ │ ├── cloud-lightning-rain-fill.md │ │ │ ├── cloud-lightning-rain.md │ │ │ ├── cloud-lightning.md │ │ │ ├── cloud-minus-fill.md │ │ │ ├── cloud-minus.md │ │ │ ├── cloud-moon-fill.md │ │ │ ├── cloud-moon.md │ │ │ ├── cloud-plus-fill.md │ │ │ ├── cloud-plus.md │ │ │ ├── cloud-rain-fill.md │ │ │ ├── cloud-rain-heavy-fill.md │ │ │ ├── cloud-rain-heavy.md │ │ │ ├── cloud-rain.md │ │ │ ├── cloud-slash-fill.md │ │ │ ├── cloud-slash.md │ │ │ ├── cloud-sleet-fill.md │ │ │ ├── cloud-sleet.md │ │ │ ├── cloud-snow-fill.md │ │ │ ├── cloud-snow.md │ │ │ ├── cloud-sun-fill.md │ │ │ ├── cloud-sun.md │ │ │ ├── cloud-upload-fill.md │ │ │ ├── cloud-upload.md │ │ │ ├── cloud.md │ │ │ ├── clouds-fill.md │ │ │ ├── clouds.md │ │ │ ├── cloudy-fill.md │ │ │ ├── cloudy.md │ │ │ ├── code-slash.md │ │ │ ├── code-square.md │ │ │ ├── code.md │ │ │ ├── coin.md │ │ │ ├── collection-fill.md │ │ │ ├── collection-play-fill.md │ │ │ ├── collection-play.md │ │ │ ├── collection.md │ │ │ ├── columns-gap.md │ │ │ ├── columns.md │ │ │ ├── command.md │ │ │ ├── compass-fill.md │ │ │ ├── compass.md │ │ │ ├── cone-striped.md │ │ │ ├── cone.md │ │ │ ├── controller.md │ │ │ ├── cookie.md │ │ │ ├── copy.md │ │ │ ├── cpu-fill.md │ │ │ ├── cpu.md │ │ │ ├── credit-card-2-back-fill.md │ │ │ ├── credit-card-2-back.md │ │ │ ├── credit-card-2-front-fill.md │ │ │ ├── credit-card-2-front.md │ │ │ ├── credit-card-fill.md │ │ │ ├── credit-card.md │ │ │ ├── crop.md │ │ │ ├── crosshair.md │ │ │ ├── crosshair2.md │ │ │ ├── css.md │ │ │ ├── cup-fill.md │ │ │ ├── cup-hot-fill.md │ │ │ ├── cup-hot.md │ │ │ ├── cup-straw.md │ │ │ ├── cup.md │ │ │ ├── currency-bitcoin.md │ │ │ ├── currency-dollar.md │ │ │ ├── currency-euro.md │ │ │ ├── currency-exchange.md │ │ │ ├── currency-pound.md │ │ │ ├── currency-rupee.md │ │ │ ├── currency-yen.md │ │ │ ├── cursor-fill.md │ │ │ ├── cursor-text.md │ │ │ ├── cursor.md │ │ │ ├── dash-circle-dotted.md │ │ │ ├── dash-circle-fill.md │ │ │ ├── dash-circle.md │ │ │ ├── dash-lg.md │ │ │ ├── dash-square-dotted.md │ │ │ ├── dash-square-fill.md │ │ │ ├── dash-square.md │ │ │ ├── dash.md │ │ │ ├── database-add.md │ │ │ ├── database-check.md │ │ │ ├── database-dash.md │ │ │ ├── database-down.md │ │ │ ├── database-exclamation.md │ │ │ ├── database-fill-add.md │ │ │ ├── database-fill-check.md │ │ │ ├── database-fill-dash.md │ │ │ ├── database-fill-down.md │ │ │ ├── database-fill-exclamation.md │ │ │ ├── database-fill-gear.md │ │ │ ├── database-fill-lock.md │ │ │ ├── database-fill-slash.md │ │ │ ├── database-fill-up.md │ │ │ ├── database-fill-x.md │ │ │ ├── database-fill.md │ │ │ ├── database-gear.md │ │ │ ├── database-lock.md │ │ │ ├── database-slash.md │ │ │ ├── database-up.md │ │ │ ├── database-x.md │ │ │ ├── database.md │ │ │ ├── device-hdd-fill.md │ │ │ ├── device-hdd.md │ │ │ ├── device-ssd-fill.md │ │ │ ├── device-ssd.md │ │ │ ├── diagram-2-fill.md │ │ │ ├── diagram-2.md │ │ │ ├── diagram-3-fill.md │ │ │ ├── diagram-3.md │ │ │ ├── diamond-fill.md │ │ │ ├── diamond-half.md │ │ │ ├── diamond.md │ │ │ ├── dice-1-fill.md │ │ │ ├── dice-1.md │ │ │ ├── dice-2-fill.md │ │ │ ├── dice-2.md │ │ │ ├── dice-3-fill.md │ │ │ ├── dice-3.md │ │ │ ├── dice-4-fill.md │ │ │ ├── dice-4.md │ │ │ ├── dice-5-fill.md │ │ │ ├── dice-5.md │ │ │ ├── dice-6-fill.md │ │ │ ├── dice-6.md │ │ │ ├── disc-fill.md │ │ │ ├── disc.md │ │ │ ├── discord.md │ │ │ ├── display-fill.md │ │ │ ├── display.md │ │ │ ├── displayport-fill.md │ │ │ ├── displayport.md │ │ │ ├── distribute-horizontal.md │ │ │ ├── distribute-vertical.md │ │ │ ├── door-closed-fill.md │ │ │ ├── door-closed.md │ │ │ ├── door-open-fill.md │ │ │ ├── door-open.md │ │ │ ├── dot.md │ │ │ ├── download.md │ │ │ ├── dpad-fill.md │ │ │ ├── dpad.md │ │ │ ├── dribbble.md │ │ │ ├── dropbox.md │ │ │ ├── droplet-fill.md │ │ │ ├── droplet-half.md │ │ │ ├── droplet.md │ │ │ ├── duffle-fill.md │ │ │ ├── duffle.md │ │ │ ├── ear-fill.md │ │ │ ├── ear.md │ │ │ ├── earbuds.md │ │ │ ├── easel-fill.md │ │ │ ├── easel.md │ │ │ ├── easel2-fill.md │ │ │ ├── easel2.md │ │ │ ├── easel3-fill.md │ │ │ ├── easel3.md │ │ │ ├── egg-fill.md │ │ │ ├── egg-fried.md │ │ │ ├── egg.md │ │ │ ├── eject-fill.md │ │ │ ├── eject.md │ │ │ ├── emoji-angry-fill.md │ │ │ ├── emoji-angry.md │ │ │ ├── emoji-astonished-fill.md │ │ │ ├── emoji-astonished.md │ │ │ ├── emoji-dizzy-fill.md │ │ │ ├── emoji-dizzy.md │ │ │ ├── emoji-expressionless-fill.md │ │ │ ├── emoji-expressionless.md │ │ │ ├── emoji-frown-fill.md │ │ │ ├── emoji-frown.md │ │ │ ├── emoji-grimace-fill.md │ │ │ ├── emoji-grimace.md │ │ │ ├── emoji-grin-fill.md │ │ │ ├── emoji-grin.md │ │ │ ├── emoji-heart-eyes-fill.md │ │ │ ├── emoji-heart-eyes.md │ │ │ ├── emoji-kiss-fill.md │ │ │ ├── emoji-kiss.md │ │ │ ├── emoji-laughing-fill.md │ │ │ ├── emoji-laughing.md │ │ │ ├── emoji-neutral-fill.md │ │ │ ├── emoji-neutral.md │ │ │ ├── emoji-smile-fill.md │ │ │ ├── emoji-smile-upside-down-fill.md │ │ │ ├── emoji-smile-upside-down.md │ │ │ ├── emoji-smile.md │ │ │ ├── emoji-sunglasses-fill.md │ │ │ ├── emoji-sunglasses.md │ │ │ ├── emoji-surprise-fill.md │ │ │ ├── emoji-surprise.md │ │ │ ├── emoji-tear-fill.md │ │ │ ├── emoji-tear.md │ │ │ ├── emoji-wink-fill.md │ │ │ ├── emoji-wink.md │ │ │ ├── envelope-arrow-down-fill.md │ │ │ ├── envelope-arrow-down.md │ │ │ ├── envelope-arrow-up-fill.md │ │ │ ├── envelope-arrow-up.md │ │ │ ├── envelope-at-fill.md │ │ │ ├── envelope-at.md │ │ │ ├── envelope-check-fill.md │ │ │ ├── envelope-check.md │ │ │ ├── envelope-dash-fill.md │ │ │ ├── envelope-dash.md │ │ │ ├── envelope-exclamation-fill.md │ │ │ ├── envelope-exclamation.md │ │ │ ├── envelope-fill.md │ │ │ ├── envelope-heart-fill.md │ │ │ ├── envelope-heart.md │ │ │ ├── envelope-open-fill.md │ │ │ ├── envelope-open-heart-fill.md │ │ │ ├── envelope-open-heart.md │ │ │ ├── envelope-open.md │ │ │ ├── envelope-paper-fill.md │ │ │ ├── envelope-paper-heart-fill.md │ │ │ ├── envelope-paper-heart.md │ │ │ ├── envelope-paper.md │ │ │ ├── envelope-plus-fill.md │ │ │ ├── envelope-plus.md │ │ │ ├── envelope-slash-fill.md │ │ │ ├── envelope-slash.md │ │ │ ├── envelope-x-fill.md │ │ │ ├── envelope-x.md │ │ │ ├── envelope.md │ │ │ ├── eraser-fill.md │ │ │ ├── eraser.md │ │ │ ├── escape.md │ │ │ ├── ethernet.md │ │ │ ├── ev-front-fill.md │ │ │ ├── ev-front.md │ │ │ ├── ev-station-fill.md │ │ │ ├── ev-station.md │ │ │ ├── exclamation-circle-fill.md │ │ │ ├── exclamation-circle.md │ │ │ ├── exclamation-diamond-fill.md │ │ │ ├── exclamation-diamond.md │ │ │ ├── exclamation-lg.md │ │ │ ├── exclamation-octagon-fill.md │ │ │ ├── exclamation-octagon.md │ │ │ ├── exclamation-square-fill.md │ │ │ ├── exclamation-square.md │ │ │ ├── exclamation-triangle-fill.md │ │ │ ├── exclamation-triangle.md │ │ │ ├── exclamation.md │ │ │ ├── exclude.md │ │ │ ├── explicit-fill.md │ │ │ ├── explicit.md │ │ │ ├── exposure.md │ │ │ ├── eye-fill.md │ │ │ ├── eye-slash-fill.md │ │ │ ├── eye-slash.md │ │ │ ├── eye.md │ │ │ ├── eyedropper.md │ │ │ ├── eyeglasses.md │ │ │ ├── facebook.md │ │ │ ├── fan.md │ │ │ ├── fast-forward-btn-fill.md │ │ │ ├── fast-forward-btn.md │ │ │ ├── fast-forward-circle-fill.md │ │ │ ├── fast-forward-circle.md │ │ │ ├── fast-forward-fill.md │ │ │ ├── fast-forward.md │ │ │ ├── feather.md │ │ │ ├── feather2.md │ │ │ ├── file-arrow-down-fill.md │ │ │ ├── file-arrow-down.md │ │ │ ├── file-arrow-up-fill.md │ │ │ ├── file-arrow-up.md │ │ │ ├── file-bar-graph-fill.md │ │ │ ├── file-bar-graph.md │ │ │ ├── file-binary-fill.md │ │ │ ├── file-binary.md │ │ │ ├── file-break-fill.md │ │ │ ├── file-break.md │ │ │ ├── file-check-fill.md │ │ │ ├── file-check.md │ │ │ ├── file-code-fill.md │ │ │ ├── file-code.md │ │ │ ├── file-diff-fill.md │ │ │ ├── file-diff.md │ │ │ ├── file-earmark-arrow-down-fill.md │ │ │ ├── file-earmark-arrow-down.md │ │ │ ├── file-earmark-arrow-up-fill.md │ │ │ ├── file-earmark-arrow-up.md │ │ │ ├── file-earmark-bar-graph-fill.md │ │ │ ├── file-earmark-bar-graph.md │ │ │ ├── file-earmark-binary-fill.md │ │ │ ├── file-earmark-binary.md │ │ │ ├── file-earmark-break-fill.md │ │ │ ├── file-earmark-break.md │ │ │ ├── file-earmark-check-fill.md │ │ │ ├── file-earmark-check.md │ │ │ ├── file-earmark-code-fill.md │ │ │ ├── file-earmark-code.md │ │ │ ├── file-earmark-diff-fill.md │ │ │ ├── file-earmark-diff.md │ │ │ ├── file-earmark-easel-fill.md │ │ │ ├── file-earmark-easel.md │ │ │ ├── file-earmark-excel-fill.md │ │ │ ├── file-earmark-excel.md │ │ │ ├── file-earmark-fill.md │ │ │ ├── file-earmark-font-fill.md │ │ │ ├── file-earmark-font.md │ │ │ ├── file-earmark-image-fill.md │ │ │ ├── file-earmark-image.md │ │ │ ├── file-earmark-lock-fill.md │ │ │ ├── file-earmark-lock.md │ │ │ ├── file-earmark-lock2-fill.md │ │ │ ├── file-earmark-lock2.md │ │ │ ├── file-earmark-medical-fill.md │ │ │ ├── file-earmark-medical.md │ │ │ ├── file-earmark-minus-fill.md │ │ │ ├── file-earmark-minus.md │ │ │ ├── file-earmark-music-fill.md │ │ │ ├── file-earmark-music.md │ │ │ ├── file-earmark-pdf-fill.md │ │ │ ├── file-earmark-pdf.md │ │ │ ├── file-earmark-person-fill.md │ │ │ ├── file-earmark-person.md │ │ │ ├── file-earmark-play-fill.md │ │ │ ├── file-earmark-play.md │ │ │ ├── file-earmark-plus-fill.md │ │ │ ├── file-earmark-plus.md │ │ │ ├── file-earmark-post-fill.md │ │ │ ├── file-earmark-post.md │ │ │ ├── file-earmark-ppt-fill.md │ │ │ ├── file-earmark-ppt.md │ │ │ ├── file-earmark-richtext-fill.md │ │ │ ├── file-earmark-richtext.md │ │ │ ├── file-earmark-ruled-fill.md │ │ │ ├── file-earmark-ruled.md │ │ │ ├── file-earmark-slides-fill.md │ │ │ ├── file-earmark-slides.md │ │ │ ├── file-earmark-spreadsheet-fill.md │ │ │ ├── file-earmark-spreadsheet.md │ │ │ ├── file-earmark-text-fill.md │ │ │ ├── file-earmark-text.md │ │ │ ├── file-earmark-word-fill.md │ │ │ ├── file-earmark-word.md │ │ │ ├── file-earmark-x-fill.md │ │ │ ├── file-earmark-x.md │ │ │ ├── file-earmark-zip-fill.md │ │ │ ├── file-earmark-zip.md │ │ │ ├── file-earmark.md │ │ │ ├── file-easel-fill.md │ │ │ ├── file-easel.md │ │ │ ├── file-excel-fill.md │ │ │ ├── file-excel.md │ │ │ ├── file-fill.md │ │ │ ├── file-font-fill.md │ │ │ ├── file-font.md │ │ │ ├── file-image-fill.md │ │ │ ├── file-image.md │ │ │ ├── file-lock-fill.md │ │ │ ├── file-lock.md │ │ │ ├── file-lock2-fill.md │ │ │ ├── file-lock2.md │ │ │ ├── file-medical-fill.md │ │ │ ├── file-medical.md │ │ │ ├── file-minus-fill.md │ │ │ ├── file-minus.md │ │ │ ├── file-music-fill.md │ │ │ ├── file-music.md │ │ │ ├── file-pdf-fill.md │ │ │ ├── file-pdf.md │ │ │ ├── file-person-fill.md │ │ │ ├── file-person.md │ │ │ ├── file-play-fill.md │ │ │ ├── file-play.md │ │ │ ├── file-plus-fill.md │ │ │ ├── file-plus.md │ │ │ ├── file-post-fill.md │ │ │ ├── file-post.md │ │ │ ├── file-ppt-fill.md │ │ │ ├── file-ppt.md │ │ │ ├── file-richtext-fill.md │ │ │ ├── file-richtext.md │ │ │ ├── file-ruled-fill.md │ │ │ ├── file-ruled.md │ │ │ ├── file-slides-fill.md │ │ │ ├── file-slides.md │ │ │ ├── file-spreadsheet-fill.md │ │ │ ├── file-spreadsheet.md │ │ │ ├── file-text-fill.md │ │ │ ├── file-text.md │ │ │ ├── file-word-fill.md │ │ │ ├── file-word.md │ │ │ ├── file-x-fill.md │ │ │ ├── file-x.md │ │ │ ├── file-zip-fill.md │ │ │ ├── file-zip.md │ │ │ ├── file.md │ │ │ ├── files-alt.md │ │ │ ├── files.md │ │ │ ├── filetype-aac.md │ │ │ ├── filetype-ai.md │ │ │ ├── filetype-bmp.md │ │ │ ├── filetype-cs.md │ │ │ ├── filetype-css.md │ │ │ ├── filetype-csv.md │ │ │ ├── filetype-doc.md │ │ │ ├── filetype-docx.md │ │ │ ├── filetype-exe.md │ │ │ ├── filetype-gif.md │ │ │ ├── filetype-heic.md │ │ │ ├── filetype-html.md │ │ │ ├── filetype-java.md │ │ │ ├── filetype-jpg.md │ │ │ ├── filetype-js.md │ │ │ ├── filetype-json.md │ │ │ ├── filetype-jsx.md │ │ │ ├── filetype-key.md │ │ │ ├── filetype-m4p.md │ │ │ ├── filetype-md.md │ │ │ ├── filetype-mdx.md │ │ │ ├── filetype-mov.md │ │ │ ├── filetype-mp3.md │ │ │ ├── filetype-mp4.md │ │ │ ├── filetype-otf.md │ │ │ ├── filetype-pdf.md │ │ │ ├── filetype-php.md │ │ │ ├── filetype-png.md │ │ │ ├── filetype-ppt.md │ │ │ ├── filetype-pptx.md │ │ │ ├── filetype-psd.md │ │ │ ├── filetype-py.md │ │ │ ├── filetype-raw.md │ │ │ ├── filetype-rb.md │ │ │ ├── filetype-sass.md │ │ │ ├── filetype-scss.md │ │ │ ├── filetype-sh.md │ │ │ ├── filetype-sql.md │ │ │ ├── filetype-svg.md │ │ │ ├── filetype-tiff.md │ │ │ ├── filetype-tsx.md │ │ │ ├── filetype-ttf.md │ │ │ ├── filetype-txt.md │ │ │ ├── filetype-wav.md │ │ │ ├── filetype-woff.md │ │ │ ├── filetype-xls.md │ │ │ ├── filetype-xlsx.md │ │ │ ├── filetype-xml.md │ │ │ ├── filetype-yml.md │ │ │ ├── film.md │ │ │ ├── filter-circle-fill.md │ │ │ ├── filter-circle.md │ │ │ ├── filter-left.md │ │ │ ├── filter-right.md │ │ │ ├── filter-square-fill.md │ │ │ ├── filter-square.md │ │ │ ├── filter.md │ │ │ ├── fingerprint.md │ │ │ ├── fire.md │ │ │ ├── flag-fill.md │ │ │ ├── flag.md │ │ │ ├── flask-fill.md │ │ │ ├── flask-florence-fill.md │ │ │ ├── flask-florence.md │ │ │ ├── flask.md │ │ │ ├── floppy-fill.md │ │ │ ├── floppy.md │ │ │ ├── floppy2-fill.md │ │ │ ├── floppy2.md │ │ │ ├── flower1.md │ │ │ ├── flower2.md │ │ │ ├── flower3.md │ │ │ ├── folder-check.md │ │ │ ├── folder-fill.md │ │ │ ├── folder-minus.md │ │ │ ├── folder-plus.md │ │ │ ├── folder-symlink-fill.md │ │ │ ├── folder-symlink.md │ │ │ ├── folder-x.md │ │ │ ├── folder.md │ │ │ ├── folder2-open.md │ │ │ ├── folder2.md │ │ │ ├── fonts.md │ │ │ ├── fork-knife.md │ │ │ ├── forward-fill.md │ │ │ ├── forward.md │ │ │ ├── front.md │ │ │ ├── fuel-pump-diesel-fill.md │ │ │ ├── fuel-pump-diesel.md │ │ │ ├── fuel-pump-fill.md │ │ │ ├── fuel-pump.md │ │ │ ├── fullscreen-exit.md │ │ │ ├── fullscreen.md │ │ │ ├── funnel-fill.md │ │ │ ├── funnel.md │ │ │ ├── gear-fill.md │ │ │ ├── gear-wide-connected.md │ │ │ ├── gear-wide.md │ │ │ ├── gear.md │ │ │ ├── gem.md │ │ │ ├── gender-ambiguous.md │ │ │ ├── gender-female.md │ │ │ ├── gender-male.md │ │ │ ├── gender-neuter.md │ │ │ ├── gender-trans.md │ │ │ ├── geo-alt-fill.md │ │ │ ├── geo-alt.md │ │ │ ├── geo-fill.md │ │ │ ├── geo.md │ │ │ ├── gift-fill.md │ │ │ ├── gift.md │ │ │ ├── git.md │ │ │ ├── github.md │ │ │ ├── gitlab.md │ │ │ ├── globe-americas-fill.md │ │ │ ├── globe-americas.md │ │ │ ├── globe-asia-australia-fill.md │ │ │ ├── globe-asia-australia.md │ │ │ ├── globe-central-south-asia-fill.md │ │ │ ├── globe-central-south-asia.md │ │ │ ├── globe-europe-africa-fill.md │ │ │ ├── globe-europe-africa.md │ │ │ ├── globe.md │ │ │ ├── globe2.md │ │ │ ├── google-play.md │ │ │ ├── google.md │ │ │ ├── gpu-card.md │ │ │ ├── graph-down-arrow.md │ │ │ ├── graph-down.md │ │ │ ├── graph-up-arrow.md │ │ │ ├── graph-up.md │ │ │ ├── grid-1x2-fill.md │ │ │ ├── grid-1x2.md │ │ │ ├── grid-3x2-gap-fill.md │ │ │ ├── grid-3x2-gap.md │ │ │ ├── grid-3x2.md │ │ │ ├── grid-3x3-gap-fill.md │ │ │ ├── grid-3x3-gap.md │ │ │ ├── grid-3x3.md │ │ │ ├── grid-fill.md │ │ │ ├── grid.md │ │ │ ├── grip-horizontal.md │ │ │ ├── grip-vertical.md │ │ │ ├── h-circle-fill.md │ │ │ ├── h-circle.md │ │ │ ├── h-square-fill.md │ │ │ ├── h-square.md │ │ │ ├── hammer.md │ │ │ ├── hand-index-fill.md │ │ │ ├── hand-index-thumb-fill.md │ │ │ ├── hand-index-thumb.md │ │ │ ├── hand-index.md │ │ │ ├── hand-thumbs-down-fill.md │ │ │ ├── hand-thumbs-down.md │ │ │ ├── hand-thumbs-up-fill.md │ │ │ ├── hand-thumbs-up.md │ │ │ ├── handbag-fill.md │ │ │ ├── handbag.md │ │ │ ├── hash.md │ │ │ ├── hdd-fill.md │ │ │ ├── hdd-network-fill.md │ │ │ ├── hdd-network.md │ │ │ ├── hdd-rack-fill.md │ │ │ ├── hdd-rack.md │ │ │ ├── hdd-stack-fill.md │ │ │ ├── hdd-stack.md │ │ │ ├── hdd.md │ │ │ ├── hdmi-fill.md │ │ │ ├── hdmi.md │ │ │ ├── headphones.md │ │ │ ├── headset-vr.md │ │ │ ├── headset.md │ │ │ ├── heart-arrow.md │ │ │ ├── heart-fill.md │ │ │ ├── heart-half.md │ │ │ ├── heart-pulse-fill.md │ │ │ ├── heart-pulse.md │ │ │ ├── heart.md │ │ │ ├── heartbreak-fill.md │ │ │ ├── heartbreak.md │ │ │ ├── hearts.md │ │ │ ├── heptagon-fill.md │ │ │ ├── heptagon-half.md │ │ │ ├── heptagon.md │ │ │ ├── hexagon-fill.md │ │ │ ├── hexagon-half.md │ │ │ ├── hexagon.md │ │ │ ├── highlighter.md │ │ │ ├── highlights.md │ │ │ ├── hospital-fill.md │ │ │ ├── hospital.md │ │ │ ├── hourglass-bottom.md │ │ │ ├── hourglass-split.md │ │ │ ├── hourglass-top.md │ │ │ ├── hourglass.md │ │ │ ├── house-add-fill.md │ │ │ ├── house-add.md │ │ │ ├── house-check-fill.md │ │ │ ├── house-check.md │ │ │ ├── house-dash-fill.md │ │ │ ├── house-dash.md │ │ │ ├── house-door-fill.md │ │ │ ├── house-door.md │ │ │ ├── house-down-fill.md │ │ │ ├── house-down.md │ │ │ ├── house-exclamation-fill.md │ │ │ ├── house-exclamation.md │ │ │ ├── house-fill.md │ │ │ ├── house-gear-fill.md │ │ │ ├── house-gear.md │ │ │ ├── house-heart-fill.md │ │ │ ├── house-heart.md │ │ │ ├── house-lock-fill.md │ │ │ ├── house-lock.md │ │ │ ├── house-slash-fill.md │ │ │ ├── house-slash.md │ │ │ ├── house-up-fill.md │ │ │ ├── house-up.md │ │ │ ├── house-x-fill.md │ │ │ ├── house-x.md │ │ │ ├── house.md │ │ │ ├── houses-fill.md │ │ │ ├── houses.md │ │ │ ├── hr.md │ │ │ ├── hurricane.md │ │ │ ├── hypnotize.md │ │ │ ├── image-alt.md │ │ │ ├── image-fill.md │ │ │ ├── image.md │ │ │ ├── images.md │ │ │ ├── inbox-fill.md │ │ │ ├── inbox.md │ │ │ ├── inboxes-fill.md │ │ │ ├── inboxes.md │ │ │ ├── incognito.md │ │ │ ├── indent.md │ │ │ ├── infinity.md │ │ │ ├── info-circle-fill.md │ │ │ ├── info-circle.md │ │ │ ├── info-lg.md │ │ │ ├── info-square-fill.md │ │ │ ├── info-square.md │ │ │ ├── info.md │ │ │ ├── input-cursor-text.md │ │ │ ├── input-cursor.md │ │ │ ├── instagram.md │ │ │ ├── intersect.md │ │ │ ├── javascript.md │ │ │ ├── journal-album.md │ │ │ ├── journal-arrow-down.md │ │ │ ├── journal-arrow-up.md │ │ │ ├── journal-bookmark-fill.md │ │ │ ├── journal-bookmark.md │ │ │ ├── journal-check.md │ │ │ ├── journal-code.md │ │ │ ├── journal-medical.md │ │ │ ├── journal-minus.md │ │ │ ├── journal-plus.md │ │ │ ├── journal-richtext.md │ │ │ ├── journal-text.md │ │ │ ├── journal-x.md │ │ │ ├── journal.md │ │ │ ├── journals.md │ │ │ ├── joystick.md │ │ │ ├── justify-left.md │ │ │ ├── justify-right.md │ │ │ ├── justify.md │ │ │ ├── kanban-fill.md │ │ │ ├── kanban.md │ │ │ ├── key-fill.md │ │ │ ├── key.md │ │ │ ├── keyboard-fill.md │ │ │ ├── keyboard.md │ │ │ ├── ladder.md │ │ │ ├── lamp-fill.md │ │ │ ├── lamp.md │ │ │ ├── laptop-fill.md │ │ │ ├── laptop.md │ │ │ ├── layer-backward.md │ │ │ ├── layer-forward.md │ │ │ ├── layers-fill.md │ │ │ ├── layers-half.md │ │ │ ├── layers.md │ │ │ ├── layout-sidebar-inset-reverse.md │ │ │ ├── layout-sidebar-inset.md │ │ │ ├── layout-sidebar-reverse.md │ │ │ ├── layout-sidebar.md │ │ │ ├── layout-split.md │ │ │ ├── layout-text-sidebar-reverse.md │ │ │ ├── layout-text-sidebar.md │ │ │ ├── layout-text-window-reverse.md │ │ │ ├── layout-text-window.md │ │ │ ├── layout-three-columns.md │ │ │ ├── layout-wtf.md │ │ │ ├── leaf-fill.md │ │ │ ├── leaf.md │ │ │ ├── life-preserver.md │ │ │ ├── lightbulb-fill.md │ │ │ ├── lightbulb-off-fill.md │ │ │ ├── lightbulb-off.md │ │ │ ├── lightbulb.md │ │ │ ├── lightning-charge-fill.md │ │ │ ├── lightning-charge.md │ │ │ ├── lightning-fill.md │ │ │ ├── lightning.md │ │ │ ├── line.md │ │ │ ├── link-45deg.md │ │ │ ├── link.md │ │ │ ├── linkedin.md │ │ │ ├── list-check.md │ │ │ ├── list-columns-reverse.md │ │ │ ├── list-columns.md │ │ │ ├── list-nested.md │ │ │ ├── list-ol.md │ │ │ ├── list-stars.md │ │ │ ├── list-task.md │ │ │ ├── list-ul.md │ │ │ ├── list.md │ │ │ ├── lock-fill.md │ │ │ ├── lock.md │ │ │ ├── luggage-fill.md │ │ │ ├── luggage.md │ │ │ ├── lungs-fill.md │ │ │ ├── lungs.md │ │ │ ├── magic.md │ │ │ ├── magnet-fill.md │ │ │ ├── magnet.md │ │ │ ├── mailbox-flag.md │ │ │ ├── mailbox.md │ │ │ ├── mailbox2-flag.md │ │ │ ├── mailbox2.md │ │ │ ├── map-fill.md │ │ │ ├── map.md │ │ │ ├── markdown-fill.md │ │ │ ├── markdown.md │ │ │ ├── marker-tip.md │ │ │ ├── mask.md │ │ │ ├── mastodon.md │ │ │ ├── measuring-cup-fill.md │ │ │ ├── measuring-cup.md │ │ │ ├── medium.md │ │ │ ├── megaphone-fill.md │ │ │ ├── megaphone.md │ │ │ ├── memory.md │ │ │ ├── menu-app-fill.md │ │ │ ├── menu-app.md │ │ │ ├── menu-button-fill.md │ │ │ ├── menu-button-wide-fill.md │ │ │ ├── menu-button-wide.md │ │ │ ├── menu-button.md │ │ │ ├── menu-down.md │ │ │ ├── menu-up.md │ │ │ ├── messenger.md │ │ │ ├── meta.md │ │ │ ├── mic-fill.md │ │ │ ├── mic-mute-fill.md │ │ │ ├── mic-mute.md │ │ │ ├── mic.md │ │ │ ├── microsoft-teams.md │ │ │ ├── microsoft.md │ │ │ ├── minecart-loaded.md │ │ │ ├── minecart.md │ │ │ ├── modem-fill.md │ │ │ ├── modem.md │ │ │ ├── moisture.md │ │ │ ├── moon-fill.md │ │ │ ├── moon-stars-fill.md │ │ │ ├── moon-stars.md │ │ │ ├── moon.md │ │ │ ├── mortarboard-fill.md │ │ │ ├── mortarboard.md │ │ │ ├── motherboard-fill.md │ │ │ ├── motherboard.md │ │ │ ├── mouse-fill.md │ │ │ ├── mouse.md │ │ │ ├── mouse2-fill.md │ │ │ ├── mouse2.md │ │ │ ├── mouse3-fill.md │ │ │ ├── mouse3.md │ │ │ ├── music-note-beamed.md │ │ │ ├── music-note-list.md │ │ │ ├── music-note.md │ │ │ ├── music-player-fill.md │ │ │ ├── music-player.md │ │ │ ├── newspaper.md │ │ │ ├── nintendo-switch.md │ │ │ ├── node-minus-fill.md │ │ │ ├── node-minus.md │ │ │ ├── node-plus-fill.md │ │ │ ├── node-plus.md │ │ │ ├── noise-reduction.md │ │ │ ├── nut-fill.md │ │ │ ├── nut.md │ │ │ ├── nvidia.md │ │ │ ├── nvme-fill.md │ │ │ ├── nvme.md │ │ │ ├── octagon-fill.md │ │ │ ├── octagon-half.md │ │ │ ├── octagon.md │ │ │ ├── openai.md │ │ │ ├── opencollective.md │ │ │ ├── optical-audio-fill.md │ │ │ ├── optical-audio.md │ │ │ ├── option.md │ │ │ ├── outlet.md │ │ │ ├── p-circle-fill.md │ │ │ ├── p-circle.md │ │ │ ├── p-square-fill.md │ │ │ ├── p-square.md │ │ │ ├── paint-bucket.md │ │ │ ├── palette-fill.md │ │ │ ├── palette.md │ │ │ ├── palette2.md │ │ │ ├── paperclip.md │ │ │ ├── paragraph.md │ │ │ ├── pass-fill.md │ │ │ ├── pass.md │ │ │ ├── passport-fill.md │ │ │ ├── passport.md │ │ │ ├── patch-check-fill.md │ │ │ ├── patch-check.md │ │ │ ├── patch-exclamation-fill.md │ │ │ ├── patch-exclamation.md │ │ │ ├── patch-minus-fill.md │ │ │ ├── patch-minus.md │ │ │ ├── patch-plus-fill.md │ │ │ ├── patch-plus.md │ │ │ ├── patch-question-fill.md │ │ │ ├── patch-question.md │ │ │ ├── pause-btn-fill.md │ │ │ ├── pause-btn.md │ │ │ ├── pause-circle-fill.md │ │ │ ├── pause-circle.md │ │ │ ├── pause-fill.md │ │ │ ├── pause.md │ │ │ ├── paypal.md │ │ │ ├── pc-display-horizontal.md │ │ │ ├── pc-display.md │ │ │ ├── pc-horizontal.md │ │ │ ├── pc.md │ │ │ ├── pci-card-network.md │ │ │ ├── pci-card-sound.md │ │ │ ├── pci-card.md │ │ │ ├── peace-fill.md │ │ │ ├── peace.md │ │ │ ├── pen-fill.md │ │ │ ├── pen.md │ │ │ ├── pencil-fill.md │ │ │ ├── pencil-square.md │ │ │ ├── pencil.md │ │ │ ├── pentagon-fill.md │ │ │ ├── pentagon-half.md │ │ │ ├── pentagon.md │ │ │ ├── people-fill.md │ │ │ ├── people.md │ │ │ ├── percent.md │ │ │ ├── perplexity.md │ │ │ ├── person-add.md │ │ │ ├── person-arms-up.md │ │ │ ├── person-badge-fill.md │ │ │ ├── person-badge.md │ │ │ ├── person-bounding-box.md │ │ │ ├── person-check-fill.md │ │ │ ├── person-check.md │ │ │ ├── person-circle.md │ │ │ ├── person-dash-fill.md │ │ │ ├── person-dash.md │ │ │ ├── person-down.md │ │ │ ├── person-exclamation.md │ │ │ ├── person-fill-add.md │ │ │ ├── person-fill-check.md │ │ │ ├── person-fill-dash.md │ │ │ ├── person-fill-down.md │ │ │ ├── person-fill-exclamation.md │ │ │ ├── person-fill-gear.md │ │ │ ├── person-fill-lock.md │ │ │ ├── person-fill-slash.md │ │ │ ├── person-fill-up.md │ │ │ ├── person-fill-x.md │ │ │ ├── person-fill.md │ │ │ ├── person-gear.md │ │ │ ├── person-heart.md │ │ │ ├── person-hearts.md │ │ │ ├── person-lines-fill.md │ │ │ ├── person-lock.md │ │ │ ├── person-plus-fill.md │ │ │ ├── person-plus.md │ │ │ ├── person-raised-hand.md │ │ │ ├── person-rolodex.md │ │ │ ├── person-slash.md │ │ │ ├── person-square.md │ │ │ ├── person-standing-dress.md │ │ │ ├── person-standing.md │ │ │ ├── person-up.md │ │ │ ├── person-vcard-fill.md │ │ │ ├── person-vcard.md │ │ │ ├── person-video.md │ │ │ ├── person-video2.md │ │ │ ├── person-video3.md │ │ │ ├── person-walking.md │ │ │ ├── person-wheelchair.md │ │ │ ├── person-workspace.md │ │ │ ├── person-x-fill.md │ │ │ ├── person-x.md │ │ │ ├── person.md │ │ │ ├── phone-fill.md │ │ │ ├── phone-flip.md │ │ │ ├── phone-landscape-fill.md │ │ │ ├── phone-landscape.md │ │ │ ├── phone-vibrate-fill.md │ │ │ ├── phone-vibrate.md │ │ │ ├── phone.md │ │ │ ├── pie-chart-fill.md │ │ │ ├── pie-chart.md │ │ │ ├── piggy-bank-fill.md │ │ │ ├── piggy-bank.md │ │ │ ├── pin-angle-fill.md │ │ │ ├── pin-angle.md │ │ │ ├── pin-fill.md │ │ │ ├── pin-map-fill.md │ │ │ ├── pin-map.md │ │ │ ├── pin.md │ │ │ ├── pinterest.md │ │ │ ├── pip-fill.md │ │ │ ├── pip.md │ │ │ ├── play-btn-fill.md │ │ │ ├── play-btn.md │ │ │ ├── play-circle-fill.md │ │ │ ├── play-circle.md │ │ │ ├── play-fill.md │ │ │ ├── play.md │ │ │ ├── playstation.md │ │ │ ├── plug-fill.md │ │ │ ├── plug.md │ │ │ ├── plugin.md │ │ │ ├── plus-circle-dotted.md │ │ │ ├── plus-circle-fill.md │ │ │ ├── plus-circle.md │ │ │ ├── plus-lg.md │ │ │ ├── plus-slash-minus.md │ │ │ ├── plus-square-dotted.md │ │ │ ├── plus-square-fill.md │ │ │ ├── plus-square.md │ │ │ ├── plus.md │ │ │ ├── postage-fill.md │ │ │ ├── postage-heart-fill.md │ │ │ ├── postage-heart.md │ │ │ ├── postage.md │ │ │ ├── postcard-fill.md │ │ │ ├── postcard-heart-fill.md │ │ │ ├── postcard-heart.md │ │ │ ├── postcard.md │ │ │ ├── power.md │ │ │ ├── prescription.md │ │ │ ├── prescription2.md │ │ │ ├── printer-fill.md │ │ │ ├── printer.md │ │ │ ├── projector-fill.md │ │ │ ├── projector.md │ │ │ ├── puzzle-fill.md │ │ │ ├── puzzle.md │ │ │ ├── qr-code-scan.md │ │ │ ├── qr-code.md │ │ │ ├── question-circle-fill.md │ │ │ ├── question-circle.md │ │ │ ├── question-diamond-fill.md │ │ │ ├── question-diamond.md │ │ │ ├── question-lg.md │ │ │ ├── question-octagon-fill.md │ │ │ ├── question-octagon.md │ │ │ ├── question-square-fill.md │ │ │ ├── question-square.md │ │ │ ├── question.md │ │ │ ├── quora.md │ │ │ ├── quote.md │ │ │ ├── r-circle-fill.md │ │ │ ├── r-circle.md │ │ │ ├── r-square-fill.md │ │ │ ├── r-square.md │ │ │ ├── radar.md │ │ │ ├── radioactive.md │ │ │ ├── rainbow.md │ │ │ ├── receipt-cutoff.md │ │ │ ├── receipt.md │ │ │ ├── reception-0.md │ │ │ ├── reception-1.md │ │ │ ├── reception-2.md │ │ │ ├── reception-3.md │ │ │ ├── reception-4.md │ │ │ ├── record-btn-fill.md │ │ │ ├── record-btn.md │ │ │ ├── record-circle-fill.md │ │ │ ├── record-circle.md │ │ │ ├── record-fill.md │ │ │ ├── record.md │ │ │ ├── record2-fill.md │ │ │ ├── record2.md │ │ │ ├── recycle.md │ │ │ ├── reddit.md │ │ │ ├── regex.md │ │ │ ├── repeat-1.md │ │ │ ├── repeat.md │ │ │ ├── reply-all-fill.md │ │ │ ├── reply-all.md │ │ │ ├── reply-fill.md │ │ │ ├── reply.md │ │ │ ├── rewind-btn-fill.md │ │ │ ├── rewind-btn.md │ │ │ ├── rewind-circle-fill.md │ │ │ ├── rewind-circle.md │ │ │ ├── rewind-fill.md │ │ │ ├── rewind.md │ │ │ ├── robot.md │ │ │ ├── rocket-fill.md │ │ │ ├── rocket-takeoff-fill.md │ │ │ ├── rocket-takeoff.md │ │ │ ├── rocket.md │ │ │ ├── router-fill.md │ │ │ ├── router.md │ │ │ ├── rss-fill.md │ │ │ ├── rss.md │ │ │ ├── rulers.md │ │ │ ├── safe-fill.md │ │ │ ├── safe.md │ │ │ ├── safe2-fill.md │ │ │ ├── safe2.md │ │ │ ├── save-fill.md │ │ │ ├── save.md │ │ │ ├── save2-fill.md │ │ │ ├── save2.md │ │ │ ├── scissors.md │ │ │ ├── scooter.md │ │ │ ├── screwdriver.md │ │ │ ├── sd-card-fill.md │ │ │ ├── sd-card.md │ │ │ ├── search-heart-fill.md │ │ │ ├── search-heart.md │ │ │ ├── search.md │ │ │ ├── segmented-nav.md │ │ │ ├── send-arrow-down-fill.md │ │ │ ├── send-arrow-down.md │ │ │ ├── send-arrow-up-fill.md │ │ │ ├── send-arrow-up.md │ │ │ ├── send-check-fill.md │ │ │ ├── send-check.md │ │ │ ├── send-dash-fill.md │ │ │ ├── send-dash.md │ │ │ ├── send-exclamation-fill.md │ │ │ ├── send-exclamation.md │ │ │ ├── send-fill.md │ │ │ ├── send-plus-fill.md │ │ │ ├── send-plus.md │ │ │ ├── send-slash-fill.md │ │ │ ├── send-slash.md │ │ │ ├── send-x-fill.md │ │ │ ├── send-x.md │ │ │ ├── send.md │ │ │ ├── server.md │ │ │ ├── shadows.md │ │ │ ├── share-fill.md │ │ │ ├── share.md │ │ │ ├── shield-check.md │ │ │ ├── shield-exclamation.md │ │ │ ├── shield-fill-check.md │ │ │ ├── shield-fill-exclamation.md │ │ │ ├── shield-fill-minus.md │ │ │ ├── shield-fill-plus.md │ │ │ ├── shield-fill-x.md │ │ │ ├── shield-fill.md │ │ │ ├── shield-lock-fill.md │ │ │ ├── shield-lock.md │ │ │ ├── shield-minus.md │ │ │ ├── shield-plus.md │ │ │ ├── shield-shaded.md │ │ │ ├── shield-slash-fill.md │ │ │ ├── shield-slash.md │ │ │ ├── shield-x.md │ │ │ ├── shield.md │ │ │ ├── shift-fill.md │ │ │ ├── shift.md │ │ │ ├── shop-window.md │ │ │ ├── shop.md │ │ │ ├── shuffle.md │ │ │ ├── sign-dead-end-fill.md │ │ │ ├── sign-dead-end.md │ │ │ ├── sign-do-not-enter-fill.md │ │ │ ├── sign-do-not-enter.md │ │ │ ├── sign-intersection-fill.md │ │ │ ├── sign-intersection-side-fill.md │ │ │ ├── sign-intersection-side.md │ │ │ ├── sign-intersection-t-fill.md │ │ │ ├── sign-intersection-t.md │ │ │ ├── sign-intersection-y-fill.md │ │ │ ├── sign-intersection-y.md │ │ │ ├── sign-intersection.md │ │ │ ├── sign-merge-left-fill.md │ │ │ ├── sign-merge-left.md │ │ │ ├── sign-merge-right-fill.md │ │ │ ├── sign-merge-right.md │ │ │ ├── sign-no-left-turn-fill.md │ │ │ ├── sign-no-left-turn.md │ │ │ ├── sign-no-parking-fill.md │ │ │ ├── sign-no-parking.md │ │ │ ├── sign-no-right-turn-fill.md │ │ │ ├── sign-no-right-turn.md │ │ │ ├── sign-railroad-fill.md │ │ │ ├── sign-railroad.md │ │ │ ├── sign-stop-fill.md │ │ │ ├── sign-stop-lights-fill.md │ │ │ ├── sign-stop-lights.md │ │ │ ├── sign-stop.md │ │ │ ├── sign-turn-left-fill.md │ │ │ ├── sign-turn-left.md │ │ │ ├── sign-turn-right-fill.md │ │ │ ├── sign-turn-right.md │ │ │ ├── sign-turn-slight-left-fill.md │ │ │ ├── sign-turn-slight-left.md │ │ │ ├── sign-turn-slight-right-fill.md │ │ │ ├── sign-turn-slight-right.md │ │ │ ├── sign-yield-fill.md │ │ │ ├── sign-yield.md │ │ │ ├── signal.md │ │ │ ├── signpost-2-fill.md │ │ │ ├── signpost-2.md │ │ │ ├── signpost-fill.md │ │ │ ├── signpost-split-fill.md │ │ │ ├── signpost-split.md │ │ │ ├── signpost.md │ │ │ ├── sim-fill.md │ │ │ ├── sim-slash-fill.md │ │ │ ├── sim-slash.md │ │ │ ├── sim.md │ │ │ ├── sina-weibo.md │ │ │ ├── skip-backward-btn-fill.md │ │ │ ├── skip-backward-btn.md │ │ │ ├── skip-backward-circle-fill.md │ │ │ ├── skip-backward-circle.md │ │ │ ├── skip-backward-fill.md │ │ │ ├── skip-backward.md │ │ │ ├── skip-end-btn-fill.md │ │ │ ├── skip-end-btn.md │ │ │ ├── skip-end-circle-fill.md │ │ │ ├── skip-end-circle.md │ │ │ ├── skip-end-fill.md │ │ │ ├── skip-end.md │ │ │ ├── skip-forward-btn-fill.md │ │ │ ├── skip-forward-btn.md │ │ │ ├── skip-forward-circle-fill.md │ │ │ ├── skip-forward-circle.md │ │ │ ├── skip-forward-fill.md │ │ │ ├── skip-forward.md │ │ │ ├── skip-start-btn-fill.md │ │ │ ├── skip-start-btn.md │ │ │ ├── skip-start-circle-fill.md │ │ │ ├── skip-start-circle.md │ │ │ ├── skip-start-fill.md │ │ │ ├── skip-start.md │ │ │ ├── skype.md │ │ │ ├── slack.md │ │ │ ├── slash-circle-fill.md │ │ │ ├── slash-circle.md │ │ │ ├── slash-lg.md │ │ │ ├── slash-square-fill.md │ │ │ ├── slash-square.md │ │ │ ├── slash.md │ │ │ ├── sliders.md │ │ │ ├── sliders2-vertical.md │ │ │ ├── sliders2.md │ │ │ ├── smartwatch.md │ │ │ ├── snapchat.md │ │ │ ├── snow.md │ │ │ ├── snow2.md │ │ │ ├── snow3.md │ │ │ ├── sort-alpha-down-alt.md │ │ │ ├── sort-alpha-down.md │ │ │ ├── sort-alpha-up-alt.md │ │ │ ├── sort-alpha-up.md │ │ │ ├── sort-down-alt.md │ │ │ ├── sort-down.md │ │ │ ├── sort-numeric-down-alt.md │ │ │ ├── sort-numeric-down.md │ │ │ ├── sort-numeric-up-alt.md │ │ │ ├── sort-numeric-up.md │ │ │ ├── sort-up-alt.md │ │ │ ├── sort-up.md │ │ │ ├── soundwave.md │ │ │ ├── sourceforge.md │ │ │ ├── speaker-fill.md │ │ │ ├── speaker.md │ │ │ ├── speedometer.md │ │ │ ├── speedometer2.md │ │ │ ├── spellcheck.md │ │ │ ├── spotify.md │ │ │ ├── square-fill.md │ │ │ ├── square-half.md │ │ │ ├── square.md │ │ │ ├── stack-overflow.md │ │ │ ├── stack.md │ │ │ ├── star-fill.md │ │ │ ├── star-half.md │ │ │ ├── star.md │ │ │ ├── stars.md │ │ │ ├── steam.md │ │ │ ├── stickies-fill.md │ │ │ ├── stickies.md │ │ │ ├── sticky-fill.md │ │ │ ├── sticky.md │ │ │ ├── stop-btn-fill.md │ │ │ ├── stop-btn.md │ │ │ ├── stop-circle-fill.md │ │ │ ├── stop-circle.md │ │ │ ├── stop-fill.md │ │ │ ├── stop.md │ │ │ ├── stoplights-fill.md │ │ │ ├── stoplights.md │ │ │ ├── stopwatch-fill.md │ │ │ ├── stopwatch.md │ │ │ ├── strava.md │ │ │ ├── stripe.md │ │ │ ├── subscript.md │ │ │ ├── substack.md │ │ │ ├── subtract.md │ │ │ ├── suit-club-fill.md │ │ │ ├── suit-club.md │ │ │ ├── suit-diamond-fill.md │ │ │ ├── suit-diamond.md │ │ │ ├── suit-heart-fill.md │ │ │ ├── suit-heart.md │ │ │ ├── suit-spade-fill.md │ │ │ ├── suit-spade.md │ │ │ ├── suitcase-fill.md │ │ │ ├── suitcase-lg-fill.md │ │ │ ├── suitcase-lg.md │ │ │ ├── suitcase.md │ │ │ ├── suitcase2-fill.md │ │ │ ├── suitcase2.md │ │ │ ├── sun-fill.md │ │ │ ├── sun.md │ │ │ ├── sunglasses.md │ │ │ ├── sunrise-fill.md │ │ │ ├── sunrise.md │ │ │ ├── sunset-fill.md │ │ │ ├── sunset.md │ │ │ ├── superscript.md │ │ │ ├── symmetry-horizontal.md │ │ │ ├── symmetry-vertical.md │ │ │ ├── table.md │ │ │ ├── tablet-fill.md │ │ │ ├── tablet-landscape-fill.md │ │ │ ├── tablet-landscape.md │ │ │ ├── tablet.md │ │ │ ├── tag-fill.md │ │ │ ├── tag.md │ │ │ ├── tags-fill.md │ │ │ ├── tags.md │ │ │ ├── taxi-front-fill.md │ │ │ ├── taxi-front.md │ │ │ ├── telegram.md │ │ │ ├── telephone-fill.md │ │ │ ├── telephone-forward-fill.md │ │ │ ├── telephone-forward.md │ │ │ ├── telephone-inbound-fill.md │ │ │ ├── telephone-inbound.md │ │ │ ├── telephone-minus-fill.md │ │ │ ├── telephone-minus.md │ │ │ ├── telephone-outbound-fill.md │ │ │ ├── telephone-outbound.md │ │ │ ├── telephone-plus-fill.md │ │ │ ├── telephone-plus.md │ │ │ ├── telephone-x-fill.md │ │ │ ├── telephone-x.md │ │ │ ├── telephone.md │ │ │ ├── tencent-qq.md │ │ │ ├── terminal-dash.md │ │ │ ├── terminal-fill.md │ │ │ ├── terminal-plus.md │ │ │ ├── terminal-split.md │ │ │ ├── terminal-x.md │ │ │ ├── terminal.md │ │ │ ├── text-center.md │ │ │ ├── text-indent-left.md │ │ │ ├── text-indent-right.md │ │ │ ├── text-left.md │ │ │ ├── text-paragraph.md │ │ │ ├── text-right.md │ │ │ ├── text-wrap.md │ │ │ ├── textarea-resize.md │ │ │ ├── textarea-t.md │ │ │ ├── textarea.md │ │ │ ├── thermometer-half.md │ │ │ ├── thermometer-high.md │ │ │ ├── thermometer-low.md │ │ │ ├── thermometer-snow.md │ │ │ ├── thermometer-sun.md │ │ │ ├── thermometer.md │ │ │ ├── threads-fill.md │ │ │ ├── threads.md │ │ │ ├── three-dots-vertical.md │ │ │ ├── three-dots.md │ │ │ ├── thunderbolt-fill.md │ │ │ ├── thunderbolt.md │ │ │ ├── ticket-detailed-fill.md │ │ │ ├── ticket-detailed.md │ │ │ ├── ticket-fill.md │ │ │ ├── ticket-perforated-fill.md │ │ │ ├── ticket-perforated.md │ │ │ ├── ticket.md │ │ │ ├── tiktok.md │ │ │ ├── toggle-off.md │ │ │ ├── toggle-on.md │ │ │ ├── toggle2-off.md │ │ │ ├── toggle2-on.md │ │ │ ├── toggles.md │ │ │ ├── toggles2.md │ │ │ ├── tools.md │ │ │ ├── tornado.md │ │ │ ├── train-freight-front-fill.md │ │ │ ├── train-freight-front.md │ │ │ ├── train-front-fill.md │ │ │ ├── train-front.md │ │ │ ├── train-lightrail-front-fill.md │ │ │ ├── train-lightrail-front.md │ │ │ ├── translate.md │ │ │ ├── transparency.md │ │ │ ├── trash-fill.md │ │ │ ├── trash.md │ │ │ ├── trash2-fill.md │ │ │ ├── trash2.md │ │ │ ├── trash3-fill.md │ │ │ ├── trash3.md │ │ │ ├── tree-fill.md │ │ │ ├── tree.md │ │ │ ├── trello.md │ │ │ ├── triangle-fill.md │ │ │ ├── triangle-half.md │ │ │ ├── triangle.md │ │ │ ├── trophy-fill.md │ │ │ ├── trophy.md │ │ │ ├── tropical-storm.md │ │ │ ├── truck-flatbed.md │ │ │ ├── truck-front-fill.md │ │ │ ├── truck-front.md │ │ │ ├── truck.md │ │ │ ├── tsunami.md │ │ │ ├── tux.md │ │ │ ├── tv-fill.md │ │ │ ├── tv.md │ │ │ ├── twitch.md │ │ │ ├── twitter-x.md │ │ │ ├── twitter.md │ │ │ ├── type-bold.md │ │ │ ├── type-h1.md │ │ │ ├── type-h2.md │ │ │ ├── type-h3.md │ │ │ ├── type-h4.md │ │ │ ├── type-h5.md │ │ │ ├── type-h6.md │ │ │ ├── type-italic.md │ │ │ ├── type-strikethrough.md │ │ │ ├── type-underline.md │ │ │ ├── type.md │ │ │ ├── typescript.md │ │ │ ├── ubuntu.md │ │ │ ├── ui-checks-grid.md │ │ │ ├── ui-checks.md │ │ │ ├── ui-radios-grid.md │ │ │ ├── ui-radios.md │ │ │ ├── umbrella-fill.md │ │ │ ├── umbrella.md │ │ │ ├── unindent.md │ │ │ ├── union.md │ │ │ ├── unity.md │ │ │ ├── universal-access-circle.md │ │ │ ├── universal-access.md │ │ │ ├── unlock-fill.md │ │ │ ├── unlock.md │ │ │ ├── unlock2-fill.md │ │ │ ├── unlock2.md │ │ │ ├── upc-scan.md │ │ │ ├── upc.md │ │ │ ├── upload.md │ │ │ ├── usb-c-fill.md │ │ │ ├── usb-c.md │ │ │ ├── usb-drive-fill.md │ │ │ ├── usb-drive.md │ │ │ ├── usb-fill.md │ │ │ ├── usb-micro-fill.md │ │ │ ├── usb-micro.md │ │ │ ├── usb-mini-fill.md │ │ │ ├── usb-mini.md │ │ │ ├── usb-plug-fill.md │ │ │ ├── usb-plug.md │ │ │ ├── usb-symbol.md │ │ │ ├── usb.md │ │ │ ├── valentine.md │ │ │ ├── valentine2.md │ │ │ ├── vector-pen.md │ │ │ ├── view-list.md │ │ │ ├── view-stacked.md │ │ │ ├── vignette.md │ │ │ ├── vimeo.md │ │ │ ├── vinyl-fill.md │ │ │ ├── vinyl.md │ │ │ ├── virus.md │ │ │ ├── virus2.md │ │ │ ├── voicemail.md │ │ │ ├── volume-down-fill.md │ │ │ ├── volume-down.md │ │ │ ├── volume-mute-fill.md │ │ │ ├── volume-mute.md │ │ │ ├── volume-off-fill.md │ │ │ ├── volume-off.md │ │ │ ├── volume-up-fill.md │ │ │ ├── volume-up.md │ │ │ ├── vr.md │ │ │ ├── wallet-fill.md │ │ │ ├── wallet.md │ │ │ ├── wallet2.md │ │ │ ├── watch.md │ │ │ ├── water.md │ │ │ ├── webcam-fill.md │ │ │ ├── webcam.md │ │ │ ├── wechat.md │ │ │ ├── whatsapp.md │ │ │ ├── wifi-1.md │ │ │ ├── wifi-2.md │ │ │ ├── wifi-off.md │ │ │ ├── wifi.md │ │ │ ├── wikipedia.md │ │ │ ├── wind.md │ │ │ ├── window-dash.md │ │ │ ├── window-desktop.md │ │ │ ├── window-dock.md │ │ │ ├── window-fullscreen.md │ │ │ ├── window-plus.md │ │ │ ├── window-sidebar.md │ │ │ ├── window-split.md │ │ │ ├── window-stack.md │ │ │ ├── window-x.md │ │ │ ├── window.md │ │ │ ├── windows.md │ │ │ ├── wordpress.md │ │ │ ├── wrench-adjustable-circle-fill.md │ │ │ ├── wrench-adjustable-circle.md │ │ │ ├── wrench-adjustable.md │ │ │ ├── wrench.md │ │ │ ├── x-circle-fill.md │ │ │ ├── x-circle.md │ │ │ ├── x-diamond-fill.md │ │ │ ├── x-diamond.md │ │ │ ├── x-lg.md │ │ │ ├── x-octagon-fill.md │ │ │ ├── x-octagon.md │ │ │ ├── x-square-fill.md │ │ │ ├── x-square.md │ │ │ ├── x.md │ │ │ ├── xbox.md │ │ │ ├── yelp.md │ │ │ ├── yin-yang.md │ │ │ ├── youtube.md │ │ │ ├── zoom-in.md │ │ │ └── zoom-out.md │ │ └── sprite.md │ ├── layouts/ │ │ ├── _default/ │ │ │ ├── 404.html │ │ │ ├── home.html │ │ │ └── sprite.html │ │ ├── alias.html │ │ ├── icons/ │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── partials/ │ │ │ ├── ads.html │ │ │ ├── analytics.html │ │ │ ├── favicons.html │ │ │ ├── footer.html │ │ │ ├── head.html │ │ │ ├── home/ │ │ │ │ └── hero.html │ │ │ ├── icons.html │ │ │ ├── navbar.html │ │ │ ├── scripts.html │ │ │ ├── skippy.html │ │ │ ├── social.html │ │ │ └── stylesheet.html │ │ ├── robots.txt │ │ ├── shortcodes/ │ │ │ ├── example.html │ │ │ └── md.html │ │ └── sitemap.xml │ └── static/ │ ├── CNAME │ └── assets/ │ └── img/ │ └── favicons/ │ └── manifest.json ├── eslint.config.mjs ├── font/ │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── bootstrap-icons.scss │ └── bootstrap-icons.ts ├── hugo.yml ├── package.json ├── svg-sprite.json └── svgo.config.mjs ================================================ FILE CONTENTS ================================================ ================================================ FILE: .browserslistrc ================================================ # https://github.com/browserslist/browserslist#readme >= 0.5% last 2 major versions not dead Chrome >= 60 Firefox >= 60 Firefox ESR iOS >= 12 Safari >= 12 not Explorer <= 11 ================================================ FILE: .editorconfig ================================================ # editorconfig.org root = true [*] charset = utf-8 end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true ================================================ FILE: .fantasticonrc.js ================================================ 'use strict' const codepoints = require('./font/bootstrap-icons.json') module.exports = { inputDir: './icons', outputDir: './font', fontTypes: ['woff2', 'woff'], assetTypes: ['css', 'scss', 'json', 'ts'], name: 'bootstrap-icons', codepoints, prefix: 'bi', selector: '.bi', fontsUrl: './fonts', formatOptions: { json: { indent: 2 }, ts: { types: ['literalId'] } }, // Use our custom Handlebars templates templates: { css: './build/font/css.hbs', scss: './build/font/scss.hbs' }, pathOptions: { json: './font/bootstrap-icons.json', css: './font/bootstrap-icons.css', scss: './font/bootstrap-icons.scss', woff: './font/fonts/bootstrap-icons.woff', woff2: './font/fonts/bootstrap-icons.woff2', ts: './font/bootstrap-icons.ts' } } ================================================ FILE: .gitattributes ================================================ # Enforce Unix newlines * text=auto eol=lf ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Report a problem with an icon or our documentation. title: '' labels: bug assignees: '' --- Before opening, [search for duplicate or closed issues](https://github.com/twbs/icons/issues?utf8=%E2%9C%93&q=is%3Aissue). As appropriate, please include: - Operating system and version (Windows, macOS, Android, iOS) - Browser and version (Chrome, Firefox, Safari, Microsoft Edge, Opera, Android Browser) - A [reduced test case](https://css-tricks.com/reduced-test-cases/) or suggested fix using [CodePen](https://codepen.io/) or [JS Bin](https://jsbin.com/) ================================================ FILE: .github/ISSUE_TEMPLATE/icon-request.md ================================================ --- name: Icon request about: Suggest new icons to add to the project title: '' labels: icon-request assignees: '' --- ================================================ FILE: .github/codeql/codeql-config.yml ================================================ name: "CodeQL config" paths-ignore: - "**/vendor/**" ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: monthly labels: - dependencies - github_actions groups: github-actions: patterns: - "*" - package-ecosystem: "npm" directory: "/" schedule: interval: monthly labels: - dependencies versioning-strategy: increase groups: production-dependencies: dependency-type: "production" development-dependencies: dependency-type: "development" ================================================ FILE: .github/release-drafter.yml ================================================ name-template: 'v$NEXT_PATCH_VERSION 🌈' tag-template: 'v$NEXT_PATCH_VERSION' prerelease: true exclude-labels: - 'skip-changelog' categories: - title: '🚀 Features' labels: - 'new-feature' - 'feature' - 'enhancement' - title: '🐛 Bug fixes' labels: - 'fix' - 'bugfix' - 'bug' - title: '📖 Docs' labels: - 'docs' - title: '🧰 Maintenance' labels: - 'build' - 'meta' - 'chore' - 'CI' - title: '📦 Dependencies' labels: - 'dependencies' change-template: '- #$NUMBER: $TITLE' template: | ## Changes $CHANGES ================================================ FILE: .github/workflows/codeql.yml ================================================ name: "CodeQL" on: push: branches: - main - "!dependabot/**" pull_request: branches: - main - "!dependabot/**" schedule: - cron: "0 0 * * 0" workflow_dispatch: jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write steps: - name: Clone repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Initialize CodeQL uses: github/codeql-action/init@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0 with: config-file: ./.github/codeql/codeql-config.yml languages: "javascript" queries: +security-and-quality - name: Autobuild uses: github/codeql-action/autobuild@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0 with: category: "/language:javascript" ================================================ FILE: .github/workflows/deploy.yml ================================================ name: Deploy on: release: types: - published workflow_dispatch: env: FORCE_COLOR: 2 NODE: 24 permissions: contents: read jobs: build: runs-on: ubuntu-latest if: github.repository == 'twbs/icons' && startsWith(github.ref, 'refs/tags/v') steps: - name: Clone repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Set up Node.js uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 with: node-version: "${{ env.NODE }}" cache: npm - name: Install npm dependencies run: npm ci - name: Prepare release run: npm run release - name: Deploy docs uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0 with: allow_empty_commit: false personal_token: ${{ secrets.PERSONAL_TOKEN }} publish_branch: gh-pages publish_dir: ./_site/ publish: needs: build runs-on: ubuntu-latest if: github.repository == 'twbs/icons' && startsWith(github.ref, 'refs/tags/v') steps: - name: Clone repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 with: node-version: "${{ env.NODE }}" registry-url: "https://registry.npmjs.org" - name: Publish on npm run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} ================================================ FILE: .github/workflows/lint.yml ================================================ name: Lint on: push: branches: - main pull_request: workflow_dispatch: env: FORCE_COLOR: 2 NODE: 24 permissions: contents: read jobs: lint: runs-on: ubuntu-latest steps: - name: Clone repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Set up Node.js uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 with: node-version: "${{ env.NODE }}" cache: npm - name: Install npm dependencies run: npm ci - name: Lint run: npm run test ================================================ FILE: .github/workflows/release-notes.yml ================================================ name: Release notes on: push: branches: - main workflow_dispatch: permissions: contents: read jobs: update_release_draft: permissions: # allow release-drafter/release-drafter to create GitHub releases and add labels to PRs contents: write pull-requests: write runs-on: ubuntu-latest if: github.repository == 'twbs/icons' steps: - uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .github/workflows/test.yml ================================================ name: Tests on: push: branches: - main - "!dependabot/**" pull_request: workflow_dispatch: env: FORCE_COLOR: 2 NODE: 24 permissions: contents: read jobs: test: runs-on: ubuntu-latest steps: - name: Clone repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Set up Node.js uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 with: node-version: "${{ env.NODE }}" cache: npm - run: java -version - name: Install npm dependencies run: npm ci - name: Build the icons run: npm run icons - name: Build and test docs run: npm run docs-test - name: Run linkinator uses: JustinBeckwith/linkinator-action@f62ba0c110a76effb2ee6022cc6ce4ab161085e3 # v2.4 with: paths: _site recurse: true verbosity: error skip: "^(?!http://localhost)" ================================================ FILE: .gitignore ================================================ .DS_Store /.hugo_build.lock /.cache/ /_site/ /node_modules/ /resources/ # Editor folders /.vscode/ # Release zip files bootstrap-icons-*.zip ================================================ FILE: .stylelintrc.json ================================================ { "extends": [ "stylelint-config-twbs-bootstrap" ], "reportInvalidScopeDisables": true, "reportNeedlessDisables": true, "overrides": [ { "files": "**/*.scss", "rules": { "scss/selector-no-union-class-name": true } } ] } ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2019-2024 The Bootstrap Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================

Bootstrap logo

Bootstrap Icons

Official open source SVG icon library for Bootstrap with over 2,000 icons.
Explore Bootstrap Icons »

Bootstrap · Themes · Blog

[![Bootstrap Icons preview](https://github.com/twbs/icons/blob/main/.github/preview.png)](https://icons.getbootstrap.com/) ## Install Bootstrap Icons are packaged up and published to npm. We only include the processed SVGs in this package—it's up to you and your team to implement. [Read our docs](https://icons.getbootstrap.com/) for usage instructions. ```shell npm i bootstrap-icons ``` For those [using Packagist](https://packagist.org/packages/twbs/bootstrap-icons), you can also install Bootstrap Icons via Composer: ```shell composer require twbs/bootstrap-icons ``` [Also available in Figma](https://www.figma.com/community/file/1042482994486402696/Bootstrap-Icons). ## Usage Depending on your setup, you can include Bootstrap Icons in a handful of ways. - Copy-paste SVGs as embedded HTML - Reference via `` element - Use the SVG sprite - Include via CSS [See the docs for more information](https://icons.getbootstrap.com/#usage). ## Development [![Build Status](https://img.shields.io/github/actions/workflow/status/twbs/icons/test.yml?branch=main&label=Tests&logo=github)](https://github.com/twbs/icons/actions/workflows/test.yml?query=workflow%3ATests+branch%3Amain) [![npm version](https://img.shields.io/npm/v/bootstrap-icons?logo=npm&logoColor=fff)](https://www.npmjs.com/package/bootstrap-icons) Clone the repo, install dependencies, and start the Hugo server locally. ```shell git clone https://github.com/twbs/icons/ cd icons npm i npm start ``` Then open `http://localhost:4000` in your browser. ### npm scripts Here are some key scripts you'll use during development. Be sure to look to our `package.json` or `npm run` output for a complete list of scripts. | Script | Description | |--------------|-------------------------------------------------------------------------------| | `start` | Alias for running `docs-serve` | | `docs-serve` | Starts a local Hugo server | | `pages` | Generates permalink pages for each icon with template Markdown | | `icons` | Processes and optimizes SVGs in `icons` directory, generates fonts and sprite | ## Adding SVGs Icons are typically only added by @mdo, but exceptions can be made. New glyphs are designed in Figma first on a 16x16px grid, then exported as flattened SVGs with `fill` (no stroke). Once a new SVG icon has been added to the `icons` directory, we use an npm script to: 1. Optimize our SVGs with SVGO. 2. Modify the SVGs source code, removing all attributes before setting new attributes and values in our preferred order. Use `npm run icons` to run the script, run `npm run pages` to build permalink pages, complete those pages, and, finally, commit the results in a new branch for updating. **Warning**: Please exclude any auto-generated files, like `font/**` and `bootstrap-icons.svg` from your branch because they cause conflicts, and we generally update the dist files before a release. ## Publishing Documentation is published automatically when a new Git tag is published. See our [GitHub Actions](https://github.com/twbs/icons/tree/main/.github/workflows) and [`package.json`](https://github.com/twbs/icons/blob/main/package.json) for more information. ## License [MIT](LICENSE) ## Author [@mdo](https://github.com/mdo) ================================================ FILE: build/build-pages.mjs ================================================ #!/usr/bin/env node import fs from 'node:fs/promises' import path from 'node:path' import { fileURLToPath } from 'node:url' import picocolors from 'picocolors' const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(fileURLToPath(import.meta.url)) const iconsDir = path.join(__dirname, '../icons/') const pagesDir = path.join(__dirname, '../docs/content/icons/') const VERBOSE = process.argv.includes('--verbose') function capitalizeFirstLetter(string) { return (string.charAt(0).toUpperCase() + string.slice(1)).split('-').join(' ') } async function main(file) { const iconBasename = path.basename(file, path.extname(file)) const iconTitle = capitalizeFirstLetter(iconBasename) const pageName = path.join(pagesDir, `${iconBasename}.md`) const pageTemplate = `--- title: ${iconTitle} categories: tags: --- ` try { await fs.access(pageName, fs.F_OK) if (VERBOSE) { console.log(`${picocolors.cyan(iconBasename)}: Page already exists; skipping`) } } catch { await fs.writeFile(pageName, pageTemplate) console.log(picocolors.green(`${iconBasename}: Page created`)) } } (async () => { try { const basename = path.basename(__filename) const timeLabel = picocolors.cyan(`[${basename}] finished`) console.log(picocolors.cyan(`[${basename}] started`)) console.time(timeLabel) const files = await fs.readdir(iconsDir) await Promise.all(files.map(file => main(file))) const filesLength = files.length console.log(picocolors.green('\nSuccess, %s page%s prepared!'), filesLength, filesLength === 1 ? '' : 's') console.timeEnd(timeLabel) } catch (error) { console.error(error) process.exit(1) } })() ================================================ FILE: build/build-svgs.mjs ================================================ #!/usr/bin/env node import fs from 'node:fs/promises' import path from 'node:path' import process from 'node:process' import { fileURLToPath } from 'node:url' import picocolors from 'picocolors' import { loadConfig, optimize } from 'svgo' const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(fileURLToPath(import.meta.url)) const iconsDir = path.join(__dirname, '../icons/') const VERBOSE = process.argv.includes('--verbose') async function processFile(file, config) { const filepath = path.join(iconsDir, file) const basename = path.basename(file, '.svg') const originalSvg = await fs.readFile(filepath, 'utf8') const { data: optimizedSvg } = await optimize(originalSvg, { path: filepath, ...config }) // svgo will always add a final newline when in pretty mode const resultSvg = optimizedSvg.trim() if (resultSvg !== originalSvg) { await fs.writeFile(filepath, resultSvg, 'utf8') } if (VERBOSE) { console.log(`- ${basename}`) } } (async () => { try { const basename = path.basename(__filename) const timeLabel = picocolors.cyan(`[${basename}] finished`) console.log(picocolors.cyan(`[${basename}] started`)) console.time(timeLabel) const files = await fs.readdir(iconsDir) const config = await loadConfig(path.join(__dirname, '../svgo.config.mjs')) await Promise.all(files.map(file => processFile(file, config))) const filesLength = files.length console.log(picocolors.green('\nSuccess, prepared %s icon%s!'), filesLength, filesLength === 1 ? '' : 's') console.timeEnd(timeLabel) } catch (error) { console.error(error) process.exit(1) } })() ================================================ FILE: build/bump-version.mjs ================================================ #!/usr/bin/env node /*! * Script to update version number references in the project. * Copyright 2024 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ import { execFile } from 'node:child_process' import fs from 'node:fs/promises' const VERBOSE = process.argv.includes('--verbose') const DRY_RUN = process.argv.includes('--dry') || process.argv.includes('--dry-run') // These are the files we only care about replacing the version const FILES = [ 'build/font/css.hbs', 'build/font/scss.hbs', 'hugo.yml' ] // Blame TC39... https://github.com/benjamingr/RegExp.escape/issues/37 function regExpQuote(string) { return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&') } function regExpQuoteReplacement(string) { return string.replace(/\$/g, '$$') } async function replaceRecursively(file, oldVersion, newVersion) { const originalString = await fs.readFile(file, 'utf8') const newString = originalString.replace( new RegExp(regExpQuote(oldVersion), 'g'), regExpQuoteReplacement(newVersion) ) // No need to move any further if the strings are identical if (originalString === newString) { return } if (VERBOSE) { console.log(`Found ${oldVersion} in ${file}`) } if (DRY_RUN) { return } await fs.writeFile(file, newString, 'utf8') } function bumpNpmVersion(newVersion) { if (DRY_RUN) { return } execFile('npm', ['version', newVersion, '--no-git-tag'], { shell: true }, (error) => { if (error) { console.error(error) process.exit(1) } }) } function showUsage(args) { console.error('USAGE: change-version old_version new_version [--verbose] [--dry[-run]]') console.error('Got arguments:', args) process.exit(1) } async function main(args) { let [oldVersion, newVersion] = args if (!oldVersion || !newVersion) { showUsage(args) } // Strip any leading `v` from arguments because // otherwise we will end up with duplicate `v`s [oldVersion, newVersion] = [oldVersion, newVersion].map(arg => { return arg.startsWith('v') ? arg.slice(1) : arg }) if (oldVersion === newVersion) { showUsage(args) } bumpNpmVersion(newVersion) try { await Promise.all(FILES.map(file => replaceRecursively(file, oldVersion, newVersion))) } catch (error) { console.error(error) process.exit(1) } } main(process.argv.slice(2)) ================================================ FILE: build/check-icons.mjs ================================================ #!/usr/bin/env node import fs from 'node:fs/promises' import path from 'node:path' import process from 'node:process' import { fileURLToPath } from 'node:url' import picocolors from 'picocolors' const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(fileURLToPath(import.meta.url)) const fontJsonPath = path.join(__dirname, '../font/bootstrap-icons.json') const iconsDir = path.join(__dirname, '../icons/') ;(async () => { try { const basename = path.basename(__filename) const timeLabel = picocolors.cyan(`[${basename}] finished`) console.log(picocolors.cyan(`[${basename}] started`)) console.time(timeLabel) const fontJsonString = await fs.readFile(fontJsonPath, 'utf8') const fontJson = JSON.parse(fontJsonString) const svgFiles = await fs.readdir(iconsDir) const jsonIconList = Object.keys(fontJson) const svgIconList = svgFiles.map(svg => path.basename(svg, '.svg')) const onlyInJson = jsonIconList.filter(icon => !svgIconList.includes(icon)) const onlyInSvg = svgIconList.filter(icon => !jsonIconList.includes(icon)) if (onlyInJson.length === 0 || onlyInSvg === 0) { console.log(picocolors.green('Success, found no differences!')) console.timeEnd(timeLabel) return } if (onlyInJson.length > 0) { console.error(picocolors.red(`Found additional icons in ${fontJsonPath}:`)) for (const icon of onlyInJson) { console.log(` - ${picocolors.red(icon)}`) } } if (onlyInSvg.length > 0) { console.error(picocolors.red('Found additional icons in SVG files:')) for (const icon of onlyInSvg) { console.log(` - ${picocolors.red(icon)}`) } } process.exit(1) } catch (error) { console.error(error) process.exit(1) } })() ================================================ FILE: build/font/css.hbs ================================================ /*! * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/) * Copyright 2019-2024 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ @font-face { font-display: block; font-family: "{{ name }}"; src: {{{ fontSrc }}}; } .{{ prefix }}::before, [class^="{{ prefix }}-"]::before, [class*=" {{ prefix }}-"]::before { display: inline-block; font-family: {{ name }} !important; font-style: normal; font-weight: normal !important; font-variant: normal; text-transform: none; line-height: 1; vertical-align: -.125em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } {{# each codepoints }} .{{ ../prefix }}-{{ @key }}::before { content: "\\{{ codepoint this }}"; } {{/ each }} ================================================ FILE: build/font/scss.hbs ================================================ /*! * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/) * Copyright 2019-2024 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ ${{ name }}-font: "{{ name }}" !default; ${{ name }}-font-dir: "{{ fontsUrl }}" !default; ${{ name }}-font-file: "#{${{ name }}-font-dir}/#{${{ name }}-font}" !default; ${{ name }}-font-hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default; ${{ name }}-font-src: url("#{${{ name }}-font-file}.woff2?#{${{ name }}-font-hash}") format("woff2"), url("#{${{ name }}-font-file}.woff?#{${{ name }}-font-hash}") format("woff") !default; @font-face { font-display: block; font-family: ${{ name }}-font; src: ${{ name }}-font-src; } .{{ prefix }}::before, [class^="{{ prefix }}-"]::before, [class*=" {{ prefix }}-"]::before { display: inline-block; font-family: ${{ name }}-font !important; font-style: normal; font-weight: normal !important; font-variant: normal; text-transform: none; line-height: 1; vertical-align: -.125em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } ${{ name }}-map: ( {{# each codepoints }} "{{ @key }}": "\\{{ codepoint this }}", {{/ each }} ); @each $icon, $codepoint in ${{ name }}-map { .{{ prefix }}-#{$icon}::before { content: $codepoint; } } ================================================ FILE: build/vnu-jar.mjs ================================================ #!/usr/bin/env node /*! * Script to run vnu-jar if Java is available. * Copyright 2017-2026 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ import { execFile, spawn } from 'node:child_process' import vnu from 'vnu-jar' execFile('java', ['-version'], (error, _stdout, stderr) => { if (error) { console.error('Skipping vnu-jar test; Java is probably missing.') console.error(error) return } console.log('Running vnu-jar validation...') const is32bitJava = !stderr.includes('64-Bit') // vnu-jar accepts multiple ignores joined with a `|`. // Also note that the ignores are string regular expressions. const ignores = [ ].join('|') const args = [ '-jar', String(vnu), '--asciiquotes', '--skip-non-html', '--Werror', '--filterpattern', ignores, '_site/' ] // For the 32-bit Java we need to pass `-Xss512k` if (is32bitJava) { args.splice(0, 0, '-Xss512k') } console.log(`command used: java ${args.join(' ')}`) return spawn('java', args, { stdio: 'inherit' }) .on('exit', process.exit) }) ================================================ FILE: composer.json ================================================ { "name": "twbs/bootstrap-icons", "description": "Official open source SVG icon library for Bootstrap", "keywords": [ "bootstrap", "icons", "svg", "icon font" ], "homepage": "https://icons.getbootstrap.com/", "authors": [ { "name": "Mark Otto", "email": "markdotto@gmail.com" } ], "support": { "issues": "https://github.com/twbs/icons/issues" }, "license": "MIT" } ================================================ FILE: docs/assets/js/application.js ================================================ import ClipboardJS from 'clipboard' (function () { const btnHtml = [ '
', '', '
'].join('') document.querySelectorAll('div.highlight') .forEach(element => { element.insertAdjacentHTML('beforebegin', btnHtml) }) const clipboard = new ClipboardJS('.btn-clipboard', { target(trigger) { return trigger.parentNode.nextElementSibling } }) clipboard.on('success', event => { const icon = event.trigger.querySelector('.bi') const originalTitle = event.trigger.title event.clearSelection() icon.classList.replace('bi-clipboard', 'bi-check2') event.trigger.title = 'Copied!' setTimeout(() => { icon.classList.replace('bi-check2', 'bi-clipboard') event.trigger.title = originalTitle }, 2000) }) clipboard.on('error', () => { const modifierKey = /mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-' const fallbackMsg = `Press ${modifierKey}C to copy` const errorElement = document.getElementById('copy-error-callout') if (!errorElement) { return } errorElement.classList.remove('d-none') errorElement.insertAdjacentHTML('afterbegin', fallbackMsg) }) const searchInput = document.getElementById('search') if (searchInput) { searchInput.addEventListener('keydown', event => { if (event.key === 'Enter') { event.preventDefault() } }) } // Disable empty links in docs document.querySelectorAll('[href="#"]') .forEach(link => { link.addEventListener('click', event => { event.preventDefault() }) }) })() ================================================ FILE: docs/assets/js/color-modes.js ================================================ /*! * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) * Copyright 2011-2023 The Bootstrap Authors * Licensed under the Creative Commons Attribution 3.0 Unported License. */ (() => { const getStoredTheme = () => localStorage.getItem('theme') const setStoredTheme = theme => localStorage.setItem('theme', theme) const getPreferredTheme = () => { const storedTheme = getStoredTheme() if (storedTheme) { return storedTheme } return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' } const setTheme = theme => { if (theme === 'auto') { document.documentElement.setAttribute('data-bs-theme', (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')) } else { document.documentElement.setAttribute('data-bs-theme', theme) } } setTheme(getPreferredTheme()) const showActiveTheme = (theme, focus = false) => { const themeSwitcher = document.querySelector('#bd-theme') if (!themeSwitcher) { return } const themeSwitcherText = document.querySelector('#bd-theme-text') const activeThemeIcon = document.querySelector('.theme-icon-active use') const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') document.querySelectorAll('[data-bs-theme-value]').forEach(element => { element.classList.remove('active') element.setAttribute('aria-pressed', 'false') }) btnToActive.classList.add('active') btnToActive.setAttribute('aria-pressed', 'true') activeThemeIcon.setAttribute('href', svgOfActiveBtn) const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})` themeSwitcher.setAttribute('aria-label', themeSwitcherLabel) if (focus) { themeSwitcher.focus() } } window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { const storedTheme = getStoredTheme() if (storedTheme !== 'light' && storedTheme !== 'dark') { setTheme(getPreferredTheme()) } }) window.addEventListener('DOMContentLoaded', () => { showActiveTheme(getPreferredTheme()) document.querySelectorAll('[data-bs-theme-value]') .forEach(toggle => { toggle.addEventListener('click', () => { const theme = toggle.getAttribute('data-bs-theme-value') localStorage.setItem('theme', theme) setStoredTheme(theme) setTheme(theme) showActiveTheme(theme, true) }) }) }) })() ================================================ FILE: docs/assets/js/search.js ================================================ import Fuse from 'fuse.js' (function () { const iconsBody = document.querySelector('#icons-body') if (!iconsBody) return const searchInput = iconsBody.querySelector('#search') const iconListContainer = iconsBody.querySelector('#icons-list') const iconElementList = Array.from(iconListContainer.children) const iconDataList = iconElementList.map(element => ({ name: element.dataset.name || '', categories: element.dataset.categories ? element.dataset.categories.split(' ') : [], tags: element.dataset.tags ? element.dataset.tags.split(' ') : [] })) const fuse = new Fuse(iconDataList, { ignoreLocation: true, useExtendedSearch: true, shouldSort: false, keys: ['name', 'categories', 'tags'], threshold: 0 }) function search(searchTerm) { const trimmedSearchTerm = searchTerm ? searchTerm.trim() : '' iconListContainer.innerHTML = '' if (trimmedSearchTerm.length > 0) { const searchResult = fuse.search(trimmedSearchTerm) const resultElements = searchResult.map(result => iconElementList[result.refIndex]) iconListContainer.append(...resultElements) } else { iconListContainer.append(...iconElementList) } const newUrl = new URL(window.location) if (trimmedSearchTerm.length > 0) { newUrl.searchParams.set('q', trimmedSearchTerm) } else { newUrl.searchParams.delete('q') } window.history.replaceState(null, null, newUrl) } let timeout searchInput.addEventListener('input', () => { clearTimeout(timeout) timeout = setTimeout(() => { search(searchInput.value) }, 250) }) const query = new URLSearchParams(window.location.search).get('q') if (!query || query.length === 0) return const trimmedQuery = query.trim() search(trimmedQuery) searchInput.value = trimmedQuery document.querySelector('#content').scrollIntoView() })() ================================================ FILE: docs/assets/scss/_ads.scss ================================================ // stylelint-disable-next-line selector-max-id #carbonads { max-width: 28rem; padding: .75rem; margin-right: auto; margin-left: auto; overflow: auto; background-color: var(--bs-tertiary-bg); border-radius: .25rem; @media (min-width: 992px) { margin-right: 0; margin-left: 0; } } .carbon-img { float: left; margin-right: .75rem; @media (min-width: 768px) { margin-bottom: .5rem; } @media (min-width: 992px) { margin-bottom: 0; } } .carbon-text, .carbon-poweredby { display: block; color: var(--bs-body-color); &:hover, &:focus { color: var(--bs-body-color); text-decoration: none; } } .carbon-text { margin-bottom: .5rem; text-decoration: none; @media (min-width: 768px) { font-size: .875rem; } } .carbon-poweredby { margin-top: .75rem; font-size: .875rem; } ================================================ FILE: docs/assets/scss/_buttons.scss ================================================ // Buttons // // Custom buttons for the docs. // scss-docs-start btn-css-vars-example .btn-bd-primary { --bs-btn-font-weight: 600; --bs-btn-color: var(--bs-white); --bs-btn-bg: var(--bd-violet); --bs-btn-border-color: var(--bd-violet); --bs-btn-border-radius: .5rem; --bs-btn-hover-color: var(--bs-white); --bs-btn-hover-bg: #{shade-color($bd-violet, 10%)}; --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)}; --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb); --bs-btn-active-color: var(--bs-btn-hover-color); --bs-btn-active-bg: #{shade-color($bd-violet, 20%)}; --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; } // scss-docs-end btn-css-vars-example .btn-bd-accent { --bs-btn-font-weight: 600; --bs-btn-color: var(--bd-accent); --bs-btn-border-color: var(--bd-accent); --bs-btn-hover-color: var(--bd-dark); --bs-btn-hover-bg: var(--bd-accent); --bs-btn-hover-border-color: var(--bd-accent); --bs-btn-focus-shadow-rgb: var(--bd-accent-rgb); --bs-btn-active-color: var(--bs-btn-hover-color); --bs-btn-active-bg: var(--bs-btn-hover-bg); --bs-btn-active-border-color: var(--bs-btn-hover-border-color); } .btn-bd-light { --bs-btn-color: var(--bs-gray-600); --bs-btn-border-color: var(--bs-gray-400); --bs-btn-hover-color: var(--bd-violet); --bs-btn-hover-border-color: var(--bd-violet); --bs-btn-active-color: var(--bd-violet); --bs-btn-active-bg: var(--bs-white); --bs-btn-active-border-color: var(--bd-violet); --bs-btn-focus-border-color: var(--bd-violet); --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb); } ================================================ FILE: docs/assets/scss/_clipboard-js.scss ================================================ // clipboard.js // // JS-based `Copy` buttons for code snippets. .bd-clipboard { position: relative; display: none; float: right; + .highlight { margin-top: 0; } @media (min-width: 768px) { display: block; } } .btn-clipboard { position: absolute; top: .75em; right: .5em; z-index: 10; display: block; padding: .5em .75em .625em; line-height: 1; color: var(--bs-body-color); background-color: var(--bs-tertiary-bg); border: 0; border-radius: .25rem; &:hover { color: var(--bs-link-hover-color); } } ================================================ FILE: docs/assets/scss/_footer.scss ================================================ // // Footer // .bd-footer { a { color: var(--bs-body-color); text-decoration: none; &:hover, &:focus { color: var(--bs-link-hover-color); text-decoration: underline; } } } ================================================ FILE: docs/assets/scss/_navbar.scss ================================================ .bd-navbar { padding: .75rem 0; background-color: transparent; background-image: linear-gradient(to bottom, rgba(var(--bd-violet-rgb), 1), rgba(var(--bd-violet-rgb), .95)); box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15), inset 0 -1px 0 rgba(0, 0, 0, .15); .bi { width: 1em; height: 1em; } .navbar-toggler { padding: 0; margin-right: -.5rem; border: 0; &:first-child { margin-left: -.5rem; } .bi { width: 1.5rem; height: 1.5rem; } &:focus { box-shadow: none; } } .navbar-brand { transition: .2s ease-in-out transform; &:hover { transform: rotate(-5deg) scale(1.1); } } .navbar-toggler, .nav-link { padding-right: $spacer * .25; padding-left: $spacer * .25; color: rgba($white, .85); &:hover, &:focus { color: $white; } &.active { font-weight: 600; color: $white; } } .navbar-nav-svg { display: inline-block; vertical-align: -.125rem; } .offcanvas-lg { background-color: var(--bd-violet); border-left: 0; @media (max-width: 992px) { box-shadow: $box-shadow-lg; } } .dropdown-menu { --bs-dropdown-min-width: 12rem; --bs-dropdown-padding-x: .25rem; --bs-dropdown-padding-y: .25rem; --bs-dropdown-link-hover-bg: rgba(var(--bd-violet-rgb), .1); --bs-dropdown-link-active-bg: rgba(var(--bd-violet-rgb), 1); @include rfs(.875rem, --bs-dropdown-font-size); @include font-size(.875rem); @include border-radius(.5rem); box-shadow: $dropdown-box-shadow; li + li { margin-top: .125rem; } .dropdown-item { @include border-radius(.25rem); &:active { .bi { color: inherit !important; // stylelint-disable-line declaration-no-important } } } .active { font-weight: 600; .bi { display: block !important; // stylelint-disable-line declaration-no-important } } } .dropdown-menu-end { --bs-dropdown-min-width: 8rem; } } @include color-mode(dark) { .bd-navbar { box-shadow: 0 .5rem 1rem rgba($black, .15), inset 0 -1px 0 rgba($white, .15); } } ================================================ FILE: docs/assets/scss/_skippy.scss ================================================ .skippy { display: block; padding: 1em; color: #fff; text-align: center; background-color: $bd-purple; outline: 0; &:hover { color: #fff; } } .skippy-text { padding: .5em; outline: 1px dotted; } ================================================ FILE: docs/assets/scss/_syntax.scss ================================================ :root, [data-bs-theme="light"] { --base00: #fff; --base01: #f5f5f5; --base02: #c8c8fa; --base03: #565c64; --base04: #030303; --base05: #333; --base06: #fff; --base07: #9a6700; --base08: #bc4c00; --base09: #087990; --base0A: #795da3; --base0B: #183691; --base0C: #183691; --base0D: #795da3; --base0E: #a71d5d; --base0F: #333; } @include color-mode(dark, true) { --base00: #282c34; --base01: #353b45; --base02: #3e4451; --base03: #868e96; --base04: #565c64; --base05: #abb2bf; --base06: #b6bdca; --base07: #d19a66; --base08: #e06c75; --base09: #d19a66; --base0A: #e5c07b; --base0B: #98c379; --base0C: #56b6c2; --base0D: #61afef; --base0E: #c678dd; --base0F: #be5046; } .hl { background-color: var(--base02); } .c { color: var(--base03); } .err { color: var(--base08); } .k { color: var(--base0E); } .l { color: var(----base09); } .n { color: var(--base08); } .o { color: var(--base05); } .p { color: var(--base05); } .cm { color: var(--base04); } .cp { color: var(--base08); } .c1 { color: var(--base03); } .cs { color: var(--base04); } .gd { color: var(--base08); } .ge { font-style: italic; } .gh { font-weight: 600; color: #fff; } .gi { color: var(--bs-success); } .gp { font-weight: 600; color: var(--base04); } .gs { font-weight: 600; } .gu { font-weight: 600; color: var(--base0C); } .kc { color: var(--base0E); } .kd { color: var(--base0E); } .kn { color: var(--base0C); } .kp { color: var(--base0E); } .kr { color: var(--base0E); } .kt { color: var(--base0A); } .ld { color: var(--base0C); } .m { color: var(--base09); } .s { color: var(--base0C); } .na { color: var(--base0A); } .nb { color: var(--base05); } .nc { color: var(--base07); } .no { color: var(--base08); } .nd { color: var(--base07); } .ni { color: var(--base08); } .ne { color: var(--base08); } .nf { color: var(--base0B); } .nl { color: var(--base05); } .nn { color: var(--base0A); } .nx { color: var(--base0A); } .py { color: var(--base08); } .nt { color: var(--base08); } .nv { color: var(--base08); } .ow { color: var(--base0C); } .w { color: #fff; } .mf { color: var(--base09); } .mh { color: var(--base09); } .mi { color: var(--base09); } .mo { color: var(--base09); } .sb { color: var(--base0C); } .sc { color: #fff; } .sd { color: var(--base04); } .s2 { color: var(--base0C); } .se { color: var(--base09); } .sh { color: var(--base0C); } .si { color: var(--base09); } .sx { color: var(--base0C); } .sr { color: var(--base0C); } .s1 { color: var(--base0C); } .ss { color: var(--base0C); } .bp { color: var(--base05); } .vc { color: var(--base08); } .vg { color: var(--base08); } .vi { color: var(--base08); } .il { color: var(--base09); } // Color commas in rgba() values .m + .o { color: var(--base03); } // Fix bash .language-sh .c { color: var(--base03); } .chroma { .language-bash, .language-sh { .line::before { color: var(--base03); content: "$ "; user-select: none; } } .language-powershell::before { color: var(--base0C); content: "PM> "; user-select: none; } } ================================================ FILE: docs/assets/scss/_variables.scss ================================================ // Local docs variables $bd-purple: #4c0bce; $bd-violet: lighten(saturate($bd-purple, 5%), 15%); $bd-accent: #ffe484; $bd-gutter-x: 3rem; :root { --bd-purple: #{$bd-purple}; --bd-violet: #{$bd-violet}; --bd-accent: #{$bd-accent}; --bd-violet-rgb: #{to-rgb($bd-violet)}; --bd-accent-rgb: #{to-rgb($bd-accent)}; --bd-pink-rgb: #{to-rgb($pink-500)}; --bd-teal-rgb: #{to-rgb($teal-500)}; } ================================================ FILE: docs/assets/scss/docs.scss ================================================ @import "bootstrap/functions"; @import "bootstrap/variables"; @import "bootstrap/variables-dark"; @import "bootstrap/maps"; @import "bootstrap/mixins"; @import "bootstrap/utilities"; @import "bootstrap/root"; @import "bootstrap/reboot"; @import "bootstrap/type"; @import "bootstrap/images"; @import "bootstrap/containers"; @import "bootstrap/grid"; @import "bootstrap/tables"; @import "bootstrap/forms"; @import "bootstrap/buttons"; @import "bootstrap/transitions"; @import "bootstrap/dropdown"; @import "bootstrap/button-group"; @import "bootstrap/nav"; @import "bootstrap/navbar"; // @import "bootstrap/card"; // @import "bootstrap/accordion"; @import "bootstrap/breadcrumb"; // @import "bootstrap/pagination"; // @import "bootstrap/badge"; // @import "bootstrap/alert"; // @import "bootstrap/progress"; // @import "bootstrap/list-group"; @import "bootstrap/close"; // @import "bootstrap/toasts"; // @import "bootstrap/modal"; // @import "bootstrap/tooltip"; // @import "bootstrap/popover"; // @import "bootstrap/carousel"; // @import "bootstrap/spinners"; @import "bootstrap/offcanvas"; // @import "bootstrap/placeholders"; @import "bootstrap/helpers"; @import "bootstrap/utilities/api"; @import "variables"; @import "buttons"; @import "clipboard-js"; @import "navbar"; @import "skippy"; @import "footer"; @import "syntax"; @import "ads"; :root { color-scheme: light dark; } .bd-gutter { --bs-gutter-x: #{$bd-gutter-x}; } .bi { display: inline-block; vertical-align: -.125em; fill: currentcolor; } .hero-notice { color: var(--bs-info-text); background-color: var(--bs-info-bg-subtle); border: 1px solid var(--bs-info-border-subtle); @media (min-width: 540px) { border-radius: 5em !important; // stylelint-disable-line declaration-no-important } } .btn-figma { --bs-btn-color: var(--bs-emphasis-color); --bs-btn-border-color: var(--bs-emphasis-color); --bs-btn-hover-color: var(--bs-body-bg); --bs-btn-hover-bg: var(--bs-emphasis-color); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); } .highlight { position: relative; padding: 1.25rem; margin-bottom: 1rem; background-color: var(--bs-tertiary-bg); border-radius: var(--bs-border-radius); pre { padding: 0; margin-bottom: 0; white-space: pre; background-color: transparent; border: 0; } pre code { @include font-size(inherit); word-wrap: normal; } } .bd-example { padding: 1.25rem; border: 1px solid var(--bs-border-color); border-top-left-radius: .25rem; border-top-right-radius: .25rem; + .bd-clipboard + .highlight { border: 1px solid var(--bs-border-color); border-width: 0 1px 1px; border-top-left-radius: 0; border-top-right-radius: 0; } } .f0 { font-size: 2rem; @media (min-width: 520px) { font-size: 3rem; } } .f3 { font-size: 1.25rem; @media (min-width: 520px) { font-size: 1.5rem; } } .f5 { font-size: 1rem; } .hero { border-bottom: 1px solid var(--bs-border-color-translucent); .highlight { margin-bottom: 0; background-color: var(--bs-tertiary-bg); border-radius: .5rem; pre { margin-bottom: 0; @media (min-width: 768px) { padding-right: 4em; } } } .btn-clipboard { top: .5em; background-color: var(--bs-tertiary-bg); } .btn { padding: 1rem 1.25rem; border-radius: .5rem; } hr { max-width: 100px; } } .icon-search { @media (min-width: 768px) { width: 35%; } } .list { font-size: 2rem; // stylelint-disable declaration-no-important a:hover, a:focus { &, .name { color: var(--bs-link-hover-color) !important; } } // stylelint-enable declaration-no-important &:empty::before { display: block; width: 100%; padding: 100px 2rem; margin-right: 15px; margin-left: 15px; color: var(--bs-secondary-color); text-align: center; content: "Nothing found, try searching again."; background-color: var(--bs-secondary-bg); border-radius: .5rem; } } .btn-group > .btn { flex-shrink: 0; } .name { font-size: .8125rem; } @media (min-width: 1200px) { .row-cols-xl-8 { > * { flex: 0 0 12.5%; max-width: 12.5%; } } } .icon-demo { background-color: var(--bs-tertiary-bg); background-image: radial-gradient(circle, var(--bs-border-color) 1px, rgba(0, 0, 0, 0) 1px); background-size: 1rem 1rem; } .icon-demo, .icon-demo-examples { .bi { width: 1em; height: 1em; } } // stylelint-disable declaration-no-important .py-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; } // stylelint-enable declaration-no-important ================================================ FILE: docs/content/404.md ================================================ --- title: "404 - File not found" description: "" layout: 404 url: /404.html robots: noindex,follow sitemap_exclude: true ---

404

File not found

================================================ FILE: docs/content/_index.md ================================================ --- aliases: - /font/ --- ## Install Bootstrap Icons are published to npm, but they can also be manually downloaded if needed.
{{< md >}} ### Package manager Install [Bootstrap Icons](https://www.npmjs.com/package/bootstrap-icons)—including SVGs, icon sprite, and icon fonts—with npm or Composer. Then, choose how you'd like to include the icons with the [usage instructions](#usage). {{< highlight sh >}} npm i bootstrap-icons {{< /highlight >}} {{< highlight sh >}} composer require twbs/bootstrap-icons {{< /highlight >}} {{< /md >}}
{{< md >}} ### Download [Releases are published on GitHub](https://github.com/twbs/icons/releases/) and include icon SVGs, fonts, license, and readme. Our `package.json` is also included, though our npm scripts are primarily available for our development workflows. Download latest ZIP {{< /md >}}
{{< md >}} ### CDN Include the icon fonts stylesheet—in your website `` or via `@import` in CSS—from jsDelivr and get started in seconds. [See icon font docs](#icon-font) for examples. {{< highlight html >}} {{< /highlight >}} {{< highlight css >}} @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@{{< param version >}}/font/bootstrap-icons.min.css"); {{< /highlight >}} {{< /md >}}
## Usage Bootstrap Icons are SVGs, so you can include them into your HTML in a few ways depending on how your project is setup. We recommend using a `width: 1em` (and optionally `height: 1em`) for easy resizing via `font-size`.
{{< md >}} ### Embedded Embed your icons within the HTML of your page (as opposed to an external image file). Here we've used a custom `width` and `height`. {{< /md >}}
{{< example >}}{{< /example >}}
{{< md >}} ### Sprite Use the SVG sprite to insert any icon through the `` element. Use the icon's filename as the fragment identifier (e.g., `toggles` is `#toggles`). SVG sprites allow you to reference an external file similar to an `` element, but with the power of `currentColor` for easy theming. **Heads up!** There's an issue with Chrome where [`` doesn't work across domains](https://bugs.chromium.org/p/chromium/issues/detail?id=470601). {{< /md >}}
{{< highlight html >}} {{< /highlight >}}
{{< md >}} ### External image Copy the Bootstrap Icons SVGs to your directory of choice and reference them like normal images with the `` element. {{< /md >}}
{{< example >}}Bootstrap{{< /example >}}
{{< md >}} ### Icon font Icon fonts with classes for every icon are also included for Bootstrap Icons. Include the icon web fonts in your page via CSS, then reference the class names as needed in your HTML (e.g., ``). Use `font-size` and `color` to change the icon appearance. {{< /md >}}
{{< example >}}{{< /example >}} {{< example >}}{{< /example >}}
{{< md >}} ### Sass When using Bootstrap in a Sass project, you may need to adjust the `$bootstrap-icons-font-dir` variable to point to where your files are installed (most commonly `node_modules`, assuming you're using npm). **Heads up!** This is currently required [for Vite](https://github.com/vitejs/vite/issues/11012) and [Parcel](https://github.com/parcel-bundler/parcel/issues/6285) as their Sass compilers aren‘t happy with relative URLs. {{< /md >}}
{{< highlight scss >}} // Update the import directory to point to it‘s location within node_modules $bootstrap-icons-font-dir: "bootstrap-icons/font/fonts"; // Import the Sass files as usual @import "bootstrap-icons/font/bootstrap-icons"; {{< /highlight >}}
{{< md >}} ### CSS You can also use the SVG within your CSS (**be sure to escape any characters**, such as `#` to `%23` when specifying hex color values). When no dimensions are specified via `width` and `height` on the ``, the icon will fill the available space. The `viewBox` attribute is required if you wish to resize icons with `background-size`. Note that the `xmlns` attribute is required. {{< /md >}}
{{< highlight css >}} .bi::before { display: inline-block; content: ""; vertical-align: -.125em; background-image: url("data:image/svg+xml,"); background-repeat: no-repeat; background-size: 1rem 1rem; } {{< /highlight >}}
{{< md >}} ## Styling Color can be changed by setting a `.text-*` class or custom CSS: {{< /md >}}
{{< highlight html >}} ... {{< /highlight >}}
{{< md >}} ## Accessibility For purely decorative icons, add `aria-hidden="true"`. Otherwise, provide an appropriate text alternative. Depending on which method you're using to add the icons, and where you're using them (e.g. as standalone images, or as the only content of a button or similar control), there are various possible approaches. Here are a few examples: {{< /md >}}
Bootstrap
{{< highlight html >}} Bootstrap {{< /highlight >}}
{{< highlight html >}} {{< /highlight >}}
{{< highlight html >}} {{< /highlight >}}
{{< md >}} ## Working with SVGs SVGs are awesome to work with, but they do have some known quirks to work around. Given the numerous ways in which SVGs can be used, we haven't included these attributes and workarounds in our code. {{< /md >}}
{{< md >}} Known issues include: - **SVGs receive focus by default in Internet Explorer and Edge Legacy.** When embedding your SVGs, add `focusable="false"` to the `` element. [Learn more on Stack Overflow.](https://stackoverflow.com/questions/18646111/disable-onfocus-event-for-svg-element) - **When using SVGs with `` elements, screen readers may not announce them as images, or skip the image completely.** Include an additional `role="img"` on the `` element to avoid any issues. [See this article for details.](https://web.archive.org/web/20201112013541/https://simplyaccessible.com/article/7-solutions-svgs/#acc-heading-2) - **External SVG sprites may not function correctly in Internet Explorer.** Use the [svg4everybody](https://github.com/jonathantneal/svg4everybody) polyfill as needed. Found another issue with SVGs we should note? Please open [an issue]({{< param repo >}}/issues) to share details. {{< /md >}}
================================================ FILE: docs/content/icons/0-circle-fill.md ================================================ --- title: 0 circle fill categories: - Shapes tags: - number - numeral added: 1.10.0 --- ================================================ FILE: docs/content/icons/0-circle.md ================================================ --- title: 0 circle categories: - Shapes tags: - number - numeral added: 1.10.0 --- ================================================ FILE: docs/content/icons/0-square-fill.md ================================================ --- title: 0 square fill categories: - Shapes tags: - number - numeral added: 1.10.0 --- ================================================ FILE: docs/content/icons/0-square.md ================================================ --- title: 0 square categories: - Shapes tags: - number - numeral added: 1.10.0 --- ================================================ FILE: docs/content/icons/1-circle-fill.md ================================================ --- title: 1 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/1-circle.md ================================================ --- title: 1 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/1-square-fill.md ================================================ --- title: 1 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/1-square.md ================================================ --- title: 1 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/123.md ================================================ --- title: 123 categories: - Typography tags: - numbers --- ================================================ FILE: docs/content/icons/2-circle-fill.md ================================================ --- title: 2 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/2-circle.md ================================================ --- title: 2 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/2-square-fill.md ================================================ --- title: 2 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/2-square.md ================================================ --- title: 2 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/3-circle-fill.md ================================================ --- title: 3 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/3-circle.md ================================================ --- title: 3 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/3-square-fill.md ================================================ --- title: 3 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/3-square.md ================================================ --- title: 3 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/4-circle-fill.md ================================================ --- title: 4 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/4-circle.md ================================================ --- title: 4 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/4-square-fill.md ================================================ --- title: 4 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/4-square.md ================================================ --- title: 4 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/5-circle-fill.md ================================================ --- title: 5 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/5-circle.md ================================================ --- title: 5 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/5-square-fill.md ================================================ --- title: 5 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/5-square.md ================================================ --- title: 5 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/6-circle-fill.md ================================================ --- title: 6 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/6-circle.md ================================================ --- title: 6 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/6-square-fill.md ================================================ --- title: 6 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/6-square.md ================================================ --- title: 6 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/7-circle-fill.md ================================================ --- title: 7 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/7-circle.md ================================================ --- title: 7 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/7-square-fill.md ================================================ --- title: 7 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/7-square.md ================================================ --- title: 7 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/8-circle-fill.md ================================================ --- title: 8 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/8-circle.md ================================================ --- title: 8 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/8-square-fill.md ================================================ --- title: 8 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/8-square.md ================================================ --- title: 8 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/9-circle-fill.md ================================================ --- title: 9 circle fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/9-circle.md ================================================ --- title: 9 circle categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/9-square-fill.md ================================================ --- title: 9 square fill categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/9-square.md ================================================ --- title: 9 square categories: - Shapes tags: - number - numeral --- ================================================ FILE: docs/content/icons/activity.md ================================================ --- title: Activity categories: - Data tags: - pulse - heartbeat - rhythm --- ================================================ FILE: docs/content/icons/airplane-engines-fill.md ================================================ --- title: Airplane engines fill categories: - Transportation tags: - flight - flying - plane - air - airport - aircraft - aeroplane --- ================================================ FILE: docs/content/icons/airplane-engines.md ================================================ --- title: Airplane engines categories: - Transportation tags: - flight - flying - plane - air - airport - aircraft - aeroplane --- ================================================ FILE: docs/content/icons/airplane-fill.md ================================================ --- title: Airplane fill categories: - Transportation tags: - flight - flying - plane - air - airport - aircraft - aeroplane --- ================================================ FILE: docs/content/icons/airplane.md ================================================ --- title: Airplane categories: - Transportation tags: - flight - flying - plane - air - airport - aircraft - aeroplane --- ================================================ FILE: docs/content/icons/alarm-fill.md ================================================ --- title: Alarm Fill categories: - Devices tags: - alarm - clock - time --- ================================================ FILE: docs/content/icons/alarm.md ================================================ --- title: Alarm categories: - Devices tags: - alarm - clock - time --- ================================================ FILE: docs/content/icons/alexa.md ================================================ --- title: Alexa categories: - Brand tags: - social - assistant --- ================================================ FILE: docs/content/icons/align-bottom.md ================================================ --- title: Align bottom categories: - Graphics tags: - space - align - distribute --- ================================================ FILE: docs/content/icons/align-center.md ================================================ --- title: Align center categories: - Graphics tags: - space - align - distribute - centre --- ================================================ FILE: docs/content/icons/align-end.md ================================================ --- title: Align end categories: - Graphics tags: - space - align - distribute --- ================================================ FILE: docs/content/icons/align-middle.md ================================================ --- title: Align middle categories: - Graphics tags: - space - align - distribute --- ================================================ FILE: docs/content/icons/align-start.md ================================================ --- title: Align start categories: - Graphics tags: - space - align - distribute --- ================================================ FILE: docs/content/icons/align-top.md ================================================ --- title: Align top categories: - Graphics tags: - space - align - distribute --- ================================================ FILE: docs/content/icons/alipay.md ================================================ --- title: Alipay categories: - Brand tags: - payments --- ================================================ FILE: docs/content/icons/alphabet-uppercase.md ================================================ --- title: Alphabet uppercase categories: - Typography tags: - letters - abc added: 1.11.0 --- ================================================ FILE: docs/content/icons/alphabet.md ================================================ --- title: Alphabet categories: - Typography tags: - letters - abc added: 1.11.0 --- ================================================ FILE: docs/content/icons/alt.md ================================================ --- title: Alt categories: - UI and keyboard tags: - key - alt - option --- ================================================ FILE: docs/content/icons/amazon.md ================================================ --- title: Amazon categories: - Brand tags: - aws added: 1.11.0 --- ================================================ FILE: docs/content/icons/amd.md ================================================ --- title: Amd categories: - Brand tags: - radeon added: 1.10.0 --- ================================================ FILE: docs/content/icons/android.md ================================================ --- title: Android categories: - Brand tags: - google - droid --- ================================================ FILE: docs/content/icons/android2.md ================================================ --- title: Android2 categories: - Brand tags: - google - droid --- ================================================ FILE: docs/content/icons/anthropic.md ================================================ --- title: Anthropic categories: - Brand tags: - ai - claude - agent - "artificial intelligence" --- ================================================ FILE: docs/content/icons/app-indicator.md ================================================ --- title: App indicator categories: - Apps tags: - app - application - ios - android - notification - square --- ================================================ FILE: docs/content/icons/app.md ================================================ --- title: App categories: - Apps tags: - app - application - ios - android - square --- ================================================ FILE: docs/content/icons/apple-music.md ================================================ --- title: Apple Music categories: - Brand tags: - itunes --- ================================================ FILE: docs/content/icons/apple.md ================================================ --- title: Apple categories: - Brand tags: - aapl - mac - macintosh --- ================================================ FILE: docs/content/icons/archive-fill.md ================================================ --- title: Archive fill categories: - Files and folders tags: - box - delete --- ================================================ FILE: docs/content/icons/archive.md ================================================ --- title: Archive categories: - Files and folders tags: - box - delete --- ================================================ FILE: docs/content/icons/arrow-90deg-down.md ================================================ --- title: Arrow 90deg down categories: - Arrows tags: - arrow - right-angle --- ================================================ FILE: docs/content/icons/arrow-90deg-left.md ================================================ --- title: Arrow 90deg left categories: - Arrows tags: - arrow - right-angle --- ================================================ FILE: docs/content/icons/arrow-90deg-right.md ================================================ --- title: Arrow 90deg right categories: - Arrows tags: - arrow - right-angle --- ================================================ FILE: docs/content/icons/arrow-90deg-up.md ================================================ --- title: Arrow 90deg up categories: - Arrows tags: - arrow - right-angle --- ================================================ FILE: docs/content/icons/arrow-bar-down.md ================================================ --- title: Arrow bar down categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-bar-left.md ================================================ --- title: Arrow bar left categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-bar-right.md ================================================ --- title: Arrow bar right categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-bar-up.md ================================================ --- title: Arrow bar up categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-clockwise.md ================================================ --- title: Arrow clockwise categories: - Arrows tags: - arrow - right - spin - turn - around - round - rotate - refresh - reload - redo --- ================================================ FILE: docs/content/icons/arrow-counterclockwise.md ================================================ --- title: Arrow counterclockwise categories: - Arrows tags: - arrow - left - spin - turn - around - round - rotate - undo --- ================================================ FILE: docs/content/icons/arrow-down-circle-fill.md ================================================ --- title: Arrow down circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-down-circle.md ================================================ --- title: Arrow down circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-down-left-circle-fill.md ================================================ --- title: Arrow down left circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-down-left-circle.md ================================================ --- title: Arrow down left circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-down-left-square-fill.md ================================================ --- title: Arrow down left square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-down-left-square.md ================================================ --- title: Arrow down left square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-down-left.md ================================================ --- title: Arrow down-left categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-down-right-circle-fill.md ================================================ --- title: Arrow down right circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-down-right-circle.md ================================================ --- title: Arrow down right circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-down-right-square-fill.md ================================================ --- title: Arrow down right square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-down-right-square.md ================================================ --- title: Arrow down right square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-down-right.md ================================================ --- title: Arrow down-right categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-down-short.md ================================================ --- title: Arrow down-short categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-down-square-fill.md ================================================ --- title: Arrow down square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-down-square.md ================================================ --- title: Arrow down square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-down-up.md ================================================ --- title: Arrow down-up categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-down.md ================================================ --- title: Arrow down categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-left-circle-fill.md ================================================ --- title: Arrow left circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-left-circle.md ================================================ --- title: Arrow left circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-left-right.md ================================================ --- title: Arrow left-right categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-left-short.md ================================================ --- title: Arrow left-short categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-left-square-fill.md ================================================ --- title: Arrow left square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-left-square.md ================================================ --- title: Arrow left square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-left.md ================================================ --- title: Arrow left categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-repeat.md ================================================ --- title: Arrow repeat categories: - Arrows tags: - arrow - spin - turn - around - round - rotate - sync --- ================================================ FILE: docs/content/icons/arrow-return-left.md ================================================ --- title: Arrow return left categories: - Arrows tags: - arrow - return --- ================================================ FILE: docs/content/icons/arrow-return-right.md ================================================ --- title: Arrow return right categories: - Arrows tags: - arrow - return --- ================================================ FILE: docs/content/icons/arrow-right-circle-fill.md ================================================ --- title: Arrow right circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-right-circle.md ================================================ --- title: Arrow right circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-right-short.md ================================================ --- title: Arrow right-short categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-right-square-fill.md ================================================ --- title: Arrow right square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-right-square.md ================================================ --- title: Arrow right square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-right.md ================================================ --- title: Arrow right categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-through-heart-fill.md ================================================ --- title: Arrow through heart fill categories: - Arrows - Love tags: - cupid - love - valentine --- ================================================ FILE: docs/content/icons/arrow-through-heart.md ================================================ --- title: Arrow through heart categories: - Arrows - Love tags: - cupid - love - valentine --- ================================================ FILE: docs/content/icons/arrow-up-circle-fill.md ================================================ --- title: Arrow up circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-up-circle.md ================================================ --- title: Arrow up circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-up-left-circle-fill.md ================================================ --- title: Arrow up left circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-up-left-circle.md ================================================ --- title: Arrow up left circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-up-left-square-fill.md ================================================ --- title: Arrow up left square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-up-left-square.md ================================================ --- title: Arrow up left square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-up-left.md ================================================ --- title: Arrow up-left categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-up-right-circle-fill.md ================================================ --- title: Arrow up right circle fill categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-up-right-circle.md ================================================ --- title: Arrow up right circle categories: - Shape arrows tags: - arrow - circle --- ================================================ FILE: docs/content/icons/arrow-up-right-square-fill.md ================================================ --- title: Arrow up right square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-up-right-square.md ================================================ --- title: Arrow up right square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-up-right.md ================================================ --- title: Arrow up-right categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-up-short.md ================================================ --- title: Arrow up-short categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrow-up-square-fill.md ================================================ --- title: Arrow up square fill categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-up-square.md ================================================ --- title: Arrow up square categories: - Shape arrows tags: - arrow - square --- ================================================ FILE: docs/content/icons/arrow-up.md ================================================ --- title: Arrow up categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrows-angle-contract.md ================================================ --- title: Arrows angle contract categories: - Arrows tags: - arrow - resize --- ================================================ FILE: docs/content/icons/arrows-angle-expand.md ================================================ --- title: Arrows angle expand categories: - Arrows tags: - arrow - resize --- ================================================ FILE: docs/content/icons/arrows-collapse-vertical.md ================================================ --- title: Arrows collapse vertical categories: - Arrows tags: - arrow - resize added: 1.11.0 --- ================================================ FILE: docs/content/icons/arrows-collapse.md ================================================ --- title: Arrows collapse categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrows-expand-vertical.md ================================================ --- title: Arrows expand vertical categories: - Arrows tags: - arrow - resize added: 1.11.0 --- ================================================ FILE: docs/content/icons/arrows-expand.md ================================================ --- title: Arrows expand categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrows-fullscreen.md ================================================ --- title: Arrows fullscreen categories: - Arrows tags: - arrow --- ================================================ FILE: docs/content/icons/arrows-move.md ================================================ --- title: Arrows move categories: - Arrows tags: - arrow - cursor - move --- ================================================ FILE: docs/content/icons/arrows-vertical.md ================================================ --- title: Arrows vertical categories: - Arrows tags: - arrow - resize added: 1.11.0 --- ================================================ FILE: docs/content/icons/arrows.md ================================================ --- title: Arrows categories: - Arrows tags: - arrow - resize added: 1.11.0 --- ================================================ FILE: docs/content/icons/aspect-ratio-fill.md ================================================ --- title: Aspect ratio fill categories: - Media tags: - size - resize - crop - dimensions --- ================================================ FILE: docs/content/icons/aspect-ratio.md ================================================ --- title: Aspect ratio categories: - Media tags: - size - resize - crop - dimensions --- ================================================ FILE: docs/content/icons/asterisk.md ================================================ --- title: Asterisk categories: - Typography tags: - asterisks - star - math --- ================================================ FILE: docs/content/icons/at.md ================================================ --- title: At categories: - Communications tags: - mention - sign --- ================================================ FILE: docs/content/icons/award-fill.md ================================================ --- title: Award fill categories: - Real world tags: - prize - rosette --- ================================================ FILE: docs/content/icons/award.md ================================================ --- title: Award categories: - Real world tags: - prize - rosette --- ================================================ FILE: docs/content/icons/back.md ================================================ --- title: Back categories: - Graphics tags: - backward - layer --- ================================================ FILE: docs/content/icons/backpack-fill.md ================================================ --- title: Backpack fill categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack.md ================================================ --- title: Backpack categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack2-fill.md ================================================ --- title: Backpack2 fill categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack2.md ================================================ --- title: Backpack2 categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack3-fill.md ================================================ --- title: Backpack3 fill categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack3.md ================================================ --- title: Backpack3 categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack4-fill.md ================================================ --- title: Backpack4 fill categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backpack4.md ================================================ --- title: Backpack4 categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/backspace-fill.md ================================================ --- title: Backspace fill categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/backspace-reverse-fill.md ================================================ --- title: Backspace reverse fill categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/backspace-reverse.md ================================================ --- title: Backspace reverse categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/backspace.md ================================================ --- title: Backspace categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/badge-3d-fill.md ================================================ --- title: Badge 3d fill categories: - Badges tags: - 3d - display - dimension --- ================================================ FILE: docs/content/icons/badge-3d.md ================================================ --- title: Badge 3d categories: - Badges tags: - 3d - display - dimension --- ================================================ FILE: docs/content/icons/badge-4k-fill.md ================================================ --- title: Badge 4k fill categories: - Badges tags: - 4k - display - resolution - retina --- ================================================ FILE: docs/content/icons/badge-4k.md ================================================ --- title: Badge 4k categories: - Badges tags: - 4k - display - resolution - retina --- ================================================ FILE: docs/content/icons/badge-8k-fill.md ================================================ --- title: Badge 8k fill categories: - Badges tags: - 4k - display - resolution - retina --- ================================================ FILE: docs/content/icons/badge-8k.md ================================================ --- title: Badge 8k categories: - Badges tags: - 4k - display - resolution - retina --- ================================================ FILE: docs/content/icons/badge-ad-fill.md ================================================ --- title: Badge ad fill categories: - Badges tags: - advertisement --- ================================================ FILE: docs/content/icons/badge-ad.md ================================================ --- title: Badge ad categories: - Badges tags: - advertisement --- ================================================ FILE: docs/content/icons/badge-ar-fill.md ================================================ --- title: Badge ar fill categories: - Badges tags: - augmented - reality - ar --- ================================================ FILE: docs/content/icons/badge-ar.md ================================================ --- title: Badge ar categories: - Badges tags: - augmented - reality - ar --- ================================================ FILE: docs/content/icons/badge-cc-fill.md ================================================ --- title: Badge cc fill categories: - Badges tags: - "closed captioning" --- ================================================ FILE: docs/content/icons/badge-cc.md ================================================ --- title: Badge cc categories: - Badges tags: - "closed captioning" --- ================================================ FILE: docs/content/icons/badge-hd-fill.md ================================================ --- title: Badge hd fill categories: - Badges tags: - display - resolution - "high definition" --- ================================================ FILE: docs/content/icons/badge-hd.md ================================================ --- title: Badge hd categories: - Badges tags: - display - resolution - "high definition" --- ================================================ FILE: docs/content/icons/badge-sd-fill.md ================================================ --- title: Badge SD fill categories: - Badges tags: - display - resolution - "standard definition" --- ================================================ FILE: docs/content/icons/badge-sd.md ================================================ --- title: Badge Sd categories: - Badges tags: - display - resolution - "standard definition" --- ================================================ FILE: docs/content/icons/badge-tm-fill.md ================================================ --- title: Badge tm fill categories: - Badges tags: - trademark --- ================================================ FILE: docs/content/icons/badge-tm.md ================================================ --- title: Badge tm categories: - Badges tags: - trademark --- ================================================ FILE: docs/content/icons/badge-vo-fill.md ================================================ --- title: Badge vo fill categories: - Badges tags: - voiceover - accessibility --- ================================================ FILE: docs/content/icons/badge-vo.md ================================================ --- title: Badge vo categories: - Badges tags: - voiceover - accessibility --- ================================================ FILE: docs/content/icons/badge-vr-fill.md ================================================ --- title: Badge vr fill categories: - Badges tags: - virtual - reality - vr --- ================================================ FILE: docs/content/icons/badge-vr.md ================================================ --- title: Badge vr categories: - Badges tags: - virtual - reality - vr --- ================================================ FILE: docs/content/icons/badge-wc-fill.md ================================================ --- title: Badge wc fill categories: - Badges tags: - wash closet - wc --- ================================================ FILE: docs/content/icons/badge-wc.md ================================================ --- title: Badge wc categories: - Badges tags: - wash closet - wc --- ================================================ FILE: docs/content/icons/bag-check-fill.md ================================================ --- title: Bag check fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-check.md ================================================ --- title: Bag check categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-dash-fill.md ================================================ --- title: Bag dash fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-dash.md ================================================ --- title: Bag dash categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-fill.md ================================================ --- title: Bag fill categories: - Commerce tags: - shopping - cart - purchase - buy --- ================================================ FILE: docs/content/icons/bag-heart-fill.md ================================================ --- title: Bag heart fill categories: - Commerce tags: - shopping - cart - purchase - buy - valentine - love --- ================================================ FILE: docs/content/icons/bag-heart.md ================================================ --- title: Bag heart categories: - Commerce tags: - shopping - cart - purchase - buy - valentine - love --- ================================================ FILE: docs/content/icons/bag-plus-fill.md ================================================ --- title: Bag plus fill categories: - Commerce tags: - shopping - add - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-plus.md ================================================ --- title: Bag plus categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-x-fill.md ================================================ --- title: Bag x fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag-x.md ================================================ --- title: Bag x categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/bag.md ================================================ --- title: Bag categories: - Commerce tags: - shopping - cart - purchase - buy --- ================================================ FILE: docs/content/icons/balloon-fill.md ================================================ --- title: Balloon fill categories: - Real world tags: - birthday --- ================================================ FILE: docs/content/icons/balloon-heart-fill.md ================================================ --- title: Balloon heart fill categories: - Real world - Love tags: - birthday - valentine - love --- ================================================ FILE: docs/content/icons/balloon-heart.md ================================================ --- title: Balloon heart categories: - Real world - Love tags: - birthday - valentine - love --- ================================================ FILE: docs/content/icons/balloon.md ================================================ --- title: Balloon categories: - Real world tags: - birthday --- ================================================ FILE: docs/content/icons/ban-fill.md ================================================ --- title: Ban fill categories: - Real world tags: - no - "not allowed" added: 1.11.0 --- ================================================ FILE: docs/content/icons/ban.md ================================================ --- title: Ban categories: - Real world tags: - no - "not allowed" - block added: 1.11.0 --- ================================================ FILE: docs/content/icons/bandaid-fill.md ================================================ --- title: Bandaid fill categories: - Real world tags: - bandage - health --- ================================================ FILE: docs/content/icons/bandaid.md ================================================ --- title: Bandaid categories: - Real world tags: - bandage - health --- ================================================ FILE: docs/content/icons/bank.md ================================================ --- title: Bank categories: - Commerce tags: - money - finance - banking - market - temple --- ================================================ FILE: docs/content/icons/bank2.md ================================================ --- title: Bank2 categories: - Commerce tags: - money - finance - banking - market - temple --- ================================================ FILE: docs/content/icons/bar-chart-fill.md ================================================ --- title: Bar chart fill categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/bar-chart-line-fill.md ================================================ --- title: Bar chart line fill categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/bar-chart-line.md ================================================ --- title: Bar chart line categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/bar-chart-steps.md ================================================ --- title: Bar chart steps categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/bar-chart.md ================================================ --- title: Bar chart categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/basket-fill.md ================================================ --- title: Basket fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/basket.md ================================================ --- title: Basket categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/basket2-fill.md ================================================ --- title: Basket2 fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/basket2.md ================================================ --- title: Basket2 categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/basket3-fill.md ================================================ --- title: Basket3 fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/basket3.md ================================================ --- title: Basket3 categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/battery-charging.md ================================================ --- title: Battery charging categories: - Devices tags: - power - charge --- ================================================ FILE: docs/content/icons/battery-full.md ================================================ --- title: Battery full categories: - Devices tags: - power - charge --- ================================================ FILE: docs/content/icons/battery-half.md ================================================ --- title: Battery half categories: - Devices tags: - power - charge --- ================================================ FILE: docs/content/icons/battery-low.md ================================================ --- title: Battery low categories: - Devices tags: - power - charge --- ================================================ FILE: docs/content/icons/battery.md ================================================ --- title: Battery categories: - Devices tags: - power - charge --- ================================================ FILE: docs/content/icons/beaker-fill.md ================================================ --- title: Beaker fill categories: - Real world tags: - beaker - science - measure - experiment --- ================================================ FILE: docs/content/icons/beaker.md ================================================ --- title: Beaker categories: - Real world tags: - beaker - science - measure - experiment --- ================================================ FILE: docs/content/icons/behance.md ================================================ --- title: Behance categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/bell-fill.md ================================================ --- title: Bell fill categories: - Communications tags: - notification - clock --- ================================================ FILE: docs/content/icons/bell-slash-fill.md ================================================ --- title: Bell slash fill categories: - Communications tags: - notification - silenced - clock --- ================================================ FILE: docs/content/icons/bell-slash.md ================================================ --- title: Bell slash categories: - Communications tags: - notification - silenced - clock --- ================================================ FILE: docs/content/icons/bell.md ================================================ --- title: Bell categories: - Communications tags: - notification - clock --- ================================================ FILE: docs/content/icons/bezier.md ================================================ --- title: Bezier categories: - Graphics tags: - graphics - vector - pen --- ================================================ FILE: docs/content/icons/bezier2.md ================================================ --- title: Bezier2 categories: - Graphics tags: - graphics - vector - pen --- ================================================ FILE: docs/content/icons/bicycle.md ================================================ --- title: Bicycle categories: - Real world tags: - bike - riding - bicycling --- ================================================ FILE: docs/content/icons/bing.md ================================================ --- title: Bing categories: - Brand tags: - search - microsoft added: 1.11.0 --- ================================================ FILE: docs/content/icons/binoculars-fill.md ================================================ --- title: Binoculars fill categories: - Real world tags: - distance - view - search --- ================================================ FILE: docs/content/icons/binoculars.md ================================================ --- title: Binoculars categories: - Real world tags: - distance - view - search --- ================================================ FILE: docs/content/icons/blockquote-left.md ================================================ --- title: Blockquote left categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/blockquote-right.md ================================================ --- title: Blockquote right categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/bluesky.md ================================================ --- title: Bluesky categories: - Brand tags: - social - chat - bsky --- ================================================ FILE: docs/content/icons/bluetooth.md ================================================ --- title: Bluetooth categories: - Brand tags: - wireless --- ================================================ FILE: docs/content/icons/body-text.md ================================================ --- title: Body text categories: - Typography tags: - content --- ================================================ FILE: docs/content/icons/book-fill.md ================================================ --- title: Book fill categories: - Real world tags: - novel - read - magazine --- ================================================ FILE: docs/content/icons/book-half.md ================================================ --- title: Book half categories: - Real world tags: - novel - read - magazine --- ================================================ FILE: docs/content/icons/book.md ================================================ --- title: Book categories: - Real world tags: - novel - read - magazine --- ================================================ FILE: docs/content/icons/bookmark-check-fill.md ================================================ --- title: Bookmark check fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-check.md ================================================ --- title: Bookmark check categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-dash-fill.md ================================================ --- title: Bookmark dash fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-dash.md ================================================ --- title: Bookmark dash categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-fill.md ================================================ --- title: Bookmark fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-heart-fill.md ================================================ --- title: Bookmark heart fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-heart.md ================================================ --- title: Bookmark heart categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-plus-fill.md ================================================ --- title: Bookmark plus fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-plus.md ================================================ --- title: Bookmark plus categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-star-fill.md ================================================ --- title: Bookmark star fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-star.md ================================================ --- title: Bookmark star categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-x-fill.md ================================================ --- title: Bookmark x fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark-x.md ================================================ --- title: Bookmark x categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmark.md ================================================ --- title: Bookmark categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmarks-fill.md ================================================ --- title: Bookmarks fill categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookmarks.md ================================================ --- title: Bookmarks categories: - Miscellaneous tags: - reading - book - label - tag - category - save --- ================================================ FILE: docs/content/icons/bookshelf.md ================================================ --- title: Bookshelf categories: - Real world tags: - shelf --- ================================================ FILE: docs/content/icons/boombox-fill.md ================================================ --- title: Boombox fill categories: - Real world tags: - music --- ================================================ FILE: docs/content/icons/boombox.md ================================================ --- title: Boombox categories: - Real world tags: - music --- ================================================ FILE: docs/content/icons/bootstrap-fill.md ================================================ --- title: Bootstrap fill categories: - Bootstrap tags: - bootstrap --- ================================================ FILE: docs/content/icons/bootstrap-reboot.md ================================================ --- title: Bootstrap Reboot categories: - Bootstrap tags: - bootstrap --- ================================================ FILE: docs/content/icons/bootstrap.md ================================================ --- title: Bootstrap categories: - Bootstrap tags: - bootstrap --- ================================================ FILE: docs/content/icons/border-all.md ================================================ --- title: Border all categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-bottom.md ================================================ --- title: Border bottom categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-center.md ================================================ --- title: Border center categories: - UI and keyboard tags: - borders - centre --- ================================================ FILE: docs/content/icons/border-inner.md ================================================ --- title: Border inner categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-left.md ================================================ --- title: Border left categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-middle.md ================================================ --- title: Border middle categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-outer.md ================================================ --- title: Border outer categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-right.md ================================================ --- title: Border right categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-style.md ================================================ --- title: Border style categories: - Typography tags: - borders - wysiwyg --- ================================================ FILE: docs/content/icons/border-top.md ================================================ --- title: Border top categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/border-width.md ================================================ --- title: Border width categories: - Typography tags: - borders - wysiwyg --- ================================================ FILE: docs/content/icons/border.md ================================================ --- title: Border categories: - UI and keyboard tags: - borders --- ================================================ FILE: docs/content/icons/bounding-box-circles.md ================================================ --- title: Bounding box circles categories: - Graphics tags: - text - shape - resize - dimensions --- ================================================ FILE: docs/content/icons/bounding-box.md ================================================ --- title: Bounding box categories: - Graphics tags: - text - shape - resize - dimensions --- ================================================ FILE: docs/content/icons/box-arrow-down-left.md ================================================ --- title: Box arrow bottom-left categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-down-right.md ================================================ --- title: Box arrow bottom-right categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-down.md ================================================ --- title: Box arrow down categories: - Box arrows tags: - arrow - download - save --- ================================================ FILE: docs/content/icons/box-arrow-in-down-left.md ================================================ --- title: Box arrow in down left categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-in-down-right.md ================================================ --- title: Box arrow in down right categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-in-down.md ================================================ --- title: Box arrow in down categories: - Box arrows tags: - arrow - upload --- ================================================ FILE: docs/content/icons/box-arrow-in-left.md ================================================ --- title: Box arrow in left categories: - Box arrows tags: - arrow - login - signin - enter --- ================================================ FILE: docs/content/icons/box-arrow-in-right.md ================================================ --- title: Box arrow in right categories: - Box arrows tags: - arrow - login - signin - enter --- ================================================ FILE: docs/content/icons/box-arrow-in-up-left.md ================================================ --- title: Box arrow in up left categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-in-up-right.md ================================================ --- title: Box arrow in up right categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-in-up.md ================================================ --- title: Box arrow in up categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-arrow-left.md ================================================ --- title: Box arrow left categories: - Box arrows tags: - arrow - logout - signout - exit --- ================================================ FILE: docs/content/icons/box-arrow-right.md ================================================ --- title: Box arrow right categories: - Box arrows tags: - arrow - logout - signout - exit --- ================================================ FILE: docs/content/icons/box-arrow-up-left.md ================================================ --- title: Box arrow up-left categories: - Box arrows tags: - arrow - external link --- ================================================ FILE: docs/content/icons/box-arrow-up-right.md ================================================ --- title: Box arrow up-right categories: - Box arrows tags: - arrow - external link --- ================================================ FILE: docs/content/icons/box-arrow-up.md ================================================ --- title: Box arrow up categories: - Box arrows tags: - arrow --- ================================================ FILE: docs/content/icons/box-fill.md ================================================ --- title: Box fill categories: - Real world tags: - cardboard - package --- ================================================ FILE: docs/content/icons/box-seam-fill.md ================================================ --- title: Box seam fill categories: - Real world tags: - cardboard - package --- ================================================ FILE: docs/content/icons/box-seam.md ================================================ --- title: Box seam categories: - Real world tags: - cardboard - package --- ================================================ FILE: docs/content/icons/box.md ================================================ --- title: Box categories: - Real world tags: - cardboard - package - cube --- ================================================ FILE: docs/content/icons/box2-fill.md ================================================ --- title: Box2 fill categories: - Real world - Love tags: - cardboard - package - cube --- ================================================ FILE: docs/content/icons/box2-heart-fill.md ================================================ --- title: Box2 heart fill categories: - Real world - Love tags: - cardboard - package - cube - gift - valentine - love --- ================================================ FILE: docs/content/icons/box2-heart.md ================================================ --- title: Box2 heart categories: - Real world - Love tags: - cardboard - package - cube - gift - valentine - love --- ================================================ FILE: docs/content/icons/box2.md ================================================ --- title: Box2 categories: - Real world tags: - cardboard - package - cube --- ================================================ FILE: docs/content/icons/boxes.md ================================================ --- title: Boxes categories: - Real world tags: - cardboard - package - cube --- ================================================ FILE: docs/content/icons/braces-asterisk.md ================================================ --- title: Braces asterisk categories: - Typography tags: - text - type - code - developer - development - software added: 1.10.0 --- ================================================ FILE: docs/content/icons/braces.md ================================================ --- title: Braces categories: - Typography tags: - text - type - code - developer - development - software added: 1.10.0 --- ================================================ FILE: docs/content/icons/bricks.md ================================================ --- title: Bricks categories: - Real world tags: - wall - firewall --- ================================================ FILE: docs/content/icons/briefcase-fill.md ================================================ --- title: Briefcase fill categories: - Real world tags: - business - bag - baggage --- ================================================ FILE: docs/content/icons/briefcase.md ================================================ --- title: Briefcase categories: - Real world tags: - business - bag - baggage --- ================================================ FILE: docs/content/icons/brightness-alt-high-fill.md ================================================ --- title: Brightness alt high fill categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-alt-high.md ================================================ --- title: Brightness alt high categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-alt-low-fill.md ================================================ --- title: Brightness alt low fill categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-alt-low.md ================================================ --- title: Brightness alt low categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-high-fill.md ================================================ --- title: Brightness high fill categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-high.md ================================================ --- title: Brightness high categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-low-fill.md ================================================ --- title: Brightness low fill categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brightness-low.md ================================================ --- title: Brightness low categories: - UI and keyboard tags: - brightness - sun - weather --- ================================================ FILE: docs/content/icons/brilliance.md ================================================ --- title: Brilliance categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/broadcast-pin.md ================================================ --- title: Broadcast pin categories: - Communications tags: - radio - "radio wave" - amplify - wavelength - podcast --- ================================================ FILE: docs/content/icons/broadcast.md ================================================ --- title: Broadcast categories: - Communications tags: - radio - "radio wave" - amplify - wavelength --- ================================================ FILE: docs/content/icons/browser-chrome.md ================================================ --- title: Browser Chrome categories: - Brand tags: - google - webkit - blink added: 1.10.0 --- ================================================ FILE: docs/content/icons/browser-edge.md ================================================ --- title: Browser Edge categories: - Brand tags: - microsoft - webkit added: 1.10.0 --- ================================================ FILE: docs/content/icons/browser-firefox.md ================================================ --- title: Browser Firefox categories: - Brand tags: - gecko added: 1.10.0 --- ================================================ FILE: docs/content/icons/browser-safari.md ================================================ --- title: Browser Safari categories: - Brand tags: - webkit - apple added: 1.10.0 --- ================================================ FILE: docs/content/icons/brush-fill.md ================================================ --- title: Brush fill categories: - Tools tags: - paint - art --- ================================================ FILE: docs/content/icons/brush.md ================================================ --- title: Brush categories: - Tools tags: - paint - art --- ================================================ FILE: docs/content/icons/bucket-fill.md ================================================ --- title: Bucket fill categories: - Tools tags: - tool - pail --- ================================================ FILE: docs/content/icons/bucket.md ================================================ --- title: Bucket categories: - Tools tags: - tool - pail --- ================================================ FILE: docs/content/icons/bug-fill.md ================================================ --- title: Bug fill categories: - Real world tags: - insect - error --- ================================================ FILE: docs/content/icons/bug.md ================================================ --- title: Bug categories: - Real world tags: - insect - error --- ================================================ FILE: docs/content/icons/building-add.md ================================================ --- title: Building add categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-check.md ================================================ --- title: Building check categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-dash.md ================================================ --- title: Building dash categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-down.md ================================================ --- title: Building down categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-exclamation.md ================================================ --- title: Building exclamation categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-add.md ================================================ --- title: Building fill add categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-check.md ================================================ --- title: Building fill check categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-dash.md ================================================ --- title: Building fill dash categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-down.md ================================================ --- title: Building fill down categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-exclamation.md ================================================ --- title: Building fill exclamation categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-gear.md ================================================ --- title: Building fill gear categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-lock.md ================================================ --- title: Building fill lock categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-slash.md ================================================ --- title: Building fill slash categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-up.md ================================================ --- title: Building fill up categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill-x.md ================================================ --- title: Building fill x categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-fill.md ================================================ --- title: Building fill categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-gear.md ================================================ --- title: Building gear categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-lock.md ================================================ --- title: Building lock categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-slash.md ================================================ --- title: Building slash categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-up.md ================================================ --- title: Building up categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building-x.md ================================================ --- title: Building x categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/building.md ================================================ --- title: Building categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/buildings-fill.md ================================================ --- title: Buildings fill categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/buildings.md ================================================ --- title: Buildings categories: - Buildings tags: - company - enterprise - organization - office - business added: 1.10.0 --- ================================================ FILE: docs/content/icons/bullseye.md ================================================ --- title: Bullseye categories: - Geo tags: - target --- ================================================ FILE: docs/content/icons/bus-front-fill.md ================================================ --- title: Bus front fill categories: - Transportation tags: - "public transit" - commute added: 1.10.0 --- ================================================ FILE: docs/content/icons/bus-front.md ================================================ --- title: Bus front categories: - Transportation tags: - "public transit" - commute added: 1.10.0 --- ================================================ FILE: docs/content/icons/c-circle-fill.md ================================================ --- title: C circle fill categories: - Shapes tags: - copyright --- ================================================ FILE: docs/content/icons/c-circle.md ================================================ --- title: C circle categories: - Shapes tags: - copyright --- ================================================ FILE: docs/content/icons/c-square-fill.md ================================================ --- title: C square fill categories: - Shapes tags: - copyright --- ================================================ FILE: docs/content/icons/c-square.md ================================================ --- title: C square categories: - Shapes tags: - copyright --- ================================================ FILE: docs/content/icons/cake-fill.md ================================================ --- title: Cake fill categories: - Real world tags: - birthday - celebrate - dessert added: 1.11.0 --- ================================================ FILE: docs/content/icons/cake.md ================================================ --- title: Cake categories: - Real world tags: - birthday - celebrate - dessert added: 1.11.0 --- ================================================ FILE: docs/content/icons/cake2-fill.md ================================================ --- title: Cake2 fill categories: - Real world tags: - birthday - celebrate - dessert added: 1.11.0 --- ================================================ FILE: docs/content/icons/cake2.md ================================================ --- title: Cake2 categories: - Real world tags: - birthday - celebrate - dessert added: 1.11.0 --- ================================================ FILE: docs/content/icons/calculator-fill.md ================================================ --- title: Calculator fill categories: - Devices tags: - calculator - math --- ================================================ FILE: docs/content/icons/calculator.md ================================================ --- title: Calculator categories: - Devices tags: - calculator - math --- ================================================ FILE: docs/content/icons/calendar-check-fill.md ================================================ --- title: Calendar check fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-check.md ================================================ --- title: Calendar check categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-date-fill.md ================================================ --- title: Calendar date fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-date.md ================================================ --- title: Calendar date categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-day-fill.md ================================================ --- title: Calendar day fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-day.md ================================================ --- title: Calendar day categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-event-fill.md ================================================ --- title: Calendar event fill categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar-event.md ================================================ --- title: Calendar event categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar-fill.md ================================================ --- title: Calendar fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-heart-fill.md ================================================ --- title: Calendar heart fill categories: - Date and time - Love tags: - date - time - month - valentine - date --- ================================================ FILE: docs/content/icons/calendar-heart.md ================================================ --- title: Calendar heart categories: - Date and time - Love tags: - date - time - month - valentine - date --- ================================================ FILE: docs/content/icons/calendar-minus-fill.md ================================================ --- title: Calendar minus fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-minus.md ================================================ --- title: Calendar minus categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-month-fill.md ================================================ --- title: Calendar month fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-month.md ================================================ --- title: Calendar month categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-plus-fill.md ================================================ --- title: Calendar plus fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-plus.md ================================================ --- title: Calendar plus categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar-range-fill.md ================================================ --- title: Calendar range fill categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar-range.md ================================================ --- title: Calendar range categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar-week-fill.md ================================================ --- title: Calendar week fill categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar-week.md ================================================ --- title: Calendar week categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar-x-fill.md ================================================ --- title: Calendar x fill categories: - Date and time tags: - date - time - month - remove - delete --- ================================================ FILE: docs/content/icons/calendar-x.md ================================================ --- title: Calendar x categories: - Date and time tags: - date - time - month - remove - delete --- ================================================ FILE: docs/content/icons/calendar.md ================================================ --- title: Calendar categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-check-fill.md ================================================ --- title: Calendar2 check fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-check.md ================================================ --- title: Calendar2 check categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-date-fill.md ================================================ --- title: Calendar2 date fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-date.md ================================================ --- title: Calendar2 date categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-day-fill.md ================================================ --- title: Calendar2 day fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-day.md ================================================ --- title: Calendar2 day categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-event-fill.md ================================================ --- title: Calendar2 event fill categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar2-event.md ================================================ --- title: Calendar2 event categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar2-fill.md ================================================ --- title: Calendar2 fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-heart-fill.md ================================================ --- title: Calendar2 heart fill categories: - Date and time - Love tags: - date - time - month - valentine - date --- ================================================ FILE: docs/content/icons/calendar2-heart.md ================================================ --- title: Calendar2 heart categories: - Date and time - Love tags: - date - time - month - valentine - date --- ================================================ FILE: docs/content/icons/calendar2-minus-fill.md ================================================ --- title: Calendar2 minus fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-minus.md ================================================ --- title: Calendar2 minus categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-month-fill.md ================================================ --- title: Calendar2 month fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-month.md ================================================ --- title: Calendar2 month categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-plus-fill.md ================================================ --- title: Calendar2 plus fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-plus.md ================================================ --- title: Calendar2 plus categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar2-range-fill.md ================================================ --- title: Calendar2 range fill categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar2-range.md ================================================ --- title: Calendar2 range categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar2-week-fill.md ================================================ --- title: Calendar2 week fill categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar2-week.md ================================================ --- title: Calendar2 week categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar2-x-fill.md ================================================ --- title: Calendar2 x fill categories: - Date and time tags: - date - time - month - remove - delete --- ================================================ FILE: docs/content/icons/calendar2-x.md ================================================ --- title: Calendar2 x categories: - Date and time tags: - date - time - month - remove - delete --- ================================================ FILE: docs/content/icons/calendar2.md ================================================ --- title: Calendar2 categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar3-event-fill.md ================================================ --- title: Calendar3 event fill categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar3-event.md ================================================ --- title: Calendar3 event categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar3-fill.md ================================================ --- title: Calendar3 fill categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar3-range-fill.md ================================================ --- title: Calendar3 range fill categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar3-range.md ================================================ --- title: Calendar3 range categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar3-week-fill.md ================================================ --- title: Calendar3 week fill categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar3-week.md ================================================ --- title: Calendar3 week categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar3.md ================================================ --- title: Calendar3 categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/calendar4-event.md ================================================ --- title: Calendar4 event categories: - Date and time tags: - date - time - event - invite --- ================================================ FILE: docs/content/icons/calendar4-range.md ================================================ --- title: Calendar4 range categories: - Date and time tags: - dates - timeline - duration --- ================================================ FILE: docs/content/icons/calendar4-week.md ================================================ --- title: Calendar4 week categories: - Date and time tags: - dates - timeline - duration - week --- ================================================ FILE: docs/content/icons/calendar4.md ================================================ --- title: Calendar4 categories: - Date and time tags: - date - time - month --- ================================================ FILE: docs/content/icons/camera-fill.md ================================================ --- title: Camera fill categories: - Devices tags: - photos - photography --- ================================================ FILE: docs/content/icons/camera-reels-fill.md ================================================ --- title: Camera reels fill categories: - Devices tags: - av - video - film --- ================================================ FILE: docs/content/icons/camera-reels.md ================================================ --- title: Camera reels categories: - Devices tags: - av - video - film --- ================================================ FILE: docs/content/icons/camera-video-fill.md ================================================ --- title: Camera video fill categories: - Devices tags: - av - video - film --- ================================================ FILE: docs/content/icons/camera-video-off-fill.md ================================================ --- title: Camera video off fill categories: - Devices tags: - av - video - film --- ================================================ FILE: docs/content/icons/camera-video-off.md ================================================ --- title: Camera video off categories: - Devices tags: - av - video - film --- ================================================ FILE: docs/content/icons/camera-video.md ================================================ --- title: Camera video categories: - Devices tags: - av - video - film --- ================================================ FILE: docs/content/icons/camera.md ================================================ --- title: Camera categories: - Devices tags: - photos - photography --- ================================================ FILE: docs/content/icons/camera2.md ================================================ --- title: Camera categories: - Devices tags: - photos - photography --- ================================================ FILE: docs/content/icons/capslock-fill.md ================================================ --- title: Capslock fill categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/capslock.md ================================================ --- title: Capslock categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/capsule-pill.md ================================================ --- title: Capsule pill categories: - Medical tags: - rx - pills - capsules - medicine --- ================================================ FILE: docs/content/icons/capsule.md ================================================ --- title: Capsule categories: - Medical tags: - rx - pills - capsules - medicine --- ================================================ FILE: docs/content/icons/car-front-fill.md ================================================ --- title: Car front fill categories: - Transportation tags: - automobile - automotive - auto - sedan - drive - driving - vehicle --- ================================================ FILE: docs/content/icons/car-front.md ================================================ --- title: Car front categories: - Transportation tags: - automobile - automotive - auto - sedan - drive - driving - vehicle --- ================================================ FILE: docs/content/icons/card-checklist.md ================================================ --- title: Card checklist categories: - Files and folders tags: - note - card - notecard --- ================================================ FILE: docs/content/icons/card-heading.md ================================================ --- title: Card heading categories: - Files and folders tags: - note - card - notecard --- ================================================ FILE: docs/content/icons/card-image.md ================================================ --- title: Card image categories: - Files and folders tags: - note - card - notecard --- ================================================ FILE: docs/content/icons/card-list.md ================================================ --- title: Card list categories: - Files and folders tags: - note - card - notecard --- ================================================ FILE: docs/content/icons/card-text.md ================================================ --- title: Card text categories: - Files and folders tags: - note - card - notecard - letter --- ================================================ FILE: docs/content/icons/caret-down-fill.md ================================================ --- title: Caret down fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-down-square-fill.md ================================================ --- title: Caret down square fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-down-square.md ================================================ --- title: Caret down square categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-down.md ================================================ --- title: Caret down categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-left-fill.md ================================================ --- title: Caret left fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-left-square-fill.md ================================================ --- title: Caret left square fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-left-square.md ================================================ --- title: Caret left square categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-left.md ================================================ --- title: Caret left categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-right-fill.md ================================================ --- title: Caret right fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-right-square-fill.md ================================================ --- title: Caret right square fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-right-square.md ================================================ --- title: Caret right square categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-right.md ================================================ --- title: Caret right categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-up-fill.md ================================================ --- title: Caret up fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-up-square-fill.md ================================================ --- title: Caret up square fill categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-up-square.md ================================================ --- title: Caret up square categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/caret-up.md ================================================ --- title: Caret up categories: - Carets tags: - caret - arrow - triangle --- ================================================ FILE: docs/content/icons/cart-check-fill.md ================================================ --- title: Cart check fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-check.md ================================================ --- title: Cart check categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-dash-fill.md ================================================ --- title: Cart dash fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-dash.md ================================================ --- title: Cart dash categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-fill.md ================================================ --- title: Cart fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-plus-fill.md ================================================ --- title: Cart plus fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-plus.md ================================================ --- title: Cart plus categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-x-fill.md ================================================ --- title: Cart x fill categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart-x.md ================================================ --- title: Cart x categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart.md ================================================ --- title: Cart categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart2.md ================================================ --- title: Cart2 categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart3.md ================================================ --- title: Cart3 categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cart4.md ================================================ --- title: Cart4 categories: - Commerce tags: - shopping - checkout - check - cart - basket - bag --- ================================================ FILE: docs/content/icons/cash-coin.md ================================================ --- title: Cash coin categories: - Commerce tags: - money - finance - banking - currency --- ================================================ FILE: docs/content/icons/cash-stack.md ================================================ --- title: Cash stack categories: - Commerce tags: - money - bills - funds - wallet - currency --- ================================================ FILE: docs/content/icons/cash.md ================================================ --- title: Cash categories: - Commerce tags: - money - bills - funds - wallet - currency --- ================================================ FILE: docs/content/icons/cassette-fill.md ================================================ --- title: Cassette fill categories: - Media tags: - tape - music - audio --- ================================================ FILE: docs/content/icons/cassette.md ================================================ --- title: Cassette categories: - Media tags: - tape - music - audio --- ================================================ FILE: docs/content/icons/cast.md ================================================ --- title: Cast categories: - Media tags: - airplay - project - stream - display --- ================================================ FILE: docs/content/icons/cc-circle-fill.md ================================================ --- title: CC circle fill categories: - Shapes tags: - "creative commons" --- ================================================ FILE: docs/content/icons/cc-circle.md ================================================ --- title: CC circle categories: - Shapes tags: - "creative commons" --- ================================================ FILE: docs/content/icons/cc-square-fill.md ================================================ --- title: CC square fill categories: - Shapes tags: - "creative commons" --- ================================================ FILE: docs/content/icons/cc-square.md ================================================ --- title: CC square categories: - Shapes tags: - "creative commons" --- ================================================ FILE: docs/content/icons/chat-dots-fill.md ================================================ --- title: Chat dots fill categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-dots.md ================================================ --- title: Chat dots categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-fill.md ================================================ --- title: Chat fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-heart-fill.md ================================================ --- title: Chat heart fill categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-heart.md ================================================ --- title: Chat heart categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-left-dots-fill.md ================================================ --- title: Chat left dots fill categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-left-dots.md ================================================ --- title: Chat left dots categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-left-fill.md ================================================ --- title: Chat left fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-left-heart-fill.md ================================================ --- title: Chat left heart fill categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-left-heart.md ================================================ --- title: Chat left heart categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-left-quote-fill.md ================================================ --- title: Chat left quote fill categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-left-quote.md ================================================ --- title: Chat left quote categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-left-text-fill.md ================================================ --- title: Chat left text fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-left-text.md ================================================ --- title: Chat left text categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-left.md ================================================ --- title: Chat left categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-quote-fill.md ================================================ --- title: Chat quote fill categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-quote.md ================================================ --- title: Chat quote categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-right-dots-fill.md ================================================ --- title: Chat right dots fill categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-right-dots.md ================================================ --- title: Chat right dots categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-right-fill.md ================================================ --- title: Chat right fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-right-heart-fill.md ================================================ --- title: Chat right heart fill categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-right-heart.md ================================================ --- title: Chat right heart categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-right-quote-fill.md ================================================ --- title: Chat right quote fill categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-right-quote.md ================================================ --- title: Chat right quote categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-right-text-fill.md ================================================ --- title: Chat right text fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-right-text.md ================================================ --- title: Chat right text categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-right.md ================================================ --- title: Chat right categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-square-dots-fill.md ================================================ --- title: Chat square dots fill categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-square-dots.md ================================================ --- title: Chat square dots categories: - Communications tags: - chat bubble - text - message - typing - comment --- ================================================ FILE: docs/content/icons/chat-square-fill.md ================================================ --- title: Chat square fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-square-heart-fill.md ================================================ --- title: Chat square heart fill categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-square-heart.md ================================================ --- title: Chat square heart categories: - Communications - Love tags: - chat bubble - text - message - valentine - romance - comment --- ================================================ FILE: docs/content/icons/chat-square-quote-fill.md ================================================ --- title: Chat square quote fill categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-square-quote.md ================================================ --- title: Chat square quote categories: - Communications tags: - chat bubble - text - message - quote - comment --- ================================================ FILE: docs/content/icons/chat-square-text-fill.md ================================================ --- title: Chat square text fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-square-text.md ================================================ --- title: Chat square text categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-square.md ================================================ --- title: Chat square categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-text-fill.md ================================================ --- title: Chat text fill categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat-text.md ================================================ --- title: Chat text categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/chat.md ================================================ --- title: Chat categories: - Communications tags: - chat bubble - text - message - comment --- ================================================ FILE: docs/content/icons/check-all.md ================================================ --- title: Check all categories: - UI and keyboard tags: - checkmark - todo - done - select --- ================================================ FILE: docs/content/icons/check-circle-fill.md ================================================ --- title: Check circle fill categories: - Alerts, warnings, and signs tags: - checkmark - confirm - done --- ================================================ FILE: docs/content/icons/check-circle.md ================================================ --- title: Check circle categories: - Alerts, warnings, and signs tags: - checkmark - confirm - done --- ================================================ FILE: docs/content/icons/check-lg.md ================================================ --- title: Check lg categories: - Alerts, warnings, and signs tags: - checkmark - confirm - done --- ================================================ FILE: docs/content/icons/check-square-fill.md ================================================ --- title: Check square fill categories: - Alerts, warnings, and signs tags: - checkmark - confirm - done --- ================================================ FILE: docs/content/icons/check-square.md ================================================ --- title: Check square categories: - Alerts, warnings, and signs tags: - checkmark - confirm - done --- ================================================ FILE: docs/content/icons/check.md ================================================ --- title: Check categories: - Alerts, warnings, and signs tags: - checkmark - confirm - done --- ================================================ FILE: docs/content/icons/check2-all.md ================================================ --- title: Check2 all categories: - UI and keyboard tags: - checkmark - todo - select - done - checkbox --- ================================================ FILE: docs/content/icons/check2-circle.md ================================================ --- title: Check2 circle categories: - UI and keyboard tags: - checkmark - todo - select - done - checkbox --- ================================================ FILE: docs/content/icons/check2-square.md ================================================ --- title: Check2 square categories: - UI and keyboard tags: - checkmark - todo - select - done - checkbox --- ================================================ FILE: docs/content/icons/check2.md ================================================ --- title: Check2 categories: - UI and keyboard tags: - checkmark - todo - select - done - checkbox --- ================================================ FILE: docs/content/icons/chevron-bar-contract.md ================================================ --- title: Chevron bar contract categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-bar-down.md ================================================ --- title: Chevron bar down categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-bar-expand.md ================================================ --- title: Chevron bar expand categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-bar-left.md ================================================ --- title: Chevron bar left categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-bar-right.md ================================================ --- title: Chevron bar right categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-bar-up.md ================================================ --- title: Chevron bar up categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-compact-down.md ================================================ --- title: Chevron compact down categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-compact-left.md ================================================ --- title: Chevron compact left categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-compact-right.md ================================================ --- title: Chevron compact right categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-compact-up.md ================================================ --- title: Chevron compact up categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-contract.md ================================================ --- title: Chevron contract categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-double-down.md ================================================ --- title: Chevron double down categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-double-left.md ================================================ --- title: Chevron double left categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-double-right.md ================================================ --- title: Chevron double right categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-double-up.md ================================================ --- title: Chevron double up categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-down.md ================================================ --- title: Chevron down categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-expand.md ================================================ --- title: Chevron expand categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/chevron-left.md ================================================ --- title: Chevron left categories: - Chevrons tags: - chevron - math --- ================================================ FILE: docs/content/icons/chevron-right.md ================================================ --- title: Chevron right categories: - Chevrons tags: - chevron - math --- ================================================ FILE: docs/content/icons/chevron-up.md ================================================ --- title: Chevron up categories: - Chevrons tags: - chevron --- ================================================ FILE: docs/content/icons/circle-fill.md ================================================ --- title: Circle fill categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/circle-half.md ================================================ --- title: Circle half fill categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/circle-square.md ================================================ --- title: Circle square categories: - Graphics tags: - graphics - vector - merge - layers --- ================================================ FILE: docs/content/icons/circle.md ================================================ --- title: Circle categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/claude.md ================================================ --- title: Claude categories: - Brand tags: - ai - anthropic - agent - "artificial intelligence" --- ================================================ FILE: docs/content/icons/clipboard-check-fill.md ================================================ --- title: Clipboard check fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-check.md ================================================ --- title: Clipboard check categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-data-fill.md ================================================ --- title: Clipboard data fill categories: - Real world tags: - copy - paste - data - analytics - graph - chart --- ================================================ FILE: docs/content/icons/clipboard-data.md ================================================ --- title: Clipboard data categories: - Real world tags: - copy - paste - data - analytics - graph - chart --- ================================================ FILE: docs/content/icons/clipboard-fill.md ================================================ --- title: Clipboard fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-heart-fill.md ================================================ --- title: Clipboard heart fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-heart.md ================================================ --- title: Clipboard heart categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-minus-fill.md ================================================ --- title: Clipboard minus fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-minus.md ================================================ --- title: Clipboard minus categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-plus-fill.md ================================================ --- title: Clipboard plus fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-plus.md ================================================ --- title: Clipboard plus categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-pulse.md ================================================ --- title: Clipboard pulse categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-x-fill.md ================================================ --- title: Clipboard x fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard-x.md ================================================ --- title: Clipboard x categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard.md ================================================ --- title: Clipboard categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-check-fill.md ================================================ --- title: Clipboard2 check fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-check.md ================================================ --- title: Clipboard2 check categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-data-fill.md ================================================ --- title: Clipboard2 data fill categories: - Real world tags: - copy - paste - data - analytics - graph - chart --- ================================================ FILE: docs/content/icons/clipboard2-data.md ================================================ --- title: Clipboard2 data categories: - Real world tags: - copy - paste - data - analytics - graph - chart --- ================================================ FILE: docs/content/icons/clipboard2-fill.md ================================================ --- title: Clipboard2 fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-heart-fill.md ================================================ --- title: Clipboard2 heart fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-heart.md ================================================ --- title: Clipboard2 heart categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-minus-fill.md ================================================ --- title: Clipboard2 minus fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-minus.md ================================================ --- title: Clipboard2 minus categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-plus-fill.md ================================================ --- title: Clipboard2 plus fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-plus.md ================================================ --- title: Clipboard2 plus categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-pulse-fill.md ================================================ --- title: Clipboard2 pulse fill categories: - Real world - Medical tags: - copy - paste - heartrate --- ================================================ FILE: docs/content/icons/clipboard2-pulse.md ================================================ --- title: Clipboard2 pulse categories: - Real world - Medical tags: - copy - paste - heartrate --- ================================================ FILE: docs/content/icons/clipboard2-x-fill.md ================================================ --- title: Clipboard2 x fill categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2-x.md ================================================ --- title: Clipboard2 x categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clipboard2.md ================================================ --- title: Clipboard2 categories: - Real world tags: - copy - paste --- ================================================ FILE: docs/content/icons/clock-fill.md ================================================ --- title: Clock fill categories: - Miscellaneous tags: - time --- ================================================ FILE: docs/content/icons/clock-history.md ================================================ --- title: Clock history categories: - Miscellaneous tags: - time - history --- ================================================ FILE: docs/content/icons/clock.md ================================================ --- title: Clock categories: - Miscellaneous tags: - time --- ================================================ FILE: docs/content/icons/cloud-arrow-down-fill.md ================================================ --- title: Cloud arrow down fill categories: - Clouds tags: - download --- ================================================ FILE: docs/content/icons/cloud-arrow-down.md ================================================ --- title: Cloud arrow down categories: - Clouds tags: - download --- ================================================ FILE: docs/content/icons/cloud-arrow-up-fill.md ================================================ --- title: Cloud arrow up fill categories: - Clouds tags: - upload --- ================================================ FILE: docs/content/icons/cloud-arrow-up.md ================================================ --- title: Cloud arrow up categories: - Clouds tags: - upload --- ================================================ FILE: docs/content/icons/cloud-check-fill.md ================================================ --- title: Cloud check fill categories: - Clouds tags: - checkmark --- ================================================ FILE: docs/content/icons/cloud-check.md ================================================ --- title: Cloud check categories: - Clouds tags: - checkmark --- ================================================ FILE: docs/content/icons/cloud-download-fill.md ================================================ --- title: Cloud download fill categories: - Clouds tags: - arrow - save --- ================================================ FILE: docs/content/icons/cloud-download.md ================================================ --- title: Cloud download categories: - Clouds tags: - arrow - save --- ================================================ FILE: docs/content/icons/cloud-drizzle-fill.md ================================================ --- title: Cloud drizzle fill categories: - Weather tags: - storm - rain --- ================================================ FILE: docs/content/icons/cloud-drizzle.md ================================================ --- title: Cloud drizzle categories: - Weather tags: - storm - rain --- ================================================ FILE: docs/content/icons/cloud-fill.md ================================================ --- title: Cloud fill categories: - Clouds tags: - weather --- ================================================ FILE: docs/content/icons/cloud-fog-fill.md ================================================ --- title: Cloud fog fill categories: - Weather tags: - foggy --- ================================================ FILE: docs/content/icons/cloud-fog.md ================================================ --- title: Cloud fog categories: - Weather tags: - foggy --- ================================================ FILE: docs/content/icons/cloud-fog2-fill.md ================================================ --- title: Cloud fog2 fill categories: - Weather tags: - foggy --- ================================================ FILE: docs/content/icons/cloud-fog2.md ================================================ --- title: Cloud fog2 categories: - Weather tags: - foggy --- ================================================ FILE: docs/content/icons/cloud-hail-fill.md ================================================ --- title: Cloud hail fill categories: - Weather tags: - storm --- ================================================ FILE: docs/content/icons/cloud-hail.md ================================================ --- title: Cloud hail categories: - Weather tags: - storm --- ================================================ FILE: docs/content/icons/cloud-haze-fill.md ================================================ --- title: Cloud haze fill categories: - Weather tags: - smog --- ================================================ FILE: docs/content/icons/cloud-haze.md ================================================ --- title: Cloud haze categories: - Weather tags: - smog --- ================================================ FILE: docs/content/icons/cloud-haze2-fill.md ================================================ --- title: Cloud haze2 fill categories: - Weather tags: - smog --- ================================================ FILE: docs/content/icons/cloud-haze2.md ================================================ --- title: Cloud haze2 categories: - Weather tags: - smog --- ================================================ FILE: docs/content/icons/cloud-lightning-fill.md ================================================ --- title: Cloud lightning fill categories: - Weather tags: - thunder - storm --- ================================================ FILE: docs/content/icons/cloud-lightning-rain-fill.md ================================================ --- title: Cloud lightning rain fill categories: - Weather tags: - thunder - storm --- ================================================ FILE: docs/content/icons/cloud-lightning-rain.md ================================================ --- title: Cloud lightning rain categories: - Weather tags: - thunder - storm --- ================================================ FILE: docs/content/icons/cloud-lightning.md ================================================ --- title: Cloud lightning categories: - Weather tags: - thunder - storm --- ================================================ FILE: docs/content/icons/cloud-minus-fill.md ================================================ --- title: Cloud minus fill categories: - Clouds tags: - subtract --- ================================================ FILE: docs/content/icons/cloud-minus.md ================================================ --- title: Cloud minus categories: - Clouds tags: - subtract --- ================================================ FILE: docs/content/icons/cloud-moon-fill.md ================================================ --- title: Cloud moon fill categories: - Weather tags: - cloudy - overcast --- ================================================ FILE: docs/content/icons/cloud-moon.md ================================================ --- title: Cloud moon categories: - Weather tags: - cloudy - overcast --- ================================================ FILE: docs/content/icons/cloud-plus-fill.md ================================================ --- title: Cloud plus fill categories: - Clouds tags: - add - new - upload --- ================================================ FILE: docs/content/icons/cloud-plus.md ================================================ --- title: Cloud plus categories: - Clouds tags: - add - new - upload --- ================================================ FILE: docs/content/icons/cloud-rain-fill.md ================================================ --- title: Cloud rain fill categories: - Weather tags: - cloud - rainstorm - storm --- ================================================ FILE: docs/content/icons/cloud-rain-heavy-fill.md ================================================ --- title: Cloud rain heavy fill categories: - Weather tags: - cloud - rainstorm - storm --- ================================================ FILE: docs/content/icons/cloud-rain-heavy.md ================================================ --- title: Cloud rain heavy categories: - Weather tags: - cloud - rainstorm - storm --- ================================================ FILE: docs/content/icons/cloud-rain.md ================================================ --- title: Cloud rain categories: - Weather tags: - cloud - rainstorm - storm --- ================================================ FILE: docs/content/icons/cloud-slash-fill.md ================================================ --- title: Cloud slash fill categories: - Clouds tags: - cloud --- ================================================ FILE: docs/content/icons/cloud-slash.md ================================================ --- title: Cloud slash categories: - Clouds tags: - cloud --- ================================================ FILE: docs/content/icons/cloud-sleet-fill.md ================================================ --- title: Cloud sleet fill categories: - Weather tags: - cloud - blizzard - flurries --- ================================================ FILE: docs/content/icons/cloud-sleet.md ================================================ --- title: Cloud sleet categories: - Weather tags: - cloud - blizzard - flurries --- ================================================ FILE: docs/content/icons/cloud-snow-fill.md ================================================ --- title: Cloud snow fill categories: - Weather tags: - cloud - blizzard - flurries --- ================================================ FILE: docs/content/icons/cloud-snow.md ================================================ --- title: Cloud snow categories: - Weather tags: - cloud - blizzard - flurries --- ================================================ FILE: docs/content/icons/cloud-sun-fill.md ================================================ --- title: Cloud sun fill categories: - Weather tags: - cloudy - overcast --- ================================================ FILE: docs/content/icons/cloud-sun.md ================================================ --- title: Cloud sun categories: - Weather tags: - cloudy - overcast --- ================================================ FILE: docs/content/icons/cloud-upload-fill.md ================================================ --- title: Cloud upload fill categories: - Clouds tags: - cloud --- ================================================ FILE: docs/content/icons/cloud-upload.md ================================================ --- title: Cloud upload categories: - Clouds tags: - cloud --- ================================================ FILE: docs/content/icons/cloud.md ================================================ --- title: Cloud categories: - Clouds tags: - weather --- ================================================ FILE: docs/content/icons/clouds-fill.md ================================================ --- title: Clouds fill categories: - Weather tags: - clouds - overcast --- ================================================ FILE: docs/content/icons/clouds.md ================================================ --- title: Clouds categories: - Weather tags: - clouds - overcast --- ================================================ FILE: docs/content/icons/cloudy-fill.md ================================================ --- title: Cloudy fill categories: - Weather tags: - clouds - overcast --- ================================================ FILE: docs/content/icons/cloudy.md ================================================ --- title: Cloudy categories: - Weather tags: - clouds - overcast --- ================================================ FILE: docs/content/icons/code-slash.md ================================================ --- title: Code slash categories: - Typography tags: - text - type - code - developer - development - software added: 1.10.0 --- ================================================ FILE: docs/content/icons/code-square.md ================================================ --- title: Code square categories: - Typography tags: - text - type - code - developer - development - software - preformatted added: 1.10.0 --- ================================================ FILE: docs/content/icons/code.md ================================================ --- title: Code categories: - Typography tags: - text - type - code - developer - development - software --- ================================================ FILE: docs/content/icons/coin.md ================================================ --- title: Coin categories: - Commerce tags: - money - finance - banking - currency --- ================================================ FILE: docs/content/icons/collection-fill.md ================================================ --- title: Collection fill categories: - Media tags: - library - group --- ================================================ FILE: docs/content/icons/collection-play-fill.md ================================================ --- title: Collection play fill categories: - Media tags: - library - group - play --- ================================================ FILE: docs/content/icons/collection-play.md ================================================ --- title: Collection play categories: - Media tags: - library - group - play --- ================================================ FILE: docs/content/icons/collection.md ================================================ --- title: Collection categories: - Media tags: - library - group --- ================================================ FILE: docs/content/icons/columns-gap.md ================================================ --- title: Columns gap categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/columns.md ================================================ --- title: Columns categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/command.md ================================================ --- title: Command categories: - UI and keyboard tags: - key - mac --- ================================================ FILE: docs/content/icons/compass-fill.md ================================================ --- title: Compass fill categories: - Geo tags: - direction - map - location --- ================================================ FILE: docs/content/icons/compass.md ================================================ --- title: Compass categories: - Geo tags: - direction - map - location --- ================================================ FILE: docs/content/icons/cone-striped.md ================================================ --- title: Cone striped categories: - Real world tags: - construction - warning - safety --- ================================================ FILE: docs/content/icons/cone.md ================================================ --- title: Cone categories: - Real world tags: - construction - warning - safety --- ================================================ FILE: docs/content/icons/controller.md ================================================ --- title: Controller categories: - Devices tags: - game - gaming - video-game --- ================================================ FILE: docs/content/icons/cookie.md ================================================ --- title: Cookie categories: - Real world tags: - dessert - biscuit added: 1.11.0 --- ================================================ FILE: docs/content/icons/copy.md ================================================ --- title: Copy categories: - UI and keyboard tags: - paste - clone - cut - duplicate added: 1.11.0 --- ================================================ FILE: docs/content/icons/cpu-fill.md ================================================ --- title: Cpu fill categories: - Devices tags: - processor - chip - computer --- ================================================ FILE: docs/content/icons/cpu.md ================================================ --- title: CPU categories: - Devices tags: - processor - chip - computer --- ================================================ FILE: docs/content/icons/credit-card-2-back-fill.md ================================================ --- title: Credit card 2 back fill categories: - Real world tags: - debit - card - payment --- ================================================ FILE: docs/content/icons/credit-card-2-back.md ================================================ --- title: Credit card 2 back categories: - Real world tags: - debit - card - payment --- ================================================ FILE: docs/content/icons/credit-card-2-front-fill.md ================================================ --- title: Credit card 2 front fill categories: - Real world tags: - debit - card - payment --- ================================================ FILE: docs/content/icons/credit-card-2-front.md ================================================ --- title: Credit card 2 front categories: - Real world tags: - debit - card - payment --- ================================================ FILE: docs/content/icons/credit-card-fill.md ================================================ --- title: Credit card fill categories: - Real world tags: - debit - card - payment --- ================================================ FILE: docs/content/icons/credit-card.md ================================================ --- title: Credit card categories: - Real world tags: - debit - card - payment --- ================================================ FILE: docs/content/icons/crop.md ================================================ --- title: Crop categories: - Graphics tags: - crop --- ================================================ FILE: docs/content/icons/crosshair.md ================================================ --- title: Crosshair categories: - Geo tags: - geography - map - pin - location added: 1.11.0 --- ================================================ FILE: docs/content/icons/crosshair2.md ================================================ --- title: Crosshair2 categories: - Geo tags: - geography - map - pin - location added: 1.11.0 --- ================================================ FILE: docs/content/icons/css.md ================================================ --- title: CSS categories: - Brand tags: - frontend - stylesheet - web --- ================================================ FILE: docs/content/icons/cup-fill.md ================================================ --- title: Cup fill categories: - Real world tags: - mug --- ================================================ FILE: docs/content/icons/cup-hot-fill.md ================================================ --- title: Cup hot fill categories: - Real world tags: - mug - steam - coffee - tea --- ================================================ FILE: docs/content/icons/cup-hot.md ================================================ --- title: Cup hot categories: - Real world tags: - mug - steam - coffee - tea --- ================================================ FILE: docs/content/icons/cup-straw.md ================================================ --- title: Cup straw categories: - Real world tags: - mug - glass - drink --- ================================================ FILE: docs/content/icons/cup.md ================================================ --- title: Cup categories: - Real world tags: - mug --- ================================================ FILE: docs/content/icons/currency-bitcoin.md ================================================ --- title: Currency bitcoin categories: - Commerce tags: - money - finance - crypto --- ================================================ FILE: docs/content/icons/currency-dollar.md ================================================ --- title: Currency dollar categories: - Commerce tags: - money - finance - usd --- ================================================ FILE: docs/content/icons/currency-euro.md ================================================ --- title: Currency euro categories: - Commerce tags: - money - finance --- ================================================ FILE: docs/content/icons/currency-exchange.md ================================================ --- title: Currency exchange categories: - Commerce tags: - money - finance --- ================================================ FILE: docs/content/icons/currency-pound.md ================================================ --- title: Currency pound categories: - Commerce tags: - money - finance --- ================================================ FILE: docs/content/icons/currency-rupee.md ================================================ --- title: Currency rupee categories: - Commerce tags: - money - finance --- ================================================ FILE: docs/content/icons/currency-yen.md ================================================ --- title: Currency yen categories: - Commerce tags: - money - finance --- ================================================ FILE: docs/content/icons/cursor-fill.md ================================================ --- title: Cursor fill categories: - Geo tags: - pointer --- ================================================ FILE: docs/content/icons/cursor-text.md ================================================ --- title: Cursor text categories: - Typography tags: - text - type - cursor --- ================================================ FILE: docs/content/icons/cursor.md ================================================ --- title: Cursor categories: - Geo tags: - pointer --- ================================================ FILE: docs/content/icons/dash-circle-dotted.md ================================================ --- title: Dash circle dotted categories: - Alerts, warnings, and signs tags: - minus --- ================================================ FILE: docs/content/icons/dash-circle-fill.md ================================================ --- title: Dash circle fill categories: - Alerts, warnings, and signs tags: - minus --- ================================================ FILE: docs/content/icons/dash-circle.md ================================================ --- title: Dash circle categories: - Alerts, warnings, and signs tags: - minus --- ================================================ FILE: docs/content/icons/dash-lg.md ================================================ --- title: Dash lg categories: - Alerts, warnings, and signs tags: - minus - math --- ================================================ FILE: docs/content/icons/dash-square-dotted.md ================================================ --- title: Dash square dotted categories: - Alerts, warnings, and signs tags: - minus --- ================================================ FILE: docs/content/icons/dash-square-fill.md ================================================ --- title: Dash square fill categories: - Alerts, warnings, and signs tags: - minus --- ================================================ FILE: docs/content/icons/dash-square.md ================================================ --- title: Dash square categories: - Alerts, warnings, and signs tags: - minus --- ================================================ FILE: docs/content/icons/dash.md ================================================ --- title: Dash categories: - Alerts, warnings, and signs tags: - minus - math --- ================================================ FILE: docs/content/icons/database-add.md ================================================ --- title: Database add categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-check.md ================================================ --- title: Database check categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-dash.md ================================================ --- title: Database dash categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-down.md ================================================ --- title: Database down categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-exclamation.md ================================================ --- title: Database exclamation categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-add.md ================================================ --- title: Database fill add categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-check.md ================================================ --- title: Database fill check categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-dash.md ================================================ --- title: Database fill dash categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-down.md ================================================ --- title: Database fill down categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-exclamation.md ================================================ --- title: Database fill exclamation categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-gear.md ================================================ --- title: Database fill gear categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-lock.md ================================================ --- title: Database fill lock categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-slash.md ================================================ --- title: Database fill slash categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-up.md ================================================ --- title: Database fill up categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill-x.md ================================================ --- title: Database fill x categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-fill.md ================================================ --- title: Database fill categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-gear.md ================================================ --- title: Database gear categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-lock.md ================================================ --- title: Database lock categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-slash.md ================================================ --- title: Database slash categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-up.md ================================================ --- title: Database up categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database-x.md ================================================ --- title: Database x categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/database.md ================================================ --- title: Database categories: - Devices tags: - server - data added: 1.10.0 --- ================================================ FILE: docs/content/icons/device-hdd-fill.md ================================================ --- title: Device HDD fill categories: - Devices tags: - drive - "hard drive" --- ================================================ FILE: docs/content/icons/device-hdd.md ================================================ --- title: Device HDD categories: - Devices tags: - drive - "hard drive" --- ================================================ FILE: docs/content/icons/device-ssd-fill.md ================================================ --- title: Device SSD fill categories: - Devices tags: - "solid state" - drive --- ================================================ FILE: docs/content/icons/device-ssd.md ================================================ --- title: Device SSD categories: - Devices tags: - "solid state" - drive --- ================================================ FILE: docs/content/icons/diagram-2-fill.md ================================================ --- title: Diagram 2 fill categories: - Graphics tags: - node - diagram - sitemap - children - "org chart" --- ================================================ FILE: docs/content/icons/diagram-2.md ================================================ --- title: Diagram 2 categories: - Graphics tags: - node - diagram - sitemap - children - "org chart" --- ================================================ FILE: docs/content/icons/diagram-3-fill.md ================================================ --- title: Diagram 3 fill categories: - Graphics tags: - node - diagram - sitemap - children - "org chart" --- ================================================ FILE: docs/content/icons/diagram-3.md ================================================ --- title: Diagram 3 categories: - Graphics tags: - node - diagram - sitemap - children - "org chart" --- ================================================ FILE: docs/content/icons/diamond-fill.md ================================================ --- title: Diamond fill categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/diamond-half.md ================================================ --- title: Diamond half fill categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/diamond.md ================================================ --- title: Diamond categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/dice-1-fill.md ================================================ --- title: Dice 1 fill categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-1.md ================================================ --- title: Dice 1 categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-2-fill.md ================================================ --- title: Dice 2 fill categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-2.md ================================================ --- title: Dice 2 categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-3-fill.md ================================================ --- title: Dice 3 fill categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-3.md ================================================ --- title: Dice 3 categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-4-fill.md ================================================ --- title: Dice 4 fill categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-4.md ================================================ --- title: Dice 4 categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-5-fill.md ================================================ --- title: Dice 5 fill categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-5.md ================================================ --- title: Dice 5 categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-6-fill.md ================================================ --- title: Dice 6 fill categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/dice-6.md ================================================ --- title: Dice 6 categories: - Entertainment tags: - dice - die - games - gaming - gambling --- ================================================ FILE: docs/content/icons/disc-fill.md ================================================ --- title: Disc fill categories: - Media tags: - cd - compact disc - bluray - dvd --- ================================================ FILE: docs/content/icons/disc.md ================================================ --- title: Disc categories: - Media tags: - cd - compact disc - bluray - dvd --- ================================================ FILE: docs/content/icons/discord.md ================================================ --- title: Discord categories: - Brand tags: - social - chat --- ================================================ FILE: docs/content/icons/display-fill.md ================================================ --- title: Display fill categories: - Devices tags: - monitor - external --- ================================================ FILE: docs/content/icons/display.md ================================================ --- title: Display categories: - Devices tags: - monitor - external --- ================================================ FILE: docs/content/icons/displayport-fill.md ================================================ --- title: DisplayPort fill categories: - Devices tags: - video - input --- ================================================ FILE: docs/content/icons/displayport.md ================================================ --- title: DisplayPort categories: - Devices tags: - video - input --- ================================================ FILE: docs/content/icons/distribute-horizontal.md ================================================ --- title: Distribute horizontal categories: - Graphics tags: - space - align --- ================================================ FILE: docs/content/icons/distribute-vertical.md ================================================ --- title: Distribute vertical categories: - Graphics tags: - space - align --- ================================================ FILE: docs/content/icons/door-closed-fill.md ================================================ --- title: Door closed fill categories: - Real world tags: - door - logout - signout --- ================================================ FILE: docs/content/icons/door-closed.md ================================================ --- title: Door closed categories: - Real world tags: - door - logout - signout --- ================================================ FILE: docs/content/icons/door-open-fill.md ================================================ --- title: Door open fill categories: - Real world tags: - door - login - signin --- ================================================ FILE: docs/content/icons/door-open.md ================================================ --- title: Door open categories: - Real world tags: - door - login - signin --- ================================================ FILE: docs/content/icons/dot.md ================================================ --- title: Dot categories: - UI and keyboard tags: - middot - math --- ================================================ FILE: docs/content/icons/download.md ================================================ --- title: Download categories: - Miscellaneous tags: - arrow - network - save --- ================================================ FILE: docs/content/icons/dpad-fill.md ================================================ --- title: Dpad fill categories: - Entertainment tags: - gaming - controller - direction --- ================================================ FILE: docs/content/icons/dpad.md ================================================ --- title: Dpad categories: - Entertainment tags: - gaming - controller - direction --- ================================================ FILE: docs/content/icons/dribbble.md ================================================ --- title: Dribbble categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/dropbox.md ================================================ --- title: Dropbox categories: - Brand tags: - dropbox --- ================================================ FILE: docs/content/icons/droplet-fill.md ================================================ --- title: Droplet fill categories: - Graphics tags: - water-drop - paint - ink - liquid --- ================================================ FILE: docs/content/icons/droplet-half.md ================================================ --- title: Droplet half categories: - Graphics tags: - water-drop - paint - ink - liquid --- ================================================ FILE: docs/content/icons/droplet.md ================================================ --- title: Droplet categories: - Graphics tags: - water-drop - paint - ink - liquid --- ================================================ FILE: docs/content/icons/duffle-fill.md ================================================ --- title: Duffle fill categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/duffle.md ================================================ --- title: Duffle categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/ear-fill.md ================================================ --- title: Ear fill categories: - Real world tags: - hearing - sound - listen --- ================================================ FILE: docs/content/icons/ear.md ================================================ --- title: Ear categories: - Real world tags: - hearing - sound - listen --- ================================================ FILE: docs/content/icons/earbuds.md ================================================ --- title: Earbuds categories: - Devices tags: - headphones --- ================================================ FILE: docs/content/icons/easel-fill.md ================================================ --- title: Easel fill categories: - Graphics tags: - paint - draw - art - present --- ================================================ FILE: docs/content/icons/easel.md ================================================ --- title: Easel categories: - Graphics tags: - paint - draw - art - present --- ================================================ FILE: docs/content/icons/easel2-fill.md ================================================ --- title: Easel2 fill categories: - Graphics tags: - paint - draw - art - present --- ================================================ FILE: docs/content/icons/easel2.md ================================================ --- title: Easel2 categories: - Graphics tags: - paint - draw - art - present --- ================================================ FILE: docs/content/icons/easel3-fill.md ================================================ --- title: Easel3 fill categories: - Graphics tags: - paint - draw - art - present --- ================================================ FILE: docs/content/icons/easel3.md ================================================ --- title: Easel3 categories: - Graphics tags: - paint - draw - art - present --- ================================================ FILE: docs/content/icons/egg-fill.md ================================================ --- title: Egg fill categories: - Real world tags: - food --- ================================================ FILE: docs/content/icons/egg-fried.md ================================================ --- title: Egg fried categories: - Real world tags: - food --- ================================================ FILE: docs/content/icons/egg.md ================================================ --- title: Egg categories: - Real world tags: - food --- ================================================ FILE: docs/content/icons/eject-fill.md ================================================ --- title: Eject fill categories: - UI and keyboard tags: - disc - cd - dvd --- ================================================ FILE: docs/content/icons/eject.md ================================================ --- title: Eject categories: - UI and keyboard tags: - disc - cd - dvd --- ================================================ FILE: docs/content/icons/emoji-angry-fill.md ================================================ --- title: Emoji angry fill categories: - Emoji tags: - emoticon - anger - upset --- ================================================ FILE: docs/content/icons/emoji-angry.md ================================================ --- title: Emoji angry categories: - Emoji tags: - emoticon - anger - upset --- ================================================ FILE: docs/content/icons/emoji-astonished-fill.md ================================================ --- title: Emoji astonished fill categories: - Emoji tags: - emoticon - surprised added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-astonished.md ================================================ --- title: Emoji astonished categories: - Emoji tags: - emoticon - surprised added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-dizzy-fill.md ================================================ --- title: Emoji dizzy fill categories: - Emoji tags: - emoticon --- ================================================ FILE: docs/content/icons/emoji-dizzy.md ================================================ --- title: Emoji dizzy categories: - Emoji tags: - emoticon --- ================================================ FILE: docs/content/icons/emoji-expressionless-fill.md ================================================ --- title: Emoji expressionless fill categories: - Emoji tags: - emoticon - neutral - unphased --- ================================================ FILE: docs/content/icons/emoji-expressionless.md ================================================ --- title: Emoji expressionless categories: - Emoji tags: - emoticon - neutral - unphased --- ================================================ FILE: docs/content/icons/emoji-frown-fill.md ================================================ --- title: Emoji frown fill categories: - Emoji tags: - emoticon - sad --- ================================================ FILE: docs/content/icons/emoji-frown.md ================================================ --- title: Emoji frown categories: - Emoji tags: - emoticon - sad --- ================================================ FILE: docs/content/icons/emoji-grimace-fill.md ================================================ --- title: Emoji grimace fill categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-grimace.md ================================================ --- title: Emoji grimace categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-grin-fill.md ================================================ --- title: Emoji grin fill categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-grin.md ================================================ --- title: Emoji grin categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-heart-eyes-fill.md ================================================ --- title: Emoji heart eyes fill categories: - Emoji tags: - emoticon - heart - love --- ================================================ FILE: docs/content/icons/emoji-heart-eyes.md ================================================ --- title: Emoji heart eyes categories: - Emoji tags: - emoticon - heart - love --- ================================================ FILE: docs/content/icons/emoji-kiss-fill.md ================================================ --- title: Emoji kiss fill categories: - Emoji tags: - emoticon - heart - love --- ================================================ FILE: docs/content/icons/emoji-kiss.md ================================================ --- title: Emoji kiss categories: - Emoji tags: - emoticon - heart - love --- ================================================ FILE: docs/content/icons/emoji-laughing-fill.md ================================================ --- title: Emoji laughing fill categories: - Emoji tags: - emoticon - happy --- ================================================ FILE: docs/content/icons/emoji-laughing.md ================================================ --- title: Emoji laughing categories: - Emoji tags: - emoticon - happy --- ================================================ FILE: docs/content/icons/emoji-neutral-fill.md ================================================ --- title: Emoji neutral fill categories: - Emoji tags: - emoticon - expressionless --- ================================================ FILE: docs/content/icons/emoji-neutral.md ================================================ --- title: Emoji neutral categories: - Emoji tags: - emoticon - expressionless --- ================================================ FILE: docs/content/icons/emoji-smile-fill.md ================================================ --- title: Emoji smile fill categories: - Emoji tags: - emoticon - happy --- ================================================ FILE: docs/content/icons/emoji-smile-upside-down-fill.md ================================================ --- title: Emoji smile upside down fill categories: - Emoji tags: - emoticon - sarcasm --- ================================================ FILE: docs/content/icons/emoji-smile-upside-down.md ================================================ --- title: Emoji smile upside down categories: - Emoji tags: - emoticon - sarcasm --- ================================================ FILE: docs/content/icons/emoji-smile.md ================================================ --- title: Emoji smile categories: - Emoji tags: - emoticon - happy --- ================================================ FILE: docs/content/icons/emoji-sunglasses-fill.md ================================================ --- title: Emoji sunglasses fill categories: - Emoji tags: - emoticon - cool --- ================================================ FILE: docs/content/icons/emoji-sunglasses.md ================================================ --- title: Emoji sunglasses categories: - Emoji tags: - emoticon - cool --- ================================================ FILE: docs/content/icons/emoji-surprise-fill.md ================================================ --- title: Emoji surprise fill categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-surprise.md ================================================ --- title: Emoji surprise categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-tear-fill.md ================================================ --- title: Emoji tear fill categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-tear.md ================================================ --- title: Emoji tear categories: - Emoji tags: - emoticon added: 1.11.0 --- ================================================ FILE: docs/content/icons/emoji-wink-fill.md ================================================ --- title: Emoji wink fill categories: - Emoji tags: - emoticon --- ================================================ FILE: docs/content/icons/emoji-wink.md ================================================ --- title: Emoji wink categories: - Emoji tags: - emoticon --- ================================================ FILE: docs/content/icons/envelope-arrow-down-fill.md ================================================ --- title: Envelope arrow down fill categories: - Communications tags: - email - message - mail - letter added: 1.11.0 --- ================================================ FILE: docs/content/icons/envelope-arrow-down.md ================================================ --- title: Envelope arrow down categories: - Communications tags: - email - message - mail - letter added: 1.11.0 --- ================================================ FILE: docs/content/icons/envelope-arrow-up-fill.md ================================================ --- title: Envelope arrow up fill categories: - Communications tags: - email - message - mail - letter added: 1.11.0 --- ================================================ FILE: docs/content/icons/envelope-arrow-up.md ================================================ --- title: Envelope arrow up categories: - Communications tags: - email - message - mail - letter added: 1.11.0 --- ================================================ FILE: docs/content/icons/envelope-at-fill.md ================================================ --- title: Envelope at fill categories: - Communications tags: - email - message - mail - letter added: 1.10.0 --- ================================================ FILE: docs/content/icons/envelope-at.md ================================================ --- title: Envelope at categories: - Communications tags: - email - message - mail - letter added: 1.10.0 --- ================================================ FILE: docs/content/icons/envelope-check-fill.md ================================================ --- title: Envelope check fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-check.md ================================================ --- title: Envelope check categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-dash-fill.md ================================================ --- title: Envelope dash fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-dash.md ================================================ --- title: Envelope dash categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-exclamation-fill.md ================================================ --- title: Envelope exclamation fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-exclamation.md ================================================ --- title: Envelope exclamation categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-fill.md ================================================ --- title: Envelope fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-heart-fill.md ================================================ --- title: Envelope heart fill categories: - Communications tags: - email - message - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/envelope-heart.md ================================================ --- title: Envelope heart categories: - Communications tags: - email - message - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/envelope-open-fill.md ================================================ --- title: Envelope open fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-open-heart-fill.md ================================================ --- title: Envelope open heart fill categories: - Communications tags: - email - message - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/envelope-open-heart.md ================================================ --- title: Envelope open heart categories: - Communications tags: - email - message - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/envelope-open.md ================================================ --- title: Envelope open categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-paper-fill.md ================================================ --- title: Envelope paper fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-paper-heart-fill.md ================================================ --- title: Envelope paper heart fill categories: - Communications tags: - email - message - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/envelope-paper-heart.md ================================================ --- title: Envelope paper heart categories: - Communications tags: - email - message - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/envelope-paper.md ================================================ --- title: Envelope paper categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-plus-fill.md ================================================ --- title: Envelope plus fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-plus.md ================================================ --- title: Envelope plus categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-slash-fill.md ================================================ --- title: Envelope slash fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-slash.md ================================================ --- title: Envelope slash categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-x-fill.md ================================================ --- title: Envelope x fill categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope-x.md ================================================ --- title: Envelope x categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/envelope.md ================================================ --- title: Envelope categories: - Communications tags: - email - message - mail - letter --- ================================================ FILE: docs/content/icons/eraser-fill.md ================================================ --- title: Eraser fill categories: - Graphics tags: - erase - remove --- ================================================ FILE: docs/content/icons/eraser.md ================================================ --- title: Eraser categories: - Graphics tags: - erase - remove --- ================================================ FILE: docs/content/icons/escape.md ================================================ --- title: Escape categories: - UI and Keyboard tags: - esc - quit - exit --- ================================================ FILE: docs/content/icons/ethernet.md ================================================ --- title: Ethernet categories: - Devices tags: - internet - connection - port - plug --- ================================================ FILE: docs/content/icons/ev-front-fill.md ================================================ --- title: Ev front fill categories: - Transportation tags: - car - automobile - automotive - auto - sedan - drive - driving - electric vehicle - charging added: 1.10.0 --- ================================================ FILE: docs/content/icons/ev-front.md ================================================ --- title: Ev front categories: - Transportation tags: - car - automobile - automotive - auto - sedan - drive - driving - electric vehicle - charging added: 1.10.0 --- ================================================ FILE: docs/content/icons/ev-station-fill.md ================================================ --- title: EV station fill categories: - Transportation tags: - charging - electric vehicle --- ================================================ FILE: docs/content/icons/ev-station.md ================================================ --- title: EV station categories: - Transportation tags: - charging - electric vehicle --- ================================================ FILE: docs/content/icons/exclamation-circle-fill.md ================================================ --- title: Exclamation circle fill categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-circle.md ================================================ --- title: Exclamation circle categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-diamond-fill.md ================================================ --- title: Exclamation diamond fill categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-diamond.md ================================================ --- title: Exclamation diamond categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-lg.md ================================================ --- title: Exclamation lg categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-octagon-fill.md ================================================ --- title: Exclamation octagon fill categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-octagon.md ================================================ --- title: Exclamation octagon categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-square-fill.md ================================================ --- title: Exclamation square fill categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-square.md ================================================ --- title: Exclamation square categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-triangle-fill.md ================================================ --- title: Exclamation triangle fill categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation-triangle.md ================================================ --- title: Exclamation triangle categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclamation.md ================================================ --- title: Exclamation categories: - Alerts, warnings, and signs tags: - alert - warning --- ================================================ FILE: docs/content/icons/exclude.md ================================================ --- title: Exclude categories: - Graphics tags: - graphics - vector - merge - layers --- ================================================ FILE: docs/content/icons/explicit-fill.md ================================================ --- title: Explicit fill categories: - Badges tags: - r18 --- ================================================ FILE: docs/content/icons/explicit.md ================================================ --- title: Explicit categories: - Badges tags: - r18 --- ================================================ FILE: docs/content/icons/exposure.md ================================================ --- title: Exposure categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/eye-fill.md ================================================ --- title: Eye fill categories: - Real world tags: - eyeball - look - see --- ================================================ FILE: docs/content/icons/eye-slash-fill.md ================================================ --- title: Eye slash fill categories: - Real world tags: - eyeball - look - see --- ================================================ FILE: docs/content/icons/eye-slash.md ================================================ --- title: Eye slash categories: - Real world tags: - eyeball - look - see --- ================================================ FILE: docs/content/icons/eye.md ================================================ --- title: Eye categories: - Real world tags: - eyeball - look - see --- ================================================ FILE: docs/content/icons/eyedropper.md ================================================ --- title: Eyedropper categories: - Graphics tags: - color - picker - colour --- ================================================ FILE: docs/content/icons/eyeglasses.md ================================================ --- title: Eyeglasses categories: - Real world tags: - eyeball - look - see - glasses - reading --- ================================================ FILE: docs/content/icons/facebook.md ================================================ --- title: Facebook categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/fan.md ================================================ --- title: Fan categories: - Real world tags: - fan - vent - airflow --- ================================================ FILE: docs/content/icons/fast-forward-btn-fill.md ================================================ --- title: Fast forward btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/fast-forward-btn.md ================================================ --- title: Fast forward btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/fast-forward-circle-fill.md ================================================ --- title: Fast forward circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/fast-forward-circle.md ================================================ --- title: Fast forward circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/fast-forward-fill.md ================================================ --- title: Fast forward fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/fast-forward.md ================================================ --- title: Fast forward categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/feather.md ================================================ --- title: Feather categories: - Real world tags: - bird - flight - light added: 1.11.0 --- ================================================ FILE: docs/content/icons/feather2.md ================================================ --- title: Feather2 categories: - Real world tags: - bird - flight - light added: 1.11.0 --- ================================================ FILE: docs/content/icons/file-arrow-down-fill.md ================================================ --- title: File arrow down fill categories: - Files and folders tags: - doc - document - download --- ================================================ FILE: docs/content/icons/file-arrow-down.md ================================================ --- title: File arrow down categories: - Files and folders tags: - doc - document - download --- ================================================ FILE: docs/content/icons/file-arrow-up-fill.md ================================================ --- title: File arrow up fill categories: - Files and folders tags: - doc - document - upload --- ================================================ FILE: docs/content/icons/file-arrow-up.md ================================================ --- title: File arrow up categories: - Files and folders tags: - doc - document - upload --- ================================================ FILE: docs/content/icons/file-bar-graph-fill.md ================================================ --- title: File bar graph fill categories: - Files and folders tags: - doc - document - data - chart --- ================================================ FILE: docs/content/icons/file-bar-graph.md ================================================ --- title: File bar graph categories: - Files and folders tags: - doc - document - data - chart --- ================================================ FILE: docs/content/icons/file-binary-fill.md ================================================ --- title: File binary fill categories: - Files and folders tags: - doc - document - binary - source --- ================================================ FILE: docs/content/icons/file-binary.md ================================================ --- title: File binary categories: - Files and folders tags: - doc - document - binary - source --- ================================================ FILE: docs/content/icons/file-break-fill.md ================================================ --- title: File break fill categories: - Files and folders tags: - doc - document - page-break --- ================================================ FILE: docs/content/icons/file-break.md ================================================ --- title: File break categories: - Files and folders tags: - doc - document - page-break --- ================================================ FILE: docs/content/icons/file-check-fill.md ================================================ --- title: File check fill categories: - Files and folders tags: - doc - document - check - verified --- ================================================ FILE: docs/content/icons/file-check.md ================================================ --- title: File check categories: - Files and folders tags: - doc - document - check - verified --- ================================================ FILE: docs/content/icons/file-code-fill.md ================================================ --- title: File code fill categories: - Files and folders tags: - doc - document - code - development --- ================================================ FILE: docs/content/icons/file-code.md ================================================ --- title: File code categories: - Files and folders tags: - doc - document - code - development --- ================================================ FILE: docs/content/icons/file-diff-fill.md ================================================ --- title: File diff fill categories: - Files and folders tags: - doc - document - version - development --- ================================================ FILE: docs/content/icons/file-diff.md ================================================ --- title: File diff categories: - Files and folders tags: - doc - document - version - development --- ================================================ FILE: docs/content/icons/file-earmark-arrow-down-fill.md ================================================ --- title: File earmark arrow down fill categories: - Files and folders tags: - doc - document - download --- ================================================ FILE: docs/content/icons/file-earmark-arrow-down.md ================================================ --- title: File earmark arrow down categories: - Files and folders tags: - doc - document - download --- ================================================ FILE: docs/content/icons/file-earmark-arrow-up-fill.md ================================================ --- title: File earmark arrow up fill categories: - Files and folders tags: - doc - document - upload --- ================================================ FILE: docs/content/icons/file-earmark-arrow-up.md ================================================ --- title: File earmark arrow up categories: - Files and folders tags: - doc - document - upload --- ================================================ FILE: docs/content/icons/file-earmark-bar-graph-fill.md ================================================ --- title: File earmark bar graph fill categories: - Files and folders tags: - doc - document - data - chart --- ================================================ FILE: docs/content/icons/file-earmark-bar-graph.md ================================================ --- title: File earmark bar graph categories: - Files and folders tags: - doc - document - data - chart --- ================================================ FILE: docs/content/icons/file-earmark-binary-fill.md ================================================ --- title: File earmark binary fill categories: - Files and folders tags: - doc - document - binary - source --- ================================================ FILE: docs/content/icons/file-earmark-binary.md ================================================ --- title: File earmark binary categories: - Files and folders tags: - doc - document - binary - source --- ================================================ FILE: docs/content/icons/file-earmark-break-fill.md ================================================ --- title: File earmark break fill categories: - Files and folders tags: - doc - document - page-break --- ================================================ FILE: docs/content/icons/file-earmark-break.md ================================================ --- title: File earmark break categories: - Files and folders tags: - doc - document - page-break --- ================================================ FILE: docs/content/icons/file-earmark-check-fill.md ================================================ --- title: File earmark check fill categories: - Files and folders tags: - doc - document - check - verified --- ================================================ FILE: docs/content/icons/file-earmark-check.md ================================================ --- title: File earmark check categories: - Files and folders tags: - doc - document - check - verified --- ================================================ FILE: docs/content/icons/file-earmark-code-fill.md ================================================ --- title: File earmark code fill categories: - Files and folders tags: - doc - document - code - development --- ================================================ FILE: docs/content/icons/file-earmark-code.md ================================================ --- title: File earmark code categories: - Files and folders tags: - doc - document - code - development --- ================================================ FILE: docs/content/icons/file-earmark-diff-fill.md ================================================ --- title: File earmark diff fill categories: - Files and folders tags: - doc - document - version - development --- ================================================ FILE: docs/content/icons/file-earmark-diff.md ================================================ --- title: File earmark diff categories: - Files and folders tags: - doc - document - version - development --- ================================================ FILE: docs/content/icons/file-earmark-easel-fill.md ================================================ --- title: File earmark easel fill categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-earmark-easel.md ================================================ --- title: File earmark easel categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-earmark-excel-fill.md ================================================ --- title: File earmark excel fill categories: - Files and folders tags: - doc - document - spreadsheet - excel - table --- ================================================ FILE: docs/content/icons/file-earmark-excel.md ================================================ --- title: File earmark excel categories: - Files and folders tags: - doc - document - spreadsheet - excel - table --- ================================================ FILE: docs/content/icons/file-earmark-fill.md ================================================ --- title: File earmark fill categories: - Files and folders tags: - doc - document - page --- ================================================ FILE: docs/content/icons/file-earmark-font-fill.md ================================================ --- title: File earmark font fill categories: - Files and folders tags: - ttf - otf --- ================================================ FILE: docs/content/icons/file-earmark-font.md ================================================ --- title: File earmark font categories: - Files and folders tags: - ttf - otf --- ================================================ FILE: docs/content/icons/file-earmark-image-fill.md ================================================ --- title: File earmark image fill categories: - Files and folders tags: - photo - picture --- ================================================ FILE: docs/content/icons/file-earmark-image.md ================================================ --- title: File earmark image categories: - Files and folders tags: - photo - picture --- ================================================ FILE: docs/content/icons/file-earmark-lock-fill.md ================================================ --- title: File earmark lock fill categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-earmark-lock.md ================================================ --- title: File earmark lock categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-earmark-lock2-fill.md ================================================ --- title: File earmark lock2 fill categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-earmark-lock2.md ================================================ --- title: File earmark lock2 categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-earmark-medical-fill.md ================================================ --- title: File earmark medical fill categories: - Files and folders tags: - doc - document - medical - hospital - health --- ================================================ FILE: docs/content/icons/file-earmark-medical.md ================================================ --- title: File earmark medical categories: - Files and folders tags: - doc - document - medical - hospital - health --- ================================================ FILE: docs/content/icons/file-earmark-minus-fill.md ================================================ --- title: File earmark minus fill categories: - Files and folders tags: - doc - document - delete - remove --- ================================================ FILE: docs/content/icons/file-earmark-minus.md ================================================ --- title: File earmark minus categories: - Files and folders tags: - doc - document - delete - remove --- ================================================ FILE: docs/content/icons/file-earmark-music-fill.md ================================================ --- title: File earmark music fill categories: - Files and folders tags: - doc - document - music - audio - playlist - songs --- ================================================ FILE: docs/content/icons/file-earmark-music.md ================================================ --- title: File earmark music categories: - Files and folders tags: - doc - document - music - audio - playlist - songs --- ================================================ FILE: docs/content/icons/file-earmark-pdf-fill.md ================================================ --- title: File earmark PDF fill categories: - Files and folders tags: - doc - document - adobe - acrobat --- ================================================ FILE: docs/content/icons/file-earmark-pdf.md ================================================ --- title: File earmark PDF categories: - Files and folders tags: - doc - document - adobe - acrobat --- ================================================ FILE: docs/content/icons/file-earmark-person-fill.md ================================================ --- title: File earmark person fill categories: - Files and folders tags: - doc - document - personal - cv - resume - about --- ================================================ FILE: docs/content/icons/file-earmark-person.md ================================================ --- title: File earmark person categories: - Files and folders tags: - doc - document - personal - cv - resume - about --- ================================================ FILE: docs/content/icons/file-earmark-play-fill.md ================================================ --- title: File earmark play fill categories: - Files and folders tags: - video - present --- ================================================ FILE: docs/content/icons/file-earmark-play.md ================================================ --- title: File earmark play categories: - Files and folders tags: - video - present --- ================================================ FILE: docs/content/icons/file-earmark-plus-fill.md ================================================ --- title: File earmark plus fill categories: - Files and folders tags: - doc - document - add - new --- ================================================ FILE: docs/content/icons/file-earmark-plus.md ================================================ --- title: File earmark plus categories: - Files and folders tags: - doc - document - add - new --- ================================================ FILE: docs/content/icons/file-earmark-post-fill.md ================================================ --- title: File earmark post fill categories: - Files and folders tags: - doc - document - post --- ================================================ FILE: docs/content/icons/file-earmark-post.md ================================================ --- title: File earmark post categories: - Files and folders tags: - doc - document - post --- ================================================ FILE: docs/content/icons/file-earmark-ppt-fill.md ================================================ --- title: File earmark ppt fill categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-earmark-ppt.md ================================================ --- title: File earmark ppt categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-earmark-richtext-fill.md ================================================ --- title: File earmark richtext fill categories: - Files and folders tags: - text - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-richtext.md ================================================ --- title: File earmark richtext categories: - Files and folders tags: - text - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-ruled-fill.md ================================================ --- title: File earmark ruled fill categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-ruled.md ================================================ --- title: File earmark ruled categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-slides-fill.md ================================================ --- title: File earmark slides fill categories: - Files and folders tags: - presentation - keynote - powerpoint --- ================================================ FILE: docs/content/icons/file-earmark-slides.md ================================================ --- title: File earmark slides categories: - Files and folders tags: - presentation - keynote - powerpoint --- ================================================ FILE: docs/content/icons/file-earmark-spreadsheet-fill.md ================================================ --- title: File earmark spreadsheet fill categories: - Files and folders tags: - doc - document - excel - table --- ================================================ FILE: docs/content/icons/file-earmark-spreadsheet.md ================================================ --- title: File earmark spreadsheet categories: - Files and folders tags: - doc - document - excel - table --- ================================================ FILE: docs/content/icons/file-earmark-text-fill.md ================================================ --- title: File earmark text fill categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-text.md ================================================ --- title: File earmark text categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-word-fill.md ================================================ --- title: File earmark word fill categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-word.md ================================================ --- title: File earmark word categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-earmark-x-fill.md ================================================ --- title: File earmark x fill categories: - Files and folders tags: - document - remove - delete --- ================================================ FILE: docs/content/icons/file-earmark-x.md ================================================ --- title: File earmark x categories: - Files and folders tags: - document - remove - delete --- ================================================ FILE: docs/content/icons/file-earmark-zip-fill.md ================================================ --- title: File earmark zip fill categories: - Files and folders tags: - doc - document - zip - archive - compress --- ================================================ FILE: docs/content/icons/file-earmark-zip.md ================================================ --- title: File earmark zip categories: - Files and folders tags: - doc - document - zip - archive - compress --- ================================================ FILE: docs/content/icons/file-earmark.md ================================================ --- title: File earmark categories: - Files and folders tags: - doc - document - page --- ================================================ FILE: docs/content/icons/file-easel-fill.md ================================================ --- title: File easel fill categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-easel.md ================================================ --- title: File easel categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-excel-fill.md ================================================ --- title: File excel fill categories: - Files and folders tags: - doc - document - spreadsheet - excel - table --- ================================================ FILE: docs/content/icons/file-excel.md ================================================ --- title: File excel categories: - Files and folders tags: - doc - document - spreadsheet - excel - table --- ================================================ FILE: docs/content/icons/file-fill.md ================================================ --- title: File fill categories: - Files and folders tags: - doc - document - page --- ================================================ FILE: docs/content/icons/file-font-fill.md ================================================ --- title: File font fill categories: - Files and folders tags: - ttf - otf --- ================================================ FILE: docs/content/icons/file-font.md ================================================ --- title: File font categories: - Files and folders tags: - ttf - otf --- ================================================ FILE: docs/content/icons/file-image-fill.md ================================================ --- title: File image fill categories: - Files and folders tags: - photo - picture --- ================================================ FILE: docs/content/icons/file-image.md ================================================ --- title: File image categories: - Files and folders tags: - photo - picture --- ================================================ FILE: docs/content/icons/file-lock-fill.md ================================================ --- title: File lock fill categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-lock.md ================================================ --- title: File lock categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-lock2-fill.md ================================================ --- title: File lock2 fill categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-lock2.md ================================================ --- title: File lock2 categories: - Files and folders tags: - lock - private - secure --- ================================================ FILE: docs/content/icons/file-medical-fill.md ================================================ --- title: File medical fill categories: - Files and folders tags: - doc - document - medical - hospital - health --- ================================================ FILE: docs/content/icons/file-medical.md ================================================ --- title: File medical categories: - Files and folders tags: - doc - document - medical - hospital - health --- ================================================ FILE: docs/content/icons/file-minus-fill.md ================================================ --- title: File minus fill categories: - Files and folders tags: - doc - document - delete - remove --- ================================================ FILE: docs/content/icons/file-minus.md ================================================ --- title: File minus categories: - Files and folders tags: - doc - document - delete - remove --- ================================================ FILE: docs/content/icons/file-music-fill.md ================================================ --- title: File music fill categories: - Files and folders tags: - doc - document - music - audio - playlist - songs --- ================================================ FILE: docs/content/icons/file-music.md ================================================ --- title: File music categories: - Files and folders tags: - doc - document - music - audio - playlist - songs --- ================================================ FILE: docs/content/icons/file-pdf-fill.md ================================================ --- title: File PDF fill categories: - Files and folders tags: - doc - document - adobe - acrobat --- ================================================ FILE: docs/content/icons/file-pdf.md ================================================ --- title: File PDF categories: - Files and folders tags: - doc - document - adobe - acrobat --- ================================================ FILE: docs/content/icons/file-person-fill.md ================================================ --- title: File person fill categories: - Files and folders tags: - doc - document - personal - cv - resume - about --- ================================================ FILE: docs/content/icons/file-person.md ================================================ --- title: File person categories: - Files and folders tags: - doc - document - personal - cv - resume - about --- ================================================ FILE: docs/content/icons/file-play-fill.md ================================================ --- title: File play fill categories: - Files and folders tags: - video - present --- ================================================ FILE: docs/content/icons/file-play.md ================================================ --- title: File play categories: - Files and folders tags: - video - present --- ================================================ FILE: docs/content/icons/file-plus-fill.md ================================================ --- title: File plus fill categories: - Files and folders tags: - doc - document - add - new --- ================================================ FILE: docs/content/icons/file-plus.md ================================================ --- title: File plus categories: - Files and folders tags: - doc - document - add - new --- ================================================ FILE: docs/content/icons/file-post-fill.md ================================================ --- title: File post fill categories: - Files and folders tags: - doc - document - post --- ================================================ FILE: docs/content/icons/file-post.md ================================================ --- title: File post categories: - Files and folders tags: - doc - document - post --- ================================================ FILE: docs/content/icons/file-ppt-fill.md ================================================ --- title: File ppt fill categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-ppt.md ================================================ --- title: File ppt categories: - Files and folders tags: - slides - presentation - powerpoint - keynote --- ================================================ FILE: docs/content/icons/file-richtext-fill.md ================================================ --- title: File richtext fill categories: - Files and folders tags: - doc - document - richtext --- ================================================ FILE: docs/content/icons/file-richtext.md ================================================ --- title: File rich text categories: - Files and folders tags: - doc - document - richtext --- ================================================ FILE: docs/content/icons/file-ruled-fill.md ================================================ --- title: File ruled fill categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-ruled.md ================================================ --- title: File ruled categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-slides-fill.md ================================================ --- title: File slides fill categories: - Files and folders tags: - presentation - keynote - powerpoint --- ================================================ FILE: docs/content/icons/file-slides.md ================================================ --- title: File slides categories: - Files and folders tags: - presentation - keynote - powerpoint --- ================================================ FILE: docs/content/icons/file-spreadsheet-fill.md ================================================ --- title: File spreadsheet fill categories: - Files and folders tags: - doc - document - excel - table --- ================================================ FILE: docs/content/icons/file-spreadsheet.md ================================================ --- title: File spreadsheet categories: - Files and folders tags: - doc - document - excel - table --- ================================================ FILE: docs/content/icons/file-text-fill.md ================================================ --- title: File text fill categories: - Files and folders tags: - doc - document - letter --- ================================================ FILE: docs/content/icons/file-text.md ================================================ --- title: File text categories: - Files and folders tags: - doc - document - letter --- ================================================ FILE: docs/content/icons/file-word-fill.md ================================================ --- title: File word fill categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-word.md ================================================ --- title: File word categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/file-x-fill.md ================================================ --- title: File x fill categories: - Files and folders tags: - document - remove - delete --- ================================================ FILE: docs/content/icons/file-x.md ================================================ --- title: File x categories: - Files and folders tags: - document - remove - delete --- ================================================ FILE: docs/content/icons/file-zip-fill.md ================================================ --- title: File zip fill categories: - Files and folders tags: - doc - document - zip - archive - compress --- ================================================ FILE: docs/content/icons/file-zip.md ================================================ --- title: File zip categories: - Files and folders tags: - doc - document - zip - archive - compress --- ================================================ FILE: docs/content/icons/file.md ================================================ --- title: File categories: - Files and folders tags: - doc - document - page --- ================================================ FILE: docs/content/icons/files-alt.md ================================================ --- title: Files alt categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/files.md ================================================ --- title: Files categories: - Files and folders tags: - doc - document --- ================================================ FILE: docs/content/icons/filetype-aac.md ================================================ --- title: Filetype aac categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-ai.md ================================================ --- title: Filetype ai categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-bmp.md ================================================ --- title: Filetype bmp categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-cs.md ================================================ --- title: Filetype cs categories: - Files and folders tags: - file - "file type" - extension - code --- ================================================ FILE: docs/content/icons/filetype-css.md ================================================ --- title: Filetype css categories: - Files and folders tags: - file - "file type" - extension - code - stylesheet --- ================================================ FILE: docs/content/icons/filetype-csv.md ================================================ --- title: Filetype csv categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-doc.md ================================================ --- title: Filetype doc categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-docx.md ================================================ --- title: Filetype docx categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-exe.md ================================================ --- title: Filetype exe categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-gif.md ================================================ --- title: Filetype gif categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-heic.md ================================================ --- title: Filetype heic categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-html.md ================================================ --- title: Filetype html categories: - Files and folders tags: - file - "file type" - extension - code - html --- ================================================ FILE: docs/content/icons/filetype-java.md ================================================ --- title: Filetype java categories: - Files and folders tags: - file - "file type" - extension - code - java --- ================================================ FILE: docs/content/icons/filetype-jpg.md ================================================ --- title: Filetype jpg categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-js.md ================================================ --- title: Filetype js categories: - Files and folders tags: - file - "file type" - extension - code - javascript --- ================================================ FILE: docs/content/icons/filetype-json.md ================================================ --- title: Filetype json categories: - Files and folders tags: - file - "file type" - extension - code - javascript --- ================================================ FILE: docs/content/icons/filetype-jsx.md ================================================ --- title: Filetype jsx categories: - Files and folders tags: - file - "file type" - extension - code - javascript - react --- ================================================ FILE: docs/content/icons/filetype-key.md ================================================ --- title: Filetype key categories: - Files and folders tags: - file - "file type" - extension - keynote --- ================================================ FILE: docs/content/icons/filetype-m4p.md ================================================ --- title: Filetype m4p categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-md.md ================================================ --- title: Filetype md categories: - Files and folders tags: - file - "file type" - extension - code - markdown --- ================================================ FILE: docs/content/icons/filetype-mdx.md ================================================ --- title: Filetype mdx categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-mov.md ================================================ --- title: Filetype mov categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-mp3.md ================================================ --- title: Filetype mp3 categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-mp4.md ================================================ --- title: Filetype mp4 categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-otf.md ================================================ --- title: Filetype otf categories: - Files and folders tags: - file - "file type" - extension - font - type --- ================================================ FILE: docs/content/icons/filetype-pdf.md ================================================ --- title: Filetype pdf categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-php.md ================================================ --- title: Filetype php categories: - Files and folders tags: - file - "file type" - extension - code --- ================================================ FILE: docs/content/icons/filetype-png.md ================================================ --- title: Filetype png categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-ppt.md ================================================ --- title: Filetype ppt categories: - Files and folders tags: - file - "file type" - extension - powerpoint --- ================================================ FILE: docs/content/icons/filetype-pptx.md ================================================ --- title: Filetype pptx categories: - Files and folders tags: - file - "file type" - extension - powerpoint --- ================================================ FILE: docs/content/icons/filetype-psd.md ================================================ --- title: Filetype psd categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-py.md ================================================ --- title: Filetype py categories: - Files and folders tags: - file - "file type" - extension - code - python --- ================================================ FILE: docs/content/icons/filetype-raw.md ================================================ --- title: Filetype raw categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-rb.md ================================================ --- title: Filetype rb categories: - Files and folders tags: - file - "file type" - extension - code - ruby --- ================================================ FILE: docs/content/icons/filetype-sass.md ================================================ --- title: Filetype sass categories: - Files and folders tags: - file - "file type" - extension - code - css - stylesheet --- ================================================ FILE: docs/content/icons/filetype-scss.md ================================================ --- title: Filetype scss categories: - Files and folders tags: - file - "file type" - extension - code - css - stylesheet --- ================================================ FILE: docs/content/icons/filetype-sh.md ================================================ --- title: Filetype sh categories: - Files and folders tags: - file - "file type" - extension - code - shell --- ================================================ FILE: docs/content/icons/filetype-sql.md ================================================ --- title: Filetype SQL categories: - Files and folders tags: - file - "file type" - extension - mysql --- ================================================ FILE: docs/content/icons/filetype-svg.md ================================================ --- title: Filetype svg categories: - Files and folders tags: - file - "file type" - extension - code --- ================================================ FILE: docs/content/icons/filetype-tiff.md ================================================ --- title: Filetype tiff categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-tsx.md ================================================ --- title: Filetype tsx categories: - Files and folders tags: - file - "file type" - extension - code - typescript --- ================================================ FILE: docs/content/icons/filetype-ttf.md ================================================ --- title: Filetype ttf categories: - Files and folders tags: - file - "file type" - extension - font - type --- ================================================ FILE: docs/content/icons/filetype-txt.md ================================================ --- title: Filetype txt categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-wav.md ================================================ --- title: Filetype wav categories: - Files and folders tags: - file - "file type" - extension --- ================================================ FILE: docs/content/icons/filetype-woff.md ================================================ --- title: Filetype woff categories: - Files and folders tags: - file - "file type" - extension - font - type --- ================================================ FILE: docs/content/icons/filetype-xls.md ================================================ --- title: Filetype xls categories: - Files and folders tags: - file - "file type" - extension - spreadsheet --- ================================================ FILE: docs/content/icons/filetype-xlsx.md ================================================ --- title: Filetype xlsx categories: - Files and folders tags: - file - "file type" - extension - spreadsheet --- ================================================ FILE: docs/content/icons/filetype-xml.md ================================================ --- title: Filetype xml categories: - Files and folders tags: - file - "file type" - extension - code --- ================================================ FILE: docs/content/icons/filetype-yml.md ================================================ --- title: Filetype yml categories: - Files and folders tags: - file - "file type" - extension - code - yaml --- ================================================ FILE: docs/content/icons/film.md ================================================ --- title: Film categories: - Media tags: - video - movie --- ================================================ FILE: docs/content/icons/filter-circle-fill.md ================================================ --- title: Filter circle fill categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/filter-circle.md ================================================ --- title: Filter circle categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/filter-left.md ================================================ --- title: Filter left categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/filter-right.md ================================================ --- title: Filter right categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/filter-square-fill.md ================================================ --- title: Filter square fill categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/filter-square.md ================================================ --- title: Filter square categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/filter.md ================================================ --- title: Filter categories: - UI and keyboard tags: - sort --- ================================================ FILE: docs/content/icons/fingerprint.md ================================================ --- title: Fingerprint categories: - Security tags: - "touch ID" - secure - biometric --- ================================================ FILE: docs/content/icons/fire.md ================================================ --- title: Fire categories: - Real world tags: - burning - smoke --- ================================================ FILE: docs/content/icons/flag-fill.md ================================================ --- title: Flag fill categories: - Communications tags: - report --- ================================================ FILE: docs/content/icons/flag.md ================================================ --- title: Flag categories: - Communications tags: - report --- ================================================ FILE: docs/content/icons/flask-fill.md ================================================ --- title: Flask fill categories: - Real world tags: - beaker - science - measure - experiment --- ================================================ FILE: docs/content/icons/flask-florence-fill.md ================================================ --- title: Flask florence fill categories: - Real world tags: - beaker - science - measure - experiment --- ================================================ FILE: docs/content/icons/flask-florence.md ================================================ --- title: Flask florence categories: - Real world tags: - beaker - science - measure - experiment --- ================================================ FILE: docs/content/icons/flask.md ================================================ --- title: Flask categories: - Real world tags: - beaker - science - measure - experiment --- ================================================ FILE: docs/content/icons/floppy-fill.md ================================================ --- title: Floppy fill categories: - Devices tags: - save - storage - disk added: 1.11.0 --- ================================================ FILE: docs/content/icons/floppy.md ================================================ --- title: Floppy categories: - Devices tags: - save - storage - disk added: 1.11.0 --- ================================================ FILE: docs/content/icons/floppy2-fill.md ================================================ --- title: Floppy2 fill categories: - Devices tags: - save - storage - disk added: 1.11.0 --- ================================================ FILE: docs/content/icons/floppy2.md ================================================ --- title: Floppy2 categories: - Devices tags: - save - storage - disk added: 1.11.0 --- ================================================ FILE: docs/content/icons/flower1.md ================================================ --- title: Flower1 categories: - Real world tags: - plant - bloom - flower --- ================================================ FILE: docs/content/icons/flower2.md ================================================ --- title: Flower2 categories: - Real world tags: - plant - bloom - flower --- ================================================ FILE: docs/content/icons/flower3.md ================================================ --- title: Flower3 categories: - Real world tags: - plant - bloom - flower --- ================================================ FILE: docs/content/icons/folder-check.md ================================================ --- title: Folder check categories: - Files and folders tags: - directory - check - verified --- ================================================ FILE: docs/content/icons/folder-fill.md ================================================ --- title: Folder fill categories: - Files and folders tags: - directory --- ================================================ FILE: docs/content/icons/folder-minus.md ================================================ --- title: Folder minus categories: - Files and folders tags: - directory - delete - remove --- ================================================ FILE: docs/content/icons/folder-plus.md ================================================ --- title: Folder plus categories: - Files and folders tags: - directory - delete - add - new --- ================================================ FILE: docs/content/icons/folder-symlink-fill.md ================================================ --- title: Folder symlink fill categories: - Files and folders tags: - directory - symbolic-link --- ================================================ FILE: docs/content/icons/folder-symlink.md ================================================ --- title: Folder symlink categories: - Files and folders tags: - directory - symbolic-link --- ================================================ FILE: docs/content/icons/folder-x.md ================================================ --- title: Folder x categories: - Files and folders tags: - directory - remove - delete --- ================================================ FILE: docs/content/icons/folder.md ================================================ --- title: Folder categories: - Files and folders tags: - directory --- ================================================ FILE: docs/content/icons/folder2-open.md ================================================ --- title: Folder2 open categories: - Files and folders tags: - directory --- ================================================ FILE: docs/content/icons/folder2.md ================================================ --- title: Folder2 categories: - Files and folders tags: - directory --- ================================================ FILE: docs/content/icons/fonts.md ================================================ --- title: Fonts categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/fork-knife.md ================================================ --- title: Fork knife categories: - Real world tags: - food - restaurant - breakfast - lunch - dinner - utensils - cutlery --- ================================================ FILE: docs/content/icons/forward-fill.md ================================================ --- title: Forward fill categories: - Communications tags: - mail - email --- ================================================ FILE: docs/content/icons/forward.md ================================================ --- title: Forward categories: - Communications tags: - mail - email --- ================================================ FILE: docs/content/icons/front.md ================================================ --- title: Front categories: - Graphics tags: - forward - layer --- ================================================ FILE: docs/content/icons/fuel-pump-diesel-fill.md ================================================ --- title: Fuel pump diesel fill categories: - Transportation tags: - gas - petrol - fuel - "gas station" --- ================================================ FILE: docs/content/icons/fuel-pump-diesel.md ================================================ --- title: Fuel pump diesel categories: - Transportation tags: - gas - petrol - fuel - "gas station" --- ================================================ FILE: docs/content/icons/fuel-pump-fill.md ================================================ --- title: Fuel pump fill categories: - Transportation tags: - gas - petrol - fuel - "gas station" --- ================================================ FILE: docs/content/icons/fuel-pump.md ================================================ --- title: Fuel pump categories: - Transportation tags: - gas - petrol - fuel - "gas station" --- ================================================ FILE: docs/content/icons/fullscreen-exit.md ================================================ --- title: Fullscreen exit categories: - UI and keyboard tags: - window - minimize --- ================================================ FILE: docs/content/icons/fullscreen.md ================================================ --- title: Fullscreen categories: - UI and keyboard tags: - window - maximize --- ================================================ FILE: docs/content/icons/funnel-fill.md ================================================ --- title: Funnel fill categories: - Real world tags: - sort - filter --- ================================================ FILE: docs/content/icons/funnel.md ================================================ --- title: Funnel categories: - Real world tags: - sort - filter --- ================================================ FILE: docs/content/icons/gear-fill.md ================================================ --- title: Gear fill categories: - Tools tags: - tool - settings - preferences --- ================================================ FILE: docs/content/icons/gear-wide-connected.md ================================================ --- title: Gear wide connected categories: - Tools tags: - tool - settings - preferences --- ================================================ FILE: docs/content/icons/gear-wide.md ================================================ --- title: Gear wide categories: - Tools tags: - tool - settings - preferences --- ================================================ FILE: docs/content/icons/gear.md ================================================ --- title: Gear categories: - Tools tags: - tool - settings - preferences --- ================================================ FILE: docs/content/icons/gem.md ================================================ --- title: Gem categories: - Shapes tags: - shape - diamond --- ================================================ FILE: docs/content/icons/gender-ambiguous.md ================================================ --- title: Gender ambiguous categories: - People tags: - gender - identity --- ================================================ FILE: docs/content/icons/gender-female.md ================================================ --- title: Gender female categories: - People tags: - gender - identity --- ================================================ FILE: docs/content/icons/gender-male.md ================================================ --- title: Gender male categories: - People tags: - gender - identity --- ================================================ FILE: docs/content/icons/gender-neuter.md ================================================ --- title: Gender neuter categories: - People tags: - gender - identity added: 1.11.0 --- ================================================ FILE: docs/content/icons/gender-trans.md ================================================ --- title: Gender trans categories: - People tags: - gender - identity --- ================================================ FILE: docs/content/icons/geo-alt-fill.md ================================================ --- title: Geo alt fill categories: - Geo tags: - geography - map - pin - location --- ================================================ FILE: docs/content/icons/geo-alt.md ================================================ --- title: Geo alt categories: - Geo tags: - geography - map - pin - location --- ================================================ FILE: docs/content/icons/geo-fill.md ================================================ --- title: Geo fill categories: - Geo tags: - geography - map - pin - location --- ================================================ FILE: docs/content/icons/geo.md ================================================ --- title: Geo categories: - Geo tags: - geography - map - pin - location --- ================================================ FILE: docs/content/icons/gift-fill.md ================================================ --- title: Gift fill categories: - Real world tags: - present - gift --- ================================================ FILE: docs/content/icons/gift.md ================================================ --- title: Gift categories: - Real world tags: - present - gift --- ================================================ FILE: docs/content/icons/git.md ================================================ --- title: Git categories: - Brand tags: - "version control" - vcs - github - version --- ================================================ FILE: docs/content/icons/github.md ================================================ --- title: GitHub categories: - Brand tags: - social - microsoft - vcs - git added: 1.11.0 --- ================================================ FILE: docs/content/icons/gitlab.md ================================================ --- title: Gitlab categories: - Brand tags: - social - vcs - git added: 1.11.0 --- ================================================ FILE: docs/content/icons/globe-americas-fill.md ================================================ --- title: Globe Americas fill categories: - Geo tags: - geography - earth - world - map --- ================================================ FILE: docs/content/icons/globe-americas.md ================================================ --- title: Globe Americas categories: - Geo tags: - geography - earth - world - map added: 1.10.0 --- ================================================ FILE: docs/content/icons/globe-asia-australia-fill.md ================================================ --- title: Globe Asia Australia fill categories: tags: --- ================================================ FILE: docs/content/icons/globe-asia-australia.md ================================================ --- title: Globe Asia Australia categories: - Geo tags: - geography - earth - world - map --- ================================================ FILE: docs/content/icons/globe-central-south-asia-fill.md ================================================ --- title: Globe Central South Asia fill categories: - Geo tags: - geography - earth - world - map --- ================================================ FILE: docs/content/icons/globe-central-south-asia.md ================================================ --- title: Globe Central South Asia categories: - Geo tags: - geography - earth - world - map added: 1.10.0 --- ================================================ FILE: docs/content/icons/globe-europe-africa-fill.md ================================================ --- title: Globe Europe Africa fill categories: - Geo tags: - geography - earth - world - map --- ================================================ FILE: docs/content/icons/globe-europe-africa.md ================================================ --- title: Globe Europe Africa categories: - Geo tags: - geography - earth - world - map added: 1.10.0 --- ================================================ FILE: docs/content/icons/globe.md ================================================ --- title: Globe categories: - Communications tags: - world - translate - global - international --- ================================================ FILE: docs/content/icons/globe2.md ================================================ --- title: Globe2 categories: - Communications tags: - world - translate - global - international --- ================================================ FILE: docs/content/icons/google-play.md ================================================ --- title: Google Play categories: - Brand tags: - "app store" - apps - store - android --- ================================================ FILE: docs/content/icons/google.md ================================================ --- title: Google categories: - Brand tags: - social - search --- ================================================ FILE: docs/content/icons/gpu-card.md ================================================ --- title: GPU card categories: - Devices tags: - video - output - graphics --- ================================================ FILE: docs/content/icons/graph-down-arrow.md ================================================ --- title: Graph down arrow categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/graph-down.md ================================================ --- title: Graph down categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/graph-up-arrow.md ================================================ --- title: Graph up arrow categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/graph-up.md ================================================ --- title: Graph up categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/grid-1x2-fill.md ================================================ --- title: Grid 1x2 fill categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-1x2.md ================================================ --- title: Grid 1x2 categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-3x2-gap-fill.md ================================================ --- title: Grid 3x2 gap fill categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-3x2-gap.md ================================================ --- title: Grid 3x2 gap categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-3x2.md ================================================ --- title: Grid 3x2 categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-3x3-gap-fill.md ================================================ --- title: Grid 3x3 gap fill categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-3x3-gap.md ================================================ --- title: Grid 3x3 gap categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-3x3.md ================================================ --- title: Grid 3x3 categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid-fill.md ================================================ --- title: Grid fill categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grid.md ================================================ --- title: Grid categories: - Layout tags: - grid - layout --- ================================================ FILE: docs/content/icons/grip-horizontal.md ================================================ --- title: Grip horizontal categories: - UI and keyboard tags: - drag - grab --- ================================================ FILE: docs/content/icons/grip-vertical.md ================================================ --- title: Grip vertical categories: - UI and keyboard tags: - drag - grab --- ================================================ FILE: docs/content/icons/h-circle-fill.md ================================================ --- title: H circle fill categories: - Shapes tags: - hospital - helicopter --- ================================================ FILE: docs/content/icons/h-circle.md ================================================ --- title: H circle categories: - Shapes tags: - hospital - helicopter --- ================================================ FILE: docs/content/icons/h-square-fill.md ================================================ --- title: H square fill categories: - Shapes tags: - hospital - helicopter --- ================================================ FILE: docs/content/icons/h-square.md ================================================ --- title: H square categories: - Shapes tags: - hospital - helicopter --- ================================================ FILE: docs/content/icons/hammer.md ================================================ --- title: Hammer categories: - Tools tags: - tool --- ================================================ FILE: docs/content/icons/hand-index-fill.md ================================================ --- title: Hand index fill categories: - Hands tags: - hand - pointer - cursor --- ================================================ FILE: docs/content/icons/hand-index-thumb-fill.md ================================================ --- title: Hand index thumb fill categories: - Hands tags: - hand - pointer - cursor --- ================================================ FILE: docs/content/icons/hand-index-thumb.md ================================================ --- title: Hand index thumb categories: - Hands tags: - hand - pointer - cursor --- ================================================ FILE: docs/content/icons/hand-index.md ================================================ --- title: Hand index categories: - Hands tags: - hand - pointer - cursor --- ================================================ FILE: docs/content/icons/hand-thumbs-down-fill.md ================================================ --- title: Hand thumbs down fill categories: - Hands tags: - hand - pointer - thumbs-down - "-1" --- ================================================ FILE: docs/content/icons/hand-thumbs-down.md ================================================ --- title: Hand thumbs down categories: - Hands tags: - hand - pointer - thumbs-down - "-1" --- ================================================ FILE: docs/content/icons/hand-thumbs-up-fill.md ================================================ --- title: Hand thumbs up fill categories: - Hands tags: - hand - pointer - like - okay - thumbs-up - "+1" --- ================================================ FILE: docs/content/icons/hand-thumbs-up.md ================================================ --- title: Hand thumbs up categories: - Hands tags: - hand - pointer - like - okay - thumbs-up - "+1" --- ================================================ FILE: docs/content/icons/handbag-fill.md ================================================ --- title: Handbag fill categories: - Real world tags: - purse - tote --- ================================================ FILE: docs/content/icons/handbag.md ================================================ --- title: Handbag categories: - Real world tags: - purse - tote --- ================================================ FILE: docs/content/icons/hash.md ================================================ --- title: Hash categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/hdd-fill.md ================================================ --- title: Hdd fill categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd-network-fill.md ================================================ --- title: Hdd network fill categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd-network.md ================================================ --- title: Hdd network categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd-rack-fill.md ================================================ --- title: Hdd rack fill categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd-rack.md ================================================ --- title: Hdd rack categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd-stack-fill.md ================================================ --- title: Hdd stack fill categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd-stack.md ================================================ --- title: Hdd stack categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdd.md ================================================ --- title: Hdd categories: - Devices tags: - "hard drive" - "hard disk" - ssd - drive - server --- ================================================ FILE: docs/content/icons/hdmi-fill.md ================================================ --- title: HDMI fill categories: - Devices tags: - video - input --- ================================================ FILE: docs/content/icons/hdmi.md ================================================ --- title: HDMI categories: - Devices tags: - video - input --- ================================================ FILE: docs/content/icons/headphones.md ================================================ --- title: Headphones categories: - Devices tags: - headphones --- ================================================ FILE: docs/content/icons/headset-vr.md ================================================ --- title: Headset VR categories: - Devices tags: - "virual reality" - oculus - hololens --- ================================================ FILE: docs/content/icons/headset.md ================================================ --- title: Headset categories: - Devices tags: - headphones - microphone --- ================================================ FILE: docs/content/icons/heart-arrow.md ================================================ --- title: Heart arrow categories: - Love tags: - romance - cupid - valentine --- ================================================ FILE: docs/content/icons/heart-fill.md ================================================ --- title: Heart fill categories: - Shapes tags: - love - favorite --- ================================================ FILE: docs/content/icons/heart-half.md ================================================ --- title: Heart half categories: - Shapes tags: - love - favorite --- ================================================ FILE: docs/content/icons/heart-pulse-fill.md ================================================ --- title: Heart pulse fill categories: - Medical tags: - heartbeat --- ================================================ FILE: docs/content/icons/heart-pulse.md ================================================ --- title: Heart pulse categories: - Medical tags: - heartbeat --- ================================================ FILE: docs/content/icons/heart.md ================================================ --- title: Heart categories: - Shapes tags: - love - favorite --- ================================================ FILE: docs/content/icons/heartbreak-fill.md ================================================ --- title: Heartbreak fill categories: - Emoji - Love tags: - love - valentine - romance --- ================================================ FILE: docs/content/icons/heartbreak.md ================================================ --- title: Heartbreak categories: - Emoji - Love tags: - love - valentine - romance --- ================================================ FILE: docs/content/icons/hearts.md ================================================ --- title: Hearts categories: - Love tags: - romance - valentine --- ================================================ FILE: docs/content/icons/heptagon-fill.md ================================================ --- title: Heptagon fill categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/heptagon-half.md ================================================ --- title: Heptagon half categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/heptagon.md ================================================ --- title: Heptagon categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/hexagon-fill.md ================================================ --- title: Hexagon fill categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/hexagon-half.md ================================================ --- title: Hexagon half categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/hexagon.md ================================================ --- title: Hexagon categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/highlighter.md ================================================ --- title: Highlighter categories: - Tools tags: - text - study - highlight - marker added: 1.11.0 --- ================================================ FILE: docs/content/icons/highlights.md ================================================ --- title: Highlights categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/hospital-fill.md ================================================ --- title: Hospital fill categories: - Medical tags: - health - "emergency room" --- ================================================ FILE: docs/content/icons/hospital.md ================================================ --- title: Hospital categories: - Medical tags: - health - "emergency room" --- ================================================ FILE: docs/content/icons/hourglass-bottom.md ================================================ --- title: Hourglass bottom categories: - Real world tags: - time - history - wait - sand - clock --- ================================================ FILE: docs/content/icons/hourglass-split.md ================================================ --- title: Hourglass split categories: - Real world tags: - time - history - wait - sand - clock --- ================================================ FILE: docs/content/icons/hourglass-top.md ================================================ --- title: Hourglass top categories: - Real world tags: - time - history - wait - sand - clock --- ================================================ FILE: docs/content/icons/hourglass.md ================================================ --- title: Hourglass categories: - Real world tags: - time - history - wait - sand - clock --- ================================================ FILE: docs/content/icons/house-add-fill.md ================================================ --- title: House add fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-add.md ================================================ --- title: House add categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-check-fill.md ================================================ --- title: House check fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-check.md ================================================ --- title: House check categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-dash-fill.md ================================================ --- title: House dash fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-dash.md ================================================ --- title: House dash categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-door-fill.md ================================================ --- title: House door fill categories: - Real world tags: - home --- ================================================ FILE: docs/content/icons/house-door.md ================================================ --- title: House door categories: - Real world tags: - home --- ================================================ FILE: docs/content/icons/house-down-fill.md ================================================ --- title: House down fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-down.md ================================================ --- title: House down categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-exclamation-fill.md ================================================ --- title: House exclamation fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-exclamation.md ================================================ --- title: House exclamation categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-fill.md ================================================ --- title: House fill categories: - Real world tags: - home --- ================================================ FILE: docs/content/icons/house-gear-fill.md ================================================ --- title: House gear fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-gear.md ================================================ --- title: House gear categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-heart-fill.md ================================================ --- title: House heart fill categories: - Real world tags: - home - love - romance --- ================================================ FILE: docs/content/icons/house-heart.md ================================================ --- title: House heart categories: - Real world tags: - home - love - romance --- ================================================ FILE: docs/content/icons/house-lock-fill.md ================================================ --- title: House lock fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-lock.md ================================================ --- title: House lock categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-slash-fill.md ================================================ --- title: House slash fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-slash.md ================================================ --- title: House slash categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-up-fill.md ================================================ --- title: House up fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-up.md ================================================ --- title: House up categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-x-fill.md ================================================ --- title: House x fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house-x.md ================================================ --- title: House x categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/house.md ================================================ --- title: House categories: - Real world tags: - home --- ================================================ FILE: docs/content/icons/houses-fill.md ================================================ --- title: Houses fill categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/houses.md ================================================ --- title: Houses categories: - Real world tags: - home added: 1.10.0 --- ================================================ FILE: docs/content/icons/hr.md ================================================ --- title: HR categories: - Typography tags: - divider - horizonal-rule --- ================================================ FILE: docs/content/icons/hurricane.md ================================================ --- title: Hurricane categories: - Weather tags: - storm --- ================================================ FILE: docs/content/icons/hypnotize.md ================================================ --- title: Hypnotize categories: - Real world tags: - hypnosis - sleepy --- ================================================ FILE: docs/content/icons/image-alt.md ================================================ --- title: Image alt categories: - Files and folders tags: - picture - photo --- ================================================ FILE: docs/content/icons/image-fill.md ================================================ --- title: Image fill categories: - Files and folders tags: - picture - photo --- ================================================ FILE: docs/content/icons/image.md ================================================ --- title: Image categories: - Files and folders tags: - picture - photo --- ================================================ FILE: docs/content/icons/images.md ================================================ --- title: Images categories: - Files and folders tags: - picture - photo --- ================================================ FILE: docs/content/icons/inbox-fill.md ================================================ --- title: Inbox fill categories: - Communications tags: - mail - email - letter tray --- ================================================ FILE: docs/content/icons/inbox.md ================================================ --- title: Inbox categories: - Communications tags: - mail - email - letter tray --- ================================================ FILE: docs/content/icons/inboxes-fill.md ================================================ --- title: Inboxes fill categories: - Communications tags: - mail - email - letter tray --- ================================================ FILE: docs/content/icons/inboxes.md ================================================ --- title: Inboxes fill categories: - Communications tags: - mail - email - letter tray --- ================================================ FILE: docs/content/icons/incognito.md ================================================ --- title: Incognito categories: - Miscellaneous tags: - private - investigator - secret --- ================================================ FILE: docs/content/icons/indent.md ================================================ --- title: Indent categories: - UI and Keyboard tags: - tab - indent --- ================================================ FILE: docs/content/icons/infinity.md ================================================ --- title: Infinity categories: - Typography tags: - math - infinite --- ================================================ FILE: docs/content/icons/info-circle-fill.md ================================================ --- title: Info fill categories: - Alerts, warnings, and signs tags: - information - help --- ================================================ FILE: docs/content/icons/info-circle.md ================================================ --- title: Info circle categories: - Alerts, warnings, and signs tags: - information - help --- ================================================ FILE: docs/content/icons/info-lg.md ================================================ --- title: Info lg categories: - Alerts, warnings, and signs tags: - information - help --- ================================================ FILE: docs/content/icons/info-square-fill.md ================================================ --- title: Info square fill categories: - Alerts, warnings, and signs tags: - information - help --- ================================================ FILE: docs/content/icons/info-square.md ================================================ --- title: Info square categories: - Alerts, warnings, and signs tags: - information - help --- ================================================ FILE: docs/content/icons/info.md ================================================ --- title: Info categories: - Alerts, warnings, and signs tags: - information - help --- ================================================ FILE: docs/content/icons/input-cursor-text.md ================================================ --- title: Input cursor text categories: - Graphics tags: - textarea - form - input --- ================================================ FILE: docs/content/icons/input-cursor.md ================================================ --- title: Input cursor categories: - Graphics tags: - textarea - form - input --- ================================================ FILE: docs/content/icons/instagram.md ================================================ --- title: Instagram categories: - Brand tags: - social - chat --- ================================================ FILE: docs/content/icons/intersect.md ================================================ --- title: Intersect categories: - Graphics tags: - graphics - vector - merge - layers --- ================================================ FILE: docs/content/icons/javascript.md ================================================ --- title: JavaScript categories: - Brand tags: - frontend - js - web --- ================================================ FILE: docs/content/icons/journal-album.md ================================================ --- title: Journal album categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-arrow-down.md ================================================ --- title: Journal arrow down categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-arrow-up.md ================================================ --- title: Journal arrow up categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-bookmark-fill.md ================================================ --- title: Journal bookmark fill categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-bookmark.md ================================================ --- title: Journal bookmark categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-check.md ================================================ --- title: Journal check categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-code.md ================================================ --- title: Journal code categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-medical.md ================================================ --- title: Journal medical categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-minus.md ================================================ --- title: Journal minus categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-plus.md ================================================ --- title: Journal plus categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-richtext.md ================================================ --- title: Journal richtext categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-text.md ================================================ --- title: Journal text categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journal-x.md ================================================ --- title: Journal x categories: - Files and folders tags: - file - folder - journal - notebook - remove - delete --- ================================================ FILE: docs/content/icons/journal.md ================================================ --- title: Journal categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/journals.md ================================================ --- title: Journals categories: - Files and folders tags: - file - folder - journal - notebook --- ================================================ FILE: docs/content/icons/joystick.md ================================================ --- title: Joystick categories: - Entertainment tags: - gaming - game - "video games" --- ================================================ FILE: docs/content/icons/justify-left.md ================================================ --- title: Justify left categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/justify-right.md ================================================ --- title: Justify right categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/justify.md ================================================ --- title: Justify categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/kanban-fill.md ================================================ --- title: Kanban fill categories: - Miscellaneous tags: - board - project-management --- ================================================ FILE: docs/content/icons/kanban.md ================================================ --- title: Kanban categories: - Miscellaneous tags: - board - project-management --- ================================================ FILE: docs/content/icons/key-fill.md ================================================ --- title: Key fill categories: - Real world tags: - lock - secure --- ================================================ FILE: docs/content/icons/key.md ================================================ --- title: Key categories: - Real world tags: - lock - secure --- ================================================ FILE: docs/content/icons/keyboard-fill.md ================================================ --- title: Keyboard fill categories: - Devices tags: - keyboard - keys - typing --- ================================================ FILE: docs/content/icons/keyboard.md ================================================ --- title: Keyboard categories: - Devices tags: - keyboard - keys - typing --- ================================================ FILE: docs/content/icons/ladder.md ================================================ --- title: Ladder categories: - Real world tags: - climb - ladder --- ================================================ FILE: docs/content/icons/lamp-fill.md ================================================ --- title: Lamp fill categories: - Real world tags: - light - lamp --- ================================================ FILE: docs/content/icons/lamp.md ================================================ --- title: Lamp categories: - Real world tags: - light - lamp --- ================================================ FILE: docs/content/icons/laptop-fill.md ================================================ --- title: Laptop fill categories: - Devices tags: - computer --- ================================================ FILE: docs/content/icons/laptop.md ================================================ --- title: Laptop categories: - Devices tags: - computer --- ================================================ FILE: docs/content/icons/layer-backward.md ================================================ --- title: Layer backward categories: - Graphics tags: - arrange - layers - back --- ================================================ FILE: docs/content/icons/layer-forward.md ================================================ --- title: Layer forward categories: - Graphics tags: - arrange - layers - front --- ================================================ FILE: docs/content/icons/layers-fill.md ================================================ --- title: Layers fill categories: - Graphics tags: - perspective - stacked --- ================================================ FILE: docs/content/icons/layers-half.md ================================================ --- title: Layers half categories: - Graphics tags: - perspective - stacked --- ================================================ FILE: docs/content/icons/layers.md ================================================ --- title: Layers categories: - Graphics tags: - perspective - stacked --- ================================================ FILE: docs/content/icons/layout-sidebar-inset-reverse.md ================================================ --- title: Layout sidebar inset reverse categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-sidebar-inset.md ================================================ --- title: Layout sidebar nested categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-sidebar-reverse.md ================================================ --- title: Layout sidebar reverse categories: - Layout tags: - grid - layout - sidebar --- ================================================ FILE: docs/content/icons/layout-sidebar.md ================================================ --- title: Layout sidebar categories: - Layout tags: - grid - layout - sidebar --- ================================================ FILE: docs/content/icons/layout-split.md ================================================ --- title: Layout split categories: - Layout tags: - grid - layout - sidebar --- ================================================ FILE: docs/content/icons/layout-text-sidebar-reverse.md ================================================ --- title: Layout text sidebar reverse categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-text-sidebar.md ================================================ --- title: Layout text sidebar categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-text-window-reverse.md ================================================ --- title: Layout text window reverse categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-text-window.md ================================================ --- title: Layout text window categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-three-columns.md ================================================ --- title: Layout three columns categories: - Layout tags: - layout - columns --- ================================================ FILE: docs/content/icons/layout-wtf.md ================================================ --- title: Layout WTF categories: - Layout tags: - layout - broken --- ================================================ FILE: docs/content/icons/leaf-fill.md ================================================ --- title: Leaf fill tags: - nature - science - eco - environment - green --- ================================================ FILE: docs/content/icons/leaf.md ================================================ --- title: Leaf categories: - Real world tags: - nature - science - eco - environment - green --- ================================================ FILE: docs/content/icons/life-preserver.md ================================================ --- title: Life preserver categories: - Real world tags: - lifesaver - water --- ================================================ FILE: docs/content/icons/lightbulb-fill.md ================================================ --- title: Lightbulb fill categories: - Real world tags: - lights - lamp --- ================================================ FILE: docs/content/icons/lightbulb-off-fill.md ================================================ --- title: Lightbulb off fill categories: - Real world tags: - lights - lamp --- ================================================ FILE: docs/content/icons/lightbulb-off.md ================================================ --- title: Lightbulb off categories: - Real world tags: - lights - lamp --- ================================================ FILE: docs/content/icons/lightbulb.md ================================================ --- title: Lightbulb categories: - Real world tags: - lights - lamp --- ================================================ FILE: docs/content/icons/lightning-charge-fill.md ================================================ --- title: Lightning charge fill categories: - Miscellaneous tags: - weather - storm - thunder - bolt --- ================================================ FILE: docs/content/icons/lightning-charge.md ================================================ --- title: Lightning charge categories: - Miscellaneous tags: - weather - storm - thunder - bolt --- ================================================ FILE: docs/content/icons/lightning-fill.md ================================================ --- title: Lightning fill categories: - Weather tags: - storm - thunder - bolt --- ================================================ FILE: docs/content/icons/lightning.md ================================================ --- title: Lightning categories: - Weather tags: - storm - thunder - bolt --- ================================================ FILE: docs/content/icons/line.md ================================================ --- title: Line categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/link-45deg.md ================================================ --- title: Link 45deg categories: - UI and keyboard tags: - anchor - hyperlink - href --- ================================================ FILE: docs/content/icons/link.md ================================================ --- title: Link categories: - UI and keyboard tags: - anchor - hyperlink - href --- ================================================ FILE: docs/content/icons/linkedin.md ================================================ --- title: Linkedin categories: - Brand tags: - social - microsoft --- ================================================ FILE: docs/content/icons/list-check.md ================================================ --- title: List checked categories: - Typography tags: - text - type - justify - alignment - checklist - done --- ================================================ FILE: docs/content/icons/list-columns-reverse.md ================================================ --- title: List columns reverse categories: - Typography tags: - text - type - alignment --- ================================================ FILE: docs/content/icons/list-columns.md ================================================ --- title: List columns categories: - Typography tags: - text - type - alignment --- ================================================ FILE: docs/content/icons/list-nested.md ================================================ --- title: List nested categories: - Typography tags: - text - type - alignment - children --- ================================================ FILE: docs/content/icons/list-ol.md ================================================ --- title: List OL categories: - Typography tags: - text - type - justify - alignment - ordered-list - numbered-list - numbered --- ================================================ FILE: docs/content/icons/list-stars.md ================================================ --- title: List stars categories: - Typography tags: - text - type - starred --- ================================================ FILE: docs/content/icons/list-task.md ================================================ --- title: List task categories: - Typography tags: - text - type - justify - alignment - todos - task --- ================================================ FILE: docs/content/icons/list-ul.md ================================================ --- title: List UL categories: - Typography tags: - text - type - justify - alignment - unordered-list --- ================================================ FILE: docs/content/icons/list.md ================================================ --- title: List categories: - Typography tags: - text - type - justify - alignment - menu - hamburger --- ================================================ FILE: docs/content/icons/lock-fill.md ================================================ --- title: Lock fill categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/lock.md ================================================ --- title: Lock categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/luggage-fill.md ================================================ --- title: Luggage fill categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/luggage.md ================================================ --- title: Luggage categories: - Travel tags: - luggage - bags - carry-on - student - education added: 1.11.0 --- ================================================ FILE: docs/content/icons/lungs-fill.md ================================================ --- title: Lungs fill categories: - Medical tags: - medicine - health - breathing --- ================================================ FILE: docs/content/icons/lungs.md ================================================ --- title: Lungs categories: - Medical tags: - medicine - health - breathing --- ================================================ FILE: docs/content/icons/magic.md ================================================ --- title: Magic categories: - Real world tags: - "magic stick" --- ================================================ FILE: docs/content/icons/magnet-fill.md ================================================ --- title: Magnet fill categories: - Real world tags: - magnetic --- ================================================ FILE: docs/content/icons/magnet.md ================================================ --- title: Magnet categories: - Real world tags: - magnetic --- ================================================ FILE: docs/content/icons/mailbox-flag.md ================================================ --- title: Mailbox flag categories: - Real world tags: - post - postal - postbox - letterbox --- ================================================ FILE: docs/content/icons/mailbox.md ================================================ --- title: Mailbox categories: - Real world tags: - post - postal - postbox - letterbox --- ================================================ FILE: docs/content/icons/mailbox2-flag.md ================================================ --- title: Mailbox2 flag categories: - Real world tags: - post - postal - postbox - letterbox --- ================================================ FILE: docs/content/icons/mailbox2.md ================================================ --- title: Mailbox2 categories: - Real world tags: - post - postal - postbox - letterbox --- ================================================ FILE: docs/content/icons/map-fill.md ================================================ --- title: Map fill categories: - Geo tags: - geography - directions - location --- ================================================ FILE: docs/content/icons/map.md ================================================ --- title: Map categories: - Geo tags: - geography - directions - location --- ================================================ FILE: docs/content/icons/markdown-fill.md ================================================ --- title: Markdown fill categories: - Badges tags: - markdown - md - content - writing --- ================================================ FILE: docs/content/icons/markdown.md ================================================ --- title: Markdown categories: - Badges tags: - markdown - md - content - writing --- ================================================ FILE: docs/content/icons/marker-tip.md ================================================ --- title: Marker tip categories: - Tools tags: - text - study - highlight added: 1.11.0 --- ================================================ FILE: docs/content/icons/mask.md ================================================ --- title: Mask categories: - Graphics tags: - mask --- ================================================ FILE: docs/content/icons/mastodon.md ================================================ --- title: Mastodon categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/measuring-cup-fill.md ================================================ --- title: Measuring cup fill categories: - Real world tags: - baking - cooking - measure --- ================================================ FILE: docs/content/icons/measuring-cup.md ================================================ --- title: Measuring cup categories: - Real world tags: - baking - cooking - measure --- ================================================ FILE: docs/content/icons/medium.md ================================================ --- title: Medium categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/megaphone-fill.md ================================================ --- title: Megaphone fill categories: - Real world tags: - loudspeaker - announcement --- ================================================ FILE: docs/content/icons/megaphone.md ================================================ --- title: Megaphone categories: - Real world tags: - loudspeaker - announcement --- ================================================ FILE: docs/content/icons/memory.md ================================================ --- title: Memory categories: - Devices tags: - ram --- ================================================ FILE: docs/content/icons/menu-app-fill.md ================================================ --- title: Menu app fill categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-app.md ================================================ --- title: Menu app categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-button-fill.md ================================================ --- title: Menu button fill categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-button-wide-fill.md ================================================ --- title: Menu button wide fill categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-button-wide.md ================================================ --- title: Menu button wide categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-button.md ================================================ --- title: Menu button categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-down.md ================================================ --- title: Menu down categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/menu-up.md ================================================ --- title: Menu up categories: - Controls tags: - dropdown - menu - context - app - ui --- ================================================ FILE: docs/content/icons/messenger.md ================================================ --- title: Messenger categories: - Brand tags: - social - facebook - chat --- ================================================ FILE: docs/content/icons/meta.md ================================================ --- title: Meta categories: - Brand tags: - facebook - fb --- ================================================ FILE: docs/content/icons/mic-fill.md ================================================ --- title: Mic fill categories: - Media tags: - audio - video - av - sound - input - microphone - podcast --- ================================================ FILE: docs/content/icons/mic-mute-fill.md ================================================ --- title: Mic mute fill categories: - Media tags: - audio - video - av - sound - input - microphone --- ================================================ FILE: docs/content/icons/mic-mute.md ================================================ --- title: Mic mute categories: - Media tags: - audio - video - av - sound - input - microphone --- ================================================ FILE: docs/content/icons/mic.md ================================================ --- title: Mic categories: - Media tags: - audio - video - av - sound - input - microphone - podcast --- ================================================ FILE: docs/content/icons/microsoft-teams.md ================================================ --- title: Microsoft Teams categories: - Brand tags: - social - messaging --- ================================================ FILE: docs/content/icons/microsoft.md ================================================ --- title: Microsoft categories: - Brand tags: - msft - windows --- ================================================ FILE: docs/content/icons/minecart-loaded.md ================================================ --- title: Minecart loaded categories: - Real world tags: - mining - cart --- ================================================ FILE: docs/content/icons/minecart.md ================================================ --- title: Minecart categories: - Real world tags: - mining - cart --- ================================================ FILE: docs/content/icons/modem-fill.md ================================================ --- title: Modem fill categories: - Devices tags: - internet - cable --- ================================================ FILE: docs/content/icons/modem.md ================================================ --- title: Modem categories: - Devices tags: - internet - cable --- ================================================ FILE: docs/content/icons/moisture.md ================================================ --- title: Moisture categories: - Weather tags: - water - droplets - humidity --- ================================================ FILE: docs/content/icons/moon-fill.md ================================================ --- title: Moon fill categories: - Weather tags: - night - sky --- ================================================ FILE: docs/content/icons/moon-stars-fill.md ================================================ --- title: Moon stars fill categories: - Weather tags: - night - sky --- ================================================ FILE: docs/content/icons/moon-stars.md ================================================ --- title: Moon stars categories: - Weather tags: - night - sky --- ================================================ FILE: docs/content/icons/moon.md ================================================ --- title: Moon categories: - Real world tags: - lunar - weather - night --- ================================================ FILE: docs/content/icons/mortarboard-fill.md ================================================ --- title: Mortarboard fill categories: - Real world tags: - graduation - cap aliases: - /icons/mortorboard-fill/ --- ================================================ FILE: docs/content/icons/mortarboard.md ================================================ --- title: Mortarboard categories: - Real world tags: - graduation - cap aliases: - /icons/mortorboard/ --- ================================================ FILE: docs/content/icons/motherboard-fill.md ================================================ --- title: Motherboard fill categories: - Devices tags: - mobo - computer - hardware --- ================================================ FILE: docs/content/icons/motherboard.md ================================================ --- title: Motherboard categories: - Devices tags: - mobo - computer - hardware --- ================================================ FILE: docs/content/icons/mouse-fill.md ================================================ --- title: Mouse fill categories: - Devices tags: - mice - input --- ================================================ FILE: docs/content/icons/mouse.md ================================================ --- title: Mouse categories: - Devices tags: - mice - input --- ================================================ FILE: docs/content/icons/mouse2-fill.md ================================================ --- title: Mouse2 fill categories: - Devices tags: - mice - input --- ================================================ FILE: docs/content/icons/mouse2.md ================================================ --- title: Mouse2 categories: - Devices tags: - mice - input --- ================================================ FILE: docs/content/icons/mouse3-fill.md ================================================ --- title: Mouse3 fill categories: - Devices tags: - mice - input --- ================================================ FILE: docs/content/icons/mouse3.md ================================================ --- title: Mouse3 categories: - Devices tags: - mice - input --- ================================================ FILE: docs/content/icons/music-note-beamed.md ================================================ --- title: Music note beamed categories: - Media tags: - music - notes - audio - sound --- ================================================ FILE: docs/content/icons/music-note-list.md ================================================ --- title: Music note list categories: - Media tags: - music - notes - audio - sound - playlist - library --- ================================================ FILE: docs/content/icons/music-note.md ================================================ --- title: Music note categories: - Media tags: - music - notes - audio - sound --- ================================================ FILE: docs/content/icons/music-player-fill.md ================================================ --- title: Music player fill categories: - Devices tags: - ipod - mp3 --- ================================================ FILE: docs/content/icons/music-player.md ================================================ --- title: Music player categories: - Devices tags: - ipod - mp3 --- ================================================ FILE: docs/content/icons/newspaper.md ================================================ --- title: Newspaper categories: - Real world tags: - news - paper --- ================================================ FILE: docs/content/icons/nintendo-switch.md ================================================ --- title: Nintendo Switch categories: - Brand tags: - gaming --- ================================================ FILE: docs/content/icons/node-minus-fill.md ================================================ --- title: Node minus fill categories: - Graphics tags: - add - new - node - diagram --- ================================================ FILE: docs/content/icons/node-minus.md ================================================ --- title: Node minus categories: - Graphics tags: - add - new - node - diagram --- ================================================ FILE: docs/content/icons/node-plus-fill.md ================================================ --- title: Node plus fill categories: - Graphics tags: - add - new - node - diagram --- ================================================ FILE: docs/content/icons/node-plus.md ================================================ --- title: Node plus categories: - Graphics tags: - add - new - node - diagram --- ================================================ FILE: docs/content/icons/noise-reduction.md ================================================ --- title: Noise reduction categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/nut-fill.md ================================================ --- title: Nut fill categories: - Tools tags: - nut - bolt - hexagon - tools --- ================================================ FILE: docs/content/icons/nut.md ================================================ --- title: Nut categories: - Tools tags: - nut - bolt - hexagon - tools --- ================================================ FILE: docs/content/icons/nvidia.md ================================================ --- title: Nvidia categories: - Brand tags: - gpu added: 1.10.0 --- ================================================ FILE: docs/content/icons/nvme-fill.md ================================================ --- title: Nvme fill categories: - Devices tags: - ssd - "hard drive" - "hard disk" - storage added: 1.11.0 --- ================================================ FILE: docs/content/icons/nvme.md ================================================ --- title: Nvme categories: - Devices tags: - ssd - "hard drive" - "hard disk" - storage added: 1.11.0 --- ================================================ FILE: docs/content/icons/octagon-fill.md ================================================ --- title: Octagon fill categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/octagon-half.md ================================================ --- title: Octagon half categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/octagon.md ================================================ --- title: Octagon categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/openai.md ================================================ --- title: OpenAI categories: - Brand tags: - ai - chatgpt - agent - "artificial intelligence" --- ================================================ FILE: docs/content/icons/opencollective.md ================================================ --- title: Opencollective categories: - Brand tags: - social added: 1.11.0 --- ================================================ FILE: docs/content/icons/optical-audio-fill.md ================================================ --- title: Optical audio fill categories: - Devices tags: - port - plug - sound --- ================================================ FILE: docs/content/icons/optical-audio.md ================================================ --- title: Optical audio categories: - Devices tags: - port - plug - sound --- ================================================ FILE: docs/content/icons/option.md ================================================ --- title: Option categories: - UI and keyboard tags: - key - mac --- ================================================ FILE: docs/content/icons/outlet.md ================================================ --- title: Outlet categories: - Real world tags: - plug - power --- ================================================ FILE: docs/content/icons/p-circle-fill.md ================================================ --- title: P circle fill categories: - Shapes tags: - parking --- ================================================ FILE: docs/content/icons/p-circle.md ================================================ --- title: P circle categories: - Shapes tags: - parking --- ================================================ FILE: docs/content/icons/p-square-fill.md ================================================ --- title: P square fill categories: - Shapes tags: - parking --- ================================================ FILE: docs/content/icons/p-square.md ================================================ --- title: P square categories: - Shapes tags: - parking --- ================================================ FILE: docs/content/icons/paint-bucket.md ================================================ --- title: Paint bucket categories: - Graphics tags: - color - paint - fill - palette - color --- ================================================ FILE: docs/content/icons/palette-fill.md ================================================ --- title: Palette fill categories: - Graphics tags: - color - paint - fill - palette - colour --- ================================================ FILE: docs/content/icons/palette.md ================================================ --- title: Palette categories: - Graphics tags: - color - paint - fill - palette - colour --- ================================================ FILE: docs/content/icons/palette2.md ================================================ --- title: Palette2 categories: - Graphics tags: - color - paint - fill - palette - colour --- ================================================ FILE: docs/content/icons/paperclip.md ================================================ --- title: Paperclip categories: - Real world tags: - attachment --- ================================================ FILE: docs/content/icons/paragraph.md ================================================ --- title: Paragraph categories: - Typography tags: - paragraph - text - body - content --- ================================================ FILE: docs/content/icons/pass-fill.md ================================================ --- title: Pass fill categories: - Real world tags: - pass --- ================================================ FILE: docs/content/icons/pass.md ================================================ --- title: Pass categories: - Real world tags: - pass --- ================================================ FILE: docs/content/icons/passport-fill.md ================================================ --- title: Passport fill categories: - Travel tags: - visa - foreign added: 1.11.0 --- ================================================ FILE: docs/content/icons/passport.md ================================================ --- title: Passport categories: - Travel tags: - visa - foreign added: 1.11.0 --- ================================================ FILE: docs/content/icons/patch-check-fill.md ================================================ --- title: Patch check fill categories: - Badges tags: - verified - checkmark - certified aliases: - /icons/patch-check-fll/ --- ================================================ FILE: docs/content/icons/patch-check.md ================================================ --- title: Patch check categories: - Badges tags: - verified - checkmark - certified --- ================================================ FILE: docs/content/icons/patch-exclamation-fill.md ================================================ --- title: Patch exclamation fill categories: - Badges tags: - excited - certified aliases: - /icons/patch-exclamation-fll/ --- ================================================ FILE: docs/content/icons/patch-exclamation.md ================================================ --- title: Patch exclamation categories: - Badges tags: - excited - certified --- ================================================ FILE: docs/content/icons/patch-minus-fill.md ================================================ --- title: Patch minus fill categories: - Badges tags: - subtract aliases: - /icons/patch-minus-fll/ --- ================================================ FILE: docs/content/icons/patch-minus.md ================================================ --- title: Patch minus categories: - Badges tags: - subtract --- ================================================ FILE: docs/content/icons/patch-plus-fill.md ================================================ --- title: Patch plus fill categories: - Badges tags: - add aliases: - /icons/patch-plus-fll/ --- ================================================ FILE: docs/content/icons/patch-plus.md ================================================ --- title: Patch plus categories: - Badges tags: - add --- ================================================ FILE: docs/content/icons/patch-question-fill.md ================================================ --- title: Patch question fill categories: - Badges tags: - help - unknown aliases: - /icons/patch-question-fll/ --- ================================================ FILE: docs/content/icons/patch-question.md ================================================ --- title: Patch question categories: - Badges tags: - help - unknown --- ================================================ FILE: docs/content/icons/pause-btn-fill.md ================================================ --- title: Pause btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/pause-btn.md ================================================ --- title: Pause btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/pause-circle-fill.md ================================================ --- title: Pause circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/pause-circle.md ================================================ --- title: Pause circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/pause-fill.md ================================================ --- title: Pause fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/pause.md ================================================ --- title: Pause categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/paypal.md ================================================ --- title: Paypal categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/pc-display-horizontal.md ================================================ --- title: PC display horizontal categories: - Devices tags: - computer - workstation - desktop --- ================================================ FILE: docs/content/icons/pc-display.md ================================================ --- title: PC display categories: - Devices tags: - computer - workstation - desktop --- ================================================ FILE: docs/content/icons/pc-horizontal.md ================================================ --- title: PC horizontal categories: - Devices tags: - computer - workstation - desktop --- ================================================ FILE: docs/content/icons/pc.md ================================================ --- title: PC categories: - Devices tags: - computer - workstation - desktop --- ================================================ FILE: docs/content/icons/pci-card-network.md ================================================ --- title: PCI card network categories: - Devices tags: - card - expansion - ethernet - wifi - internet added: 1.11.0 --- ================================================ FILE: docs/content/icons/pci-card-sound.md ================================================ --- title: PCI card sound categories: - Devices tags: - card - expansion - audio added: 1.11.0 --- ================================================ FILE: docs/content/icons/pci-card.md ================================================ --- title: PCI card categories: - Devices tags: - card - expansion --- ================================================ FILE: docs/content/icons/peace-fill.md ================================================ --- title: Peace fill categories: - Miscellaneous tags: - peace - love --- ================================================ FILE: docs/content/icons/peace.md ================================================ --- title: Peace categories: - Miscellaneous tags: - peace - love --- ================================================ FILE: docs/content/icons/pen-fill.md ================================================ --- title: Pen fill categories: - Tools tags: - edit - write - ballpoint --- ================================================ FILE: docs/content/icons/pen.md ================================================ --- title: Pen categories: - Tools tags: - edit - write - ballpoint --- ================================================ FILE: docs/content/icons/pencil-fill.md ================================================ --- title: Pencil fill categories: - Tools tags: - edit - write --- ================================================ FILE: docs/content/icons/pencil-square.md ================================================ --- title: Pencil square categories: - Tools tags: - edit - write --- ================================================ FILE: docs/content/icons/pencil.md ================================================ --- title: Pencil categories: - Tools tags: - edit - write --- ================================================ FILE: docs/content/icons/pentagon-fill.md ================================================ --- title: Pentagon fill categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/pentagon-half.md ================================================ --- title: Pentagon half categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/pentagon.md ================================================ --- title: Pentagon categories: - Shapes tags: - shape - polygon --- ================================================ FILE: docs/content/icons/people-fill.md ================================================ --- title: People fill categories: - People tags: - member - humans - organization - avatar - users - profile --- ================================================ FILE: docs/content/icons/people.md ================================================ --- title: People categories: - People tags: - member - humans - organization - avatar - users - profile --- ================================================ FILE: docs/content/icons/percent.md ================================================ --- title: Percent categories: - Typography tags: - percentage - math - fraction --- ================================================ FILE: docs/content/icons/perplexity.md ================================================ --- title: Perplexity categories: - Brand tags: - ai - agent - "artificial intelligence" --- ================================================ FILE: docs/content/icons/person-add.md ================================================ --- title: Person add categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-arms-up.md ================================================ --- title: Person arms up categories: - People tags: - human - man - woman added: 1.11.0 --- ================================================ FILE: docs/content/icons/person-badge-fill.md ================================================ --- title: Person badge fill categories: - People tags: - member - human - individual - avatar - user - badge - id - card - account --- ================================================ FILE: docs/content/icons/person-badge.md ================================================ --- title: Person badge categories: - People tags: - member - human - individual - avatar - user - badge - id - card - account - profile --- ================================================ FILE: docs/content/icons/person-bounding-box.md ================================================ --- title: Person bounding box categories: - People tags: - member - human - individual - avatar - user - crop - account - profile --- ================================================ FILE: docs/content/icons/person-check-fill.md ================================================ --- title: Person check fill categories: - People tags: - member - human - individual - avatar - user - verified - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-check.md ================================================ --- title: Person check categories: - People tags: - member - human - individual - avatar - user - verified - account - profile added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-circle.md ================================================ --- title: People circle categories: - People tags: - member - humans - organization - avatar - user - account - profile --- ================================================ FILE: docs/content/icons/person-dash-fill.md ================================================ --- title: Person dash fill categories: - People tags: - member - human - individual - avatar - user - remove - delete - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-dash.md ================================================ --- title: Person dash categories: - People tags: - member - human - individual - avatar - user - remove - delete - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-down.md ================================================ --- title: Person down categories: - People tags: - member - human - individual - avatar - user - account --- ================================================ FILE: docs/content/icons/person-exclamation.md ================================================ --- title: Person exclamation categories: - People tags: - member - human - individual - avatar - user - account --- ================================================ FILE: docs/content/icons/person-fill-add.md ================================================ --- title: Person fill add categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-check.md ================================================ --- title: Person fill check categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-dash.md ================================================ --- title: Person fill dash categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-down.md ================================================ --- title: Person fill down categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-exclamation.md ================================================ --- title: Person fill exclamation categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-gear.md ================================================ --- title: Person fill gear categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-lock.md ================================================ --- title: Person fill lock categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-slash.md ================================================ --- title: Person fill slash categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-up.md ================================================ --- title: Person fill up categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill-x.md ================================================ --- title: Person fill x categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-fill.md ================================================ --- title: Person fill categories: - People tags: - member - human - individual - avatar - user - account - profile --- ================================================ FILE: docs/content/icons/person-gear.md ================================================ --- title: Person gear categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-heart.md ================================================ --- title: Person heart categories: - People tags: - member - human - individual - avatar - user - account - love - valentine - romance --- ================================================ FILE: docs/content/icons/person-hearts.md ================================================ --- title: Person hearts categories: - People tags: - member - human - individual - avatar - user - account - love - valentine - romance --- ================================================ FILE: docs/content/icons/person-lines-fill.md ================================================ --- title: Person lines fill categories: - People tags: - member - human - individual - avatar - user - contact - list - account - profile --- ================================================ FILE: docs/content/icons/person-lock.md ================================================ --- title: Person lock categories: - People tags: - member - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-plus-fill.md ================================================ --- title: Person plus fill categories: - People tags: - member - human - individual - avatar - user - new - add - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-plus.md ================================================ --- title: Person plus categories: - People tags: - member - human - individual - avatar - user - new - add - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-raised-hand.md ================================================ --- title: Person raised hand categories: - People tags: - human - man - woman - question - help added: 1.11.0 --- ================================================ FILE: docs/content/icons/person-rolodex.md ================================================ --- title: Person rolodex categories: - People tags: - member - human - individual - avatar - user - account - contact --- ================================================ FILE: docs/content/icons/person-slash.md ================================================ --- title: Person slash categories: - People tags: - member - human - individual - avatar - user - account --- ================================================ FILE: docs/content/icons/person-square.md ================================================ --- title: Person square categories: - People tags: - member - human - individual - avatar - user - account - profile --- ================================================ FILE: docs/content/icons/person-standing-dress.md ================================================ --- title: Person standing dress categories: - People tags: - human - man - woman added: 1.11.0 --- ================================================ FILE: docs/content/icons/person-standing.md ================================================ --- title: Person standing categories: - People tags: - human - man - woman added: 1.11.0 --- ================================================ FILE: docs/content/icons/person-up.md ================================================ --- title: Person up categories: - People tags: - member - human - individual - avatar - user - account --- ================================================ FILE: docs/content/icons/person-vcard-fill.md ================================================ --- title: Person vcard fill categories: - People tags: - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-vcard.md ================================================ --- title: Person vcard categories: - People tags: - human - individual - avatar - user - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-video.md ================================================ --- title: Person video categories: - People tags: - human - individual - avatar - user - wfh --- ================================================ FILE: docs/content/icons/person-video2.md ================================================ --- title: Person video2 categories: - People tags: - human - individual - avatar - user - wfh --- ================================================ FILE: docs/content/icons/person-video3.md ================================================ --- title: Person video3 categories: - People tags: - human - individual - avatar - user - wfh --- ================================================ FILE: docs/content/icons/person-walking.md ================================================ --- title: Person walking categories: - People tags: - human - man - woman added: 1.11.0 --- ================================================ FILE: docs/content/icons/person-wheelchair.md ================================================ --- title: Person wheelchair categories: - People tags: - human - man - woman - accessibility - a11y - handicap added: 1.11.0 --- ================================================ FILE: docs/content/icons/person-workspace.md ================================================ --- title: Person workspace categories: - People tags: - human - individual - avatar - user - wfh --- ================================================ FILE: docs/content/icons/person-x-fill.md ================================================ --- title: Person x fill categories: - People tags: - member - human - individual - avatar - user - remove - delete - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person-x.md ================================================ --- title: Person x categories: - People tags: - member - human - individual - avatar - user - remove - delete - account added: 1.10.0 --- ================================================ FILE: docs/content/icons/person.md ================================================ --- title: Person categories: - People tags: - member - human - individual - avatar - user - account - profile --- ================================================ FILE: docs/content/icons/phone-fill.md ================================================ --- title: Phone fill categories: - Devices tags: - mobile - telephone --- ================================================ FILE: docs/content/icons/phone-flip.md ================================================ --- title: Phone flip categories: - Devices tags: - mobile - telephone --- ================================================ FILE: docs/content/icons/phone-landscape-fill.md ================================================ --- title: Phone landscape fill categories: - Devices tags: - mobile - telephone --- ================================================ FILE: docs/content/icons/phone-landscape.md ================================================ --- title: Phone landscape categories: - Devices tags: - mobile - telephone --- ================================================ FILE: docs/content/icons/phone-vibrate-fill.md ================================================ --- title: Phone vibrate fill categories: - Devices tags: - mobile - telephone - haptic --- ================================================ FILE: docs/content/icons/phone-vibrate.md ================================================ --- title: Phone vibrate categories: - Devices tags: - mobile - telephone - haptic --- ================================================ FILE: docs/content/icons/phone.md ================================================ --- title: Phone categories: - Devices tags: - mobile - telephone --- ================================================ FILE: docs/content/icons/pie-chart-fill.md ================================================ --- title: Pie chart fill categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/pie-chart.md ================================================ --- title: Pie chart categories: - Data tags: - chart - graph - analytics --- ================================================ FILE: docs/content/icons/piggy-bank-fill.md ================================================ --- title: Piggy bank fill categories: - Commerce tags: - money - finance - banking - savings --- ================================================ FILE: docs/content/icons/piggy-bank.md ================================================ --- title: Piggy bank categories: - Commerce tags: - money - finance - banking - savings --- ================================================ FILE: docs/content/icons/pin-angle-fill.md ================================================ --- title: Pin angle fill categories: - Real world tags: - pushpin - thumbtack --- ================================================ FILE: docs/content/icons/pin-angle.md ================================================ --- title: Pin angle categories: - Real world tags: - pushpin - thumbtack --- ================================================ FILE: docs/content/icons/pin-fill.md ================================================ --- title: Pin fill categories: - Real world tags: - pushpin - thumbtack --- ================================================ FILE: docs/content/icons/pin-map-fill.md ================================================ --- title: Pin map fill categories: - Geo tags: - geography - map - pin - location --- ================================================ FILE: docs/content/icons/pin-map.md ================================================ --- title: Pin map categories: - Geo tags: - geography - map - pin - location --- ================================================ FILE: docs/content/icons/pin.md ================================================ --- title: Pin categories: - Real world tags: - pushpin - thumbtack --- ================================================ FILE: docs/content/icons/pinterest.md ================================================ --- title: Pinterest categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/pip-fill.md ================================================ --- title: Pip fill categories: - Media tags: - picture - tv - television - display - nested --- ================================================ FILE: docs/content/icons/pip.md ================================================ --- title: Pip categories: - Media tags: - picture - tv - television - display - nested --- ================================================ FILE: docs/content/icons/play-btn-fill.md ================================================ --- title: Play btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/play-btn.md ================================================ --- title: Play btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/play-circle-fill.md ================================================ --- title: Play circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/play-circle.md ================================================ --- title: Play circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/play-fill.md ================================================ --- title: Play fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/play.md ================================================ --- title: Play categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/playstation.md ================================================ --- title: Playstation categories: - Brand tags: - sony - gaming --- ================================================ FILE: docs/content/icons/plug-fill.md ================================================ --- title: Plug fill categories: - Real world tags: - power - outlet --- ================================================ FILE: docs/content/icons/plug.md ================================================ --- title: Plug categories: - Real world tags: - power - outlet --- ================================================ FILE: docs/content/icons/plugin.md ================================================ --- title: Plugin categories: - UI and Keyboard tags: - addon - software --- ================================================ FILE: docs/content/icons/plus-circle-dotted.md ================================================ --- title: Plus circle dotted categories: - Alerts, warnings, and signs tags: - add - new --- ================================================ FILE: docs/content/icons/plus-circle-fill.md ================================================ --- title: Plus circle fill categories: - Alerts, warnings, and signs tags: - add - new --- ================================================ FILE: docs/content/icons/plus-circle.md ================================================ --- title: Plus circle categories: - Alerts, warnings, and signs tags: - add - new --- ================================================ FILE: docs/content/icons/plus-lg.md ================================================ --- title: Plus lg categories: - Alerts, warnings, and signs tags: - add - new - math --- ================================================ FILE: docs/content/icons/plus-slash-minus.md ================================================ --- title: Plus slash minus categories: - Typography tags: - difference - add - subtract - math --- ================================================ FILE: docs/content/icons/plus-square-dotted.md ================================================ --- title: Plus square dotted categories: - Alerts, warnings, and signs tags: - add - new --- ================================================ FILE: docs/content/icons/plus-square-fill.md ================================================ --- title: Plus square fill categories: - Alerts, warnings, and signs tags: - add - new --- ================================================ FILE: docs/content/icons/plus-square.md ================================================ --- title: Plus square categories: - Alerts, warnings, and signs tags: - add - new --- ================================================ FILE: docs/content/icons/plus.md ================================================ --- title: Plus categories: - Alerts, warnings, and signs tags: - add - new - math --- ================================================ FILE: docs/content/icons/postage-fill.md ================================================ --- title: Postage fill categories: - Real world tags: - mail - stamp - shipping --- ================================================ FILE: docs/content/icons/postage-heart-fill.md ================================================ --- title: Postage heart fill categories: - Real world - Love tags: - mail - stamp - love - valentine - romance --- ================================================ FILE: docs/content/icons/postage-heart.md ================================================ --- title: Postage heart categories: - Real world - Love tags: - mail - stamp - love - valentine - romance --- ================================================ FILE: docs/content/icons/postage.md ================================================ --- title: Postage categories: - Real world tags: - stamp - shipping --- ================================================ FILE: docs/content/icons/postcard-fill.md ================================================ --- title: Postcard fill categories: - Real world tags: - mail - letter --- ================================================ FILE: docs/content/icons/postcard-heart-fill.md ================================================ --- title: Postcard heart fill categories: - Real world - Love tags: - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/postcard-heart.md ================================================ --- title: Postcard heart categories: - Real world - Love tags: - mail - letter - love - valentine - romance --- ================================================ FILE: docs/content/icons/postcard.md ================================================ --- title: Postcard categories: - Real world tags: - mail - letter --- ================================================ FILE: docs/content/icons/power.md ================================================ --- title: Power categories: - UI and keyboard tags: - off - on --- ================================================ FILE: docs/content/icons/prescription.md ================================================ --- title: Prescription categories: - Medical tags: - rx - pills - capsules - medicine --- ================================================ FILE: docs/content/icons/prescription2.md ================================================ --- title: Prescription2 categories: - Medical tags: - rx - pills - capsules - medicine --- ================================================ FILE: docs/content/icons/printer-fill.md ================================================ --- title: Printer fill categories: - Devices tags: - print --- ================================================ FILE: docs/content/icons/printer.md ================================================ --- title: Printer categories: - Devices tags: - print --- ================================================ FILE: docs/content/icons/projector-fill.md ================================================ --- title: Projector fill categories: - Devices tags: - projection - present - screen --- ================================================ FILE: docs/content/icons/projector.md ================================================ --- title: Projector categories: - Devices tags: - projection - present - screen --- ================================================ FILE: docs/content/icons/puzzle-fill.md ================================================ --- title: Puzzle fill categories: - Miscellaneous tags: - puzzle - piece --- ================================================ FILE: docs/content/icons/puzzle.md ================================================ --- title: Puzzle categories: - Miscellaneous tags: - puzzle - piece --- ================================================ FILE: docs/content/icons/qr-code-scan.md ================================================ --- title: QR code scan categories: - Communications tags: - scan --- ================================================ FILE: docs/content/icons/qr-code.md ================================================ --- title: QR code categories: - Communications tags: - scan --- ================================================ FILE: docs/content/icons/question-circle-fill.md ================================================ --- title: Question fill categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-circle.md ================================================ --- title: Question circle categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-diamond-fill.md ================================================ --- title: Question diamond fill categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-diamond.md ================================================ --- title: Question diamond categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-lg.md ================================================ --- title: Question lg categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-octagon-fill.md ================================================ --- title: Question octagon fill categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-octagon.md ================================================ --- title: Question octagon categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-square-fill.md ================================================ --- title: Question square fill categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question-square.md ================================================ --- title: Question square categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/question.md ================================================ --- title: Question categories: - Alerts, warnings, and signs tags: - help - unknown --- ================================================ FILE: docs/content/icons/quora.md ================================================ --- title: Quora categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/quote.md ================================================ --- title: Quote categories: - Typography tags: - blockquote - quotes - quotation --- ================================================ FILE: docs/content/icons/r-circle-fill.md ================================================ --- title: R circle fill categories: - Shapes tags: - registered - trademark --- ================================================ FILE: docs/content/icons/r-circle.md ================================================ --- title: R circle categories: - Shapes tags: - registered - trademark --- ================================================ FILE: docs/content/icons/r-square-fill.md ================================================ --- title: R square fill categories: - Shapes tags: - registered - trademark --- ================================================ FILE: docs/content/icons/r-square.md ================================================ --- title: R square categories: - Shapes tags: - registered - trademark --- ================================================ FILE: docs/content/icons/radar.md ================================================ --- title: Radar categories: - Geo tags: - geography - map - pin - location added: 1.11.0 --- ================================================ FILE: docs/content/icons/radioactive.md ================================================ --- title: Radioactive categories: - Real world tags: - radiation - nuclear - danger --- ================================================ FILE: docs/content/icons/rainbow.md ================================================ --- title: Rainbow categories: - Weather tags: - colors - arches - colour --- ================================================ FILE: docs/content/icons/receipt-cutoff.md ================================================ --- title: Receipt cutoff categories: - Commerce tags: - receipt - invoice - sale - purchase - bill --- ================================================ FILE: docs/content/icons/receipt.md ================================================ --- title: Receipt categories: - Commerce tags: - receipt - invoice - sale - purchase - bill --- ================================================ FILE: docs/content/icons/reception-0.md ================================================ --- title: Reception 0 categories: - Communications tags: - reception - cellphone - mobile - carrier - network - signal --- ================================================ FILE: docs/content/icons/reception-1.md ================================================ --- title: Reception 1 categories: - Communications tags: - reception - cellphone - mobile - carrier - network - signal --- ================================================ FILE: docs/content/icons/reception-2.md ================================================ --- title: Reception 2 categories: - Communications tags: - reception - cellphone - mobile - carrier - network - signal --- ================================================ FILE: docs/content/icons/reception-3.md ================================================ --- title: Reception 3 categories: - Communications tags: - reception - cellphone - mobile - carrier - network - signal --- ================================================ FILE: docs/content/icons/reception-4.md ================================================ --- title: Reception 4 categories: - Communications tags: - reception - cellphone - mobile - carrier - network - signal --- ================================================ FILE: docs/content/icons/record-btn-fill.md ================================================ --- title: Record btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record-btn.md ================================================ --- title: Record btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record-circle-fill.md ================================================ --- title: Record circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record-circle.md ================================================ --- title: Record circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record-fill.md ================================================ --- title: Record fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record.md ================================================ --- title: Record categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record2-fill.md ================================================ --- title: Record2 fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/record2.md ================================================ --- title: Record2 categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/recycle.md ================================================ --- title: Recycle categories: - Arrows tags: - recyling - trash --- ================================================ FILE: docs/content/icons/reddit.md ================================================ --- title: Reddit categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/regex.md ================================================ --- title: Regex categories: - Typography tags: - text - type - code - developer - development - software - "regular expression" added: 1.10.0 --- ================================================ FILE: docs/content/icons/repeat-1.md ================================================ --- title: Repeat 1 categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/repeat.md ================================================ --- title: Repeat categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/reply-all-fill.md ================================================ --- title: Reply all fill categories: - Communications tags: - mail - email --- ================================================ FILE: docs/content/icons/reply-all.md ================================================ --- title: Reply all categories: - Communications tags: - mail - email --- ================================================ FILE: docs/content/icons/reply-fill.md ================================================ --- title: Reply fill categories: - Communications tags: - mail - email --- ================================================ FILE: docs/content/icons/reply.md ================================================ --- title: Reply categories: - Communications tags: - mail - email --- ================================================ FILE: docs/content/icons/rewind-btn-fill.md ================================================ --- title: Rewind btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/rewind-btn.md ================================================ --- title: Rewind btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/rewind-circle-fill.md ================================================ --- title: Rewind circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/rewind-circle.md ================================================ --- title: Rewind circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/rewind-fill.md ================================================ --- title: Rewind fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/rewind.md ================================================ --- title: Rewind categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/robot.md ================================================ --- title: Robot categories: - Devices tags: - bot --- ================================================ FILE: docs/content/icons/rocket-fill.md ================================================ --- title: Rocket fill categories: - Real world tags: - ship - rocketship - spaceship added: 1.10.0 --- ================================================ FILE: docs/content/icons/rocket-takeoff-fill.md ================================================ --- title: Rocket takeoff fill categories: - Real world tags: - ship - rocketship - spaceship - launch added: 1.10.0 --- ================================================ FILE: docs/content/icons/rocket-takeoff.md ================================================ --- title: Rocket takeoff categories: - Real world tags: - ship - rocketship - spaceship - launch added: 1.10.0 --- ================================================ FILE: docs/content/icons/rocket.md ================================================ --- title: Rocket categories: - Real world tags: - ship - rocketship - spaceship added: 1.10.0 --- ================================================ FILE: docs/content/icons/router-fill.md ================================================ --- title: Router fill categories: - Devices tags: - wifi - internet - wireless - network --- ================================================ FILE: docs/content/icons/router.md ================================================ --- title: Router categories: - Devices tags: - wifi - internet - wireless - network --- ================================================ FILE: docs/content/icons/rss-fill.md ================================================ --- title: RSS fill categories: - Communications tags: - atom - feed - xml --- ================================================ FILE: docs/content/icons/rss.md ================================================ --- title: RSS categories: - Communications tags: - atom - feed - xml --- ================================================ FILE: docs/content/icons/rulers.md ================================================ --- title: Rulers categories: - Graphics tags: - measure - guide --- ================================================ FILE: docs/content/icons/safe-fill.md ================================================ --- title: Safe fill categories: - Real world tags: - vault - bank - finance --- ================================================ FILE: docs/content/icons/safe.md ================================================ --- title: Safe categories: - Real world tags: - vault - bank - finance --- ================================================ FILE: docs/content/icons/safe2-fill.md ================================================ --- title: Safe2 fill categories: - Real world tags: - vault - bank - finance --- ================================================ FILE: docs/content/icons/safe2.md ================================================ --- title: Safe2 categories: - Real world tags: - vault - bank - finance --- ================================================ FILE: docs/content/icons/save-fill.md ================================================ --- title: Save fill categories: - UI and keyboard tags: - save - floppy --- ================================================ FILE: docs/content/icons/save.md ================================================ --- title: Save categories: - UI and keyboard tags: - save - floppy --- ================================================ FILE: docs/content/icons/save2-fill.md ================================================ --- title: Save2 fill categories: - UI and keyboard tags: - save - floppy --- ================================================ FILE: docs/content/icons/save2.md ================================================ --- title: Save2 categories: - UI and keyboard tags: - save - floppy --- ================================================ FILE: docs/content/icons/scissors.md ================================================ --- title: Scissors categories: - Real world tags: - cut - shears --- ================================================ FILE: docs/content/icons/scooter.md ================================================ --- title: Scooter categories: - Transportation tags: - riding added: 1.10.0 --- ================================================ FILE: docs/content/icons/screwdriver.md ================================================ --- title: Screwdriver categories: - Tools tags: - tool --- ================================================ FILE: docs/content/icons/sd-card-fill.md ================================================ --- title: SD card fill categories: - Devices tags: - storage - microsd - chip - memory --- ================================================ FILE: docs/content/icons/sd-card.md ================================================ --- title: SD card categories: - Devices tags: - storage - microsd - chip - memory --- ================================================ FILE: docs/content/icons/search-heart-fill.md ================================================ --- title: Search heart fill categories: - Communications - Love tags: - magnifying-glass - look - love - romance - valentine - lens --- ================================================ FILE: docs/content/icons/search-heart.md ================================================ --- title: Search heart categories: - Communications - Love tags: - magnifying-glass - look - love - romance - valentine - lens --- ================================================ FILE: docs/content/icons/search.md ================================================ --- title: Search categories: - Communications tags: - magnifying-glass - look - lens --- ================================================ FILE: docs/content/icons/segmented-nav.md ================================================ --- title: Segmented nav categories: - Controls tags: - nav - tabs - tabbed - app - ui --- ================================================ FILE: docs/content/icons/send-arrow-down-fill.md ================================================ --- title: Send arrow down fill categories: - Communications tags: - message - sending - sent - paper-plane added: 1.11.0 --- ================================================ FILE: docs/content/icons/send-arrow-down.md ================================================ --- title: Send arrow down categories: - Communications tags: - message - sending - sent - paper-plane added: 1.11.0 --- ================================================ FILE: docs/content/icons/send-arrow-up-fill.md ================================================ --- title: Send arrow up fill categories: - Communications tags: - message - sending - sent - paper-plane added: 1.11.0 --- ================================================ FILE: docs/content/icons/send-arrow-up.md ================================================ --- title: Send arrow up categories: - Communications tags: - message - sending - sent - paper-plane added: 1.11.0 --- ================================================ FILE: docs/content/icons/send-check-fill.md ================================================ --- title: Send check fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-check.md ================================================ --- title: Send check categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-dash-fill.md ================================================ --- title: Send dash fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-dash.md ================================================ --- title: Send dash categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-exclamation-fill.md ================================================ --- title: Send exclamation fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-exclamation.md ================================================ --- title: Send exclamation categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-fill.md ================================================ --- title: Send fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-plus-fill.md ================================================ --- title: Send plus fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-plus.md ================================================ --- title: Send plus categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-slash-fill.md ================================================ --- title: Send slash fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-slash.md ================================================ --- title: Send slash categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-x-fill.md ================================================ --- title: Send x fill categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send-x.md ================================================ --- title: Send x categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/send.md ================================================ --- title: Send categories: - Communications tags: - message - sending - sent - paper-plane --- ================================================ FILE: docs/content/icons/server.md ================================================ --- title: Server categories: - Devices tags: - server - network --- ================================================ FILE: docs/content/icons/shadows.md ================================================ --- title: Shadows categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/share-fill.md ================================================ --- title: Share fill categories: - Communications tags: - share - link --- ================================================ FILE: docs/content/icons/share.md ================================================ --- title: Share categories: - Communications tags: - share - link --- ================================================ FILE: docs/content/icons/shield-check.md ================================================ --- title: Shield check categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-exclamation.md ================================================ --- title: Shield exclamation categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-fill-check.md ================================================ --- title: Shield fill check categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-fill-exclamation.md ================================================ --- title: Shield fill exclamation categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-fill-minus.md ================================================ --- title: Shield fill minus categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-fill-plus.md ================================================ --- title: Shield fill plus categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-fill-x.md ================================================ --- title: Shield fill x categories: - Security tags: - privacy - security - remove - delete --- ================================================ FILE: docs/content/icons/shield-fill.md ================================================ --- title: Shield fill categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-lock-fill.md ================================================ --- title: Shield lock fill categories: - Security tags: - privacy - security - lock --- ================================================ FILE: docs/content/icons/shield-lock.md ================================================ --- title: Shield lock categories: - Security tags: - privacy - security - lock --- ================================================ FILE: docs/content/icons/shield-minus.md ================================================ --- title: Shield minus categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-plus.md ================================================ --- title: Shield plus categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-shaded.md ================================================ --- title: Shield shaded categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shield-slash-fill.md ================================================ --- title: Shield slash fill categories: - Security tags: - shield - badge --- ================================================ FILE: docs/content/icons/shield-slash.md ================================================ --- title: Shield slash categories: - Security tags: - shield - badge --- ================================================ FILE: docs/content/icons/shield-x.md ================================================ --- title: Shield x categories: - Security tags: - privacy - security - remove - delete --- ================================================ FILE: docs/content/icons/shield.md ================================================ --- title: Shield categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/shift-fill.md ================================================ --- title: Shift fill categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/shift.md ================================================ --- title: Shift categories: - UI and keyboard tags: - key --- ================================================ FILE: docs/content/icons/shop-window.md ================================================ --- title: Shop window categories: - Commerce tags: - shop - store - market - marketplace - shopping - retail --- ================================================ FILE: docs/content/icons/shop.md ================================================ --- title: Shop categories: - Commerce tags: - shop - store - market - marketplace - shopping - retail --- ================================================ FILE: docs/content/icons/shuffle.md ================================================ --- title: Shuffle categories: - Arrows tags: - shuffle - random --- ================================================ FILE: docs/content/icons/sign-dead-end-fill.md ================================================ --- title: Sign dead end fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-dead-end.md ================================================ --- title: Sign dead end categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-do-not-enter-fill.md ================================================ --- title: Sign do not enter fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-do-not-enter.md ================================================ --- title: Sign do not enter categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-fill.md ================================================ --- title: Sign intersection fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-side-fill.md ================================================ --- title: Sign intersection side fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-side.md ================================================ --- title: Sign intersection side categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-t-fill.md ================================================ --- title: Sign intersection t fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-t.md ================================================ --- title: Sign intersection t categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-y-fill.md ================================================ --- title: Sign intersection y fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection-y.md ================================================ --- title: Sign intersection y categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-intersection.md ================================================ --- title: Sign intersection categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-merge-left-fill.md ================================================ --- title: Sign merge left fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-merge-left.md ================================================ --- title: Sign merge left categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-merge-right-fill.md ================================================ --- title: Sign merge right fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-merge-right.md ================================================ --- title: Sign merge right categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-no-left-turn-fill.md ================================================ --- title: Sign no left turn fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-no-left-turn.md ================================================ --- title: Sign no left turn categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-no-parking-fill.md ================================================ --- title: Sign no parking fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-no-parking.md ================================================ --- title: Sign no parking categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-no-right-turn-fill.md ================================================ --- title: Sign no right turn fill categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-no-right-turn.md ================================================ --- title: Sign no right turn categories: - Transportation tags: - road - driving - directions added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-railroad-fill.md ================================================ --- title: Sign railroad fill categories: - Transportation tags: - road - driving - train - tracks added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-railroad.md ================================================ --- title: Sign railroad categories: - Transportation tags: - road - driving - train - tracks added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-stop-fill.md ================================================ --- title: Sign stop fill categories: - Transportation tags: - "stop sign" - intersection - road - driving added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-stop-lights-fill.md ================================================ --- title: Sign stop lights fill categories: - Transportation tags: - "stop sign" - intersection - road - driving added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-stop-lights.md ================================================ --- title: Sign stop lights categories: - Transportation tags: - "stop sign" - intersection - road - driving added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-stop.md ================================================ --- title: Sign stop categories: - Transportation tags: - "stop sign" - intersection - road - driving added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-left-fill.md ================================================ --- title: Sign turn left fill categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-left.md ================================================ --- title: Sign turn left categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-right-fill.md ================================================ --- title: Sign turn right fill categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-right.md ================================================ --- title: Sign turn right categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-slight-left-fill.md ================================================ --- title: Sign turn slight left fill categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-slight-left.md ================================================ --- title: Sign turn slight left categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-slight-right-fill.md ================================================ --- title: Sign turn slight right fill categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-turn-slight-right.md ================================================ --- title: Sign turn slight right categories: - Transportation tags: - road - driving - navigate - navigation - route added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-yield-fill.md ================================================ --- title: Sign yield fill categories: - Transportation tags: - road - driving - intersection added: 1.10.0 --- ================================================ FILE: docs/content/icons/sign-yield.md ================================================ --- title: Sign yield categories: - Transportation tags: - road - driving - intersection added: 1.10.0 --- ================================================ FILE: docs/content/icons/signal.md ================================================ --- title: Signal categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/signpost-2-fill.md ================================================ --- title: Signpost 2 fill categories: - Real world tags: - milestone - sign - road sign - street sign - directions --- ================================================ FILE: docs/content/icons/signpost-2.md ================================================ --- title: Signpost 2 categories: - Real world tags: - milestone - sign - road sign - street sign - directions --- ================================================ FILE: docs/content/icons/signpost-fill.md ================================================ --- title: Signpost fill categories: - Real world tags: - milestone - sign - road sign - street sign - directions --- ================================================ FILE: docs/content/icons/signpost-split-fill.md ================================================ --- title: Signpost split fill categories: - Real world tags: - milestone - sign - road sign - street sign - directions --- ================================================ FILE: docs/content/icons/signpost-split.md ================================================ --- title: Signpost split categories: - Real world tags: - milestone - sign - road sign - street sign - directions --- ================================================ FILE: docs/content/icons/signpost.md ================================================ --- title: Signpost categories: - Real world tags: - milestone - sign - road sign - street sign - directions --- ================================================ FILE: docs/content/icons/sim-fill.md ================================================ --- title: Sim fill categories: - Devices tags: - mobile - carrier --- ================================================ FILE: docs/content/icons/sim-slash-fill.md ================================================ --- title: Sim slash fill categories: - Devices tags: - mobile - carrier added: 1.11.0 --- ================================================ FILE: docs/content/icons/sim-slash.md ================================================ --- title: Sim slash categories: - Devices tags: - mobile - carrier added: 1.11.0 --- ================================================ FILE: docs/content/icons/sim.md ================================================ --- title: Sim categories: - Devices tags: - mobile - carrier --- ================================================ FILE: docs/content/icons/sina-weibo.md ================================================ --- title: Sina Weibo categories: - Brand tags: - social added: 1.10.0 --- ================================================ FILE: docs/content/icons/skip-backward-btn-fill.md ================================================ --- title: Skip backward btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-backward-btn.md ================================================ --- title: Skip backward btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-backward-circle-fill.md ================================================ --- title: Skip backward circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-backward-circle.md ================================================ --- title: Skip backward circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-backward-fill.md ================================================ --- title: Skip backward fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-backward.md ================================================ --- title: Skip backward categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-end-btn-fill.md ================================================ --- title: Skip end btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-end-btn.md ================================================ --- title: Skip end btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-end-circle-fill.md ================================================ --- title: Skip end circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-end-circle.md ================================================ --- title: Skip end circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-end-fill.md ================================================ --- title: Skip end fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-end.md ================================================ --- title: Skip end categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-forward-btn-fill.md ================================================ --- title: Skip forward btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-forward-btn.md ================================================ --- title: Skip forward btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-forward-circle-fill.md ================================================ --- title: Skip forward circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-forward-circle.md ================================================ --- title: Skip forward circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-forward-fill.md ================================================ --- title: Skip forward fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-forward.md ================================================ --- title: Skip forward categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-start-btn-fill.md ================================================ --- title: Skip start btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-start-btn.md ================================================ --- title: Skip start btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-start-circle-fill.md ================================================ --- title: Skip start circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-start-circle.md ================================================ --- title: Skip start circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-start-fill.md ================================================ --- title: Skip start fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skip-start.md ================================================ --- title: Skip start categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/skype.md ================================================ --- title: Skype categories: - Brand tags: - social - microsoft --- ================================================ FILE: docs/content/icons/slack.md ================================================ --- title: Slack categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/slash-circle-fill.md ================================================ --- title: Slash circle fill categories: - Alerts, warnings, and signs tags: - shape - stop - ban - no --- ================================================ FILE: docs/content/icons/slash-circle.md ================================================ --- title: Circle slash categories: - Alerts, warnings, and signs tags: - shape - stop - ban - no --- ================================================ FILE: docs/content/icons/slash-lg.md ================================================ --- title: Slash lg categories: - Alerts, warnings, and signs tags: - shape - stop - ban - no - math --- ================================================ FILE: docs/content/icons/slash-square-fill.md ================================================ --- title: Slash square fill categories: - Alerts, warnings, and signs tags: - shape - stop - ban - no --- ================================================ FILE: docs/content/icons/slash-square.md ================================================ --- title: Slash square categories: - Alerts, warnings, and signs tags: - shape - stop - ban - no --- ================================================ FILE: docs/content/icons/slash.md ================================================ --- title: Slash categories: - Alerts, warnings, and signs tags: - shape - stop - ban - no - math --- ================================================ FILE: docs/content/icons/sliders.md ================================================ --- title: Sliders categories: - Graphics tags: - equalizer - settings - preferences - dials --- ================================================ FILE: docs/content/icons/sliders2-vertical.md ================================================ --- title: Sliders2 vertical categories: - Graphics tags: - equalizer - settings - preferences - dials --- ================================================ FILE: docs/content/icons/sliders2.md ================================================ --- title: Sliders2 categories: - Graphics tags: - equalizer - settings - preferences - dials --- ================================================ FILE: docs/content/icons/smartwatch.md ================================================ --- title: Smartwatch categories: - Devices tags: - watch - wearables --- ================================================ FILE: docs/content/icons/snapchat.md ================================================ --- title: Snapchat categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/snow.md ================================================ --- title: Snow categories: - Weather tags: - blizzard - flurries --- ================================================ FILE: docs/content/icons/snow2.md ================================================ --- title: Snow2 categories: - Weather tags: - blizzard - flurries --- ================================================ FILE: docs/content/icons/snow3.md ================================================ --- title: Snow3 categories: - Weather tags: - blizzard - flurries --- ================================================ FILE: docs/content/icons/sort-alpha-down-alt.md ================================================ --- title: Sort alpha down alt categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-alpha-down.md ================================================ --- title: Sort alpha down categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-alpha-up-alt.md ================================================ --- title: Sort alpha up alt categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-alpha-up.md ================================================ --- title: Sort alpha up categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-down-alt.md ================================================ --- title: Sort down alt categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-down.md ================================================ --- title: Sort down categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-numeric-down-alt.md ================================================ --- title: Sort numeric down alt categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-numeric-down.md ================================================ --- title: Sort numeric down categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-numeric-up-alt.md ================================================ --- title: Sort numeric up alt categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-numeric-up.md ================================================ --- title: Sort numeric up categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-up-alt.md ================================================ --- title: Sort up alt categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/sort-up.md ================================================ --- title: Sort up categories: - Sort and filter tags: - sort - filter - organize --- ================================================ FILE: docs/content/icons/soundwave.md ================================================ --- title: Soundwave categories: - Media tags: - audio - sound - wave --- ================================================ FILE: docs/content/icons/sourceforge.md ================================================ --- title: Sourceforge categories: - Brand tags: - social - vcs - git added: 1.11.0 --- ================================================ FILE: docs/content/icons/speaker-fill.md ================================================ --- title: Speaker fill categories: - Devices tags: - audio - sound --- ================================================ FILE: docs/content/icons/speaker.md ================================================ --- title: Speaker categories: - Devices tags: - audio - sound --- ================================================ FILE: docs/content/icons/speedometer.md ================================================ --- title: Speedometer categories: - Real world tags: - speed - tachometer - dashboard - gauge --- ================================================ FILE: docs/content/icons/speedometer2.md ================================================ --- title: Speedometer2 categories: - Real world tags: - speed - tachometer - dashboard - gauge --- ================================================ FILE: docs/content/icons/spellcheck.md ================================================ --- title: Spellcheck categories: - Typography tags: - spelling - grammar --- ================================================ FILE: docs/content/icons/spotify.md ================================================ --- title: Spotify categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/square-fill.md ================================================ --- title: Square fill categories: - Shapes tags: - shape - rectangle --- ================================================ FILE: docs/content/icons/square-half.md ================================================ --- title: Square half fill categories: - Shapes tags: - shape - rectangle --- ================================================ FILE: docs/content/icons/square.md ================================================ --- title: Square categories: - Shapes tags: - shape - rectangle --- ================================================ FILE: docs/content/icons/stack-overflow.md ================================================ --- title: Stack overflow categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/stack.md ================================================ --- title: Stack categories: - Graphics tags: - layers --- ================================================ FILE: docs/content/icons/star-fill.md ================================================ --- title: Star fill categories: - Shapes tags: - shape - like - favorite --- ================================================ FILE: docs/content/icons/star-half.md ================================================ --- title: Star half fill categories: - Shapes tags: - shape - like - favorite --- ================================================ FILE: docs/content/icons/star.md ================================================ --- title: Star categories: - Shapes tags: - shape - like - favorite --- ================================================ FILE: docs/content/icons/stars.md ================================================ --- title: Stars categories: - Weather tags: - clear - skies - night --- ================================================ FILE: docs/content/icons/steam.md ================================================ --- title: Steam categories: - Brand tags: - gaming --- ================================================ FILE: docs/content/icons/stickies-fill.md ================================================ --- title: Stickies fill categories: - Real world tags: - postit - note - sticky --- ================================================ FILE: docs/content/icons/stickies.md ================================================ --- title: Stickies categories: - Real world tags: - postit - note - sticky --- ================================================ FILE: docs/content/icons/sticky-fill.md ================================================ --- title: Sticky fill categories: - Real world tags: - postit - note - sticky --- ================================================ FILE: docs/content/icons/sticky.md ================================================ --- title: Sticky categories: - Real world tags: - postit - note - sticky --- ================================================ FILE: docs/content/icons/stop-btn-fill.md ================================================ --- title: Stop btn fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/stop-btn.md ================================================ --- title: Stop btn categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/stop-circle-fill.md ================================================ --- title: Stop circle fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/stop-circle.md ================================================ --- title: Stop circle categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/stop-fill.md ================================================ --- title: Stop fill categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/stop.md ================================================ --- title: Stop categories: - Media tags: - audio - video - av --- ================================================ FILE: docs/content/icons/stoplights-fill.md ================================================ --- title: Stoplights fill categories: - Real world tags: - traffic - lights - intersection --- ================================================ FILE: docs/content/icons/stoplights.md ================================================ --- title: Stoplights categories: - Real world tags: - traffic - lights - intersection --- ================================================ FILE: docs/content/icons/stopwatch-fill.md ================================================ --- title: Stopwatch fill categories: - Devices tags: - time - timer - clock --- ================================================ FILE: docs/content/icons/stopwatch.md ================================================ --- title: Stopwatch categories: - Devices tags: - time - timer - clock --- ================================================ FILE: docs/content/icons/strava.md ================================================ --- title: Strava categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/stripe.md ================================================ --- title: Stripe categories: - Brand tags: - payments - commerce added: 1.10.0 --- ================================================ FILE: docs/content/icons/subscript.md ================================================ --- title: Subscript categories: - Typography tags: - text - type added: 1.10.0 --- ================================================ FILE: docs/content/icons/substack.md ================================================ --- title: Substack categories: - Brand tags: - social - blog added: 1.11.0 --- ================================================ FILE: docs/content/icons/subtract.md ================================================ --- title: Subtract categories: - Graphics tags: - graphics - vector - merge - layers --- ================================================ FILE: docs/content/icons/suit-club-fill.md ================================================ --- title: Suit club fill categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-club.md ================================================ --- title: Suit club categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-diamond-fill.md ================================================ --- title: Suit diamond fill categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-diamond.md ================================================ --- title: Suit diamond categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-heart-fill.md ================================================ --- title: Suit heart fill categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-heart.md ================================================ --- title: Suit heart categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-spade-fill.md ================================================ --- title: Suit spade fill categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suit-spade.md ================================================ --- title: Suit spade categories: - Entertainment tags: - card - cards - suit - deck - gambling --- ================================================ FILE: docs/content/icons/suitcase-fill.md ================================================ --- title: Suitcase fill categories: - Travel tags: - luggage - bags - carry-on added: 1.11.0 --- ================================================ FILE: docs/content/icons/suitcase-lg-fill.md ================================================ --- title: Suitcase lg fill categories: - Travel tags: - luggage - bags - carry-on added: 1.11.0 --- ================================================ FILE: docs/content/icons/suitcase-lg.md ================================================ --- title: Suitcase lg categories: - Travel tags: - luggage - bags - carry-on added: 1.11.0 --- ================================================ FILE: docs/content/icons/suitcase.md ================================================ --- title: Suitcase categories: - Travel tags: - luggage - bags - carry-on added: 1.11.0 --- ================================================ FILE: docs/content/icons/suitcase2-fill.md ================================================ --- title: Suitcase2 fill categories: - Travel tags: - luggage - bags - carry-on added: 1.11.0 --- ================================================ FILE: docs/content/icons/suitcase2.md ================================================ --- title: Suitcase2 categories: - Travel tags: - luggage - bags - carry-on added: 1.11.0 --- ================================================ FILE: docs/content/icons/sun-fill.md ================================================ --- title: Sun fill categories: - Weather tags: - solar - weather --- ================================================ FILE: docs/content/icons/sun.md ================================================ --- title: Sun categories: - Weather tags: - solar - weather --- ================================================ FILE: docs/content/icons/sunglasses.md ================================================ --- title: Sunglasses categories: - Real world tags: - shades - cool - aviators --- ================================================ FILE: docs/content/icons/sunrise-fill.md ================================================ --- title: Sunrise fill categories: - Weather tags: - dawn --- ================================================ FILE: docs/content/icons/sunrise.md ================================================ --- title: Sunrise categories: - Weather tags: - dawn --- ================================================ FILE: docs/content/icons/sunset-fill.md ================================================ --- title: Sunset fill categories: - Weather tags: - dusk --- ================================================ FILE: docs/content/icons/sunset.md ================================================ --- title: Sunset categories: - Weather tags: - dusk --- ================================================ FILE: docs/content/icons/superscript.md ================================================ --- title: Superscript categories: - Typography tags: - text - type added: 1.10.0 --- ================================================ FILE: docs/content/icons/symmetry-horizontal.md ================================================ --- title: Symmetry horizontal categories: - Graphics tags: - align - orientation - mirror --- ================================================ FILE: docs/content/icons/symmetry-vertical.md ================================================ --- title: Symmetry vertical categories: - Graphics tags: - align - orientation - mirror --- ================================================ FILE: docs/content/icons/table.md ================================================ --- title: Table categories: - Files and folders tags: - spreadsheet --- ================================================ FILE: docs/content/icons/tablet-fill.md ================================================ --- title: Tablet fill categories: - Devices tags: - mobile --- ================================================ FILE: docs/content/icons/tablet-landscape-fill.md ================================================ --- title: Tablet landscape fill categories: - Devices tags: - mobile --- ================================================ FILE: docs/content/icons/tablet-landscape.md ================================================ --- title: Tablet landscape categories: - Devices tags: - mobile --- ================================================ FILE: docs/content/icons/tablet.md ================================================ --- title: Tablet categories: - Devices tags: - mobile --- ================================================ FILE: docs/content/icons/tag-fill.md ================================================ --- title: Tag fill categories: - Real world tags: - price - category - taxonomy - label --- ================================================ FILE: docs/content/icons/tag.md ================================================ --- title: Tag categories: - Real world tags: - price - category - taxonomy - label --- ================================================ FILE: docs/content/icons/tags-fill.md ================================================ --- title: Tags fill categories: - Real world tags: - price - category - taxonomy - label --- ================================================ FILE: docs/content/icons/tags.md ================================================ --- title: Tags categories: - Real world tags: - price - category - taxonomy - label --- ================================================ FILE: docs/content/icons/taxi-front-fill.md ================================================ --- title: Taxi front fill categories: - Transportation tags: - cab - uber - lyft added: 1.10.0 --- ================================================ FILE: docs/content/icons/taxi-front.md ================================================ --- title: Taxi front categories: - Transportation tags: - cab - uber - lyft added: 1.10.0 --- ================================================ FILE: docs/content/icons/telegram.md ================================================ --- title: Telegram categories: - Brand tags: - social - chat --- ================================================ FILE: docs/content/icons/telephone-fill.md ================================================ --- title: Telephone fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-forward-fill.md ================================================ --- title: Telephone forward fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-forward.md ================================================ --- title: Telephone forward categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-inbound-fill.md ================================================ --- title: Telephone inbound fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-inbound.md ================================================ --- title: Telephone inbound categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-minus-fill.md ================================================ --- title: Telephone minus fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-minus.md ================================================ --- title: Telephone minus categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-outbound-fill.md ================================================ --- title: Telephone outbound fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-outbound.md ================================================ --- title: Telephone outbound categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-plus-fill.md ================================================ --- title: Telephone plus fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-plus.md ================================================ --- title: Telephone plus categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-x-fill.md ================================================ --- title: Telephone x fill categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone-x.md ================================================ --- title: Telephone x categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/telephone.md ================================================ --- title: Telephone categories: - Communications tags: - telephone - phone - call --- ================================================ FILE: docs/content/icons/tencent-qq.md ================================================ --- title: Tencent QQ categories: - Brand tags: - social added: 1.10.0 --- ================================================ FILE: docs/content/icons/terminal-dash.md ================================================ --- title: Terminal dash categories: - Apps tags: - command-line - cli - command-prompt --- ================================================ FILE: docs/content/icons/terminal-fill.md ================================================ --- title: Terminal fill categories: - Apps tags: - command-line - cli - command-prompt --- ================================================ FILE: docs/content/icons/terminal-plus.md ================================================ --- title: Terminal plus categories: - Apps tags: - command-line - cli - command-prompt --- ================================================ FILE: docs/content/icons/terminal-split.md ================================================ --- title: Terminal split categories: - Apps tags: - command-line - cli - command-prompt --- ================================================ FILE: docs/content/icons/terminal-x.md ================================================ --- title: Terminal x categories: - Apps tags: - command-line - cli - command-prompt --- ================================================ FILE: docs/content/icons/terminal.md ================================================ --- title: Terminal categories: - Apps tags: - command-line - cli - command-prompt --- ================================================ FILE: docs/content/icons/text-center.md ================================================ --- title: Text center categories: - Typography tags: - text - type - justify - alignment - centre --- ================================================ FILE: docs/content/icons/text-indent-left.md ================================================ --- title: Text indent left categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/text-indent-right.md ================================================ --- title: Text indent right categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/text-left.md ================================================ --- title: Text left categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/text-paragraph.md ================================================ --- title: Text paragraph categories: - Typography tags: - text - type - paragraph - copy --- ================================================ FILE: docs/content/icons/text-right.md ================================================ --- title: Text right categories: - Typography tags: - text - type - justify - alignment --- ================================================ FILE: docs/content/icons/text-wrap.md ================================================ --- title: Text wrap categories: - Typography tags: - text - type - "word wrap" added: 1.10.0 --- ================================================ FILE: docs/content/icons/textarea-resize.md ================================================ --- title: Textarea resize categories: - Graphics tags: - text - form --- ================================================ FILE: docs/content/icons/textarea-t.md ================================================ --- title: Textarea t categories: - Graphics tags: - text - insert - bounding-box --- ================================================ FILE: docs/content/icons/textarea.md ================================================ --- title: Textarea categories: - Graphics tags: - text - insert - bounding-box --- ================================================ FILE: docs/content/icons/thermometer-half.md ================================================ --- title: Thermometer half categories: - Weather tags: - temperature - weather --- ================================================ FILE: docs/content/icons/thermometer-high.md ================================================ --- title: Thermometer high categories: - Weather tags: - temperature - weather --- ================================================ FILE: docs/content/icons/thermometer-low.md ================================================ --- title: Thermometer low categories: - Weather tags: - temperature - weather --- ================================================ FILE: docs/content/icons/thermometer-snow.md ================================================ --- title: Thermometer snow categories: - Weather tags: - temperature - weather --- ================================================ FILE: docs/content/icons/thermometer-sun.md ================================================ --- title: Thermometer sun categories: - Weather tags: - temperature - weather --- ================================================ FILE: docs/content/icons/thermometer.md ================================================ --- title: Thermometer categories: - Real world tags: - temperature - weather --- ================================================ FILE: docs/content/icons/threads-fill.md ================================================ --- title: Threads fill categories: - Brand tags: - social - chat - instagram - meta added: 1.11.0 --- ================================================ FILE: docs/content/icons/threads.md ================================================ --- title: Threads categories: - Brand tags: - social - chat - instagram - meta added: 1.11.0 --- ================================================ FILE: docs/content/icons/three-dots-vertical.md ================================================ --- title: Three dots vertical categories: - Controls tags: - kebab - more - ellipsis - overflow - menu --- ================================================ FILE: docs/content/icons/three-dots.md ================================================ --- title: Three dots categories: - Controls tags: - meatballs - more - ellipsis - overflow - menu --- ================================================ FILE: docs/content/icons/thunderbolt-fill.md ================================================ --- title: Thunderbolt fill categories: - Devices tags: - plug - port --- ================================================ FILE: docs/content/icons/thunderbolt.md ================================================ --- title: Thunderbolt categories: - Devices tags: - plug - port --- ================================================ FILE: docs/content/icons/ticket-detailed-fill.md ================================================ --- title: Ticket detailed fill categories: - Real world tags: - tickets - admission --- ================================================ FILE: docs/content/icons/ticket-detailed.md ================================================ --- title: Ticket detailed categories: - Real world tags: - tickets - admission --- ================================================ FILE: docs/content/icons/ticket-fill.md ================================================ --- title: Ticket fill categories: - Real world tags: - tickets - admission --- ================================================ FILE: docs/content/icons/ticket-perforated-fill.md ================================================ --- title: Ticket perforated fill categories: - Real world tags: - tickets - admission --- ================================================ FILE: docs/content/icons/ticket-perforated.md ================================================ --- title: Ticket perforated categories: - Real world tags: - tickets - admission --- ================================================ FILE: docs/content/icons/ticket.md ================================================ --- title: Ticket categories: - Real world tags: - tickets - admission --- ================================================ FILE: docs/content/icons/tiktok.md ================================================ --- title: Tiktok categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/toggle-off.md ================================================ --- title: Toggle off categories: - Controls tags: - toggle - switch - checkbox --- ================================================ FILE: docs/content/icons/toggle-on.md ================================================ --- title: Toggle on categories: - Controls tags: - toggle - switch - checkbox --- ================================================ FILE: docs/content/icons/toggle2-off.md ================================================ --- title: Toggle2 off categories: - Controls tags: - toggle - switch - checkbox --- ================================================ FILE: docs/content/icons/toggle2-on.md ================================================ --- title: Toggle2 on categories: - Controls tags: - toggle - switch - checkbox --- ================================================ FILE: docs/content/icons/toggles.md ================================================ --- title: Toggles categories: - Controls tags: - toggle - switch - checkbox --- ================================================ FILE: docs/content/icons/toggles2.md ================================================ --- title: Toggles2 categories: - Controls tags: - toggle - switch - checkbox --- ================================================ FILE: docs/content/icons/tools.md ================================================ --- title: Tools categories: - Tools tags: - tool - wrench - screwdriver --- ================================================ FILE: docs/content/icons/tornado.md ================================================ --- title: Tornado categories: - Weather tags: - wind --- ================================================ FILE: docs/content/icons/train-freight-front-fill.md ================================================ --- title: Train freight front fill categories: - Transportation tags: - transit - public - rail --- ================================================ FILE: docs/content/icons/train-freight-front.md ================================================ --- title: Train freight front categories: - Transportation tags: - transit - public - rail --- ================================================ FILE: docs/content/icons/train-front-fill.md ================================================ --- title: Train front fill categories: - Transportation tags: - transit - public - rail --- ================================================ FILE: docs/content/icons/train-front.md ================================================ --- title: Train front categories: - Transportation tags: - transit - public - rail --- ================================================ FILE: docs/content/icons/train-lightrail-front-fill.md ================================================ --- title: Train lightrail front fill categories: - Transportation tags: - transit - public - rail --- ================================================ FILE: docs/content/icons/train-lightrail-front.md ================================================ --- title: Train lightrail front categories: - Transportation tags: - transit - public - rail --- ================================================ FILE: docs/content/icons/translate.md ================================================ --- title: Translate categories: - Communications tags: - translation - languages - language --- ================================================ FILE: docs/content/icons/transparency.md ================================================ --- title: Transparency categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/trash-fill.md ================================================ --- title: Trash fill categories: - UI and keyboard tags: - trash-can - garbage - delete - remove --- ================================================ FILE: docs/content/icons/trash.md ================================================ --- title: Trash categories: - UI and keyboard tags: - trash-can - garbage - delete - remove --- ================================================ FILE: docs/content/icons/trash2-fill.md ================================================ --- title: Trash2 fill categories: - UI and keyboard tags: - trash-can - garbage - delete - remove --- ================================================ FILE: docs/content/icons/trash2.md ================================================ --- title: Trash2 categories: - UI and keyboard tags: - trash-can - garbage - delete - remove --- ================================================ FILE: docs/content/icons/trash3-fill.md ================================================ --- title: Trash3 fill categories: - UI and keyboard tags: - trash-can - garbage - delete - remove --- ================================================ FILE: docs/content/icons/trash3.md ================================================ --- title: Trash3 categories: - UI and keyboard tags: - trash-can - garbage - delete - remove --- ================================================ FILE: docs/content/icons/tree-fill.md ================================================ --- title: Tree fill categories: - Real world tags: - tree - forrest --- ================================================ FILE: docs/content/icons/tree.md ================================================ --- title: Tree categories: - Real world tags: - tree - forrest --- ================================================ FILE: docs/content/icons/trello.md ================================================ --- title: Trello categories: - Brand tags: - kanban - board added: 1.10.0 --- ================================================ FILE: docs/content/icons/triangle-fill.md ================================================ --- title: Triangle fill categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/triangle-half.md ================================================ --- title: Triangle half fill categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/triangle.md ================================================ --- title: Triangle categories: - Shapes tags: - shape --- ================================================ FILE: docs/content/icons/trophy-fill.md ================================================ --- title: Trophy fill categories: - Real world tags: - prize - winning --- ================================================ FILE: docs/content/icons/trophy.md ================================================ --- title: Trophy categories: - Real world tags: - prize - winning --- ================================================ FILE: docs/content/icons/tropical-storm.md ================================================ --- title: Tropical storm categories: - Weather tags: - hurricane --- ================================================ FILE: docs/content/icons/truck-flatbed.md ================================================ --- title: Truck flatbed categories: - Commerce tags: - trucking - shipping - shipment - transport - deliver - delivery - vehicle --- ================================================ FILE: docs/content/icons/truck-front-fill.md ================================================ --- title: Truck front fill categories: - Transportation tags: - vehicle - shipping - transit - haul - freight --- ================================================ FILE: docs/content/icons/truck-front.md ================================================ --- title: Truck front categories: - Transportation tags: - vehicle - shipping - transit - haul - freight --- ================================================ FILE: docs/content/icons/truck.md ================================================ --- title: Truck categories: - Commerce tags: - trucking - shipping - shipment - transport - deliver - delivery - vehicle --- ================================================ FILE: docs/content/icons/tsunami.md ================================================ --- title: Tsunami categories: - Weather tags: - wave --- ================================================ FILE: docs/content/icons/tux.md ================================================ --- title: Tux categories: - Brand tags: - linux - penguin --- ================================================ FILE: docs/content/icons/tv-fill.md ================================================ --- title: TV fill categories: - Devices tags: - television - monitor - display --- ================================================ FILE: docs/content/icons/tv.md ================================================ --- title: TV categories: - Devices tags: - television - monitor - display --- ================================================ FILE: docs/content/icons/twitch.md ================================================ --- title: Twitch categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/twitter-x.md ================================================ --- title: Twitter X categories: - Brand tags: - social - chat added: 1.11.0 --- ================================================ FILE: docs/content/icons/twitter.md ================================================ --- title: Twitter categories: - Brand tags: - social - chat --- ================================================ FILE: docs/content/icons/type-bold.md ================================================ --- title: Type bold categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/type-h1.md ================================================ --- title: Type H1 categories: - Typography tags: - text - type - heading --- ================================================ FILE: docs/content/icons/type-h2.md ================================================ --- title: Type H2 categories: - Typography tags: - text - type - heading --- ================================================ FILE: docs/content/icons/type-h3.md ================================================ --- title: Type H3 categories: - Typography tags: - text - type - heading --- ================================================ FILE: docs/content/icons/type-h4.md ================================================ --- title: Type h4 categories: - Typography tags: - text - type - heading added: 1.11.0 --- ================================================ FILE: docs/content/icons/type-h5.md ================================================ --- title: Type h5 categories: - Typography tags: - text - type - heading added: 1.11.0 --- ================================================ FILE: docs/content/icons/type-h6.md ================================================ --- title: Type h6 categories: - Typography tags: - text - type - heading added: 1.11.0 --- ================================================ FILE: docs/content/icons/type-italic.md ================================================ --- title: Type italic categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/type-strikethrough.md ================================================ --- title: Type strikethrough categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/type-underline.md ================================================ --- title: Type underline categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/type.md ================================================ --- title: Type categories: - Typography tags: - text - type --- ================================================ FILE: docs/content/icons/typescript.md ================================================ --- title: TypeScript categories: - Brand tags: - frontend - js - ts - web --- ================================================ FILE: docs/content/icons/ubuntu.md ================================================ --- title: Ubuntu categories: - Brand tags: - linux - distro --- ================================================ FILE: docs/content/icons/ui-checks-grid.md ================================================ --- title: UI checks grid categories: - Controls tags: - checkbox - form --- ================================================ FILE: docs/content/icons/ui-checks.md ================================================ --- title: UI checks categories: - Controls tags: - checkbox - form --- ================================================ FILE: docs/content/icons/ui-radios-grid.md ================================================ --- title: UI radios grid categories: - Controls tags: - radio - form --- ================================================ FILE: docs/content/icons/ui-radios.md ================================================ --- title: Ui radios categories: - Controls tags: - radio - form --- ================================================ FILE: docs/content/icons/umbrella-fill.md ================================================ --- title: Umbrella fill categories: - Weather tags: - rain --- ================================================ FILE: docs/content/icons/umbrella.md ================================================ --- title: Umbrella categories: - Weather tags: - rain --- ================================================ FILE: docs/content/icons/unindent.md ================================================ --- title: Unindent categories: - UI and Keyboard tags: - tab - indent --- ================================================ FILE: docs/content/icons/union.md ================================================ --- title: Union categories: - Graphics tags: - graphics - vector - merge - layers --- ================================================ FILE: docs/content/icons/unity.md ================================================ --- title: Unity categories: - Brand tags: - gaming --- ================================================ FILE: docs/content/icons/universal-access-circle.md ================================================ --- title: Universal access circle categories: - UI and Keyboard tags: - accessibility - a11y --- ================================================ FILE: docs/content/icons/universal-access.md ================================================ --- title: Universal Access categories: - UI and Keyboard tags: - accessibility - a11y --- ================================================ FILE: docs/content/icons/unlock-fill.md ================================================ --- title: Unlock fill categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/unlock.md ================================================ --- title: Unlock categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/unlock2-fill.md ================================================ --- title: Unlock2 fill categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/unlock2.md ================================================ --- title: Unlock2 categories: - Security tags: - privacy - security --- ================================================ FILE: docs/content/icons/upc-scan.md ================================================ --- title: Upc scan categories: - Commerce tags: - purchase - barcode --- ================================================ FILE: docs/content/icons/upc.md ================================================ --- title: Upc categories: - Commerce tags: - purchase - barcode --- ================================================ FILE: docs/content/icons/upload.md ================================================ --- title: Upload categories: - Miscellaneous tags: - arrow - network --- ================================================ FILE: docs/content/icons/usb-c-fill.md ================================================ --- title: USB C fill categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-c.md ================================================ --- title: USB C categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-drive-fill.md ================================================ --- title: USB drive fill categories: - Devices tags: - thumb-drive --- ================================================ FILE: docs/content/icons/usb-drive.md ================================================ --- title: USB drive categories: - Devices tags: - thumb-drive --- ================================================ FILE: docs/content/icons/usb-fill.md ================================================ --- title: USB fill categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-micro-fill.md ================================================ --- title: USB micro fill categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-micro.md ================================================ --- title: USB micro categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-mini-fill.md ================================================ --- title: USB mini fill categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-mini.md ================================================ --- title: USB mini categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-plug-fill.md ================================================ --- title: USB plug fill categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-plug.md ================================================ --- title: USB plug categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb-symbol.md ================================================ --- title: USB symbol categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/usb.md ================================================ --- title: USB categories: - Devices tags: - port - plug --- ================================================ FILE: docs/content/icons/valentine.md ================================================ --- title: Valentine categories: - Love tags: - love - romance - valentine --- ================================================ FILE: docs/content/icons/valentine2.md ================================================ --- title: Valentine2 categories: - Love tags: - love - romance - valentine --- ================================================ FILE: docs/content/icons/vector-pen.md ================================================ --- title: Vector pen categories: - Graphics tags: - graphics - vector - pen --- ================================================ FILE: docs/content/icons/view-list.md ================================================ --- title: View list categories: - UI and keyboard tags: - view - rearrange --- ================================================ FILE: docs/content/icons/view-stacked.md ================================================ --- title: View stacked categories: - UI and keyboard tags: - view - rearrange --- ================================================ FILE: docs/content/icons/vignette.md ================================================ --- title: Vignette categories: - Graphics tags: - photo - editing - image - picture added: 1.11.0 --- ================================================ FILE: docs/content/icons/vimeo.md ================================================ --- title: Vimeo categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/vinyl-fill.md ================================================ --- title: Vinyl fill categories: - Media tags: - audio - music - record --- ================================================ FILE: docs/content/icons/vinyl.md ================================================ --- title: Vinyl categories: - Media tags: - audio - music - record --- ================================================ FILE: docs/content/icons/virus.md ================================================ --- title: Virus categories: - Medical tags: - covid - viral --- ================================================ FILE: docs/content/icons/virus2.md ================================================ --- title: Virus2 categories: - Medical tags: - covid - viral --- ================================================ FILE: docs/content/icons/voicemail.md ================================================ --- title: Voicemail categories: - Communications tags: - voicemail - message - telephone --- ================================================ FILE: docs/content/icons/volume-down-fill.md ================================================ --- title: Volume down fill categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-down.md ================================================ --- title: Volume down categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-mute-fill.md ================================================ --- title: Volume mute fill categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-mute.md ================================================ --- title: Volume mute categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-off-fill.md ================================================ --- title: Volume off fill categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-off.md ================================================ --- title: Volume off categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-up-fill.md ================================================ --- title: Volume up fill categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/volume-up.md ================================================ --- title: Volume up categories: - Media tags: - audio - video - av - sound --- ================================================ FILE: docs/content/icons/vr.md ================================================ --- title: VR categories: - Typography tags: - divider - vertical-rule --- ================================================ FILE: docs/content/icons/wallet-fill.md ================================================ --- title: Wallet fill categories: - Commerce tags: - cards - money - funds - cash - payment --- ================================================ FILE: docs/content/icons/wallet.md ================================================ --- title: Wallet categories: - Commerce tags: - cards - money - funds - cash - payment --- ================================================ FILE: docs/content/icons/wallet2.md ================================================ --- title: Wallet2 categories: - Commerce tags: - cards - money - funds - cash - payment --- ================================================ FILE: docs/content/icons/watch.md ================================================ --- title: Watch categories: - Devices tags: - wearables - clock --- ================================================ FILE: docs/content/icons/water.md ================================================ --- title: Water categories: - Weather tags: - waves - levels --- ================================================ FILE: docs/content/icons/webcam-fill.md ================================================ --- title: Webcam fill categories: - Devices tags: - camera - video --- ================================================ FILE: docs/content/icons/webcam.md ================================================ --- title: Webcam categories: - Devices tags: - camera - video --- ================================================ FILE: docs/content/icons/wechat.md ================================================ --- title: Wechat categories: - Brand tags: - social - messaging --- ================================================ FILE: docs/content/icons/whatsapp.md ================================================ --- title: Whatsapp categories: - Brand tags: - social - facebook - chat --- ================================================ FILE: docs/content/icons/wifi-1.md ================================================ --- title: Wifi 1 categories: - Communications tags: - internet - network - wireless --- ================================================ FILE: docs/content/icons/wifi-2.md ================================================ --- title: Wifi 2 categories: - Communications tags: - internet - network - wireless --- ================================================ FILE: docs/content/icons/wifi-off.md ================================================ --- title: Wifi off categories: - Communications tags: - internet - network - wireless --- ================================================ FILE: docs/content/icons/wifi.md ================================================ --- title: Wifi categories: - Communications tags: - internet - network - wireless --- ================================================ FILE: docs/content/icons/wikipedia.md ================================================ --- title: Wikipedia categories: - Brand tags: - encyclopedia added: 1.10.0 --- ================================================ FILE: docs/content/icons/wind.md ================================================ --- title: Wind categories: - Weather tags: - windy - breeze --- ================================================ FILE: docs/content/icons/window-dash.md ================================================ --- title: Window dash categories: - Apps tags: - application - desktop - app --- ================================================ FILE: docs/content/icons/window-desktop.md ================================================ --- title: Window desktop categories: - Apps tags: - application - desktop - app --- ================================================ FILE: docs/content/icons/window-dock.md ================================================ --- title: Window dock categories: - Apps tags: - application - desktop - os --- ================================================ FILE: docs/content/icons/window-fullscreen.md ================================================ --- title: Window fullscreen categories: - Apps tags: - application - desktop - app --- ================================================ FILE: docs/content/icons/window-plus.md ================================================ --- title: Window plus categories: - Apps tags: - application - desktop - app --- ================================================ FILE: docs/content/icons/window-sidebar.md ================================================ --- title: Window sidebar categories: - Apps tags: - application - desktop --- ================================================ FILE: docs/content/icons/window-split.md ================================================ --- title: Window split categories: - Apps tags: - application - desktop - app --- ================================================ FILE: docs/content/icons/window-stack.md ================================================ --- title: Window stack categories: - Apps tags: - application - desktop - app - windows --- ================================================ FILE: docs/content/icons/window-x.md ================================================ --- title: Window x categories: - Apps tags: - application - desktop - app --- ================================================ FILE: docs/content/icons/window.md ================================================ --- title: Window categories: - Layout tags: - app - application --- ================================================ FILE: docs/content/icons/windows.md ================================================ --- title: Windows categories: - Brand tags: - microsoft - msft - windows --- ================================================ FILE: docs/content/icons/wordpress.md ================================================ --- title: Wordpress categories: - Brand tags: - social --- ================================================ FILE: docs/content/icons/wrench-adjustable-circle-fill.md ================================================ --- title: Wrench adjustable circle fill categories: - Tools tags: - tool --- ================================================ FILE: docs/content/icons/wrench-adjustable-circle.md ================================================ --- title: Wrench adjustable circle categories: - Tools tags: - tool --- ================================================ FILE: docs/content/icons/wrench-adjustable.md ================================================ --- title: Wrench adjustable categories: - Tools tags: - tool --- ================================================ FILE: docs/content/icons/wrench.md ================================================ --- title: Wrench categories: - Tools tags: - tool --- ================================================ FILE: docs/content/icons/x-circle-fill.md ================================================ --- title: X circle fill categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-circle.md ================================================ --- title: X circle categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-diamond-fill.md ================================================ --- title: X diamond fill categories: - Alerts, warnings, and signs tags: - x - delete - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-diamond.md ================================================ --- title: X diamond categories: - Alerts, warnings, and signs tags: - x - delete - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-lg.md ================================================ --- title: X lg categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit - math --- ================================================ FILE: docs/content/icons/x-octagon-fill.md ================================================ --- title: X octagon fill categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-octagon.md ================================================ --- title: X octagon categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-square-fill.md ================================================ --- title: X square fill categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x-square.md ================================================ --- title: X square categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit --- ================================================ FILE: docs/content/icons/x.md ================================================ --- title: X categories: - Alerts, warnings, and signs tags: - x - delete - remove - reset - clear - cancel - close - exit - math --- ================================================ FILE: docs/content/icons/xbox.md ================================================ --- title: Xbox categories: - Brand tags: - microsoft - gaming --- ================================================ FILE: docs/content/icons/yelp.md ================================================ --- title: Yelp categories: - Brand tags: - social - reviews --- ================================================ FILE: docs/content/icons/yin-yang.md ================================================ --- title: Yin yang categories: - Real world tags: - peace --- ================================================ FILE: docs/content/icons/youtube.md ================================================ --- title: Youtube categories: - Brand tags: - social - video - google --- ================================================ FILE: docs/content/icons/zoom-in.md ================================================ --- title: Zoom in categories: - Graphics tags: - magnify - scale --- ================================================ FILE: docs/content/icons/zoom-out.md ================================================ --- title: Zoom out categories: - Graphics tags: - minify - scale --- ================================================ FILE: docs/content/sprite.md ================================================ --- title: Icon Sprite description: Use Bootstrap Icons as an SVG sprite, built from our SVGs and easily customized with CSS. layout: sprite --- ================================================ FILE: docs/layouts/_default/404.html ================================================ {{ partial "head" . }} {{ partialCached "skippy" . }} {{ partialCached "navbar" . }}
{{ .Content }}
{{- partialCached "scripts" . "default" }} ================================================ FILE: docs/layouts/_default/home.html ================================================ {{ partial "head" . }} {{ partialCached "skippy" . }} {{ partialCached "navbar" . }} {{ partialCached "home/hero" . }}
{{ partialCached "icons" . "home" }} {{ .Content }}
{{- partialCached "footer" . }} {{- partialCached "scripts" . "home" }} ================================================ FILE: docs/layouts/_default/sprite.html ================================================ {{ partial "head" . }} {{ partialCached "skippy" . }} {{ partialCached "navbar" . }}
{{ partialCached "icons" . "fonts" }} {{ .Content }}
{{- partialCached "footer" . }} {{- partialCached "scripts" . "fonts" }} ================================================ FILE: docs/layouts/alias.html ================================================ {{ .Permalink }} ================================================ FILE: docs/layouts/icons/list.html ================================================ ================================================ FILE: docs/layouts/icons/single.html ================================================ {{ partial "head" . }} {{ partialCached "skippy" . }} {{ partialCached "navbar" . }}

{{ .Title }}

{{ if or .Params.tags .Params.categories -}}
    {{ with .Params.tags }}
  • Tags: {{ delimit . ", " }}
  • {{ end }} {{ with .Params.categories }}
  • Category: {{ delimit . ", " }}
  • {{ end }}
{{- end }}
{{ partialCached "ads" . }}

{{- $localSvgPath := printf "/icons/%s.svg" .File.TranslationBaseName -}} {{- $svgPath := path.Join "/assets/" $localSvgPath -}} {{- $svgHtml := readFile $localSvgPath | chomp | safeHTML -}}

Examples

{{ $svgHtml }} Heading
{{ $svgHtml }} Smaller heading

Inline text {{ $svgHtml }}

Example link text {{ $svgHtml }}

{{ $svgHtml }}

Download

Download the SVG to use or edit.

Download SVG

Icon font

Using the web font? Copy, paste, and go.

{{ $iconFontSnippet := printf `` .File.TranslationBaseName -}} {{- highlight $iconFontSnippet "html" "" }}

Code point

{{ $codepointsResource := resources.Get "font/bootstrap-icons.json" -}} {{ $codepoints := $codepointsResource | transform.Unmarshal -}} {{ $hexCodepoint := printf "%X" (int (index $codepoints .File.TranslationBaseName)) }}
  • Unicode: U+{{- $hexCodepoint}}
  • CSS: \{{- $hexCodepoint}}
  • JS: \u{{- $hexCodepoint}}
  • HTML: &#x{{- $hexCodepoint}};

Copy HTML

Paste the SVG right into your project's code.

{{ highlight $svgHtml "html" "" }}
{{- partialCached "footer" . }} {{- partialCached "scripts" . "default" }} ================================================ FILE: docs/layouts/partials/ads.html ================================================ ================================================ FILE: docs/layouts/partials/analytics.html ================================================ ================================================ FILE: docs/layouts/partials/favicons.html ================================================ {{ "" | safeHTML }} ================================================ FILE: docs/layouts/partials/footer.html ================================================ ================================================ FILE: docs/layouts/partials/head.html ================================================ {{ if .IsHome }}{{ .Site.Title | markdownify }} · {{ .Site.Params.description | markdownify }}{{ else }}{{ .Title | markdownify }} · {{ .Site.Title | markdownify }}{{ end }} {{- $colorModeJS := resources.Get "js/color-modes.js" | resources.Copy "/assets/js/color-modes.js" -}} {{ partialCached "stylesheet" . }} {{ partialCached "favicons" . }} {{ partial "social" . }} {{ partialCached "analytics" . }} ================================================ FILE: docs/layouts/partials/home/hero.html ================================================
Bootstrap Icons
New in v1.11.0: 100 new icons!

Bootstrap Icons

Free, high quality, open source icon library with over 2,000 icons. Include them anyway you like—SVGs, SVG sprite, or web fonts. Use them with or without Bootstrap in any project.

{{ partialCached "ads" . }}

Currently v{{ .Site.Params.version }} Icons Icon Sprite Install Usage Styling Accessibility GitHub repo

================================================ FILE: docs/layouts/partials/icons.html ================================================

Icons

================================================ FILE: docs/layouts/partials/navbar.html ================================================ ================================================ FILE: docs/layouts/partials/scripts.html ================================================ {{- $esbuildOptions := dict "target" "es2019" -}} {{- if eq hugo.Environment "production" -}} {{- $esbuildOptions = merge $esbuildOptions (dict "minify" "true") -}} {{- end -}} {{- if or .IsHome (eq .Page.Layout "sprite") -}} {{- $searchJs := resources.Get "js/search.js" | js.Build $esbuildOptions | resources.Copy "/assets/js/search.js" -}} {{- end }} {{- $application := resources.Get "js/application.js" | js.Build $esbuildOptions | resources.Copy "/assets/js/application.js" -}} ================================================ FILE: docs/layouts/partials/skippy.html ================================================ Skip to main content ================================================ FILE: docs/layouts/partials/social.html ================================================ {{ "" | safeHTML }} {{ "" | safeHTML }} ================================================ FILE: docs/layouts/partials/stylesheet.html ================================================ {{- $sassOptions := dict "targetPath" "assets/css/docs.css" "precision" 6 -}} {{- $postcssOptions := dict "use" "autoprefixer" "noMap" true -}} {{- if eq hugo.Environment "production" -}} {{- $sassOptions = merge $sassOptions (dict "outputStyle" "compressed") -}} {{- end -}} {{- $style := resources.Get "scss/docs.scss" | toCSS $sassOptions | postCSS $postcssOptions -}} ================================================ FILE: docs/layouts/robots.txt ================================================ # www.robotstxt.org {{- $isProduction := eq hugo.Environment "production" -}} {{- $isNetlify := eq (getenv "NETLIFY") "true" -}} {{- $allowCrawling := and (not $isNetlify) $isProduction -}} {{ if $allowCrawling }} # Allow crawling of all content {{- end }} User-agent: * Disallow:{{ if not $allowCrawling }} /{{ end }} Sitemap: {{ "/sitemap.xml" | absURL }} ================================================ FILE: docs/layouts/shortcodes/example.html ================================================ {{- /* Usage: `example [args]` `args` are optional and can be one of the following: id: the `div`'s id - default: "" class: any extra class(es) to be added to the `div` - default "" show_preview: if the preview should be output in the HTML - default: `true` show_markup: if the markup should be output in the HTML - default: `true` */ -}} {{- $show_preview := .Get "show_preview" | default true -}} {{- $show_markup := .Get "show_markup" | default true -}} {{- $input := .Inner -}} {{- if eq $show_preview true -}} {{- $input -}} {{- end -}} {{- if eq $show_markup true -}} {{- $content := replaceRE `\n` `...` $input -}} {{- $content = replaceRE `(class=" *?")` "" $content -}} {{- highlight (trim $content "\n") "html" "" -}} {{- end -}} ================================================ FILE: docs/layouts/shortcodes/md.html ================================================ {{- .Inner | markdownify -}} ================================================ FILE: docs/layouts/sitemap.xml ================================================ {{ printf "" | safeHTML }} {{- range .Data.Pages -}}{{ if ne .Params.sitemap_exclude true }} {{ .Permalink }}{{ if not .Lastmod.IsZero }} {{ safeHTML (.Lastmod.Format "2006-01-02T15:04:05-07:00") }}{{ end }}{{ with .Sitemap.ChangeFreq }} {{ . }}{{ end }}{{ if ge .Sitemap.Priority 0.0 }} {{ .Sitemap.Priority }}{{ end }} {{ end }}{{ end }} ================================================ FILE: docs/static/CNAME ================================================ icons.getbootstrap.com ================================================ FILE: docs/static/assets/img/favicons/manifest.json ================================================ { "name": "Bootstrap Icons", "short_name": "Bootstrap Icons", "icons": [ { "src": "/assets/img/favicons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "/assets/img/favicons/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ], "start_url": "/?utm_source=a2hs", "theme_color": "#7952b3", "background_color": "#7952b3", "display": "standalone" } ================================================ FILE: eslint.config.mjs ================================================ import js from '@eslint/js' import globals from 'globals' /** @type {import('eslint').Linter.FlatConfig[]} */ export default [ // global ignores { ignores: [ '**/*.min.js', '**/dist/**', '**/vendor/**', '_site/**', 'node_modules/**', 'resources/**', '**/.fantasticonrc.js' ], }, { languageOptions: { ecmaVersion: 2020, sourceType: 'module', globals: { ...globals.nodeBuiltin } }, linterOptions: { reportUnusedDisableDirectives: 'error' } }, js.configs.recommended, { files: [ '**/*.js', '**/*.mjs' ], rules: { 'no-return-await': 'error', 'object-curly-spacing': [ 'error', 'always' ], 'prefer-template': 'error', semi: [ 'error', 'never' ], strict: 'error' } }, { files: [ 'docs/assets/js/**' ], languageOptions: { globals: { ...globals.browser } } } ] ================================================ FILE: font/bootstrap-icons.css ================================================ /*! * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/) * Copyright 2019-2024 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ @font-face { font-display: block; font-family: "bootstrap-icons"; src: url("./fonts/bootstrap-icons.woff2?e34853135f9e39acf64315236852cd5a") format("woff2"), url("./fonts/bootstrap-icons.woff?e34853135f9e39acf64315236852cd5a") format("woff"); } .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before { display: inline-block; font-family: bootstrap-icons !important; font-style: normal; font-weight: normal !important; font-variant: normal; text-transform: none; line-height: 1; vertical-align: -.125em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .bi-123::before { content: "\f67f"; } .bi-alarm-fill::before { content: "\f101"; } .bi-alarm::before { content: "\f102"; } .bi-align-bottom::before { content: "\f103"; } .bi-align-center::before { content: "\f104"; } .bi-align-end::before { content: "\f105"; } .bi-align-middle::before { content: "\f106"; } .bi-align-start::before { content: "\f107"; } .bi-align-top::before { content: "\f108"; } .bi-alt::before { content: "\f109"; } .bi-app-indicator::before { content: "\f10a"; } .bi-app::before { content: "\f10b"; } .bi-archive-fill::before { content: "\f10c"; } .bi-archive::before { content: "\f10d"; } .bi-arrow-90deg-down::before { content: "\f10e"; } .bi-arrow-90deg-left::before { content: "\f10f"; } .bi-arrow-90deg-right::before { content: "\f110"; } .bi-arrow-90deg-up::before { content: "\f111"; } .bi-arrow-bar-down::before { content: "\f112"; } .bi-arrow-bar-left::before { content: "\f113"; } .bi-arrow-bar-right::before { content: "\f114"; } .bi-arrow-bar-up::before { content: "\f115"; } .bi-arrow-clockwise::before { content: "\f116"; } .bi-arrow-counterclockwise::before { content: "\f117"; } .bi-arrow-down-circle-fill::before { content: "\f118"; } .bi-arrow-down-circle::before { content: "\f119"; } .bi-arrow-down-left-circle-fill::before { content: "\f11a"; } .bi-arrow-down-left-circle::before { content: "\f11b"; } .bi-arrow-down-left-square-fill::before { content: "\f11c"; } .bi-arrow-down-left-square::before { content: "\f11d"; } .bi-arrow-down-left::before { content: "\f11e"; } .bi-arrow-down-right-circle-fill::before { content: "\f11f"; } .bi-arrow-down-right-circle::before { content: "\f120"; } .bi-arrow-down-right-square-fill::before { content: "\f121"; } .bi-arrow-down-right-square::before { content: "\f122"; } .bi-arrow-down-right::before { content: "\f123"; } .bi-arrow-down-short::before { content: "\f124"; } .bi-arrow-down-square-fill::before { content: "\f125"; } .bi-arrow-down-square::before { content: "\f126"; } .bi-arrow-down-up::before { content: "\f127"; } .bi-arrow-down::before { content: "\f128"; } .bi-arrow-left-circle-fill::before { content: "\f129"; } .bi-arrow-left-circle::before { content: "\f12a"; } .bi-arrow-left-right::before { content: "\f12b"; } .bi-arrow-left-short::before { content: "\f12c"; } .bi-arrow-left-square-fill::before { content: "\f12d"; } .bi-arrow-left-square::before { content: "\f12e"; } .bi-arrow-left::before { content: "\f12f"; } .bi-arrow-repeat::before { content: "\f130"; } .bi-arrow-return-left::before { content: "\f131"; } .bi-arrow-return-right::before { content: "\f132"; } .bi-arrow-right-circle-fill::before { content: "\f133"; } .bi-arrow-right-circle::before { content: "\f134"; } .bi-arrow-right-short::before { content: "\f135"; } .bi-arrow-right-square-fill::before { content: "\f136"; } .bi-arrow-right-square::before { content: "\f137"; } .bi-arrow-right::before { content: "\f138"; } .bi-arrow-up-circle-fill::before { content: "\f139"; } .bi-arrow-up-circle::before { content: "\f13a"; } .bi-arrow-up-left-circle-fill::before { content: "\f13b"; } .bi-arrow-up-left-circle::before { content: "\f13c"; } .bi-arrow-up-left-square-fill::before { content: "\f13d"; } .bi-arrow-up-left-square::before { content: "\f13e"; } .bi-arrow-up-left::before { content: "\f13f"; } .bi-arrow-up-right-circle-fill::before { content: "\f140"; } .bi-arrow-up-right-circle::before { content: "\f141"; } .bi-arrow-up-right-square-fill::before { content: "\f142"; } .bi-arrow-up-right-square::before { content: "\f143"; } .bi-arrow-up-right::before { content: "\f144"; } .bi-arrow-up-short::before { content: "\f145"; } .bi-arrow-up-square-fill::before { content: "\f146"; } .bi-arrow-up-square::before { content: "\f147"; } .bi-arrow-up::before { content: "\f148"; } .bi-arrows-angle-contract::before { content: "\f149"; } .bi-arrows-angle-expand::before { content: "\f14a"; } .bi-arrows-collapse::before { content: "\f14b"; } .bi-arrows-expand::before { content: "\f14c"; } .bi-arrows-fullscreen::before { content: "\f14d"; } .bi-arrows-move::before { content: "\f14e"; } .bi-aspect-ratio-fill::before { content: "\f14f"; } .bi-aspect-ratio::before { content: "\f150"; } .bi-asterisk::before { content: "\f151"; } .bi-at::before { content: "\f152"; } .bi-award-fill::before { content: "\f153"; } .bi-award::before { content: "\f154"; } .bi-back::before { content: "\f155"; } .bi-backspace-fill::before { content: "\f156"; } .bi-backspace-reverse-fill::before { content: "\f157"; } .bi-backspace-reverse::before { content: "\f158"; } .bi-backspace::before { content: "\f159"; } .bi-badge-3d-fill::before { content: "\f15a"; } .bi-badge-3d::before { content: "\f15b"; } .bi-badge-4k-fill::before { content: "\f15c"; } .bi-badge-4k::before { content: "\f15d"; } .bi-badge-8k-fill::before { content: "\f15e"; } .bi-badge-8k::before { content: "\f15f"; } .bi-badge-ad-fill::before { content: "\f160"; } .bi-badge-ad::before { content: "\f161"; } .bi-badge-ar-fill::before { content: "\f162"; } .bi-badge-ar::before { content: "\f163"; } .bi-badge-cc-fill::before { content: "\f164"; } .bi-badge-cc::before { content: "\f165"; } .bi-badge-hd-fill::before { content: "\f166"; } .bi-badge-hd::before { content: "\f167"; } .bi-badge-tm-fill::before { content: "\f168"; } .bi-badge-tm::before { content: "\f169"; } .bi-badge-vo-fill::before { content: "\f16a"; } .bi-badge-vo::before { content: "\f16b"; } .bi-badge-vr-fill::before { content: "\f16c"; } .bi-badge-vr::before { content: "\f16d"; } .bi-badge-wc-fill::before { content: "\f16e"; } .bi-badge-wc::before { content: "\f16f"; } .bi-bag-check-fill::before { content: "\f170"; } .bi-bag-check::before { content: "\f171"; } .bi-bag-dash-fill::before { content: "\f172"; } .bi-bag-dash::before { content: "\f173"; } .bi-bag-fill::before { content: "\f174"; } .bi-bag-plus-fill::before { content: "\f175"; } .bi-bag-plus::before { content: "\f176"; } .bi-bag-x-fill::before { content: "\f177"; } .bi-bag-x::before { content: "\f178"; } .bi-bag::before { content: "\f179"; } .bi-bar-chart-fill::before { content: "\f17a"; } .bi-bar-chart-line-fill::before { content: "\f17b"; } .bi-bar-chart-line::before { content: "\f17c"; } .bi-bar-chart-steps::before { content: "\f17d"; } .bi-bar-chart::before { content: "\f17e"; } .bi-basket-fill::before { content: "\f17f"; } .bi-basket::before { content: "\f180"; } .bi-basket2-fill::before { content: "\f181"; } .bi-basket2::before { content: "\f182"; } .bi-basket3-fill::before { content: "\f183"; } .bi-basket3::before { content: "\f184"; } .bi-battery-charging::before { content: "\f185"; } .bi-battery-full::before { content: "\f186"; } .bi-battery-half::before { content: "\f187"; } .bi-battery::before { content: "\f188"; } .bi-bell-fill::before { content: "\f189"; } .bi-bell::before { content: "\f18a"; } .bi-bezier::before { content: "\f18b"; } .bi-bezier2::before { content: "\f18c"; } .bi-bicycle::before { content: "\f18d"; } .bi-binoculars-fill::before { content: "\f18e"; } .bi-binoculars::before { content: "\f18f"; } .bi-blockquote-left::before { content: "\f190"; } .bi-blockquote-right::before { content: "\f191"; } .bi-book-fill::before { content: "\f192"; } .bi-book-half::before { content: "\f193"; } .bi-book::before { content: "\f194"; } .bi-bookmark-check-fill::before { content: "\f195"; } .bi-bookmark-check::before { content: "\f196"; } .bi-bookmark-dash-fill::before { content: "\f197"; } .bi-bookmark-dash::before { content: "\f198"; } .bi-bookmark-fill::before { content: "\f199"; } .bi-bookmark-heart-fill::before { content: "\f19a"; } .bi-bookmark-heart::before { content: "\f19b"; } .bi-bookmark-plus-fill::before { content: "\f19c"; } .bi-bookmark-plus::before { content: "\f19d"; } .bi-bookmark-star-fill::before { content: "\f19e"; } .bi-bookmark-star::before { content: "\f19f"; } .bi-bookmark-x-fill::before { content: "\f1a0"; } .bi-bookmark-x::before { content: "\f1a1"; } .bi-bookmark::before { content: "\f1a2"; } .bi-bookmarks-fill::before { content: "\f1a3"; } .bi-bookmarks::before { content: "\f1a4"; } .bi-bookshelf::before { content: "\f1a5"; } .bi-bootstrap-fill::before { content: "\f1a6"; } .bi-bootstrap-reboot::before { content: "\f1a7"; } .bi-bootstrap::before { content: "\f1a8"; } .bi-border-all::before { content: "\f1a9"; } .bi-border-bottom::before { content: "\f1aa"; } .bi-border-center::before { content: "\f1ab"; } .bi-border-inner::before { content: "\f1ac"; } .bi-border-left::before { content: "\f1ad"; } .bi-border-middle::before { content: "\f1ae"; } .bi-border-outer::before { content: "\f1af"; } .bi-border-right::before { content: "\f1b0"; } .bi-border-style::before { content: "\f1b1"; } .bi-border-top::before { content: "\f1b2"; } .bi-border-width::before { content: "\f1b3"; } .bi-border::before { content: "\f1b4"; } .bi-bounding-box-circles::before { content: "\f1b5"; } .bi-bounding-box::before { content: "\f1b6"; } .bi-box-arrow-down-left::before { content: "\f1b7"; } .bi-box-arrow-down-right::before { content: "\f1b8"; } .bi-box-arrow-down::before { content: "\f1b9"; } .bi-box-arrow-in-down-left::before { content: "\f1ba"; } .bi-box-arrow-in-down-right::before { content: "\f1bb"; } .bi-box-arrow-in-down::before { content: "\f1bc"; } .bi-box-arrow-in-left::before { content: "\f1bd"; } .bi-box-arrow-in-right::before { content: "\f1be"; } .bi-box-arrow-in-up-left::before { content: "\f1bf"; } .bi-box-arrow-in-up-right::before { content: "\f1c0"; } .bi-box-arrow-in-up::before { content: "\f1c1"; } .bi-box-arrow-left::before { content: "\f1c2"; } .bi-box-arrow-right::before { content: "\f1c3"; } .bi-box-arrow-up-left::before { content: "\f1c4"; } .bi-box-arrow-up-right::before { content: "\f1c5"; } .bi-box-arrow-up::before { content: "\f1c6"; } .bi-box-seam::before { content: "\f1c7"; } .bi-box::before { content: "\f1c8"; } .bi-braces::before { content: "\f1c9"; } .bi-bricks::before { content: "\f1ca"; } .bi-briefcase-fill::before { content: "\f1cb"; } .bi-briefcase::before { content: "\f1cc"; } .bi-brightness-alt-high-fill::before { content: "\f1cd"; } .bi-brightness-alt-high::before { content: "\f1ce"; } .bi-brightness-alt-low-fill::before { content: "\f1cf"; } .bi-brightness-alt-low::before { content: "\f1d0"; } .bi-brightness-high-fill::before { content: "\f1d1"; } .bi-brightness-high::before { content: "\f1d2"; } .bi-brightness-low-fill::before { content: "\f1d3"; } .bi-brightness-low::before { content: "\f1d4"; } .bi-broadcast-pin::before { content: "\f1d5"; } .bi-broadcast::before { content: "\f1d6"; } .bi-brush-fill::before { content: "\f1d7"; } .bi-brush::before { content: "\f1d8"; } .bi-bucket-fill::before { content: "\f1d9"; } .bi-bucket::before { content: "\f1da"; } .bi-bug-fill::before { content: "\f1db"; } .bi-bug::before { content: "\f1dc"; } .bi-building::before { content: "\f1dd"; } .bi-bullseye::before { content: "\f1de"; } .bi-calculator-fill::before { content: "\f1df"; } .bi-calculator::before { content: "\f1e0"; } .bi-calendar-check-fill::before { content: "\f1e1"; } .bi-calendar-check::before { content: "\f1e2"; } .bi-calendar-date-fill::before { content: "\f1e3"; } .bi-calendar-date::before { content: "\f1e4"; } .bi-calendar-day-fill::before { content: "\f1e5"; } .bi-calendar-day::before { content: "\f1e6"; } .bi-calendar-event-fill::before { content: "\f1e7"; } .bi-calendar-event::before { content: "\f1e8"; } .bi-calendar-fill::before { content: "\f1e9"; } .bi-calendar-minus-fill::before { content: "\f1ea"; } .bi-calendar-minus::before { content: "\f1eb"; } .bi-calendar-month-fill::before { content: "\f1ec"; } .bi-calendar-month::before { content: "\f1ed"; } .bi-calendar-plus-fill::before { content: "\f1ee"; } .bi-calendar-plus::before { content: "\f1ef"; } .bi-calendar-range-fill::before { content: "\f1f0"; } .bi-calendar-range::before { content: "\f1f1"; } .bi-calendar-week-fill::before { content: "\f1f2"; } .bi-calendar-week::before { content: "\f1f3"; } .bi-calendar-x-fill::before { content: "\f1f4"; } .bi-calendar-x::before { content: "\f1f5"; } .bi-calendar::before { content: "\f1f6"; } .bi-calendar2-check-fill::before { content: "\f1f7"; } .bi-calendar2-check::before { content: "\f1f8"; } .bi-calendar2-date-fill::before { content: "\f1f9"; } .bi-calendar2-date::before { content: "\f1fa"; } .bi-calendar2-day-fill::before { content: "\f1fb"; } .bi-calendar2-day::before { content: "\f1fc"; } .bi-calendar2-event-fill::before { content: "\f1fd"; } .bi-calendar2-event::before { content: "\f1fe"; } .bi-calendar2-fill::before { content: "\f1ff"; } .bi-calendar2-minus-fill::before { content: "\f200"; } .bi-calendar2-minus::before { content: "\f201"; } .bi-calendar2-month-fill::before { content: "\f202"; } .bi-calendar2-month::before { content: "\f203"; } .bi-calendar2-plus-fill::before { content: "\f204"; } .bi-calendar2-plus::before { content: "\f205"; } .bi-calendar2-range-fill::before { content: "\f206"; } .bi-calendar2-range::before { content: "\f207"; } .bi-calendar2-week-fill::before { content: "\f208"; } .bi-calendar2-week::before { content: "\f209"; } .bi-calendar2-x-fill::before { content: "\f20a"; } .bi-calendar2-x::before { content: "\f20b"; } .bi-calendar2::before { content: "\f20c"; } .bi-calendar3-event-fill::before { content: "\f20d"; } .bi-calendar3-event::before { content: "\f20e"; } .bi-calendar3-fill::before { content: "\f20f"; } .bi-calendar3-range-fill::before { content: "\f210"; } .bi-calendar3-range::before { content: "\f211"; } .bi-calendar3-week-fill::before { content: "\f212"; } .bi-calendar3-week::before { content: "\f213"; } .bi-calendar3::before { content: "\f214"; } .bi-calendar4-event::before { content: "\f215"; } .bi-calendar4-range::before { content: "\f216"; } .bi-calendar4-week::before { content: "\f217"; } .bi-calendar4::before { content: "\f218"; } .bi-camera-fill::before { content: "\f219"; } .bi-camera-reels-fill::before { content: "\f21a"; } .bi-camera-reels::before { content: "\f21b"; } .bi-camera-video-fill::before { content: "\f21c"; } .bi-camera-video-off-fill::before { content: "\f21d"; } .bi-camera-video-off::before { content: "\f21e"; } .bi-camera-video::before { content: "\f21f"; } .bi-camera::before { content: "\f220"; } .bi-camera2::before { content: "\f221"; } .bi-capslock-fill::before { content: "\f222"; } .bi-capslock::before { content: "\f223"; } .bi-card-checklist::before { content: "\f224"; } .bi-card-heading::before { content: "\f225"; } .bi-card-image::before { content: "\f226"; } .bi-card-list::before { content: "\f227"; } .bi-card-text::before { content: "\f228"; } .bi-caret-down-fill::before { content: "\f229"; } .bi-caret-down-square-fill::before { content: "\f22a"; } .bi-caret-down-square::before { content: "\f22b"; } .bi-caret-down::before { content: "\f22c"; } .bi-caret-left-fill::before { content: "\f22d"; } .bi-caret-left-square-fill::before { content: "\f22e"; } .bi-caret-left-square::before { content: "\f22f"; } .bi-caret-left::before { content: "\f230"; } .bi-caret-right-fill::before { content: "\f231"; } .bi-caret-right-square-fill::before { content: "\f232"; } .bi-caret-right-square::before { content: "\f233"; } .bi-caret-right::before { content: "\f234"; } .bi-caret-up-fill::before { content: "\f235"; } .bi-caret-up-square-fill::before { content: "\f236"; } .bi-caret-up-square::before { content: "\f237"; } .bi-caret-up::before { content: "\f238"; } .bi-cart-check-fill::before { content: "\f239"; } .bi-cart-check::before { content: "\f23a"; } .bi-cart-dash-fill::before { content: "\f23b"; } .bi-cart-dash::before { content: "\f23c"; } .bi-cart-fill::before { content: "\f23d"; } .bi-cart-plus-fill::before { content: "\f23e"; } .bi-cart-plus::before { content: "\f23f"; } .bi-cart-x-fill::before { content: "\f240"; } .bi-cart-x::before { content: "\f241"; } .bi-cart::before { content: "\f242"; } .bi-cart2::before { content: "\f243"; } .bi-cart3::before { content: "\f244"; } .bi-cart4::before { content: "\f245"; } .bi-cash-stack::before { content: "\f246"; } .bi-cash::before { content: "\f247"; } .bi-cast::before { content: "\f248"; } .bi-chat-dots-fill::before { content: "\f249"; } .bi-chat-dots::before { content: "\f24a"; } .bi-chat-fill::before { content: "\f24b"; } .bi-chat-left-dots-fill::before { content: "\f24c"; } .bi-chat-left-dots::before { content: "\f24d"; } .bi-chat-left-fill::before { content: "\f24e"; } .bi-chat-left-quote-fill::before { content: "\f24f"; } .bi-chat-left-quote::before { content: "\f250"; } .bi-chat-left-text-fill::before { content: "\f251"; } .bi-chat-left-text::before { content: "\f252"; } .bi-chat-left::before { content: "\f253"; } .bi-chat-quote-fill::before { content: "\f254"; } .bi-chat-quote::before { content: "\f255"; } .bi-chat-right-dots-fill::before { content: "\f256"; } .bi-chat-right-dots::before { content: "\f257"; } .bi-chat-right-fill::before { content: "\f258"; } .bi-chat-right-quote-fill::before { content: "\f259"; } .bi-chat-right-quote::before { content: "\f25a"; } .bi-chat-right-text-fill::before { content: "\f25b"; } .bi-chat-right-text::before { content: "\f25c"; } .bi-chat-right::before { content: "\f25d"; } .bi-chat-square-dots-fill::before { content: "\f25e"; } .bi-chat-square-dots::before { content: "\f25f"; } .bi-chat-square-fill::before { content: "\f260"; } .bi-chat-square-quote-fill::before { content: "\f261"; } .bi-chat-square-quote::before { content: "\f262"; } .bi-chat-square-text-fill::before { content: "\f263"; } .bi-chat-square-text::before { content: "\f264"; } .bi-chat-square::before { content: "\f265"; } .bi-chat-text-fill::before { content: "\f266"; } .bi-chat-text::before { content: "\f267"; } .bi-chat::before { content: "\f268"; } .bi-check-all::before { content: "\f269"; } .bi-check-circle-fill::before { content: "\f26a"; } .bi-check-circle::before { content: "\f26b"; } .bi-check-square-fill::before { content: "\f26c"; } .bi-check-square::before { content: "\f26d"; } .bi-check::before { content: "\f26e"; } .bi-check2-all::before { content: "\f26f"; } .bi-check2-circle::before { content: "\f270"; } .bi-check2-square::before { content: "\f271"; } .bi-check2::before { content: "\f272"; } .bi-chevron-bar-contract::before { content: "\f273"; } .bi-chevron-bar-down::before { content: "\f274"; } .bi-chevron-bar-expand::before { content: "\f275"; } .bi-chevron-bar-left::before { content: "\f276"; } .bi-chevron-bar-right::before { content: "\f277"; } .bi-chevron-bar-up::before { content: "\f278"; } .bi-chevron-compact-down::before { content: "\f279"; } .bi-chevron-compact-left::before { content: "\f27a"; } .bi-chevron-compact-right::before { content: "\f27b"; } .bi-chevron-compact-up::before { content: "\f27c"; } .bi-chevron-contract::before { content: "\f27d"; } .bi-chevron-double-down::before { content: "\f27e"; } .bi-chevron-double-left::before { content: "\f27f"; } .bi-chevron-double-right::before { content: "\f280"; } .bi-chevron-double-up::before { content: "\f281"; } .bi-chevron-down::before { content: "\f282"; } .bi-chevron-expand::before { content: "\f283"; } .bi-chevron-left::before { content: "\f284"; } .bi-chevron-right::before { content: "\f285"; } .bi-chevron-up::before { content: "\f286"; } .bi-circle-fill::before { content: "\f287"; } .bi-circle-half::before { content: "\f288"; } .bi-circle-square::before { content: "\f289"; } .bi-circle::before { content: "\f28a"; } .bi-clipboard-check::before { content: "\f28b"; } .bi-clipboard-data::before { content: "\f28c"; } .bi-clipboard-minus::before { content: "\f28d"; } .bi-clipboard-plus::before { content: "\f28e"; } .bi-clipboard-x::before { content: "\f28f"; } .bi-clipboard::before { content: "\f290"; } .bi-clock-fill::before { content: "\f291"; } .bi-clock-history::before { content: "\f292"; } .bi-clock::before { content: "\f293"; } .bi-cloud-arrow-down-fill::before { content: "\f294"; } .bi-cloud-arrow-down::before { content: "\f295"; } .bi-cloud-arrow-up-fill::before { content: "\f296"; } .bi-cloud-arrow-up::before { content: "\f297"; } .bi-cloud-check-fill::before { content: "\f298"; } .bi-cloud-check::before { content: "\f299"; } .bi-cloud-download-fill::before { content: "\f29a"; } .bi-cloud-download::before { content: "\f29b"; } .bi-cloud-drizzle-fill::before { content: "\f29c"; } .bi-cloud-drizzle::before { content: "\f29d"; } .bi-cloud-fill::before { content: "\f29e"; } .bi-cloud-fog-fill::before { content: "\f29f"; } .bi-cloud-fog::before { content: "\f2a0"; } .bi-cloud-fog2-fill::before { content: "\f2a1"; } .bi-cloud-fog2::before { content: "\f2a2"; } .bi-cloud-hail-fill::before { content: "\f2a3"; } .bi-cloud-hail::before { content: "\f2a4"; } .bi-cloud-haze-fill::before { content: "\f2a6"; } .bi-cloud-haze::before { content: "\f2a7"; } .bi-cloud-haze2-fill::before { content: "\f2a8"; } .bi-cloud-lightning-fill::before { content: "\f2a9"; } .bi-cloud-lightning-rain-fill::before { content: "\f2aa"; } .bi-cloud-lightning-rain::before { content: "\f2ab"; } .bi-cloud-lightning::before { content: "\f2ac"; } .bi-cloud-minus-fill::before { content: "\f2ad"; } .bi-cloud-minus::before { content: "\f2ae"; } .bi-cloud-moon-fill::before { content: "\f2af"; } .bi-cloud-moon::before { content: "\f2b0"; } .bi-cloud-plus-fill::before { content: "\f2b1"; } .bi-cloud-plus::before { content: "\f2b2"; } .bi-cloud-rain-fill::before { content: "\f2b3"; } .bi-cloud-rain-heavy-fill::before { content: "\f2b4"; } .bi-cloud-rain-heavy::before { content: "\f2b5"; } .bi-cloud-rain::before { content: "\f2b6"; } .bi-cloud-slash-fill::before { content: "\f2b7"; } .bi-cloud-slash::before { content: "\f2b8"; } .bi-cloud-sleet-fill::before { content: "\f2b9"; } .bi-cloud-sleet::before { content: "\f2ba"; } .bi-cloud-snow-fill::before { content: "\f2bb"; } .bi-cloud-snow::before { content: "\f2bc"; } .bi-cloud-sun-fill::before { content: "\f2bd"; } .bi-cloud-sun::before { content: "\f2be"; } .bi-cloud-upload-fill::before { content: "\f2bf"; } .bi-cloud-upload::before { content: "\f2c0"; } .bi-cloud::before { content: "\f2c1"; } .bi-clouds-fill::before { content: "\f2c2"; } .bi-clouds::before { content: "\f2c3"; } .bi-cloudy-fill::before { content: "\f2c4"; } .bi-cloudy::before { content: "\f2c5"; } .bi-code-slash::before { content: "\f2c6"; } .bi-code-square::before { content: "\f2c7"; } .bi-code::before { content: "\f2c8"; } .bi-collection-fill::before { content: "\f2c9"; } .bi-collection-play-fill::before { content: "\f2ca"; } .bi-collection-play::before { content: "\f2cb"; } .bi-collection::before { content: "\f2cc"; } .bi-columns-gap::before { content: "\f2cd"; } .bi-columns::before { content: "\f2ce"; } .bi-command::before { content: "\f2cf"; } .bi-compass-fill::before { content: "\f2d0"; } .bi-compass::before { content: "\f2d1"; } .bi-cone-striped::before { content: "\f2d2"; } .bi-cone::before { content: "\f2d3"; } .bi-controller::before { content: "\f2d4"; } .bi-cpu-fill::before { content: "\f2d5"; } .bi-cpu::before { content: "\f2d6"; } .bi-credit-card-2-back-fill::before { content: "\f2d7"; } .bi-credit-card-2-back::before { content: "\f2d8"; } .bi-credit-card-2-front-fill::before { content: "\f2d9"; } .bi-credit-card-2-front::before { content: "\f2da"; } .bi-credit-card-fill::before { content: "\f2db"; } .bi-credit-card::before { content: "\f2dc"; } .bi-crop::before { content: "\f2dd"; } .bi-cup-fill::before { content: "\f2de"; } .bi-cup-straw::before { content: "\f2df"; } .bi-cup::before { content: "\f2e0"; } .bi-cursor-fill::before { content: "\f2e1"; } .bi-cursor-text::before { content: "\f2e2"; } .bi-cursor::before { content: "\f2e3"; } .bi-dash-circle-dotted::before { content: "\f2e4"; } .bi-dash-circle-fill::before { content: "\f2e5"; } .bi-dash-circle::before { content: "\f2e6"; } .bi-dash-square-dotted::before { content: "\f2e7"; } .bi-dash-square-fill::before { content: "\f2e8"; } .bi-dash-square::before { content: "\f2e9"; } .bi-dash::before { content: "\f2ea"; } .bi-diagram-2-fill::before { content: "\f2eb"; } .bi-diagram-2::before { content: "\f2ec"; } .bi-diagram-3-fill::before { content: "\f2ed"; } .bi-diagram-3::before { content: "\f2ee"; } .bi-diamond-fill::before { content: "\f2ef"; } .bi-diamond-half::before { content: "\f2f0"; } .bi-diamond::before { content: "\f2f1"; } .bi-dice-1-fill::before { content: "\f2f2"; } .bi-dice-1::before { content: "\f2f3"; } .bi-dice-2-fill::before { content: "\f2f4"; } .bi-dice-2::before { content: "\f2f5"; } .bi-dice-3-fill::before { content: "\f2f6"; } .bi-dice-3::before { content: "\f2f7"; } .bi-dice-4-fill::before { content: "\f2f8"; } .bi-dice-4::before { content: "\f2f9"; } .bi-dice-5-fill::before { content: "\f2fa"; } .bi-dice-5::before { content: "\f2fb"; } .bi-dice-6-fill::before { content: "\f2fc"; } .bi-dice-6::before { content: "\f2fd"; } .bi-disc-fill::before { content: "\f2fe"; } .bi-disc::before { content: "\f2ff"; } .bi-discord::before { content: "\f300"; } .bi-display-fill::before { content: "\f301"; } .bi-display::before { content: "\f302"; } .bi-distribute-horizontal::before { content: "\f303"; } .bi-distribute-vertical::before { content: "\f304"; } .bi-door-closed-fill::before { content: "\f305"; } .bi-door-closed::before { content: "\f306"; } .bi-door-open-fill::before { content: "\f307"; } .bi-door-open::before { content: "\f308"; } .bi-dot::before { content: "\f309"; } .bi-download::before { content: "\f30a"; } .bi-droplet-fill::before { content: "\f30b"; } .bi-droplet-half::before { content: "\f30c"; } .bi-droplet::before { content: "\f30d"; } .bi-earbuds::before { content: "\f30e"; } .bi-easel-fill::before { content: "\f30f"; } .bi-easel::before { content: "\f310"; } .bi-egg-fill::before { content: "\f311"; } .bi-egg-fried::before { content: "\f312"; } .bi-egg::before { content: "\f313"; } .bi-eject-fill::before { content: "\f314"; } .bi-eject::before { content: "\f315"; } .bi-emoji-angry-fill::before { content: "\f316"; } .bi-emoji-angry::before { content: "\f317"; } .bi-emoji-dizzy-fill::before { content: "\f318"; } .bi-emoji-dizzy::before { content: "\f319"; } .bi-emoji-expressionless-fill::before { content: "\f31a"; } .bi-emoji-expressionless::before { content: "\f31b"; } .bi-emoji-frown-fill::before { content: "\f31c"; } .bi-emoji-frown::before { content: "\f31d"; } .bi-emoji-heart-eyes-fill::before { content: "\f31e"; } .bi-emoji-heart-eyes::before { content: "\f31f"; } .bi-emoji-laughing-fill::before { content: "\f320"; } .bi-emoji-laughing::before { content: "\f321"; } .bi-emoji-neutral-fill::before { content: "\f322"; } .bi-emoji-neutral::before { content: "\f323"; } .bi-emoji-smile-fill::before { content: "\f324"; } .bi-emoji-smile-upside-down-fill::before { content: "\f325"; } .bi-emoji-smile-upside-down::before { content: "\f326"; } .bi-emoji-smile::before { content: "\f327"; } .bi-emoji-sunglasses-fill::before { content: "\f328"; } .bi-emoji-sunglasses::before { content: "\f329"; } .bi-emoji-wink-fill::before { content: "\f32a"; } .bi-emoji-wink::before { content: "\f32b"; } .bi-envelope-fill::before { content: "\f32c"; } .bi-envelope-open-fill::before { content: "\f32d"; } .bi-envelope-open::before { content: "\f32e"; } .bi-envelope::before { content: "\f32f"; } .bi-eraser-fill::before { content: "\f330"; } .bi-eraser::before { content: "\f331"; } .bi-exclamation-circle-fill::before { content: "\f332"; } .bi-exclamation-circle::before { content: "\f333"; } .bi-exclamation-diamond-fill::before { content: "\f334"; } .bi-exclamation-diamond::before { content: "\f335"; } .bi-exclamation-octagon-fill::before { content: "\f336"; } .bi-exclamation-octagon::before { content: "\f337"; } .bi-exclamation-square-fill::before { content: "\f338"; } .bi-exclamation-square::before { content: "\f339"; } .bi-exclamation-triangle-fill::before { content: "\f33a"; } .bi-exclamation-triangle::before { content: "\f33b"; } .bi-exclamation::before { content: "\f33c"; } .bi-exclude::before { content: "\f33d"; } .bi-eye-fill::before { content: "\f33e"; } .bi-eye-slash-fill::before { content: "\f33f"; } .bi-eye-slash::before { content: "\f340"; } .bi-eye::before { content: "\f341"; } .bi-eyedropper::before { content: "\f342"; } .bi-eyeglasses::before { content: "\f343"; } .bi-facebook::before { content: "\f344"; } .bi-file-arrow-down-fill::before { content: "\f345"; } .bi-file-arrow-down::before { content: "\f346"; } .bi-file-arrow-up-fill::before { content: "\f347"; } .bi-file-arrow-up::before { content: "\f348"; } .bi-file-bar-graph-fill::before { content: "\f349"; } .bi-file-bar-graph::before { content: "\f34a"; } .bi-file-binary-fill::before { content: "\f34b"; } .bi-file-binary::before { content: "\f34c"; } .bi-file-break-fill::before { content: "\f34d"; } .bi-file-break::before { content: "\f34e"; } .bi-file-check-fill::before { content: "\f34f"; } .bi-file-check::before { content: "\f350"; } .bi-file-code-fill::before { content: "\f351"; } .bi-file-code::before { content: "\f352"; } .bi-file-diff-fill::before { content: "\f353"; } .bi-file-diff::before { content: "\f354"; } .bi-file-earmark-arrow-down-fill::before { content: "\f355"; } .bi-file-earmark-arrow-down::before { content: "\f356"; } .bi-file-earmark-arrow-up-fill::before { content: "\f357"; } .bi-file-earmark-arrow-up::before { content: "\f358"; } .bi-file-earmark-bar-graph-fill::before { content: "\f359"; } .bi-file-earmark-bar-graph::before { content: "\f35a"; } .bi-file-earmark-binary-fill::before { content: "\f35b"; } .bi-file-earmark-binary::before { content: "\f35c"; } .bi-file-earmark-break-fill::before { content: "\f35d"; } .bi-file-earmark-break::before { content: "\f35e"; } .bi-file-earmark-check-fill::before { content: "\f35f"; } .bi-file-earmark-check::before { content: "\f360"; } .bi-file-earmark-code-fill::before { content: "\f361"; } .bi-file-earmark-code::before { content: "\f362"; } .bi-file-earmark-diff-fill::before { content: "\f363"; } .bi-file-earmark-diff::before { content: "\f364"; } .bi-file-earmark-easel-fill::before { content: "\f365"; } .bi-file-earmark-easel::before { content: "\f366"; } .bi-file-earmark-excel-fill::before { content: "\f367"; } .bi-file-earmark-excel::before { content: "\f368"; } .bi-file-earmark-fill::before { content: "\f369"; } .bi-file-earmark-font-fill::before { content: "\f36a"; } .bi-file-earmark-font::before { content: "\f36b"; } .bi-file-earmark-image-fill::before { content: "\f36c"; } .bi-file-earmark-image::before { content: "\f36d"; } .bi-file-earmark-lock-fill::before { content: "\f36e"; } .bi-file-earmark-lock::before { content: "\f36f"; } .bi-file-earmark-lock2-fill::before { content: "\f370"; } .bi-file-earmark-lock2::before { content: "\f371"; } .bi-file-earmark-medical-fill::before { content: "\f372"; } .bi-file-earmark-medical::before { content: "\f373"; } .bi-file-earmark-minus-fill::before { content: "\f374"; } .bi-file-earmark-minus::before { content: "\f375"; } .bi-file-earmark-music-fill::before { content: "\f376"; } .bi-file-earmark-music::before { content: "\f377"; } .bi-file-earmark-person-fill::before { content: "\f378"; } .bi-file-earmark-person::before { content: "\f379"; } .bi-file-earmark-play-fill::before { content: "\f37a"; } .bi-file-earmark-play::before { content: "\f37b"; } .bi-file-earmark-plus-fill::before { content: "\f37c"; } .bi-file-earmark-plus::before { content: "\f37d"; } .bi-file-earmark-post-fill::before { content: "\f37e"; } .bi-file-earmark-post::before { content: "\f37f"; } .bi-file-earmark-ppt-fill::before { content: "\f380"; } .bi-file-earmark-ppt::before { content: "\f381"; } .bi-file-earmark-richtext-fill::before { content: "\f382"; } .bi-file-earmark-richtext::before { content: "\f383"; } .bi-file-earmark-ruled-fill::before { content: "\f384"; } .bi-file-earmark-ruled::before { content: "\f385"; } .bi-file-earmark-slides-fill::before { content: "\f386"; } .bi-file-earmark-slides::before { content: "\f387"; } .bi-file-earmark-spreadsheet-fill::before { content: "\f388"; } .bi-file-earmark-spreadsheet::before { content: "\f389"; } .bi-file-earmark-text-fill::before { content: "\f38a"; } .bi-file-earmark-text::before { content: "\f38b"; } .bi-file-earmark-word-fill::before { content: "\f38c"; } .bi-file-earmark-word::before { content: "\f38d"; } .bi-file-earmark-x-fill::before { content: "\f38e"; } .bi-file-earmark-x::before { content: "\f38f"; } .bi-file-earmark-zip-fill::before { content: "\f390"; } .bi-file-earmark-zip::before { content: "\f391"; } .bi-file-earmark::before { content: "\f392"; } .bi-file-easel-fill::before { content: "\f393"; } .bi-file-easel::before { content: "\f394"; } .bi-file-excel-fill::before { content: "\f395"; } .bi-file-excel::before { content: "\f396"; } .bi-file-fill::before { content: "\f397"; } .bi-file-font-fill::before { content: "\f398"; } .bi-file-font::before { content: "\f399"; } .bi-file-image-fill::before { content: "\f39a"; } .bi-file-image::before { content: "\f39b"; } .bi-file-lock-fill::before { content: "\f39c"; } .bi-file-lock::before { content: "\f39d"; } .bi-file-lock2-fill::before { content: "\f39e"; } .bi-file-lock2::before { content: "\f39f"; } .bi-file-medical-fill::before { content: "\f3a0"; } .bi-file-medical::before { content: "\f3a1"; } .bi-file-minus-fill::before { content: "\f3a2"; } .bi-file-minus::before { content: "\f3a3"; } .bi-file-music-fill::before { content: "\f3a4"; } .bi-file-music::before { content: "\f3a5"; } .bi-file-person-fill::before { content: "\f3a6"; } .bi-file-person::before { content: "\f3a7"; } .bi-file-play-fill::before { content: "\f3a8"; } .bi-file-play::before { content: "\f3a9"; } .bi-file-plus-fill::before { content: "\f3aa"; } .bi-file-plus::before { content: "\f3ab"; } .bi-file-post-fill::before { content: "\f3ac"; } .bi-file-post::before { content: "\f3ad"; } .bi-file-ppt-fill::before { content: "\f3ae"; } .bi-file-ppt::before { content: "\f3af"; } .bi-file-richtext-fill::before { content: "\f3b0"; } .bi-file-richtext::before { content: "\f3b1"; } .bi-file-ruled-fill::before { content: "\f3b2"; } .bi-file-ruled::before { content: "\f3b3"; } .bi-file-slides-fill::before { content: "\f3b4"; } .bi-file-slides::before { content: "\f3b5"; } .bi-file-spreadsheet-fill::before { content: "\f3b6"; } .bi-file-spreadsheet::before { content: "\f3b7"; } .bi-file-text-fill::before { content: "\f3b8"; } .bi-file-text::before { content: "\f3b9"; } .bi-file-word-fill::before { content: "\f3ba"; } .bi-file-word::before { content: "\f3bb"; } .bi-file-x-fill::before { content: "\f3bc"; } .bi-file-x::before { content: "\f3bd"; } .bi-file-zip-fill::before { content: "\f3be"; } .bi-file-zip::before { content: "\f3bf"; } .bi-file::before { content: "\f3c0"; } .bi-files-alt::before { content: "\f3c1"; } .bi-files::before { content: "\f3c2"; } .bi-film::before { content: "\f3c3"; } .bi-filter-circle-fill::before { content: "\f3c4"; } .bi-filter-circle::before { content: "\f3c5"; } .bi-filter-left::before { content: "\f3c6"; } .bi-filter-right::before { content: "\f3c7"; } .bi-filter-square-fill::before { content: "\f3c8"; } .bi-filter-square::before { content: "\f3c9"; } .bi-filter::before { content: "\f3ca"; } .bi-flag-fill::before { content: "\f3cb"; } .bi-flag::before { content: "\f3cc"; } .bi-flower1::before { content: "\f3cd"; } .bi-flower2::before { content: "\f3ce"; } .bi-flower3::before { content: "\f3cf"; } .bi-folder-check::before { content: "\f3d0"; } .bi-folder-fill::before { content: "\f3d1"; } .bi-folder-minus::before { content: "\f3d2"; } .bi-folder-plus::before { content: "\f3d3"; } .bi-folder-symlink-fill::before { content: "\f3d4"; } .bi-folder-symlink::before { content: "\f3d5"; } .bi-folder-x::before { content: "\f3d6"; } .bi-folder::before { content: "\f3d7"; } .bi-folder2-open::before { content: "\f3d8"; } .bi-folder2::before { content: "\f3d9"; } .bi-fonts::before { content: "\f3da"; } .bi-forward-fill::before { content: "\f3db"; } .bi-forward::before { content: "\f3dc"; } .bi-front::before { content: "\f3dd"; } .bi-fullscreen-exit::before { content: "\f3de"; } .bi-fullscreen::before { content: "\f3df"; } .bi-funnel-fill::before { content: "\f3e0"; } .bi-funnel::before { content: "\f3e1"; } .bi-gear-fill::before { content: "\f3e2"; } .bi-gear-wide-connected::before { content: "\f3e3"; } .bi-gear-wide::before { content: "\f3e4"; } .bi-gear::before { content: "\f3e5"; } .bi-gem::before { content: "\f3e6"; } .bi-geo-alt-fill::before { content: "\f3e7"; } .bi-geo-alt::before { content: "\f3e8"; } .bi-geo-fill::before { content: "\f3e9"; } .bi-geo::before { content: "\f3ea"; } .bi-gift-fill::before { content: "\f3eb"; } .bi-gift::before { content: "\f3ec"; } .bi-github::before { content: "\f3ed"; } .bi-globe::before { content: "\f3ee"; } .bi-globe2::before { content: "\f3ef"; } .bi-google::before { content: "\f3f0"; } .bi-graph-down::before { content: "\f3f1"; } .bi-graph-up::before { content: "\f3f2"; } .bi-grid-1x2-fill::before { content: "\f3f3"; } .bi-grid-1x2::before { content: "\f3f4"; } .bi-grid-3x2-gap-fill::before { content: "\f3f5"; } .bi-grid-3x2-gap::before { content: "\f3f6"; } .bi-grid-3x2::before { content: "\f3f7"; } .bi-grid-3x3-gap-fill::before { content: "\f3f8"; } .bi-grid-3x3-gap::before { content: "\f3f9"; } .bi-grid-3x3::before { content: "\f3fa"; } .bi-grid-fill::before { content: "\f3fb"; } .bi-grid::before { content: "\f3fc"; } .bi-grip-horizontal::before { content: "\f3fd"; } .bi-grip-vertical::before { content: "\f3fe"; } .bi-hammer::before { content: "\f3ff"; } .bi-hand-index-fill::before { content: "\f400"; } .bi-hand-index-thumb-fill::before { content: "\f401"; } .bi-hand-index-thumb::before { content: "\f402"; } .bi-hand-index::before { content: "\f403"; } .bi-hand-thumbs-down-fill::before { content: "\f404"; } .bi-hand-thumbs-down::before { content: "\f405"; } .bi-hand-thumbs-up-fill::before { content: "\f406"; } .bi-hand-thumbs-up::before { content: "\f407"; } .bi-handbag-fill::before { content: "\f408"; } .bi-handbag::before { content: "\f409"; } .bi-hash::before { content: "\f40a"; } .bi-hdd-fill::before { content: "\f40b"; } .bi-hdd-network-fill::before { content: "\f40c"; } .bi-hdd-network::before { content: "\f40d"; } .bi-hdd-rack-fill::before { content: "\f40e"; } .bi-hdd-rack::before { content: "\f40f"; } .bi-hdd-stack-fill::before { content: "\f410"; } .bi-hdd-stack::before { content: "\f411"; } .bi-hdd::before { content: "\f412"; } .bi-headphones::before { content: "\f413"; } .bi-headset::before { content: "\f414"; } .bi-heart-fill::before { content: "\f415"; } .bi-heart-half::before { content: "\f416"; } .bi-heart::before { content: "\f417"; } .bi-heptagon-fill::before { content: "\f418"; } .bi-heptagon-half::before { content: "\f419"; } .bi-heptagon::before { content: "\f41a"; } .bi-hexagon-fill::before { content: "\f41b"; } .bi-hexagon-half::before { content: "\f41c"; } .bi-hexagon::before { content: "\f41d"; } .bi-hourglass-bottom::before { content: "\f41e"; } .bi-hourglass-split::before { content: "\f41f"; } .bi-hourglass-top::before { content: "\f420"; } .bi-hourglass::before { content: "\f421"; } .bi-house-door-fill::before { content: "\f422"; } .bi-house-door::before { content: "\f423"; } .bi-house-fill::before { content: "\f424"; } .bi-house::before { content: "\f425"; } .bi-hr::before { content: "\f426"; } .bi-hurricane::before { content: "\f427"; } .bi-image-alt::before { content: "\f428"; } .bi-image-fill::before { content: "\f429"; } .bi-image::before { content: "\f42a"; } .bi-images::before { content: "\f42b"; } .bi-inbox-fill::before { content: "\f42c"; } .bi-inbox::before { content: "\f42d"; } .bi-inboxes-fill::before { content: "\f42e"; } .bi-inboxes::before { content: "\f42f"; } .bi-info-circle-fill::before { content: "\f430"; } .bi-info-circle::before { content: "\f431"; } .bi-info-square-fill::before { content: "\f432"; } .bi-info-square::before { content: "\f433"; } .bi-info::before { content: "\f434"; } .bi-input-cursor-text::before { content: "\f435"; } .bi-input-cursor::before { content: "\f436"; } .bi-instagram::before { content: "\f437"; } .bi-intersect::before { content: "\f438"; } .bi-journal-album::before { content: "\f439"; } .bi-journal-arrow-down::before { content: "\f43a"; } .bi-journal-arrow-up::before { content: "\f43b"; } .bi-journal-bookmark-fill::before { content: "\f43c"; } .bi-journal-bookmark::before { content: "\f43d"; } .bi-journal-check::before { content: "\f43e"; } .bi-journal-code::before { content: "\f43f"; } .bi-journal-medical::before { content: "\f440"; } .bi-journal-minus::before { content: "\f441"; } .bi-journal-plus::before { content: "\f442"; } .bi-journal-richtext::before { content: "\f443"; } .bi-journal-text::before { content: "\f444"; } .bi-journal-x::before { content: "\f445"; } .bi-journal::before { content: "\f446"; } .bi-journals::before { content: "\f447"; } .bi-joystick::before { content: "\f448"; } .bi-justify-left::before { content: "\f449"; } .bi-justify-right::before { content: "\f44a"; } .bi-justify::before { content: "\f44b"; } .bi-kanban-fill::before { content: "\f44c"; } .bi-kanban::before { content: "\f44d"; } .bi-key-fill::before { content: "\f44e"; } .bi-key::before { content: "\f44f"; } .bi-keyboard-fill::before { content: "\f450"; } .bi-keyboard::before { content: "\f451"; } .bi-ladder::before { content: "\f452"; } .bi-lamp-fill::before { content: "\f453"; } .bi-lamp::before { content: "\f454"; } .bi-laptop-fill::before { content: "\f455"; } .bi-laptop::before { content: "\f456"; } .bi-layer-backward::before { content: "\f457"; } .bi-layer-forward::before { content: "\f458"; } .bi-layers-fill::before { content: "\f459"; } .bi-layers-half::before { content: "\f45a"; } .bi-layers::before { content: "\f45b"; } .bi-layout-sidebar-inset-reverse::before { content: "\f45c"; } .bi-layout-sidebar-inset::before { content: "\f45d"; } .bi-layout-sidebar-reverse::before { content: "\f45e"; } .bi-layout-sidebar::before { content: "\f45f"; } .bi-layout-split::before { content: "\f460"; } .bi-layout-text-sidebar-reverse::before { content: "\f461"; } .bi-layout-text-sidebar::before { content: "\f462"; } .bi-layout-text-window-reverse::before { content: "\f463"; } .bi-layout-text-window::before { content: "\f464"; } .bi-layout-three-columns::before { content: "\f465"; } .bi-layout-wtf::before { content: "\f466"; } .bi-life-preserver::before { content: "\f467"; } .bi-lightbulb-fill::before { content: "\f468"; } .bi-lightbulb-off-fill::before { content: "\f469"; } .bi-lightbulb-off::before { content: "\f46a"; } .bi-lightbulb::before { content: "\f46b"; } .bi-lightning-charge-fill::before { content: "\f46c"; } .bi-lightning-charge::before { content: "\f46d"; } .bi-lightning-fill::before { content: "\f46e"; } .bi-lightning::before { content: "\f46f"; } .bi-link-45deg::before { content: "\f470"; } .bi-link::before { content: "\f471"; } .bi-linkedin::before { content: "\f472"; } .bi-list-check::before { content: "\f473"; } .bi-list-nested::before { content: "\f474"; } .bi-list-ol::before { content: "\f475"; } .bi-list-stars::before { content: "\f476"; } .bi-list-task::before { content: "\f477"; } .bi-list-ul::before { content: "\f478"; } .bi-list::before { content: "\f479"; } .bi-lock-fill::before { content: "\f47a"; } .bi-lock::before { content: "\f47b"; } .bi-mailbox::before { content: "\f47c"; } .bi-mailbox2::before { content: "\f47d"; } .bi-map-fill::before { content: "\f47e"; } .bi-map::before { content: "\f47f"; } .bi-markdown-fill::before { content: "\f480"; } .bi-markdown::before { content: "\f481"; } .bi-mask::before { content: "\f482"; } .bi-megaphone-fill::before { content: "\f483"; } .bi-megaphone::before { content: "\f484"; } .bi-menu-app-fill::before { content: "\f485"; } .bi-menu-app::before { content: "\f486"; } .bi-menu-button-fill::before { content: "\f487"; } .bi-menu-button-wide-fill::before { content: "\f488"; } .bi-menu-button-wide::before { content: "\f489"; } .bi-menu-button::before { content: "\f48a"; } .bi-menu-down::before { content: "\f48b"; } .bi-menu-up::before { content: "\f48c"; } .bi-mic-fill::before { content: "\f48d"; } .bi-mic-mute-fill::before { content: "\f48e"; } .bi-mic-mute::before { content: "\f48f"; } .bi-mic::before { content: "\f490"; } .bi-minecart-loaded::before { content: "\f491"; } .bi-minecart::before { content: "\f492"; } .bi-moisture::before { content: "\f493"; } .bi-moon-fill::before { content: "\f494"; } .bi-moon-stars-fill::before { content: "\f495"; } .bi-moon-stars::before { content: "\f496"; } .bi-moon::before { content: "\f497"; } .bi-mouse-fill::before { content: "\f498"; } .bi-mouse::before { content: "\f499"; } .bi-mouse2-fill::before { content: "\f49a"; } .bi-mouse2::before { content: "\f49b"; } .bi-mouse3-fill::before { content: "\f49c"; } .bi-mouse3::before { content: "\f49d"; } .bi-music-note-beamed::before { content: "\f49e"; } .bi-music-note-list::before { content: "\f49f"; } .bi-music-note::before { content: "\f4a0"; } .bi-music-player-fill::before { content: "\f4a1"; } .bi-music-player::before { content: "\f4a2"; } .bi-newspaper::before { content: "\f4a3"; } .bi-node-minus-fill::before { content: "\f4a4"; } .bi-node-minus::before { content: "\f4a5"; } .bi-node-plus-fill::before { content: "\f4a6"; } .bi-node-plus::before { content: "\f4a7"; } .bi-nut-fill::before { content: "\f4a8"; } .bi-nut::before { content: "\f4a9"; } .bi-octagon-fill::before { content: "\f4aa"; } .bi-octagon-half::before { content: "\f4ab"; } .bi-octagon::before { content: "\f4ac"; } .bi-option::before { content: "\f4ad"; } .bi-outlet::before { content: "\f4ae"; } .bi-paint-bucket::before { content: "\f4af"; } .bi-palette-fill::before { content: "\f4b0"; } .bi-palette::before { content: "\f4b1"; } .bi-palette2::before { content: "\f4b2"; } .bi-paperclip::before { content: "\f4b3"; } .bi-paragraph::before { content: "\f4b4"; } .bi-patch-check-fill::before { content: "\f4b5"; } .bi-patch-check::before { content: "\f4b6"; } .bi-patch-exclamation-fill::before { content: "\f4b7"; } .bi-patch-exclamation::before { content: "\f4b8"; } .bi-patch-minus-fill::before { content: "\f4b9"; } .bi-patch-minus::before { content: "\f4ba"; } .bi-patch-plus-fill::before { content: "\f4bb"; } .bi-patch-plus::before { content: "\f4bc"; } .bi-patch-question-fill::before { content: "\f4bd"; } .bi-patch-question::before { content: "\f4be"; } .bi-pause-btn-fill::before { content: "\f4bf"; } .bi-pause-btn::before { content: "\f4c0"; } .bi-pause-circle-fill::before { content: "\f4c1"; } .bi-pause-circle::before { content: "\f4c2"; } .bi-pause-fill::before { content: "\f4c3"; } .bi-pause::before { content: "\f4c4"; } .bi-peace-fill::before { content: "\f4c5"; } .bi-peace::before { content: "\f4c6"; } .bi-pen-fill::before { content: "\f4c7"; } .bi-pen::before { content: "\f4c8"; } .bi-pencil-fill::before { content: "\f4c9"; } .bi-pencil-square::before { content: "\f4ca"; } .bi-pencil::before { content: "\f4cb"; } .bi-pentagon-fill::before { content: "\f4cc"; } .bi-pentagon-half::before { content: "\f4cd"; } .bi-pentagon::before { content: "\f4ce"; } .bi-people-fill::before { content: "\f4cf"; } .bi-people::before { content: "\f4d0"; } .bi-percent::before { content: "\f4d1"; } .bi-person-badge-fill::before { content: "\f4d2"; } .bi-person-badge::before { content: "\f4d3"; } .bi-person-bounding-box::before { content: "\f4d4"; } .bi-person-check-fill::before { content: "\f4d5"; } .bi-person-check::before { content: "\f4d6"; } .bi-person-circle::before { content: "\f4d7"; } .bi-person-dash-fill::before { content: "\f4d8"; } .bi-person-dash::before { content: "\f4d9"; } .bi-person-fill::before { content: "\f4da"; } .bi-person-lines-fill::before { content: "\f4db"; } .bi-person-plus-fill::before { content: "\f4dc"; } .bi-person-plus::before { content: "\f4dd"; } .bi-person-square::before { content: "\f4de"; } .bi-person-x-fill::before { content: "\f4df"; } .bi-person-x::before { content: "\f4e0"; } .bi-person::before { content: "\f4e1"; } .bi-phone-fill::before { content: "\f4e2"; } .bi-phone-landscape-fill::before { content: "\f4e3"; } .bi-phone-landscape::before { content: "\f4e4"; } .bi-phone-vibrate-fill::before { content: "\f4e5"; } .bi-phone-vibrate::before { content: "\f4e6"; } .bi-phone::before { content: "\f4e7"; } .bi-pie-chart-fill::before { content: "\f4e8"; } .bi-pie-chart::before { content: "\f4e9"; } .bi-pin-angle-fill::before { content: "\f4ea"; } .bi-pin-angle::before { content: "\f4eb"; } .bi-pin-fill::before { content: "\f4ec"; } .bi-pin::before { content: "\f4ed"; } .bi-pip-fill::before { content: "\f4ee"; } .bi-pip::before { content: "\f4ef"; } .bi-play-btn-fill::before { content: "\f4f0"; } .bi-play-btn::before { content: "\f4f1"; } .bi-play-circle-fill::before { content: "\f4f2"; } .bi-play-circle::before { content: "\f4f3"; } .bi-play-fill::before { content: "\f4f4"; } .bi-play::before { content: "\f4f5"; } .bi-plug-fill::before { content: "\f4f6"; } .bi-plug::before { content: "\f4f7"; } .bi-plus-circle-dotted::before { content: "\f4f8"; } .bi-plus-circle-fill::before { content: "\f4f9"; } .bi-plus-circle::before { content: "\f4fa"; } .bi-plus-square-dotted::before { content: "\f4fb"; } .bi-plus-square-fill::before { content: "\f4fc"; } .bi-plus-square::before { content: "\f4fd"; } .bi-plus::before { content: "\f4fe"; } .bi-power::before { content: "\f4ff"; } .bi-printer-fill::before { content: "\f500"; } .bi-printer::before { content: "\f501"; } .bi-puzzle-fill::before { content: "\f502"; } .bi-puzzle::before { content: "\f503"; } .bi-question-circle-fill::before { content: "\f504"; } .bi-question-circle::before { content: "\f505"; } .bi-question-diamond-fill::before { content: "\f506"; } .bi-question-diamond::before { content: "\f507"; } .bi-question-octagon-fill::before { content: "\f508"; } .bi-question-octagon::before { content: "\f509"; } .bi-question-square-fill::before { content: "\f50a"; } .bi-question-square::before { content: "\f50b"; } .bi-question::before { content: "\f50c"; } .bi-rainbow::before { content: "\f50d"; } .bi-receipt-cutoff::before { content: "\f50e"; } .bi-receipt::before { content: "\f50f"; } .bi-reception-0::before { content: "\f510"; } .bi-reception-1::before { content: "\f511"; } .bi-reception-2::before { content: "\f512"; } .bi-reception-3::before { content: "\f513"; } .bi-reception-4::before { content: "\f514"; } .bi-record-btn-fill::before { content: "\f515"; } .bi-record-btn::before { content: "\f516"; } .bi-record-circle-fill::before { content: "\f517"; } .bi-record-circle::before { content: "\f518"; } .bi-record-fill::before { content: "\f519"; } .bi-record::before { content: "\f51a"; } .bi-record2-fill::before { content: "\f51b"; } .bi-record2::before { content: "\f51c"; } .bi-reply-all-fill::before { content: "\f51d"; } .bi-reply-all::before { content: "\f51e"; } .bi-reply-fill::before { content: "\f51f"; } .bi-reply::before { content: "\f520"; } .bi-rss-fill::before { content: "\f521"; } .bi-rss::before { content: "\f522"; } .bi-rulers::before { content: "\f523"; } .bi-save-fill::before { content: "\f524"; } .bi-save::before { content: "\f525"; } .bi-save2-fill::before { content: "\f526"; } .bi-save2::before { content: "\f527"; } .bi-scissors::before { content: "\f528"; } .bi-screwdriver::before { content: "\f529"; } .bi-search::before { content: "\f52a"; } .bi-segmented-nav::before { content: "\f52b"; } .bi-server::before { content: "\f52c"; } .bi-share-fill::before { content: "\f52d"; } .bi-share::before { content: "\f52e"; } .bi-shield-check::before { content: "\f52f"; } .bi-shield-exclamation::before { content: "\f530"; } .bi-shield-fill-check::before { content: "\f531"; } .bi-shield-fill-exclamation::before { content: "\f532"; } .bi-shield-fill-minus::before { content: "\f533"; } .bi-shield-fill-plus::before { content: "\f534"; } .bi-shield-fill-x::before { content: "\f535"; } .bi-shield-fill::before { content: "\f536"; } .bi-shield-lock-fill::before { content: "\f537"; } .bi-shield-lock::before { content: "\f538"; } .bi-shield-minus::before { content: "\f539"; } .bi-shield-plus::before { content: "\f53a"; } .bi-shield-shaded::before { content: "\f53b"; } .bi-shield-slash-fill::before { content: "\f53c"; } .bi-shield-slash::before { content: "\f53d"; } .bi-shield-x::before { content: "\f53e"; } .bi-shield::before { content: "\f53f"; } .bi-shift-fill::before { content: "\f540"; } .bi-shift::before { content: "\f541"; } .bi-shop-window::before { content: "\f542"; } .bi-shop::before { content: "\f543"; } .bi-shuffle::before { content: "\f544"; } .bi-signpost-2-fill::before { content: "\f545"; } .bi-signpost-2::before { content: "\f546"; } .bi-signpost-fill::before { content: "\f547"; } .bi-signpost-split-fill::before { content: "\f548"; } .bi-signpost-split::before { content: "\f549"; } .bi-signpost::before { content: "\f54a"; } .bi-sim-fill::before { content: "\f54b"; } .bi-sim::before { content: "\f54c"; } .bi-skip-backward-btn-fill::before { content: "\f54d"; } .bi-skip-backward-btn::before { content: "\f54e"; } .bi-skip-backward-circle-fill::before { content: "\f54f"; } .bi-skip-backward-circle::before { content: "\f550"; } .bi-skip-backward-fill::before { content: "\f551"; } .bi-skip-backward::before { content: "\f552"; } .bi-skip-end-btn-fill::before { content: "\f553"; } .bi-skip-end-btn::before { content: "\f554"; } .bi-skip-end-circle-fill::before { content: "\f555"; } .bi-skip-end-circle::before { content: "\f556"; } .bi-skip-end-fill::before { content: "\f557"; } .bi-skip-end::before { content: "\f558"; } .bi-skip-forward-btn-fill::before { content: "\f559"; } .bi-skip-forward-btn::before { content: "\f55a"; } .bi-skip-forward-circle-fill::before { content: "\f55b"; } .bi-skip-forward-circle::before { content: "\f55c"; } .bi-skip-forward-fill::before { content: "\f55d"; } .bi-skip-forward::before { content: "\f55e"; } .bi-skip-start-btn-fill::before { content: "\f55f"; } .bi-skip-start-btn::before { content: "\f560"; } .bi-skip-start-circle-fill::before { content: "\f561"; } .bi-skip-start-circle::before { content: "\f562"; } .bi-skip-start-fill::before { content: "\f563"; } .bi-skip-start::before { content: "\f564"; } .bi-slack::before { content: "\f565"; } .bi-slash-circle-fill::before { content: "\f566"; } .bi-slash-circle::before { content: "\f567"; } .bi-slash-square-fill::before { content: "\f568"; } .bi-slash-square::before { content: "\f569"; } .bi-slash::before { content: "\f56a"; } .bi-sliders::before { content: "\f56b"; } .bi-smartwatch::before { content: "\f56c"; } .bi-snow::before { content: "\f56d"; } .bi-snow2::before { content: "\f56e"; } .bi-snow3::before { content: "\f56f"; } .bi-sort-alpha-down-alt::before { content: "\f570"; } .bi-sort-alpha-down::before { content: "\f571"; } .bi-sort-alpha-up-alt::before { content: "\f572"; } .bi-sort-alpha-up::before { content: "\f573"; } .bi-sort-down-alt::before { content: "\f574"; } .bi-sort-down::before { content: "\f575"; } .bi-sort-numeric-down-alt::before { content: "\f576"; } .bi-sort-numeric-down::before { content: "\f577"; } .bi-sort-numeric-up-alt::before { content: "\f578"; } .bi-sort-numeric-up::before { content: "\f579"; } .bi-sort-up-alt::before { content: "\f57a"; } .bi-sort-up::before { content: "\f57b"; } .bi-soundwave::before { content: "\f57c"; } .bi-speaker-fill::before { content: "\f57d"; } .bi-speaker::before { content: "\f57e"; } .bi-speedometer::before { content: "\f57f"; } .bi-speedometer2::before { content: "\f580"; } .bi-spellcheck::before { content: "\f581"; } .bi-square-fill::before { content: "\f582"; } .bi-square-half::before { content: "\f583"; } .bi-square::before { content: "\f584"; } .bi-stack::before { content: "\f585"; } .bi-star-fill::before { content: "\f586"; } .bi-star-half::before { content: "\f587"; } .bi-star::before { content: "\f588"; } .bi-stars::before { content: "\f589"; } .bi-stickies-fill::before { content: "\f58a"; } .bi-stickies::before { content: "\f58b"; } .bi-sticky-fill::before { content: "\f58c"; } .bi-sticky::before { content: "\f58d"; } .bi-stop-btn-fill::before { content: "\f58e"; } .bi-stop-btn::before { content: "\f58f"; } .bi-stop-circle-fill::before { content: "\f590"; } .bi-stop-circle::before { content: "\f591"; } .bi-stop-fill::before { content: "\f592"; } .bi-stop::before { content: "\f593"; } .bi-stoplights-fill::before { content: "\f594"; } .bi-stoplights::before { content: "\f595"; } .bi-stopwatch-fill::before { content: "\f596"; } .bi-stopwatch::before { content: "\f597"; } .bi-subtract::before { content: "\f598"; } .bi-suit-club-fill::before { content: "\f599"; } .bi-suit-club::before { content: "\f59a"; } .bi-suit-diamond-fill::before { content: "\f59b"; } .bi-suit-diamond::before { content: "\f59c"; } .bi-suit-heart-fill::before { content: "\f59d"; } .bi-suit-heart::before { content: "\f59e"; } .bi-suit-spade-fill::before { content: "\f59f"; } .bi-suit-spade::before { content: "\f5a0"; } .bi-sun-fill::before { content: "\f5a1"; } .bi-sun::before { content: "\f5a2"; } .bi-sunglasses::before { content: "\f5a3"; } .bi-sunrise-fill::before { content: "\f5a4"; } .bi-sunrise::before { content: "\f5a5"; } .bi-sunset-fill::before { content: "\f5a6"; } .bi-sunset::before { content: "\f5a7"; } .bi-symmetry-horizontal::before { content: "\f5a8"; } .bi-symmetry-vertical::before { content: "\f5a9"; } .bi-table::before { content: "\f5aa"; } .bi-tablet-fill::before { content: "\f5ab"; } .bi-tablet-landscape-fill::before { content: "\f5ac"; } .bi-tablet-landscape::before { content: "\f5ad"; } .bi-tablet::before { content: "\f5ae"; } .bi-tag-fill::before { content: "\f5af"; } .bi-tag::before { content: "\f5b0"; } .bi-tags-fill::before { content: "\f5b1"; } .bi-tags::before { content: "\f5b2"; } .bi-telegram::before { content: "\f5b3"; } .bi-telephone-fill::before { content: "\f5b4"; } .bi-telephone-forward-fill::before { content: "\f5b5"; } .bi-telephone-forward::before { content: "\f5b6"; } .bi-telephone-inbound-fill::before { content: "\f5b7"; } .bi-telephone-inbound::before { content: "\f5b8"; } .bi-telephone-minus-fill::before { content: "\f5b9"; } .bi-telephone-minus::before { content: "\f5ba"; } .bi-telephone-outbound-fill::before { content: "\f5bb"; } .bi-telephone-outbound::before { content: "\f5bc"; } .bi-telephone-plus-fill::before { content: "\f5bd"; } .bi-telephone-plus::before { content: "\f5be"; } .bi-telephone-x-fill::before { content: "\f5bf"; } .bi-telephone-x::before { content: "\f5c0"; } .bi-telephone::before { content: "\f5c1"; } .bi-terminal-fill::before { content: "\f5c2"; } .bi-terminal::before { content: "\f5c3"; } .bi-text-center::before { content: "\f5c4"; } .bi-text-indent-left::before { content: "\f5c5"; } .bi-text-indent-right::before { content: "\f5c6"; } .bi-text-left::before { content: "\f5c7"; } .bi-text-paragraph::before { content: "\f5c8"; } .bi-text-right::before { content: "\f5c9"; } .bi-textarea-resize::before { content: "\f5ca"; } .bi-textarea-t::before { content: "\f5cb"; } .bi-textarea::before { content: "\f5cc"; } .bi-thermometer-half::before { content: "\f5cd"; } .bi-thermometer-high::before { content: "\f5ce"; } .bi-thermometer-low::before { content: "\f5cf"; } .bi-thermometer-snow::before { content: "\f5d0"; } .bi-thermometer-sun::before { content: "\f5d1"; } .bi-thermometer::before { content: "\f5d2"; } .bi-three-dots-vertical::before { content: "\f5d3"; } .bi-three-dots::before { content: "\f5d4"; } .bi-toggle-off::before { content: "\f5d5"; } .bi-toggle-on::before { content: "\f5d6"; } .bi-toggle2-off::before { content: "\f5d7"; } .bi-toggle2-on::before { content: "\f5d8"; } .bi-toggles::before { content: "\f5d9"; } .bi-toggles2::before { content: "\f5da"; } .bi-tools::before { content: "\f5db"; } .bi-tornado::before { content: "\f5dc"; } .bi-trash-fill::before { content: "\f5dd"; } .bi-trash::before { content: "\f5de"; } .bi-trash2-fill::before { content: "\f5df"; } .bi-trash2::before { content: "\f5e0"; } .bi-tree-fill::before { content: "\f5e1"; } .bi-tree::before { content: "\f5e2"; } .bi-triangle-fill::before { content: "\f5e3"; } .bi-triangle-half::before { content: "\f5e4"; } .bi-triangle::before { content: "\f5e5"; } .bi-trophy-fill::before { content: "\f5e6"; } .bi-trophy::before { content: "\f5e7"; } .bi-tropical-storm::before { content: "\f5e8"; } .bi-truck-flatbed::before { content: "\f5e9"; } .bi-truck::before { content: "\f5ea"; } .bi-tsunami::before { content: "\f5eb"; } .bi-tv-fill::before { content: "\f5ec"; } .bi-tv::before { content: "\f5ed"; } .bi-twitch::before { content: "\f5ee"; } .bi-twitter::before { content: "\f5ef"; } .bi-type-bold::before { content: "\f5f0"; } .bi-type-h1::before { content: "\f5f1"; } .bi-type-h2::before { content: "\f5f2"; } .bi-type-h3::before { content: "\f5f3"; } .bi-type-italic::before { content: "\f5f4"; } .bi-type-strikethrough::before { content: "\f5f5"; } .bi-type-underline::before { content: "\f5f6"; } .bi-type::before { content: "\f5f7"; } .bi-ui-checks-grid::before { content: "\f5f8"; } .bi-ui-checks::before { content: "\f5f9"; } .bi-ui-radios-grid::before { content: "\f5fa"; } .bi-ui-radios::before { content: "\f5fb"; } .bi-umbrella-fill::before { content: "\f5fc"; } .bi-umbrella::before { content: "\f5fd"; } .bi-union::before { content: "\f5fe"; } .bi-unlock-fill::before { content: "\f5ff"; } .bi-unlock::before { content: "\f600"; } .bi-upc-scan::before { content: "\f601"; } .bi-upc::before { content: "\f602"; } .bi-upload::before { content: "\f603"; } .bi-vector-pen::before { content: "\f604"; } .bi-view-list::before { content: "\f605"; } .bi-view-stacked::before { content: "\f606"; } .bi-vinyl-fill::before { content: "\f607"; } .bi-vinyl::before { content: "\f608"; } .bi-voicemail::before { content: "\f609"; } .bi-volume-down-fill::before { content: "\f60a"; } .bi-volume-down::before { content: "\f60b"; } .bi-volume-mute-fill::before { content: "\f60c"; } .bi-volume-mute::before { content: "\f60d"; } .bi-volume-off-fill::before { content: "\f60e"; } .bi-volume-off::before { content: "\f60f"; } .bi-volume-up-fill::before { content: "\f610"; } .bi-volume-up::before { content: "\f611"; } .bi-vr::before { content: "\f612"; } .bi-wallet-fill::before { content: "\f613"; } .bi-wallet::before { content: "\f614"; } .bi-wallet2::before { content: "\f615"; } .bi-watch::before { content: "\f616"; } .bi-water::before { content: "\f617"; } .bi-whatsapp::before { content: "\f618"; } .bi-wifi-1::before { content: "\f619"; } .bi-wifi-2::before { content: "\f61a"; } .bi-wifi-off::before { content: "\f61b"; } .bi-wifi::before { content: "\f61c"; } .bi-wind::before { content: "\f61d"; } .bi-window-dock::before { content: "\f61e"; } .bi-window-sidebar::before { content: "\f61f"; } .bi-window::before { content: "\f620"; } .bi-wrench::before { content: "\f621"; } .bi-x-circle-fill::before { content: "\f622"; } .bi-x-circle::before { content: "\f623"; } .bi-x-diamond-fill::before { content: "\f624"; } .bi-x-diamond::before { content: "\f625"; } .bi-x-octagon-fill::before { content: "\f626"; } .bi-x-octagon::before { content: "\f627"; } .bi-x-square-fill::before { content: "\f628"; } .bi-x-square::before { content: "\f629"; } .bi-x::before { content: "\f62a"; } .bi-youtube::before { content: "\f62b"; } .bi-zoom-in::before { content: "\f62c"; } .bi-zoom-out::before { content: "\f62d"; } .bi-bank::before { content: "\f62e"; } .bi-bank2::before { content: "\f62f"; } .bi-bell-slash-fill::before { content: "\f630"; } .bi-bell-slash::before { content: "\f631"; } .bi-cash-coin::before { content: "\f632"; } .bi-check-lg::before { content: "\f633"; } .bi-coin::before { content: "\f634"; } .bi-currency-bitcoin::before { content: "\f635"; } .bi-currency-dollar::before { content: "\f636"; } .bi-currency-euro::before { content: "\f637"; } .bi-currency-exchange::before { content: "\f638"; } .bi-currency-pound::before { content: "\f639"; } .bi-currency-yen::before { content: "\f63a"; } .bi-dash-lg::before { content: "\f63b"; } .bi-exclamation-lg::before { content: "\f63c"; } .bi-file-earmark-pdf-fill::before { content: "\f63d"; } .bi-file-earmark-pdf::before { content: "\f63e"; } .bi-file-pdf-fill::before { content: "\f63f"; } .bi-file-pdf::before { content: "\f640"; } .bi-gender-ambiguous::before { content: "\f641"; } .bi-gender-female::before { content: "\f642"; } .bi-gender-male::before { content: "\f643"; } .bi-gender-trans::before { content: "\f644"; } .bi-headset-vr::before { content: "\f645"; } .bi-info-lg::before { content: "\f646"; } .bi-mastodon::before { content: "\f647"; } .bi-messenger::before { content: "\f648"; } .bi-piggy-bank-fill::before { content: "\f649"; } .bi-piggy-bank::before { content: "\f64a"; } .bi-pin-map-fill::before { content: "\f64b"; } .bi-pin-map::before { content: "\f64c"; } .bi-plus-lg::before { content: "\f64d"; } .bi-question-lg::before { content: "\f64e"; } .bi-recycle::before { content: "\f64f"; } .bi-reddit::before { content: "\f650"; } .bi-safe-fill::before { content: "\f651"; } .bi-safe2-fill::before { content: "\f652"; } .bi-safe2::before { content: "\f653"; } .bi-sd-card-fill::before { content: "\f654"; } .bi-sd-card::before { content: "\f655"; } .bi-skype::before { content: "\f656"; } .bi-slash-lg::before { content: "\f657"; } .bi-translate::before { content: "\f658"; } .bi-x-lg::before { content: "\f659"; } .bi-safe::before { content: "\f65a"; } .bi-apple::before { content: "\f65b"; } .bi-microsoft::before { content: "\f65d"; } .bi-windows::before { content: "\f65e"; } .bi-behance::before { content: "\f65c"; } .bi-dribbble::before { content: "\f65f"; } .bi-line::before { content: "\f660"; } .bi-medium::before { content: "\f661"; } .bi-paypal::before { content: "\f662"; } .bi-pinterest::before { content: "\f663"; } .bi-signal::before { content: "\f664"; } .bi-snapchat::before { content: "\f665"; } .bi-spotify::before { content: "\f666"; } .bi-stack-overflow::before { content: "\f667"; } .bi-strava::before { content: "\f668"; } .bi-wordpress::before { content: "\f669"; } .bi-vimeo::before { content: "\f66a"; } .bi-activity::before { content: "\f66b"; } .bi-easel2-fill::before { content: "\f66c"; } .bi-easel2::before { content: "\f66d"; } .bi-easel3-fill::before { content: "\f66e"; } .bi-easel3::before { content: "\f66f"; } .bi-fan::before { content: "\f670"; } .bi-fingerprint::before { content: "\f671"; } .bi-graph-down-arrow::before { content: "\f672"; } .bi-graph-up-arrow::before { content: "\f673"; } .bi-hypnotize::before { content: "\f674"; } .bi-magic::before { content: "\f675"; } .bi-person-rolodex::before { content: "\f676"; } .bi-person-video::before { content: "\f677"; } .bi-person-video2::before { content: "\f678"; } .bi-person-video3::before { content: "\f679"; } .bi-person-workspace::before { content: "\f67a"; } .bi-radioactive::before { content: "\f67b"; } .bi-webcam-fill::before { content: "\f67c"; } .bi-webcam::before { content: "\f67d"; } .bi-yin-yang::before { content: "\f67e"; } .bi-bandaid-fill::before { content: "\f680"; } .bi-bandaid::before { content: "\f681"; } .bi-bluetooth::before { content: "\f682"; } .bi-body-text::before { content: "\f683"; } .bi-boombox::before { content: "\f684"; } .bi-boxes::before { content: "\f685"; } .bi-dpad-fill::before { content: "\f686"; } .bi-dpad::before { content: "\f687"; } .bi-ear-fill::before { content: "\f688"; } .bi-ear::before { content: "\f689"; } .bi-envelope-check-fill::before { content: "\f68b"; } .bi-envelope-check::before { content: "\f68c"; } .bi-envelope-dash-fill::before { content: "\f68e"; } .bi-envelope-dash::before { content: "\f68f"; } .bi-envelope-exclamation-fill::before { content: "\f691"; } .bi-envelope-exclamation::before { content: "\f692"; } .bi-envelope-plus-fill::before { content: "\f693"; } .bi-envelope-plus::before { content: "\f694"; } .bi-envelope-slash-fill::before { content: "\f696"; } .bi-envelope-slash::before { content: "\f697"; } .bi-envelope-x-fill::before { content: "\f699"; } .bi-envelope-x::before { content: "\f69a"; } .bi-explicit-fill::before { content: "\f69b"; } .bi-explicit::before { content: "\f69c"; } .bi-git::before { content: "\f69d"; } .bi-infinity::before { content: "\f69e"; } .bi-list-columns-reverse::before { content: "\f69f"; } .bi-list-columns::before { content: "\f6a0"; } .bi-meta::before { content: "\f6a1"; } .bi-nintendo-switch::before { content: "\f6a4"; } .bi-pc-display-horizontal::before { content: "\f6a5"; } .bi-pc-display::before { content: "\f6a6"; } .bi-pc-horizontal::before { content: "\f6a7"; } .bi-pc::before { content: "\f6a8"; } .bi-playstation::before { content: "\f6a9"; } .bi-plus-slash-minus::before { content: "\f6aa"; } .bi-projector-fill::before { content: "\f6ab"; } .bi-projector::before { content: "\f6ac"; } .bi-qr-code-scan::before { content: "\f6ad"; } .bi-qr-code::before { content: "\f6ae"; } .bi-quora::before { content: "\f6af"; } .bi-quote::before { content: "\f6b0"; } .bi-robot::before { content: "\f6b1"; } .bi-send-check-fill::before { content: "\f6b2"; } .bi-send-check::before { content: "\f6b3"; } .bi-send-dash-fill::before { content: "\f6b4"; } .bi-send-dash::before { content: "\f6b5"; } .bi-send-exclamation-fill::before { content: "\f6b7"; } .bi-send-exclamation::before { content: "\f6b8"; } .bi-send-fill::before { content: "\f6b9"; } .bi-send-plus-fill::before { content: "\f6ba"; } .bi-send-plus::before { content: "\f6bb"; } .bi-send-slash-fill::before { content: "\f6bc"; } .bi-send-slash::before { content: "\f6bd"; } .bi-send-x-fill::before { content: "\f6be"; } .bi-send-x::before { content: "\f6bf"; } .bi-send::before { content: "\f6c0"; } .bi-steam::before { content: "\f6c1"; } .bi-terminal-dash::before { content: "\f6c3"; } .bi-terminal-plus::before { content: "\f6c4"; } .bi-terminal-split::before { content: "\f6c5"; } .bi-ticket-detailed-fill::before { content: "\f6c6"; } .bi-ticket-detailed::before { content: "\f6c7"; } .bi-ticket-fill::before { content: "\f6c8"; } .bi-ticket-perforated-fill::before { content: "\f6c9"; } .bi-ticket-perforated::before { content: "\f6ca"; } .bi-ticket::before { content: "\f6cb"; } .bi-tiktok::before { content: "\f6cc"; } .bi-window-dash::before { content: "\f6cd"; } .bi-window-desktop::before { content: "\f6ce"; } .bi-window-fullscreen::before { content: "\f6cf"; } .bi-window-plus::before { content: "\f6d0"; } .bi-window-split::before { content: "\f6d1"; } .bi-window-stack::before { content: "\f6d2"; } .bi-window-x::before { content: "\f6d3"; } .bi-xbox::before { content: "\f6d4"; } .bi-ethernet::before { content: "\f6d5"; } .bi-hdmi-fill::before { content: "\f6d6"; } .bi-hdmi::before { content: "\f6d7"; } .bi-usb-c-fill::before { content: "\f6d8"; } .bi-usb-c::before { content: "\f6d9"; } .bi-usb-fill::before { content: "\f6da"; } .bi-usb-plug-fill::before { content: "\f6db"; } .bi-usb-plug::before { content: "\f6dc"; } .bi-usb-symbol::before { content: "\f6dd"; } .bi-usb::before { content: "\f6de"; } .bi-boombox-fill::before { content: "\f6df"; } .bi-displayport::before { content: "\f6e1"; } .bi-gpu-card::before { content: "\f6e2"; } .bi-memory::before { content: "\f6e3"; } .bi-modem-fill::before { content: "\f6e4"; } .bi-modem::before { content: "\f6e5"; } .bi-motherboard-fill::before { content: "\f6e6"; } .bi-motherboard::before { content: "\f6e7"; } .bi-optical-audio-fill::before { content: "\f6e8"; } .bi-optical-audio::before { content: "\f6e9"; } .bi-pci-card::before { content: "\f6ea"; } .bi-router-fill::before { content: "\f6eb"; } .bi-router::before { content: "\f6ec"; } .bi-thunderbolt-fill::before { content: "\f6ef"; } .bi-thunderbolt::before { content: "\f6f0"; } .bi-usb-drive-fill::before { content: "\f6f1"; } .bi-usb-drive::before { content: "\f6f2"; } .bi-usb-micro-fill::before { content: "\f6f3"; } .bi-usb-micro::before { content: "\f6f4"; } .bi-usb-mini-fill::before { content: "\f6f5"; } .bi-usb-mini::before { content: "\f6f6"; } .bi-cloud-haze2::before { content: "\f6f7"; } .bi-device-hdd-fill::before { content: "\f6f8"; } .bi-device-hdd::before { content: "\f6f9"; } .bi-device-ssd-fill::before { content: "\f6fa"; } .bi-device-ssd::before { content: "\f6fb"; } .bi-displayport-fill::before { content: "\f6fc"; } .bi-mortarboard-fill::before { content: "\f6fd"; } .bi-mortarboard::before { content: "\f6fe"; } .bi-terminal-x::before { content: "\f6ff"; } .bi-arrow-through-heart-fill::before { content: "\f700"; } .bi-arrow-through-heart::before { content: "\f701"; } .bi-badge-sd-fill::before { content: "\f702"; } .bi-badge-sd::before { content: "\f703"; } .bi-bag-heart-fill::before { content: "\f704"; } .bi-bag-heart::before { content: "\f705"; } .bi-balloon-fill::before { content: "\f706"; } .bi-balloon-heart-fill::before { content: "\f707"; } .bi-balloon-heart::before { content: "\f708"; } .bi-balloon::before { content: "\f709"; } .bi-box2-fill::before { content: "\f70a"; } .bi-box2-heart-fill::before { content: "\f70b"; } .bi-box2-heart::before { content: "\f70c"; } .bi-box2::before { content: "\f70d"; } .bi-braces-asterisk::before { content: "\f70e"; } .bi-calendar-heart-fill::before { content: "\f70f"; } .bi-calendar-heart::before { content: "\f710"; } .bi-calendar2-heart-fill::before { content: "\f711"; } .bi-calendar2-heart::before { content: "\f712"; } .bi-chat-heart-fill::before { content: "\f713"; } .bi-chat-heart::before { content: "\f714"; } .bi-chat-left-heart-fill::before { content: "\f715"; } .bi-chat-left-heart::before { content: "\f716"; } .bi-chat-right-heart-fill::before { content: "\f717"; } .bi-chat-right-heart::before { content: "\f718"; } .bi-chat-square-heart-fill::before { content: "\f719"; } .bi-chat-square-heart::before { content: "\f71a"; } .bi-clipboard-check-fill::before { content: "\f71b"; } .bi-clipboard-data-fill::before { content: "\f71c"; } .bi-clipboard-fill::before { content: "\f71d"; } .bi-clipboard-heart-fill::before { content: "\f71e"; } .bi-clipboard-heart::before { content: "\f71f"; } .bi-clipboard-minus-fill::before { content: "\f720"; } .bi-clipboard-plus-fill::before { content: "\f721"; } .bi-clipboard-pulse::before { content: "\f722"; } .bi-clipboard-x-fill::before { content: "\f723"; } .bi-clipboard2-check-fill::before { content: "\f724"; } .bi-clipboard2-check::before { content: "\f725"; } .bi-clipboard2-data-fill::before { content: "\f726"; } .bi-clipboard2-data::before { content: "\f727"; } .bi-clipboard2-fill::before { content: "\f728"; } .bi-clipboard2-heart-fill::before { content: "\f729"; } .bi-clipboard2-heart::before { content: "\f72a"; } .bi-clipboard2-minus-fill::before { content: "\f72b"; } .bi-clipboard2-minus::before { content: "\f72c"; } .bi-clipboard2-plus-fill::before { content: "\f72d"; } .bi-clipboard2-plus::before { content: "\f72e"; } .bi-clipboard2-pulse-fill::before { content: "\f72f"; } .bi-clipboard2-pulse::before { content: "\f730"; } .bi-clipboard2-x-fill::before { content: "\f731"; } .bi-clipboard2-x::before { content: "\f732"; } .bi-clipboard2::before { content: "\f733"; } .bi-emoji-kiss-fill::before { content: "\f734"; } .bi-emoji-kiss::before { content: "\f735"; } .bi-envelope-heart-fill::before { content: "\f736"; } .bi-envelope-heart::before { content: "\f737"; } .bi-envelope-open-heart-fill::before { content: "\f738"; } .bi-envelope-open-heart::before { content: "\f739"; } .bi-envelope-paper-fill::before { content: "\f73a"; } .bi-envelope-paper-heart-fill::before { content: "\f73b"; } .bi-envelope-paper-heart::before { content: "\f73c"; } .bi-envelope-paper::before { content: "\f73d"; } .bi-filetype-aac::before { content: "\f73e"; } .bi-filetype-ai::before { content: "\f73f"; } .bi-filetype-bmp::before { content: "\f740"; } .bi-filetype-cs::before { content: "\f741"; } .bi-filetype-css::before { content: "\f742"; } .bi-filetype-csv::before { content: "\f743"; } .bi-filetype-doc::before { content: "\f744"; } .bi-filetype-docx::before { content: "\f745"; } .bi-filetype-exe::before { content: "\f746"; } .bi-filetype-gif::before { content: "\f747"; } .bi-filetype-heic::before { content: "\f748"; } .bi-filetype-html::before { content: "\f749"; } .bi-filetype-java::before { content: "\f74a"; } .bi-filetype-jpg::before { content: "\f74b"; } .bi-filetype-js::before { content: "\f74c"; } .bi-filetype-jsx::before { content: "\f74d"; } .bi-filetype-key::before { content: "\f74e"; } .bi-filetype-m4p::before { content: "\f74f"; } .bi-filetype-md::before { content: "\f750"; } .bi-filetype-mdx::before { content: "\f751"; } .bi-filetype-mov::before { content: "\f752"; } .bi-filetype-mp3::before { content: "\f753"; } .bi-filetype-mp4::before { content: "\f754"; } .bi-filetype-otf::before { content: "\f755"; } .bi-filetype-pdf::before { content: "\f756"; } .bi-filetype-php::before { content: "\f757"; } .bi-filetype-png::before { content: "\f758"; } .bi-filetype-ppt::before { content: "\f75a"; } .bi-filetype-psd::before { content: "\f75b"; } .bi-filetype-py::before { content: "\f75c"; } .bi-filetype-raw::before { content: "\f75d"; } .bi-filetype-rb::before { content: "\f75e"; } .bi-filetype-sass::before { content: "\f75f"; } .bi-filetype-scss::before { content: "\f760"; } .bi-filetype-sh::before { content: "\f761"; } .bi-filetype-svg::before { content: "\f762"; } .bi-filetype-tiff::before { content: "\f763"; } .bi-filetype-tsx::before { content: "\f764"; } .bi-filetype-ttf::before { content: "\f765"; } .bi-filetype-txt::before { content: "\f766"; } .bi-filetype-wav::before { content: "\f767"; } .bi-filetype-woff::before { content: "\f768"; } .bi-filetype-xls::before { content: "\f76a"; } .bi-filetype-xml::before { content: "\f76b"; } .bi-filetype-yml::before { content: "\f76c"; } .bi-heart-arrow::before { content: "\f76d"; } .bi-heart-pulse-fill::before { content: "\f76e"; } .bi-heart-pulse::before { content: "\f76f"; } .bi-heartbreak-fill::before { content: "\f770"; } .bi-heartbreak::before { content: "\f771"; } .bi-hearts::before { content: "\f772"; } .bi-hospital-fill::before { content: "\f773"; } .bi-hospital::before { content: "\f774"; } .bi-house-heart-fill::before { content: "\f775"; } .bi-house-heart::before { content: "\f776"; } .bi-incognito::before { content: "\f777"; } .bi-magnet-fill::before { content: "\f778"; } .bi-magnet::before { content: "\f779"; } .bi-person-heart::before { content: "\f77a"; } .bi-person-hearts::before { content: "\f77b"; } .bi-phone-flip::before { content: "\f77c"; } .bi-plugin::before { content: "\f77d"; } .bi-postage-fill::before { content: "\f77e"; } .bi-postage-heart-fill::before { content: "\f77f"; } .bi-postage-heart::before { content: "\f780"; } .bi-postage::before { content: "\f781"; } .bi-postcard-fill::before { content: "\f782"; } .bi-postcard-heart-fill::before { content: "\f783"; } .bi-postcard-heart::before { content: "\f784"; } .bi-postcard::before { content: "\f785"; } .bi-search-heart-fill::before { content: "\f786"; } .bi-search-heart::before { content: "\f787"; } .bi-sliders2-vertical::before { content: "\f788"; } .bi-sliders2::before { content: "\f789"; } .bi-trash3-fill::before { content: "\f78a"; } .bi-trash3::before { content: "\f78b"; } .bi-valentine::before { content: "\f78c"; } .bi-valentine2::before { content: "\f78d"; } .bi-wrench-adjustable-circle-fill::before { content: "\f78e"; } .bi-wrench-adjustable-circle::before { content: "\f78f"; } .bi-wrench-adjustable::before { content: "\f790"; } .bi-filetype-json::before { content: "\f791"; } .bi-filetype-pptx::before { content: "\f792"; } .bi-filetype-xlsx::before { content: "\f793"; } .bi-1-circle-fill::before { content: "\f796"; } .bi-1-circle::before { content: "\f797"; } .bi-1-square-fill::before { content: "\f798"; } .bi-1-square::before { content: "\f799"; } .bi-2-circle-fill::before { content: "\f79c"; } .bi-2-circle::before { content: "\f79d"; } .bi-2-square-fill::before { content: "\f79e"; } .bi-2-square::before { content: "\f79f"; } .bi-3-circle-fill::before { content: "\f7a2"; } .bi-3-circle::before { content: "\f7a3"; } .bi-3-square-fill::before { content: "\f7a4"; } .bi-3-square::before { content: "\f7a5"; } .bi-4-circle-fill::before { content: "\f7a8"; } .bi-4-circle::before { content: "\f7a9"; } .bi-4-square-fill::before { content: "\f7aa"; } .bi-4-square::before { content: "\f7ab"; } .bi-5-circle-fill::before { content: "\f7ae"; } .bi-5-circle::before { content: "\f7af"; } .bi-5-square-fill::before { content: "\f7b0"; } .bi-5-square::before { content: "\f7b1"; } .bi-6-circle-fill::before { content: "\f7b4"; } .bi-6-circle::before { content: "\f7b5"; } .bi-6-square-fill::before { content: "\f7b6"; } .bi-6-square::before { content: "\f7b7"; } .bi-7-circle-fill::before { content: "\f7ba"; } .bi-7-circle::before { content: "\f7bb"; } .bi-7-square-fill::before { content: "\f7bc"; } .bi-7-square::before { content: "\f7bd"; } .bi-8-circle-fill::before { content: "\f7c0"; } .bi-8-circle::before { content: "\f7c1"; } .bi-8-square-fill::before { content: "\f7c2"; } .bi-8-square::before { content: "\f7c3"; } .bi-9-circle-fill::before { content: "\f7c6"; } .bi-9-circle::before { content: "\f7c7"; } .bi-9-square-fill::before { content: "\f7c8"; } .bi-9-square::before { content: "\f7c9"; } .bi-airplane-engines-fill::before { content: "\f7ca"; } .bi-airplane-engines::before { content: "\f7cb"; } .bi-airplane-fill::before { content: "\f7cc"; } .bi-airplane::before { content: "\f7cd"; } .bi-alexa::before { content: "\f7ce"; } .bi-alipay::before { content: "\f7cf"; } .bi-android::before { content: "\f7d0"; } .bi-android2::before { content: "\f7d1"; } .bi-box-fill::before { content: "\f7d2"; } .bi-box-seam-fill::before { content: "\f7d3"; } .bi-browser-chrome::before { content: "\f7d4"; } .bi-browser-edge::before { content: "\f7d5"; } .bi-browser-firefox::before { content: "\f7d6"; } .bi-browser-safari::before { content: "\f7d7"; } .bi-c-circle-fill::before { content: "\f7da"; } .bi-c-circle::before { content: "\f7db"; } .bi-c-square-fill::before { content: "\f7dc"; } .bi-c-square::before { content: "\f7dd"; } .bi-capsule-pill::before { content: "\f7de"; } .bi-capsule::before { content: "\f7df"; } .bi-car-front-fill::before { content: "\f7e0"; } .bi-car-front::before { content: "\f7e1"; } .bi-cassette-fill::before { content: "\f7e2"; } .bi-cassette::before { content: "\f7e3"; } .bi-cc-circle-fill::before { content: "\f7e6"; } .bi-cc-circle::before { content: "\f7e7"; } .bi-cc-square-fill::before { content: "\f7e8"; } .bi-cc-square::before { content: "\f7e9"; } .bi-cup-hot-fill::before { content: "\f7ea"; } .bi-cup-hot::before { content: "\f7eb"; } .bi-currency-rupee::before { content: "\f7ec"; } .bi-dropbox::before { content: "\f7ed"; } .bi-escape::before { content: "\f7ee"; } .bi-fast-forward-btn-fill::before { content: "\f7ef"; } .bi-fast-forward-btn::before { content: "\f7f0"; } .bi-fast-forward-circle-fill::before { content: "\f7f1"; } .bi-fast-forward-circle::before { content: "\f7f2"; } .bi-fast-forward-fill::before { content: "\f7f3"; } .bi-fast-forward::before { content: "\f7f4"; } .bi-filetype-sql::before { content: "\f7f5"; } .bi-fire::before { content: "\f7f6"; } .bi-google-play::before { content: "\f7f7"; } .bi-h-circle-fill::before { content: "\f7fa"; } .bi-h-circle::before { content: "\f7fb"; } .bi-h-square-fill::before { content: "\f7fc"; } .bi-h-square::before { content: "\f7fd"; } .bi-indent::before { content: "\f7fe"; } .bi-lungs-fill::before { content: "\f7ff"; } .bi-lungs::before { content: "\f800"; } .bi-microsoft-teams::before { content: "\f801"; } .bi-p-circle-fill::before { content: "\f804"; } .bi-p-circle::before { content: "\f805"; } .bi-p-square-fill::before { content: "\f806"; } .bi-p-square::before { content: "\f807"; } .bi-pass-fill::before { content: "\f808"; } .bi-pass::before { content: "\f809"; } .bi-prescription::before { content: "\f80a"; } .bi-prescription2::before { content: "\f80b"; } .bi-r-circle-fill::before { content: "\f80e"; } .bi-r-circle::before { content: "\f80f"; } .bi-r-square-fill::before { content: "\f810"; } .bi-r-square::before { content: "\f811"; } .bi-repeat-1::before { content: "\f812"; } .bi-repeat::before { content: "\f813"; } .bi-rewind-btn-fill::before { content: "\f814"; } .bi-rewind-btn::before { content: "\f815"; } .bi-rewind-circle-fill::before { content: "\f816"; } .bi-rewind-circle::before { content: "\f817"; } .bi-rewind-fill::before { content: "\f818"; } .bi-rewind::before { content: "\f819"; } .bi-train-freight-front-fill::before { content: "\f81a"; } .bi-train-freight-front::before { content: "\f81b"; } .bi-train-front-fill::before { content: "\f81c"; } .bi-train-front::before { content: "\f81d"; } .bi-train-lightrail-front-fill::before { content: "\f81e"; } .bi-train-lightrail-front::before { content: "\f81f"; } .bi-truck-front-fill::before { content: "\f820"; } .bi-truck-front::before { content: "\f821"; } .bi-ubuntu::before { content: "\f822"; } .bi-unindent::before { content: "\f823"; } .bi-unity::before { content: "\f824"; } .bi-universal-access-circle::before { content: "\f825"; } .bi-universal-access::before { content: "\f826"; } .bi-virus::before { content: "\f827"; } .bi-virus2::before { content: "\f828"; } .bi-wechat::before { content: "\f829"; } .bi-yelp::before { content: "\f82a"; } .bi-sign-stop-fill::before { content: "\f82b"; } .bi-sign-stop-lights-fill::before { content: "\f82c"; } .bi-sign-stop-lights::before { content: "\f82d"; } .bi-sign-stop::before { content: "\f82e"; } .bi-sign-turn-left-fill::before { content: "\f82f"; } .bi-sign-turn-left::before { content: "\f830"; } .bi-sign-turn-right-fill::before { content: "\f831"; } .bi-sign-turn-right::before { content: "\f832"; } .bi-sign-turn-slight-left-fill::before { content: "\f833"; } .bi-sign-turn-slight-left::before { content: "\f834"; } .bi-sign-turn-slight-right-fill::before { content: "\f835"; } .bi-sign-turn-slight-right::before { content: "\f836"; } .bi-sign-yield-fill::before { content: "\f837"; } .bi-sign-yield::before { content: "\f838"; } .bi-ev-station-fill::before { content: "\f839"; } .bi-ev-station::before { content: "\f83a"; } .bi-fuel-pump-diesel-fill::before { content: "\f83b"; } .bi-fuel-pump-diesel::before { content: "\f83c"; } .bi-fuel-pump-fill::before { content: "\f83d"; } .bi-fuel-pump::before { content: "\f83e"; } .bi-0-circle-fill::before { content: "\f83f"; } .bi-0-circle::before { content: "\f840"; } .bi-0-square-fill::before { content: "\f841"; } .bi-0-square::before { content: "\f842"; } .bi-rocket-fill::before { content: "\f843"; } .bi-rocket-takeoff-fill::before { content: "\f844"; } .bi-rocket-takeoff::before { content: "\f845"; } .bi-rocket::before { content: "\f846"; } .bi-stripe::before { content: "\f847"; } .bi-subscript::before { content: "\f848"; } .bi-superscript::before { content: "\f849"; } .bi-trello::before { content: "\f84a"; } .bi-envelope-at-fill::before { content: "\f84b"; } .bi-envelope-at::before { content: "\f84c"; } .bi-regex::before { content: "\f84d"; } .bi-text-wrap::before { content: "\f84e"; } .bi-sign-dead-end-fill::before { content: "\f84f"; } .bi-sign-dead-end::before { content: "\f850"; } .bi-sign-do-not-enter-fill::before { content: "\f851"; } .bi-sign-do-not-enter::before { content: "\f852"; } .bi-sign-intersection-fill::before { content: "\f853"; } .bi-sign-intersection-side-fill::before { content: "\f854"; } .bi-sign-intersection-side::before { content: "\f855"; } .bi-sign-intersection-t-fill::before { content: "\f856"; } .bi-sign-intersection-t::before { content: "\f857"; } .bi-sign-intersection-y-fill::before { content: "\f858"; } .bi-sign-intersection-y::before { content: "\f859"; } .bi-sign-intersection::before { content: "\f85a"; } .bi-sign-merge-left-fill::before { content: "\f85b"; } .bi-sign-merge-left::before { content: "\f85c"; } .bi-sign-merge-right-fill::before { content: "\f85d"; } .bi-sign-merge-right::before { content: "\f85e"; } .bi-sign-no-left-turn-fill::before { content: "\f85f"; } .bi-sign-no-left-turn::before { content: "\f860"; } .bi-sign-no-parking-fill::before { content: "\f861"; } .bi-sign-no-parking::before { content: "\f862"; } .bi-sign-no-right-turn-fill::before { content: "\f863"; } .bi-sign-no-right-turn::before { content: "\f864"; } .bi-sign-railroad-fill::before { content: "\f865"; } .bi-sign-railroad::before { content: "\f866"; } .bi-building-add::before { content: "\f867"; } .bi-building-check::before { content: "\f868"; } .bi-building-dash::before { content: "\f869"; } .bi-building-down::before { content: "\f86a"; } .bi-building-exclamation::before { content: "\f86b"; } .bi-building-fill-add::before { content: "\f86c"; } .bi-building-fill-check::before { content: "\f86d"; } .bi-building-fill-dash::before { content: "\f86e"; } .bi-building-fill-down::before { content: "\f86f"; } .bi-building-fill-exclamation::before { content: "\f870"; } .bi-building-fill-gear::before { content: "\f871"; } .bi-building-fill-lock::before { content: "\f872"; } .bi-building-fill-slash::before { content: "\f873"; } .bi-building-fill-up::before { content: "\f874"; } .bi-building-fill-x::before { content: "\f875"; } .bi-building-fill::before { content: "\f876"; } .bi-building-gear::before { content: "\f877"; } .bi-building-lock::before { content: "\f878"; } .bi-building-slash::before { content: "\f879"; } .bi-building-up::before { content: "\f87a"; } .bi-building-x::before { content: "\f87b"; } .bi-buildings-fill::before { content: "\f87c"; } .bi-buildings::before { content: "\f87d"; } .bi-bus-front-fill::before { content: "\f87e"; } .bi-bus-front::before { content: "\f87f"; } .bi-ev-front-fill::before { content: "\f880"; } .bi-ev-front::before { content: "\f881"; } .bi-globe-americas::before { content: "\f882"; } .bi-globe-asia-australia::before { content: "\f883"; } .bi-globe-central-south-asia::before { content: "\f884"; } .bi-globe-europe-africa::before { content: "\f885"; } .bi-house-add-fill::before { content: "\f886"; } .bi-house-add::before { content: "\f887"; } .bi-house-check-fill::before { content: "\f888"; } .bi-house-check::before { content: "\f889"; } .bi-house-dash-fill::before { content: "\f88a"; } .bi-house-dash::before { content: "\f88b"; } .bi-house-down-fill::before { content: "\f88c"; } .bi-house-down::before { content: "\f88d"; } .bi-house-exclamation-fill::before { content: "\f88e"; } .bi-house-exclamation::before { content: "\f88f"; } .bi-house-gear-fill::before { content: "\f890"; } .bi-house-gear::before { content: "\f891"; } .bi-house-lock-fill::before { content: "\f892"; } .bi-house-lock::before { content: "\f893"; } .bi-house-slash-fill::before { content: "\f894"; } .bi-house-slash::before { content: "\f895"; } .bi-house-up-fill::before { content: "\f896"; } .bi-house-up::before { content: "\f897"; } .bi-house-x-fill::before { content: "\f898"; } .bi-house-x::before { content: "\f899"; } .bi-person-add::before { content: "\f89a"; } .bi-person-down::before { content: "\f89b"; } .bi-person-exclamation::before { content: "\f89c"; } .bi-person-fill-add::before { content: "\f89d"; } .bi-person-fill-check::before { content: "\f89e"; } .bi-person-fill-dash::before { content: "\f89f"; } .bi-person-fill-down::before { content: "\f8a0"; } .bi-person-fill-exclamation::before { content: "\f8a1"; } .bi-person-fill-gear::before { content: "\f8a2"; } .bi-person-fill-lock::before { content: "\f8a3"; } .bi-person-fill-slash::before { content: "\f8a4"; } .bi-person-fill-up::before { content: "\f8a5"; } .bi-person-fill-x::before { content: "\f8a6"; } .bi-person-gear::before { content: "\f8a7"; } .bi-person-lock::before { content: "\f8a8"; } .bi-person-slash::before { content: "\f8a9"; } .bi-person-up::before { content: "\f8aa"; } .bi-scooter::before { content: "\f8ab"; } .bi-taxi-front-fill::before { content: "\f8ac"; } .bi-taxi-front::before { content: "\f8ad"; } .bi-amd::before { content: "\f8ae"; } .bi-database-add::before { content: "\f8af"; } .bi-database-check::before { content: "\f8b0"; } .bi-database-dash::before { content: "\f8b1"; } .bi-database-down::before { content: "\f8b2"; } .bi-database-exclamation::before { content: "\f8b3"; } .bi-database-fill-add::before { content: "\f8b4"; } .bi-database-fill-check::before { content: "\f8b5"; } .bi-database-fill-dash::before { content: "\f8b6"; } .bi-database-fill-down::before { content: "\f8b7"; } .bi-database-fill-exclamation::before { content: "\f8b8"; } .bi-database-fill-gear::before { content: "\f8b9"; } .bi-database-fill-lock::before { content: "\f8ba"; } .bi-database-fill-slash::before { content: "\f8bb"; } .bi-database-fill-up::before { content: "\f8bc"; } .bi-database-fill-x::before { content: "\f8bd"; } .bi-database-fill::before { content: "\f8be"; } .bi-database-gear::before { content: "\f8bf"; } .bi-database-lock::before { content: "\f8c0"; } .bi-database-slash::before { content: "\f8c1"; } .bi-database-up::before { content: "\f8c2"; } .bi-database-x::before { content: "\f8c3"; } .bi-database::before { content: "\f8c4"; } .bi-houses-fill::before { content: "\f8c5"; } .bi-houses::before { content: "\f8c6"; } .bi-nvidia::before { content: "\f8c7"; } .bi-person-vcard-fill::before { content: "\f8c8"; } .bi-person-vcard::before { content: "\f8c9"; } .bi-sina-weibo::before { content: "\f8ca"; } .bi-tencent-qq::before { content: "\f8cb"; } .bi-wikipedia::before { content: "\f8cc"; } .bi-alphabet-uppercase::before { content: "\f2a5"; } .bi-alphabet::before { content: "\f68a"; } .bi-amazon::before { content: "\f68d"; } .bi-arrows-collapse-vertical::before { content: "\f690"; } .bi-arrows-expand-vertical::before { content: "\f695"; } .bi-arrows-vertical::before { content: "\f698"; } .bi-arrows::before { content: "\f6a2"; } .bi-ban-fill::before { content: "\f6a3"; } .bi-ban::before { content: "\f6b6"; } .bi-bing::before { content: "\f6c2"; } .bi-cake::before { content: "\f6e0"; } .bi-cake2::before { content: "\f6ed"; } .bi-cookie::before { content: "\f6ee"; } .bi-copy::before { content: "\f759"; } .bi-crosshair::before { content: "\f769"; } .bi-crosshair2::before { content: "\f794"; } .bi-emoji-astonished-fill::before { content: "\f795"; } .bi-emoji-astonished::before { content: "\f79a"; } .bi-emoji-grimace-fill::before { content: "\f79b"; } .bi-emoji-grimace::before { content: "\f7a0"; } .bi-emoji-grin-fill::before { content: "\f7a1"; } .bi-emoji-grin::before { content: "\f7a6"; } .bi-emoji-surprise-fill::before { content: "\f7a7"; } .bi-emoji-surprise::before { content: "\f7ac"; } .bi-emoji-tear-fill::before { content: "\f7ad"; } .bi-emoji-tear::before { content: "\f7b2"; } .bi-envelope-arrow-down-fill::before { content: "\f7b3"; } .bi-envelope-arrow-down::before { content: "\f7b8"; } .bi-envelope-arrow-up-fill::before { content: "\f7b9"; } .bi-envelope-arrow-up::before { content: "\f7be"; } .bi-feather::before { content: "\f7bf"; } .bi-feather2::before { content: "\f7c4"; } .bi-floppy-fill::before { content: "\f7c5"; } .bi-floppy::before { content: "\f7d8"; } .bi-floppy2-fill::before { content: "\f7d9"; } .bi-floppy2::before { content: "\f7e4"; } .bi-gitlab::before { content: "\f7e5"; } .bi-highlighter::before { content: "\f7f8"; } .bi-marker-tip::before { content: "\f802"; } .bi-nvme-fill::before { content: "\f803"; } .bi-nvme::before { content: "\f80c"; } .bi-opencollective::before { content: "\f80d"; } .bi-pci-card-network::before { content: "\f8cd"; } .bi-pci-card-sound::before { content: "\f8ce"; } .bi-radar::before { content: "\f8cf"; } .bi-send-arrow-down-fill::before { content: "\f8d0"; } .bi-send-arrow-down::before { content: "\f8d1"; } .bi-send-arrow-up-fill::before { content: "\f8d2"; } .bi-send-arrow-up::before { content: "\f8d3"; } .bi-sim-slash-fill::before { content: "\f8d4"; } .bi-sim-slash::before { content: "\f8d5"; } .bi-sourceforge::before { content: "\f8d6"; } .bi-substack::before { content: "\f8d7"; } .bi-threads-fill::before { content: "\f8d8"; } .bi-threads::before { content: "\f8d9"; } .bi-transparency::before { content: "\f8da"; } .bi-twitter-x::before { content: "\f8db"; } .bi-type-h4::before { content: "\f8dc"; } .bi-type-h5::before { content: "\f8dd"; } .bi-type-h6::before { content: "\f8de"; } .bi-backpack-fill::before { content: "\f8df"; } .bi-backpack::before { content: "\f8e0"; } .bi-backpack2-fill::before { content: "\f8e1"; } .bi-backpack2::before { content: "\f8e2"; } .bi-backpack3-fill::before { content: "\f8e3"; } .bi-backpack3::before { content: "\f8e4"; } .bi-backpack4-fill::before { content: "\f8e5"; } .bi-backpack4::before { content: "\f8e6"; } .bi-brilliance::before { content: "\f8e7"; } .bi-cake-fill::before { content: "\f8e8"; } .bi-cake2-fill::before { content: "\f8e9"; } .bi-duffle-fill::before { content: "\f8ea"; } .bi-duffle::before { content: "\f8eb"; } .bi-exposure::before { content: "\f8ec"; } .bi-gender-neuter::before { content: "\f8ed"; } .bi-highlights::before { content: "\f8ee"; } .bi-luggage-fill::before { content: "\f8ef"; } .bi-luggage::before { content: "\f8f0"; } .bi-mailbox-flag::before { content: "\f8f1"; } .bi-mailbox2-flag::before { content: "\f8f2"; } .bi-noise-reduction::before { content: "\f8f3"; } .bi-passport-fill::before { content: "\f8f4"; } .bi-passport::before { content: "\f8f5"; } .bi-person-arms-up::before { content: "\f8f6"; } .bi-person-raised-hand::before { content: "\f8f7"; } .bi-person-standing-dress::before { content: "\f8f8"; } .bi-person-standing::before { content: "\f8f9"; } .bi-person-walking::before { content: "\f8fa"; } .bi-person-wheelchair::before { content: "\f8fb"; } .bi-shadows::before { content: "\f8fc"; } .bi-suitcase-fill::before { content: "\f8fd"; } .bi-suitcase-lg-fill::before { content: "\f8fe"; } .bi-suitcase-lg::before { content: "\f8ff"; } .bi-suitcase::before { content: "\f900"; } .bi-suitcase2-fill::before { content: "\f901"; } .bi-suitcase2::before { content: "\f902"; } .bi-vignette::before { content: "\f903"; } .bi-bluesky::before { content: "\f7f9"; } .bi-tux::before { content: "\f904"; } .bi-beaker-fill::before { content: "\f905"; } .bi-beaker::before { content: "\f906"; } .bi-flask-fill::before { content: "\f907"; } .bi-flask-florence-fill::before { content: "\f908"; } .bi-flask-florence::before { content: "\f909"; } .bi-flask::before { content: "\f90a"; } .bi-leaf-fill::before { content: "\f90b"; } .bi-leaf::before { content: "\f90c"; } .bi-measuring-cup-fill::before { content: "\f90d"; } .bi-measuring-cup::before { content: "\f90e"; } .bi-unlock2-fill::before { content: "\f90f"; } .bi-unlock2::before { content: "\f910"; } .bi-battery-low::before { content: "\f911"; } .bi-anthropic::before { content: "\f912"; } .bi-apple-music::before { content: "\f913"; } .bi-claude::before { content: "\f914"; } .bi-openai::before { content: "\f915"; } .bi-perplexity::before { content: "\f916"; } .bi-css::before { content: "\f917"; } .bi-javascript::before { content: "\f918"; } .bi-typescript::before { content: "\f919"; } .bi-fork-knife::before { content: "\f91a"; } .bi-globe-americas-fill::before { content: "\f91b"; } .bi-globe-asia-australia-fill::before { content: "\f91c"; } .bi-globe-central-south-asia-fill::before { content: "\f91d"; } .bi-globe-europe-africa-fill::before { content: "\f91e"; } ================================================ FILE: font/bootstrap-icons.json ================================================ { "123": 63103, "alarm-fill": 61697, "alarm": 61698, "align-bottom": 61699, "align-center": 61700, "align-end": 61701, "align-middle": 61702, "align-start": 61703, "align-top": 61704, "alt": 61705, "app-indicator": 61706, "app": 61707, "archive-fill": 61708, "archive": 61709, "arrow-90deg-down": 61710, "arrow-90deg-left": 61711, "arrow-90deg-right": 61712, "arrow-90deg-up": 61713, "arrow-bar-down": 61714, "arrow-bar-left": 61715, "arrow-bar-right": 61716, "arrow-bar-up": 61717, "arrow-clockwise": 61718, "arrow-counterclockwise": 61719, "arrow-down-circle-fill": 61720, "arrow-down-circle": 61721, "arrow-down-left-circle-fill": 61722, "arrow-down-left-circle": 61723, "arrow-down-left-square-fill": 61724, "arrow-down-left-square": 61725, "arrow-down-left": 61726, "arrow-down-right-circle-fill": 61727, "arrow-down-right-circle": 61728, "arrow-down-right-square-fill": 61729, "arrow-down-right-square": 61730, "arrow-down-right": 61731, "arrow-down-short": 61732, "arrow-down-square-fill": 61733, "arrow-down-square": 61734, "arrow-down-up": 61735, "arrow-down": 61736, "arrow-left-circle-fill": 61737, "arrow-left-circle": 61738, "arrow-left-right": 61739, "arrow-left-short": 61740, "arrow-left-square-fill": 61741, "arrow-left-square": 61742, "arrow-left": 61743, "arrow-repeat": 61744, "arrow-return-left": 61745, "arrow-return-right": 61746, "arrow-right-circle-fill": 61747, "arrow-right-circle": 61748, "arrow-right-short": 61749, "arrow-right-square-fill": 61750, "arrow-right-square": 61751, "arrow-right": 61752, "arrow-up-circle-fill": 61753, "arrow-up-circle": 61754, "arrow-up-left-circle-fill": 61755, "arrow-up-left-circle": 61756, "arrow-up-left-square-fill": 61757, "arrow-up-left-square": 61758, "arrow-up-left": 61759, "arrow-up-right-circle-fill": 61760, "arrow-up-right-circle": 61761, "arrow-up-right-square-fill": 61762, "arrow-up-right-square": 61763, "arrow-up-right": 61764, "arrow-up-short": 61765, "arrow-up-square-fill": 61766, "arrow-up-square": 61767, "arrow-up": 61768, "arrows-angle-contract": 61769, "arrows-angle-expand": 61770, "arrows-collapse": 61771, "arrows-expand": 61772, "arrows-fullscreen": 61773, "arrows-move": 61774, "aspect-ratio-fill": 61775, "aspect-ratio": 61776, "asterisk": 61777, "at": 61778, "award-fill": 61779, "award": 61780, "back": 61781, "backspace-fill": 61782, "backspace-reverse-fill": 61783, "backspace-reverse": 61784, "backspace": 61785, "badge-3d-fill": 61786, "badge-3d": 61787, "badge-4k-fill": 61788, "badge-4k": 61789, "badge-8k-fill": 61790, "badge-8k": 61791, "badge-ad-fill": 61792, "badge-ad": 61793, "badge-ar-fill": 61794, "badge-ar": 61795, "badge-cc-fill": 61796, "badge-cc": 61797, "badge-hd-fill": 61798, "badge-hd": 61799, "badge-tm-fill": 61800, "badge-tm": 61801, "badge-vo-fill": 61802, "badge-vo": 61803, "badge-vr-fill": 61804, "badge-vr": 61805, "badge-wc-fill": 61806, "badge-wc": 61807, "bag-check-fill": 61808, "bag-check": 61809, "bag-dash-fill": 61810, "bag-dash": 61811, "bag-fill": 61812, "bag-plus-fill": 61813, "bag-plus": 61814, "bag-x-fill": 61815, "bag-x": 61816, "bag": 61817, "bar-chart-fill": 61818, "bar-chart-line-fill": 61819, "bar-chart-line": 61820, "bar-chart-steps": 61821, "bar-chart": 61822, "basket-fill": 61823, "basket": 61824, "basket2-fill": 61825, "basket2": 61826, "basket3-fill": 61827, "basket3": 61828, "battery-charging": 61829, "battery-full": 61830, "battery-half": 61831, "battery": 61832, "bell-fill": 61833, "bell": 61834, "bezier": 61835, "bezier2": 61836, "bicycle": 61837, "binoculars-fill": 61838, "binoculars": 61839, "blockquote-left": 61840, "blockquote-right": 61841, "book-fill": 61842, "book-half": 61843, "book": 61844, "bookmark-check-fill": 61845, "bookmark-check": 61846, "bookmark-dash-fill": 61847, "bookmark-dash": 61848, "bookmark-fill": 61849, "bookmark-heart-fill": 61850, "bookmark-heart": 61851, "bookmark-plus-fill": 61852, "bookmark-plus": 61853, "bookmark-star-fill": 61854, "bookmark-star": 61855, "bookmark-x-fill": 61856, "bookmark-x": 61857, "bookmark": 61858, "bookmarks-fill": 61859, "bookmarks": 61860, "bookshelf": 61861, "bootstrap-fill": 61862, "bootstrap-reboot": 61863, "bootstrap": 61864, "border-all": 61865, "border-bottom": 61866, "border-center": 61867, "border-inner": 61868, "border-left": 61869, "border-middle": 61870, "border-outer": 61871, "border-right": 61872, "border-style": 61873, "border-top": 61874, "border-width": 61875, "border": 61876, "bounding-box-circles": 61877, "bounding-box": 61878, "box-arrow-down-left": 61879, "box-arrow-down-right": 61880, "box-arrow-down": 61881, "box-arrow-in-down-left": 61882, "box-arrow-in-down-right": 61883, "box-arrow-in-down": 61884, "box-arrow-in-left": 61885, "box-arrow-in-right": 61886, "box-arrow-in-up-left": 61887, "box-arrow-in-up-right": 61888, "box-arrow-in-up": 61889, "box-arrow-left": 61890, "box-arrow-right": 61891, "box-arrow-up-left": 61892, "box-arrow-up-right": 61893, "box-arrow-up": 61894, "box-seam": 61895, "box": 61896, "braces": 61897, "bricks": 61898, "briefcase-fill": 61899, "briefcase": 61900, "brightness-alt-high-fill": 61901, "brightness-alt-high": 61902, "brightness-alt-low-fill": 61903, "brightness-alt-low": 61904, "brightness-high-fill": 61905, "brightness-high": 61906, "brightness-low-fill": 61907, "brightness-low": 61908, "broadcast-pin": 61909, "broadcast": 61910, "brush-fill": 61911, "brush": 61912, "bucket-fill": 61913, "bucket": 61914, "bug-fill": 61915, "bug": 61916, "building": 61917, "bullseye": 61918, "calculator-fill": 61919, "calculator": 61920, "calendar-check-fill": 61921, "calendar-check": 61922, "calendar-date-fill": 61923, "calendar-date": 61924, "calendar-day-fill": 61925, "calendar-day": 61926, "calendar-event-fill": 61927, "calendar-event": 61928, "calendar-fill": 61929, "calendar-minus-fill": 61930, "calendar-minus": 61931, "calendar-month-fill": 61932, "calendar-month": 61933, "calendar-plus-fill": 61934, "calendar-plus": 61935, "calendar-range-fill": 61936, "calendar-range": 61937, "calendar-week-fill": 61938, "calendar-week": 61939, "calendar-x-fill": 61940, "calendar-x": 61941, "calendar": 61942, "calendar2-check-fill": 61943, "calendar2-check": 61944, "calendar2-date-fill": 61945, "calendar2-date": 61946, "calendar2-day-fill": 61947, "calendar2-day": 61948, "calendar2-event-fill": 61949, "calendar2-event": 61950, "calendar2-fill": 61951, "calendar2-minus-fill": 61952, "calendar2-minus": 61953, "calendar2-month-fill": 61954, "calendar2-month": 61955, "calendar2-plus-fill": 61956, "calendar2-plus": 61957, "calendar2-range-fill": 61958, "calendar2-range": 61959, "calendar2-week-fill": 61960, "calendar2-week": 61961, "calendar2-x-fill": 61962, "calendar2-x": 61963, "calendar2": 61964, "calendar3-event-fill": 61965, "calendar3-event": 61966, "calendar3-fill": 61967, "calendar3-range-fill": 61968, "calendar3-range": 61969, "calendar3-week-fill": 61970, "calendar3-week": 61971, "calendar3": 61972, "calendar4-event": 61973, "calendar4-range": 61974, "calendar4-week": 61975, "calendar4": 61976, "camera-fill": 61977, "camera-reels-fill": 61978, "camera-reels": 61979, "camera-video-fill": 61980, "camera-video-off-fill": 61981, "camera-video-off": 61982, "camera-video": 61983, "camera": 61984, "camera2": 61985, "capslock-fill": 61986, "capslock": 61987, "card-checklist": 61988, "card-heading": 61989, "card-image": 61990, "card-list": 61991, "card-text": 61992, "caret-down-fill": 61993, "caret-down-square-fill": 61994, "caret-down-square": 61995, "caret-down": 61996, "caret-left-fill": 61997, "caret-left-square-fill": 61998, "caret-left-square": 61999, "caret-left": 62000, "caret-right-fill": 62001, "caret-right-square-fill": 62002, "caret-right-square": 62003, "caret-right": 62004, "caret-up-fill": 62005, "caret-up-square-fill": 62006, "caret-up-square": 62007, "caret-up": 62008, "cart-check-fill": 62009, "cart-check": 62010, "cart-dash-fill": 62011, "cart-dash": 62012, "cart-fill": 62013, "cart-plus-fill": 62014, "cart-plus": 62015, "cart-x-fill": 62016, "cart-x": 62017, "cart": 62018, "cart2": 62019, "cart3": 62020, "cart4": 62021, "cash-stack": 62022, "cash": 62023, "cast": 62024, "chat-dots-fill": 62025, "chat-dots": 62026, "chat-fill": 62027, "chat-left-dots-fill": 62028, "chat-left-dots": 62029, "chat-left-fill": 62030, "chat-left-quote-fill": 62031, "chat-left-quote": 62032, "chat-left-text-fill": 62033, "chat-left-text": 62034, "chat-left": 62035, "chat-quote-fill": 62036, "chat-quote": 62037, "chat-right-dots-fill": 62038, "chat-right-dots": 62039, "chat-right-fill": 62040, "chat-right-quote-fill": 62041, "chat-right-quote": 62042, "chat-right-text-fill": 62043, "chat-right-text": 62044, "chat-right": 62045, "chat-square-dots-fill": 62046, "chat-square-dots": 62047, "chat-square-fill": 62048, "chat-square-quote-fill": 62049, "chat-square-quote": 62050, "chat-square-text-fill": 62051, "chat-square-text": 62052, "chat-square": 62053, "chat-text-fill": 62054, "chat-text": 62055, "chat": 62056, "check-all": 62057, "check-circle-fill": 62058, "check-circle": 62059, "check-square-fill": 62060, "check-square": 62061, "check": 62062, "check2-all": 62063, "check2-circle": 62064, "check2-square": 62065, "check2": 62066, "chevron-bar-contract": 62067, "chevron-bar-down": 62068, "chevron-bar-expand": 62069, "chevron-bar-left": 62070, "chevron-bar-right": 62071, "chevron-bar-up": 62072, "chevron-compact-down": 62073, "chevron-compact-left": 62074, "chevron-compact-right": 62075, "chevron-compact-up": 62076, "chevron-contract": 62077, "chevron-double-down": 62078, "chevron-double-left": 62079, "chevron-double-right": 62080, "chevron-double-up": 62081, "chevron-down": 62082, "chevron-expand": 62083, "chevron-left": 62084, "chevron-right": 62085, "chevron-up": 62086, "circle-fill": 62087, "circle-half": 62088, "circle-square": 62089, "circle": 62090, "clipboard-check": 62091, "clipboard-data": 62092, "clipboard-minus": 62093, "clipboard-plus": 62094, "clipboard-x": 62095, "clipboard": 62096, "clock-fill": 62097, "clock-history": 62098, "clock": 62099, "cloud-arrow-down-fill": 62100, "cloud-arrow-down": 62101, "cloud-arrow-up-fill": 62102, "cloud-arrow-up": 62103, "cloud-check-fill": 62104, "cloud-check": 62105, "cloud-download-fill": 62106, "cloud-download": 62107, "cloud-drizzle-fill": 62108, "cloud-drizzle": 62109, "cloud-fill": 62110, "cloud-fog-fill": 62111, "cloud-fog": 62112, "cloud-fog2-fill": 62113, "cloud-fog2": 62114, "cloud-hail-fill": 62115, "cloud-hail": 62116, "cloud-haze-fill": 62118, "cloud-haze": 62119, "cloud-haze2-fill": 62120, "cloud-lightning-fill": 62121, "cloud-lightning-rain-fill": 62122, "cloud-lightning-rain": 62123, "cloud-lightning": 62124, "cloud-minus-fill": 62125, "cloud-minus": 62126, "cloud-moon-fill": 62127, "cloud-moon": 62128, "cloud-plus-fill": 62129, "cloud-plus": 62130, "cloud-rain-fill": 62131, "cloud-rain-heavy-fill": 62132, "cloud-rain-heavy": 62133, "cloud-rain": 62134, "cloud-slash-fill": 62135, "cloud-slash": 62136, "cloud-sleet-fill": 62137, "cloud-sleet": 62138, "cloud-snow-fill": 62139, "cloud-snow": 62140, "cloud-sun-fill": 62141, "cloud-sun": 62142, "cloud-upload-fill": 62143, "cloud-upload": 62144, "cloud": 62145, "clouds-fill": 62146, "clouds": 62147, "cloudy-fill": 62148, "cloudy": 62149, "code-slash": 62150, "code-square": 62151, "code": 62152, "collection-fill": 62153, "collection-play-fill": 62154, "collection-play": 62155, "collection": 62156, "columns-gap": 62157, "columns": 62158, "command": 62159, "compass-fill": 62160, "compass": 62161, "cone-striped": 62162, "cone": 62163, "controller": 62164, "cpu-fill": 62165, "cpu": 62166, "credit-card-2-back-fill": 62167, "credit-card-2-back": 62168, "credit-card-2-front-fill": 62169, "credit-card-2-front": 62170, "credit-card-fill": 62171, "credit-card": 62172, "crop": 62173, "cup-fill": 62174, "cup-straw": 62175, "cup": 62176, "cursor-fill": 62177, "cursor-text": 62178, "cursor": 62179, "dash-circle-dotted": 62180, "dash-circle-fill": 62181, "dash-circle": 62182, "dash-square-dotted": 62183, "dash-square-fill": 62184, "dash-square": 62185, "dash": 62186, "diagram-2-fill": 62187, "diagram-2": 62188, "diagram-3-fill": 62189, "diagram-3": 62190, "diamond-fill": 62191, "diamond-half": 62192, "diamond": 62193, "dice-1-fill": 62194, "dice-1": 62195, "dice-2-fill": 62196, "dice-2": 62197, "dice-3-fill": 62198, "dice-3": 62199, "dice-4-fill": 62200, "dice-4": 62201, "dice-5-fill": 62202, "dice-5": 62203, "dice-6-fill": 62204, "dice-6": 62205, "disc-fill": 62206, "disc": 62207, "discord": 62208, "display-fill": 62209, "display": 62210, "distribute-horizontal": 62211, "distribute-vertical": 62212, "door-closed-fill": 62213, "door-closed": 62214, "door-open-fill": 62215, "door-open": 62216, "dot": 62217, "download": 62218, "droplet-fill": 62219, "droplet-half": 62220, "droplet": 62221, "earbuds": 62222, "easel-fill": 62223, "easel": 62224, "egg-fill": 62225, "egg-fried": 62226, "egg": 62227, "eject-fill": 62228, "eject": 62229, "emoji-angry-fill": 62230, "emoji-angry": 62231, "emoji-dizzy-fill": 62232, "emoji-dizzy": 62233, "emoji-expressionless-fill": 62234, "emoji-expressionless": 62235, "emoji-frown-fill": 62236, "emoji-frown": 62237, "emoji-heart-eyes-fill": 62238, "emoji-heart-eyes": 62239, "emoji-laughing-fill": 62240, "emoji-laughing": 62241, "emoji-neutral-fill": 62242, "emoji-neutral": 62243, "emoji-smile-fill": 62244, "emoji-smile-upside-down-fill": 62245, "emoji-smile-upside-down": 62246, "emoji-smile": 62247, "emoji-sunglasses-fill": 62248, "emoji-sunglasses": 62249, "emoji-wink-fill": 62250, "emoji-wink": 62251, "envelope-fill": 62252, "envelope-open-fill": 62253, "envelope-open": 62254, "envelope": 62255, "eraser-fill": 62256, "eraser": 62257, "exclamation-circle-fill": 62258, "exclamation-circle": 62259, "exclamation-diamond-fill": 62260, "exclamation-diamond": 62261, "exclamation-octagon-fill": 62262, "exclamation-octagon": 62263, "exclamation-square-fill": 62264, "exclamation-square": 62265, "exclamation-triangle-fill": 62266, "exclamation-triangle": 62267, "exclamation": 62268, "exclude": 62269, "eye-fill": 62270, "eye-slash-fill": 62271, "eye-slash": 62272, "eye": 62273, "eyedropper": 62274, "eyeglasses": 62275, "facebook": 62276, "file-arrow-down-fill": 62277, "file-arrow-down": 62278, "file-arrow-up-fill": 62279, "file-arrow-up": 62280, "file-bar-graph-fill": 62281, "file-bar-graph": 62282, "file-binary-fill": 62283, "file-binary": 62284, "file-break-fill": 62285, "file-break": 62286, "file-check-fill": 62287, "file-check": 62288, "file-code-fill": 62289, "file-code": 62290, "file-diff-fill": 62291, "file-diff": 62292, "file-earmark-arrow-down-fill": 62293, "file-earmark-arrow-down": 62294, "file-earmark-arrow-up-fill": 62295, "file-earmark-arrow-up": 62296, "file-earmark-bar-graph-fill": 62297, "file-earmark-bar-graph": 62298, "file-earmark-binary-fill": 62299, "file-earmark-binary": 62300, "file-earmark-break-fill": 62301, "file-earmark-break": 62302, "file-earmark-check-fill": 62303, "file-earmark-check": 62304, "file-earmark-code-fill": 62305, "file-earmark-code": 62306, "file-earmark-diff-fill": 62307, "file-earmark-diff": 62308, "file-earmark-easel-fill": 62309, "file-earmark-easel": 62310, "file-earmark-excel-fill": 62311, "file-earmark-excel": 62312, "file-earmark-fill": 62313, "file-earmark-font-fill": 62314, "file-earmark-font": 62315, "file-earmark-image-fill": 62316, "file-earmark-image": 62317, "file-earmark-lock-fill": 62318, "file-earmark-lock": 62319, "file-earmark-lock2-fill": 62320, "file-earmark-lock2": 62321, "file-earmark-medical-fill": 62322, "file-earmark-medical": 62323, "file-earmark-minus-fill": 62324, "file-earmark-minus": 62325, "file-earmark-music-fill": 62326, "file-earmark-music": 62327, "file-earmark-person-fill": 62328, "file-earmark-person": 62329, "file-earmark-play-fill": 62330, "file-earmark-play": 62331, "file-earmark-plus-fill": 62332, "file-earmark-plus": 62333, "file-earmark-post-fill": 62334, "file-earmark-post": 62335, "file-earmark-ppt-fill": 62336, "file-earmark-ppt": 62337, "file-earmark-richtext-fill": 62338, "file-earmark-richtext": 62339, "file-earmark-ruled-fill": 62340, "file-earmark-ruled": 62341, "file-earmark-slides-fill": 62342, "file-earmark-slides": 62343, "file-earmark-spreadsheet-fill": 62344, "file-earmark-spreadsheet": 62345, "file-earmark-text-fill": 62346, "file-earmark-text": 62347, "file-earmark-word-fill": 62348, "file-earmark-word": 62349, "file-earmark-x-fill": 62350, "file-earmark-x": 62351, "file-earmark-zip-fill": 62352, "file-earmark-zip": 62353, "file-earmark": 62354, "file-easel-fill": 62355, "file-easel": 62356, "file-excel-fill": 62357, "file-excel": 62358, "file-fill": 62359, "file-font-fill": 62360, "file-font": 62361, "file-image-fill": 62362, "file-image": 62363, "file-lock-fill": 62364, "file-lock": 62365, "file-lock2-fill": 62366, "file-lock2": 62367, "file-medical-fill": 62368, "file-medical": 62369, "file-minus-fill": 62370, "file-minus": 62371, "file-music-fill": 62372, "file-music": 62373, "file-person-fill": 62374, "file-person": 62375, "file-play-fill": 62376, "file-play": 62377, "file-plus-fill": 62378, "file-plus": 62379, "file-post-fill": 62380, "file-post": 62381, "file-ppt-fill": 62382, "file-ppt": 62383, "file-richtext-fill": 62384, "file-richtext": 62385, "file-ruled-fill": 62386, "file-ruled": 62387, "file-slides-fill": 62388, "file-slides": 62389, "file-spreadsheet-fill": 62390, "file-spreadsheet": 62391, "file-text-fill": 62392, "file-text": 62393, "file-word-fill": 62394, "file-word": 62395, "file-x-fill": 62396, "file-x": 62397, "file-zip-fill": 62398, "file-zip": 62399, "file": 62400, "files-alt": 62401, "files": 62402, "film": 62403, "filter-circle-fill": 62404, "filter-circle": 62405, "filter-left": 62406, "filter-right": 62407, "filter-square-fill": 62408, "filter-square": 62409, "filter": 62410, "flag-fill": 62411, "flag": 62412, "flower1": 62413, "flower2": 62414, "flower3": 62415, "folder-check": 62416, "folder-fill": 62417, "folder-minus": 62418, "folder-plus": 62419, "folder-symlink-fill": 62420, "folder-symlink": 62421, "folder-x": 62422, "folder": 62423, "folder2-open": 62424, "folder2": 62425, "fonts": 62426, "forward-fill": 62427, "forward": 62428, "front": 62429, "fullscreen-exit": 62430, "fullscreen": 62431, "funnel-fill": 62432, "funnel": 62433, "gear-fill": 62434, "gear-wide-connected": 62435, "gear-wide": 62436, "gear": 62437, "gem": 62438, "geo-alt-fill": 62439, "geo-alt": 62440, "geo-fill": 62441, "geo": 62442, "gift-fill": 62443, "gift": 62444, "github": 62445, "globe": 62446, "globe2": 62447, "google": 62448, "graph-down": 62449, "graph-up": 62450, "grid-1x2-fill": 62451, "grid-1x2": 62452, "grid-3x2-gap-fill": 62453, "grid-3x2-gap": 62454, "grid-3x2": 62455, "grid-3x3-gap-fill": 62456, "grid-3x3-gap": 62457, "grid-3x3": 62458, "grid-fill": 62459, "grid": 62460, "grip-horizontal": 62461, "grip-vertical": 62462, "hammer": 62463, "hand-index-fill": 62464, "hand-index-thumb-fill": 62465, "hand-index-thumb": 62466, "hand-index": 62467, "hand-thumbs-down-fill": 62468, "hand-thumbs-down": 62469, "hand-thumbs-up-fill": 62470, "hand-thumbs-up": 62471, "handbag-fill": 62472, "handbag": 62473, "hash": 62474, "hdd-fill": 62475, "hdd-network-fill": 62476, "hdd-network": 62477, "hdd-rack-fill": 62478, "hdd-rack": 62479, "hdd-stack-fill": 62480, "hdd-stack": 62481, "hdd": 62482, "headphones": 62483, "headset": 62484, "heart-fill": 62485, "heart-half": 62486, "heart": 62487, "heptagon-fill": 62488, "heptagon-half": 62489, "heptagon": 62490, "hexagon-fill": 62491, "hexagon-half": 62492, "hexagon": 62493, "hourglass-bottom": 62494, "hourglass-split": 62495, "hourglass-top": 62496, "hourglass": 62497, "house-door-fill": 62498, "house-door": 62499, "house-fill": 62500, "house": 62501, "hr": 62502, "hurricane": 62503, "image-alt": 62504, "image-fill": 62505, "image": 62506, "images": 62507, "inbox-fill": 62508, "inbox": 62509, "inboxes-fill": 62510, "inboxes": 62511, "info-circle-fill": 62512, "info-circle": 62513, "info-square-fill": 62514, "info-square": 62515, "info": 62516, "input-cursor-text": 62517, "input-cursor": 62518, "instagram": 62519, "intersect": 62520, "journal-album": 62521, "journal-arrow-down": 62522, "journal-arrow-up": 62523, "journal-bookmark-fill": 62524, "journal-bookmark": 62525, "journal-check": 62526, "journal-code": 62527, "journal-medical": 62528, "journal-minus": 62529, "journal-plus": 62530, "journal-richtext": 62531, "journal-text": 62532, "journal-x": 62533, "journal": 62534, "journals": 62535, "joystick": 62536, "justify-left": 62537, "justify-right": 62538, "justify": 62539, "kanban-fill": 62540, "kanban": 62541, "key-fill": 62542, "key": 62543, "keyboard-fill": 62544, "keyboard": 62545, "ladder": 62546, "lamp-fill": 62547, "lamp": 62548, "laptop-fill": 62549, "laptop": 62550, "layer-backward": 62551, "layer-forward": 62552, "layers-fill": 62553, "layers-half": 62554, "layers": 62555, "layout-sidebar-inset-reverse": 62556, "layout-sidebar-inset": 62557, "layout-sidebar-reverse": 62558, "layout-sidebar": 62559, "layout-split": 62560, "layout-text-sidebar-reverse": 62561, "layout-text-sidebar": 62562, "layout-text-window-reverse": 62563, "layout-text-window": 62564, "layout-three-columns": 62565, "layout-wtf": 62566, "life-preserver": 62567, "lightbulb-fill": 62568, "lightbulb-off-fill": 62569, "lightbulb-off": 62570, "lightbulb": 62571, "lightning-charge-fill": 62572, "lightning-charge": 62573, "lightning-fill": 62574, "lightning": 62575, "link-45deg": 62576, "link": 62577, "linkedin": 62578, "list-check": 62579, "list-nested": 62580, "list-ol": 62581, "list-stars": 62582, "list-task": 62583, "list-ul": 62584, "list": 62585, "lock-fill": 62586, "lock": 62587, "mailbox": 62588, "mailbox2": 62589, "map-fill": 62590, "map": 62591, "markdown-fill": 62592, "markdown": 62593, "mask": 62594, "megaphone-fill": 62595, "megaphone": 62596, "menu-app-fill": 62597, "menu-app": 62598, "menu-button-fill": 62599, "menu-button-wide-fill": 62600, "menu-button-wide": 62601, "menu-button": 62602, "menu-down": 62603, "menu-up": 62604, "mic-fill": 62605, "mic-mute-fill": 62606, "mic-mute": 62607, "mic": 62608, "minecart-loaded": 62609, "minecart": 62610, "moisture": 62611, "moon-fill": 62612, "moon-stars-fill": 62613, "moon-stars": 62614, "moon": 62615, "mouse-fill": 62616, "mouse": 62617, "mouse2-fill": 62618, "mouse2": 62619, "mouse3-fill": 62620, "mouse3": 62621, "music-note-beamed": 62622, "music-note-list": 62623, "music-note": 62624, "music-player-fill": 62625, "music-player": 62626, "newspaper": 62627, "node-minus-fill": 62628, "node-minus": 62629, "node-plus-fill": 62630, "node-plus": 62631, "nut-fill": 62632, "nut": 62633, "octagon-fill": 62634, "octagon-half": 62635, "octagon": 62636, "option": 62637, "outlet": 62638, "paint-bucket": 62639, "palette-fill": 62640, "palette": 62641, "palette2": 62642, "paperclip": 62643, "paragraph": 62644, "patch-check-fill": 62645, "patch-check": 62646, "patch-exclamation-fill": 62647, "patch-exclamation": 62648, "patch-minus-fill": 62649, "patch-minus": 62650, "patch-plus-fill": 62651, "patch-plus": 62652, "patch-question-fill": 62653, "patch-question": 62654, "pause-btn-fill": 62655, "pause-btn": 62656, "pause-circle-fill": 62657, "pause-circle": 62658, "pause-fill": 62659, "pause": 62660, "peace-fill": 62661, "peace": 62662, "pen-fill": 62663, "pen": 62664, "pencil-fill": 62665, "pencil-square": 62666, "pencil": 62667, "pentagon-fill": 62668, "pentagon-half": 62669, "pentagon": 62670, "people-fill": 62671, "people": 62672, "percent": 62673, "person-badge-fill": 62674, "person-badge": 62675, "person-bounding-box": 62676, "person-check-fill": 62677, "person-check": 62678, "person-circle": 62679, "person-dash-fill": 62680, "person-dash": 62681, "person-fill": 62682, "person-lines-fill": 62683, "person-plus-fill": 62684, "person-plus": 62685, "person-square": 62686, "person-x-fill": 62687, "person-x": 62688, "person": 62689, "phone-fill": 62690, "phone-landscape-fill": 62691, "phone-landscape": 62692, "phone-vibrate-fill": 62693, "phone-vibrate": 62694, "phone": 62695, "pie-chart-fill": 62696, "pie-chart": 62697, "pin-angle-fill": 62698, "pin-angle": 62699, "pin-fill": 62700, "pin": 62701, "pip-fill": 62702, "pip": 62703, "play-btn-fill": 62704, "play-btn": 62705, "play-circle-fill": 62706, "play-circle": 62707, "play-fill": 62708, "play": 62709, "plug-fill": 62710, "plug": 62711, "plus-circle-dotted": 62712, "plus-circle-fill": 62713, "plus-circle": 62714, "plus-square-dotted": 62715, "plus-square-fill": 62716, "plus-square": 62717, "plus": 62718, "power": 62719, "printer-fill": 62720, "printer": 62721, "puzzle-fill": 62722, "puzzle": 62723, "question-circle-fill": 62724, "question-circle": 62725, "question-diamond-fill": 62726, "question-diamond": 62727, "question-octagon-fill": 62728, "question-octagon": 62729, "question-square-fill": 62730, "question-square": 62731, "question": 62732, "rainbow": 62733, "receipt-cutoff": 62734, "receipt": 62735, "reception-0": 62736, "reception-1": 62737, "reception-2": 62738, "reception-3": 62739, "reception-4": 62740, "record-btn-fill": 62741, "record-btn": 62742, "record-circle-fill": 62743, "record-circle": 62744, "record-fill": 62745, "record": 62746, "record2-fill": 62747, "record2": 62748, "reply-all-fill": 62749, "reply-all": 62750, "reply-fill": 62751, "reply": 62752, "rss-fill": 62753, "rss": 62754, "rulers": 62755, "save-fill": 62756, "save": 62757, "save2-fill": 62758, "save2": 62759, "scissors": 62760, "screwdriver": 62761, "search": 62762, "segmented-nav": 62763, "server": 62764, "share-fill": 62765, "share": 62766, "shield-check": 62767, "shield-exclamation": 62768, "shield-fill-check": 62769, "shield-fill-exclamation": 62770, "shield-fill-minus": 62771, "shield-fill-plus": 62772, "shield-fill-x": 62773, "shield-fill": 62774, "shield-lock-fill": 62775, "shield-lock": 62776, "shield-minus": 62777, "shield-plus": 62778, "shield-shaded": 62779, "shield-slash-fill": 62780, "shield-slash": 62781, "shield-x": 62782, "shield": 62783, "shift-fill": 62784, "shift": 62785, "shop-window": 62786, "shop": 62787, "shuffle": 62788, "signpost-2-fill": 62789, "signpost-2": 62790, "signpost-fill": 62791, "signpost-split-fill": 62792, "signpost-split": 62793, "signpost": 62794, "sim-fill": 62795, "sim": 62796, "skip-backward-btn-fill": 62797, "skip-backward-btn": 62798, "skip-backward-circle-fill": 62799, "skip-backward-circle": 62800, "skip-backward-fill": 62801, "skip-backward": 62802, "skip-end-btn-fill": 62803, "skip-end-btn": 62804, "skip-end-circle-fill": 62805, "skip-end-circle": 62806, "skip-end-fill": 62807, "skip-end": 62808, "skip-forward-btn-fill": 62809, "skip-forward-btn": 62810, "skip-forward-circle-fill": 62811, "skip-forward-circle": 62812, "skip-forward-fill": 62813, "skip-forward": 62814, "skip-start-btn-fill": 62815, "skip-start-btn": 62816, "skip-start-circle-fill": 62817, "skip-start-circle": 62818, "skip-start-fill": 62819, "skip-start": 62820, "slack": 62821, "slash-circle-fill": 62822, "slash-circle": 62823, "slash-square-fill": 62824, "slash-square": 62825, "slash": 62826, "sliders": 62827, "smartwatch": 62828, "snow": 62829, "snow2": 62830, "snow3": 62831, "sort-alpha-down-alt": 62832, "sort-alpha-down": 62833, "sort-alpha-up-alt": 62834, "sort-alpha-up": 62835, "sort-down-alt": 62836, "sort-down": 62837, "sort-numeric-down-alt": 62838, "sort-numeric-down": 62839, "sort-numeric-up-alt": 62840, "sort-numeric-up": 62841, "sort-up-alt": 62842, "sort-up": 62843, "soundwave": 62844, "speaker-fill": 62845, "speaker": 62846, "speedometer": 62847, "speedometer2": 62848, "spellcheck": 62849, "square-fill": 62850, "square-half": 62851, "square": 62852, "stack": 62853, "star-fill": 62854, "star-half": 62855, "star": 62856, "stars": 62857, "stickies-fill": 62858, "stickies": 62859, "sticky-fill": 62860, "sticky": 62861, "stop-btn-fill": 62862, "stop-btn": 62863, "stop-circle-fill": 62864, "stop-circle": 62865, "stop-fill": 62866, "stop": 62867, "stoplights-fill": 62868, "stoplights": 62869, "stopwatch-fill": 62870, "stopwatch": 62871, "subtract": 62872, "suit-club-fill": 62873, "suit-club": 62874, "suit-diamond-fill": 62875, "suit-diamond": 62876, "suit-heart-fill": 62877, "suit-heart": 62878, "suit-spade-fill": 62879, "suit-spade": 62880, "sun-fill": 62881, "sun": 62882, "sunglasses": 62883, "sunrise-fill": 62884, "sunrise": 62885, "sunset-fill": 62886, "sunset": 62887, "symmetry-horizontal": 62888, "symmetry-vertical": 62889, "table": 62890, "tablet-fill": 62891, "tablet-landscape-fill": 62892, "tablet-landscape": 62893, "tablet": 62894, "tag-fill": 62895, "tag": 62896, "tags-fill": 62897, "tags": 62898, "telegram": 62899, "telephone-fill": 62900, "telephone-forward-fill": 62901, "telephone-forward": 62902, "telephone-inbound-fill": 62903, "telephone-inbound": 62904, "telephone-minus-fill": 62905, "telephone-minus": 62906, "telephone-outbound-fill": 62907, "telephone-outbound": 62908, "telephone-plus-fill": 62909, "telephone-plus": 62910, "telephone-x-fill": 62911, "telephone-x": 62912, "telephone": 62913, "terminal-fill": 62914, "terminal": 62915, "text-center": 62916, "text-indent-left": 62917, "text-indent-right": 62918, "text-left": 62919, "text-paragraph": 62920, "text-right": 62921, "textarea-resize": 62922, "textarea-t": 62923, "textarea": 62924, "thermometer-half": 62925, "thermometer-high": 62926, "thermometer-low": 62927, "thermometer-snow": 62928, "thermometer-sun": 62929, "thermometer": 62930, "three-dots-vertical": 62931, "three-dots": 62932, "toggle-off": 62933, "toggle-on": 62934, "toggle2-off": 62935, "toggle2-on": 62936, "toggles": 62937, "toggles2": 62938, "tools": 62939, "tornado": 62940, "trash-fill": 62941, "trash": 62942, "trash2-fill": 62943, "trash2": 62944, "tree-fill": 62945, "tree": 62946, "triangle-fill": 62947, "triangle-half": 62948, "triangle": 62949, "trophy-fill": 62950, "trophy": 62951, "tropical-storm": 62952, "truck-flatbed": 62953, "truck": 62954, "tsunami": 62955, "tv-fill": 62956, "tv": 62957, "twitch": 62958, "twitter": 62959, "type-bold": 62960, "type-h1": 62961, "type-h2": 62962, "type-h3": 62963, "type-italic": 62964, "type-strikethrough": 62965, "type-underline": 62966, "type": 62967, "ui-checks-grid": 62968, "ui-checks": 62969, "ui-radios-grid": 62970, "ui-radios": 62971, "umbrella-fill": 62972, "umbrella": 62973, "union": 62974, "unlock-fill": 62975, "unlock": 62976, "upc-scan": 62977, "upc": 62978, "upload": 62979, "vector-pen": 62980, "view-list": 62981, "view-stacked": 62982, "vinyl-fill": 62983, "vinyl": 62984, "voicemail": 62985, "volume-down-fill": 62986, "volume-down": 62987, "volume-mute-fill": 62988, "volume-mute": 62989, "volume-off-fill": 62990, "volume-off": 62991, "volume-up-fill": 62992, "volume-up": 62993, "vr": 62994, "wallet-fill": 62995, "wallet": 62996, "wallet2": 62997, "watch": 62998, "water": 62999, "whatsapp": 63000, "wifi-1": 63001, "wifi-2": 63002, "wifi-off": 63003, "wifi": 63004, "wind": 63005, "window-dock": 63006, "window-sidebar": 63007, "window": 63008, "wrench": 63009, "x-circle-fill": 63010, "x-circle": 63011, "x-diamond-fill": 63012, "x-diamond": 63013, "x-octagon-fill": 63014, "x-octagon": 63015, "x-square-fill": 63016, "x-square": 63017, "x": 63018, "youtube": 63019, "zoom-in": 63020, "zoom-out": 63021, "bank": 63022, "bank2": 63023, "bell-slash-fill": 63024, "bell-slash": 63025, "cash-coin": 63026, "check-lg": 63027, "coin": 63028, "currency-bitcoin": 63029, "currency-dollar": 63030, "currency-euro": 63031, "currency-exchange": 63032, "currency-pound": 63033, "currency-yen": 63034, "dash-lg": 63035, "exclamation-lg": 63036, "file-earmark-pdf-fill": 63037, "file-earmark-pdf": 63038, "file-pdf-fill": 63039, "file-pdf": 63040, "gender-ambiguous": 63041, "gender-female": 63042, "gender-male": 63043, "gender-trans": 63044, "headset-vr": 63045, "info-lg": 63046, "mastodon": 63047, "messenger": 63048, "piggy-bank-fill": 63049, "piggy-bank": 63050, "pin-map-fill": 63051, "pin-map": 63052, "plus-lg": 63053, "question-lg": 63054, "recycle": 63055, "reddit": 63056, "safe-fill": 63057, "safe2-fill": 63058, "safe2": 63059, "sd-card-fill": 63060, "sd-card": 63061, "skype": 63062, "slash-lg": 63063, "translate": 63064, "x-lg": 63065, "safe": 63066, "apple": 63067, "microsoft": 63069, "windows": 63070, "behance": 63068, "dribbble": 63071, "line": 63072, "medium": 63073, "paypal": 63074, "pinterest": 63075, "signal": 63076, "snapchat": 63077, "spotify": 63078, "stack-overflow": 63079, "strava": 63080, "wordpress": 63081, "vimeo": 63082, "activity": 63083, "easel2-fill": 63084, "easel2": 63085, "easel3-fill": 63086, "easel3": 63087, "fan": 63088, "fingerprint": 63089, "graph-down-arrow": 63090, "graph-up-arrow": 63091, "hypnotize": 63092, "magic": 63093, "person-rolodex": 63094, "person-video": 63095, "person-video2": 63096, "person-video3": 63097, "person-workspace": 63098, "radioactive": 63099, "webcam-fill": 63100, "webcam": 63101, "yin-yang": 63102, "bandaid-fill": 63104, "bandaid": 63105, "bluetooth": 63106, "body-text": 63107, "boombox": 63108, "boxes": 63109, "dpad-fill": 63110, "dpad": 63111, "ear-fill": 63112, "ear": 63113, "envelope-check-fill": 63115, "envelope-check": 63116, "envelope-dash-fill": 63118, "envelope-dash": 63119, "envelope-exclamation-fill": 63121, "envelope-exclamation": 63122, "envelope-plus-fill": 63123, "envelope-plus": 63124, "envelope-slash-fill": 63126, "envelope-slash": 63127, "envelope-x-fill": 63129, "envelope-x": 63130, "explicit-fill": 63131, "explicit": 63132, "git": 63133, "infinity": 63134, "list-columns-reverse": 63135, "list-columns": 63136, "meta": 63137, "nintendo-switch": 63140, "pc-display-horizontal": 63141, "pc-display": 63142, "pc-horizontal": 63143, "pc": 63144, "playstation": 63145, "plus-slash-minus": 63146, "projector-fill": 63147, "projector": 63148, "qr-code-scan": 63149, "qr-code": 63150, "quora": 63151, "quote": 63152, "robot": 63153, "send-check-fill": 63154, "send-check": 63155, "send-dash-fill": 63156, "send-dash": 63157, "send-exclamation-fill": 63159, "send-exclamation": 63160, "send-fill": 63161, "send-plus-fill": 63162, "send-plus": 63163, "send-slash-fill": 63164, "send-slash": 63165, "send-x-fill": 63166, "send-x": 63167, "send": 63168, "steam": 63169, "terminal-dash": 63171, "terminal-plus": 63172, "terminal-split": 63173, "ticket-detailed-fill": 63174, "ticket-detailed": 63175, "ticket-fill": 63176, "ticket-perforated-fill": 63177, "ticket-perforated": 63178, "ticket": 63179, "tiktok": 63180, "window-dash": 63181, "window-desktop": 63182, "window-fullscreen": 63183, "window-plus": 63184, "window-split": 63185, "window-stack": 63186, "window-x": 63187, "xbox": 63188, "ethernet": 63189, "hdmi-fill": 63190, "hdmi": 63191, "usb-c-fill": 63192, "usb-c": 63193, "usb-fill": 63194, "usb-plug-fill": 63195, "usb-plug": 63196, "usb-symbol": 63197, "usb": 63198, "boombox-fill": 63199, "displayport": 63201, "gpu-card": 63202, "memory": 63203, "modem-fill": 63204, "modem": 63205, "motherboard-fill": 63206, "motherboard": 63207, "optical-audio-fill": 63208, "optical-audio": 63209, "pci-card": 63210, "router-fill": 63211, "router": 63212, "thunderbolt-fill": 63215, "thunderbolt": 63216, "usb-drive-fill": 63217, "usb-drive": 63218, "usb-micro-fill": 63219, "usb-micro": 63220, "usb-mini-fill": 63221, "usb-mini": 63222, "cloud-haze2": 63223, "device-hdd-fill": 63224, "device-hdd": 63225, "device-ssd-fill": 63226, "device-ssd": 63227, "displayport-fill": 63228, "mortarboard-fill": 63229, "mortarboard": 63230, "terminal-x": 63231, "arrow-through-heart-fill": 63232, "arrow-through-heart": 63233, "badge-sd-fill": 63234, "badge-sd": 63235, "bag-heart-fill": 63236, "bag-heart": 63237, "balloon-fill": 63238, "balloon-heart-fill": 63239, "balloon-heart": 63240, "balloon": 63241, "box2-fill": 63242, "box2-heart-fill": 63243, "box2-heart": 63244, "box2": 63245, "braces-asterisk": 63246, "calendar-heart-fill": 63247, "calendar-heart": 63248, "calendar2-heart-fill": 63249, "calendar2-heart": 63250, "chat-heart-fill": 63251, "chat-heart": 63252, "chat-left-heart-fill": 63253, "chat-left-heart": 63254, "chat-right-heart-fill": 63255, "chat-right-heart": 63256, "chat-square-heart-fill": 63257, "chat-square-heart": 63258, "clipboard-check-fill": 63259, "clipboard-data-fill": 63260, "clipboard-fill": 63261, "clipboard-heart-fill": 63262, "clipboard-heart": 63263, "clipboard-minus-fill": 63264, "clipboard-plus-fill": 63265, "clipboard-pulse": 63266, "clipboard-x-fill": 63267, "clipboard2-check-fill": 63268, "clipboard2-check": 63269, "clipboard2-data-fill": 63270, "clipboard2-data": 63271, "clipboard2-fill": 63272, "clipboard2-heart-fill": 63273, "clipboard2-heart": 63274, "clipboard2-minus-fill": 63275, "clipboard2-minus": 63276, "clipboard2-plus-fill": 63277, "clipboard2-plus": 63278, "clipboard2-pulse-fill": 63279, "clipboard2-pulse": 63280, "clipboard2-x-fill": 63281, "clipboard2-x": 63282, "clipboard2": 63283, "emoji-kiss-fill": 63284, "emoji-kiss": 63285, "envelope-heart-fill": 63286, "envelope-heart": 63287, "envelope-open-heart-fill": 63288, "envelope-open-heart": 63289, "envelope-paper-fill": 63290, "envelope-paper-heart-fill": 63291, "envelope-paper-heart": 63292, "envelope-paper": 63293, "filetype-aac": 63294, "filetype-ai": 63295, "filetype-bmp": 63296, "filetype-cs": 63297, "filetype-css": 63298, "filetype-csv": 63299, "filetype-doc": 63300, "filetype-docx": 63301, "filetype-exe": 63302, "filetype-gif": 63303, "filetype-heic": 63304, "filetype-html": 63305, "filetype-java": 63306, "filetype-jpg": 63307, "filetype-js": 63308, "filetype-jsx": 63309, "filetype-key": 63310, "filetype-m4p": 63311, "filetype-md": 63312, "filetype-mdx": 63313, "filetype-mov": 63314, "filetype-mp3": 63315, "filetype-mp4": 63316, "filetype-otf": 63317, "filetype-pdf": 63318, "filetype-php": 63319, "filetype-png": 63320, "filetype-ppt": 63322, "filetype-psd": 63323, "filetype-py": 63324, "filetype-raw": 63325, "filetype-rb": 63326, "filetype-sass": 63327, "filetype-scss": 63328, "filetype-sh": 63329, "filetype-svg": 63330, "filetype-tiff": 63331, "filetype-tsx": 63332, "filetype-ttf": 63333, "filetype-txt": 63334, "filetype-wav": 63335, "filetype-woff": 63336, "filetype-xls": 63338, "filetype-xml": 63339, "filetype-yml": 63340, "heart-arrow": 63341, "heart-pulse-fill": 63342, "heart-pulse": 63343, "heartbreak-fill": 63344, "heartbreak": 63345, "hearts": 63346, "hospital-fill": 63347, "hospital": 63348, "house-heart-fill": 63349, "house-heart": 63350, "incognito": 63351, "magnet-fill": 63352, "magnet": 63353, "person-heart": 63354, "person-hearts": 63355, "phone-flip": 63356, "plugin": 63357, "postage-fill": 63358, "postage-heart-fill": 63359, "postage-heart": 63360, "postage": 63361, "postcard-fill": 63362, "postcard-heart-fill": 63363, "postcard-heart": 63364, "postcard": 63365, "search-heart-fill": 63366, "search-heart": 63367, "sliders2-vertical": 63368, "sliders2": 63369, "trash3-fill": 63370, "trash3": 63371, "valentine": 63372, "valentine2": 63373, "wrench-adjustable-circle-fill": 63374, "wrench-adjustable-circle": 63375, "wrench-adjustable": 63376, "filetype-json": 63377, "filetype-pptx": 63378, "filetype-xlsx": 63379, "1-circle-fill": 63382, "1-circle": 63383, "1-square-fill": 63384, "1-square": 63385, "2-circle-fill": 63388, "2-circle": 63389, "2-square-fill": 63390, "2-square": 63391, "3-circle-fill": 63394, "3-circle": 63395, "3-square-fill": 63396, "3-square": 63397, "4-circle-fill": 63400, "4-circle": 63401, "4-square-fill": 63402, "4-square": 63403, "5-circle-fill": 63406, "5-circle": 63407, "5-square-fill": 63408, "5-square": 63409, "6-circle-fill": 63412, "6-circle": 63413, "6-square-fill": 63414, "6-square": 63415, "7-circle-fill": 63418, "7-circle": 63419, "7-square-fill": 63420, "7-square": 63421, "8-circle-fill": 63424, "8-circle": 63425, "8-square-fill": 63426, "8-square": 63427, "9-circle-fill": 63430, "9-circle": 63431, "9-square-fill": 63432, "9-square": 63433, "airplane-engines-fill": 63434, "airplane-engines": 63435, "airplane-fill": 63436, "airplane": 63437, "alexa": 63438, "alipay": 63439, "android": 63440, "android2": 63441, "box-fill": 63442, "box-seam-fill": 63443, "browser-chrome": 63444, "browser-edge": 63445, "browser-firefox": 63446, "browser-safari": 63447, "c-circle-fill": 63450, "c-circle": 63451, "c-square-fill": 63452, "c-square": 63453, "capsule-pill": 63454, "capsule": 63455, "car-front-fill": 63456, "car-front": 63457, "cassette-fill": 63458, "cassette": 63459, "cc-circle-fill": 63462, "cc-circle": 63463, "cc-square-fill": 63464, "cc-square": 63465, "cup-hot-fill": 63466, "cup-hot": 63467, "currency-rupee": 63468, "dropbox": 63469, "escape": 63470, "fast-forward-btn-fill": 63471, "fast-forward-btn": 63472, "fast-forward-circle-fill": 63473, "fast-forward-circle": 63474, "fast-forward-fill": 63475, "fast-forward": 63476, "filetype-sql": 63477, "fire": 63478, "google-play": 63479, "h-circle-fill": 63482, "h-circle": 63483, "h-square-fill": 63484, "h-square": 63485, "indent": 63486, "lungs-fill": 63487, "lungs": 63488, "microsoft-teams": 63489, "p-circle-fill": 63492, "p-circle": 63493, "p-square-fill": 63494, "p-square": 63495, "pass-fill": 63496, "pass": 63497, "prescription": 63498, "prescription2": 63499, "r-circle-fill": 63502, "r-circle": 63503, "r-square-fill": 63504, "r-square": 63505, "repeat-1": 63506, "repeat": 63507, "rewind-btn-fill": 63508, "rewind-btn": 63509, "rewind-circle-fill": 63510, "rewind-circle": 63511, "rewind-fill": 63512, "rewind": 63513, "train-freight-front-fill": 63514, "train-freight-front": 63515, "train-front-fill": 63516, "train-front": 63517, "train-lightrail-front-fill": 63518, "train-lightrail-front": 63519, "truck-front-fill": 63520, "truck-front": 63521, "ubuntu": 63522, "unindent": 63523, "unity": 63524, "universal-access-circle": 63525, "universal-access": 63526, "virus": 63527, "virus2": 63528, "wechat": 63529, "yelp": 63530, "sign-stop-fill": 63531, "sign-stop-lights-fill": 63532, "sign-stop-lights": 63533, "sign-stop": 63534, "sign-turn-left-fill": 63535, "sign-turn-left": 63536, "sign-turn-right-fill": 63537, "sign-turn-right": 63538, "sign-turn-slight-left-fill": 63539, "sign-turn-slight-left": 63540, "sign-turn-slight-right-fill": 63541, "sign-turn-slight-right": 63542, "sign-yield-fill": 63543, "sign-yield": 63544, "ev-station-fill": 63545, "ev-station": 63546, "fuel-pump-diesel-fill": 63547, "fuel-pump-diesel": 63548, "fuel-pump-fill": 63549, "fuel-pump": 63550, "0-circle-fill": 63551, "0-circle": 63552, "0-square-fill": 63553, "0-square": 63554, "rocket-fill": 63555, "rocket-takeoff-fill": 63556, "rocket-takeoff": 63557, "rocket": 63558, "stripe": 63559, "subscript": 63560, "superscript": 63561, "trello": 63562, "envelope-at-fill": 63563, "envelope-at": 63564, "regex": 63565, "text-wrap": 63566, "sign-dead-end-fill": 63567, "sign-dead-end": 63568, "sign-do-not-enter-fill": 63569, "sign-do-not-enter": 63570, "sign-intersection-fill": 63571, "sign-intersection-side-fill": 63572, "sign-intersection-side": 63573, "sign-intersection-t-fill": 63574, "sign-intersection-t": 63575, "sign-intersection-y-fill": 63576, "sign-intersection-y": 63577, "sign-intersection": 63578, "sign-merge-left-fill": 63579, "sign-merge-left": 63580, "sign-merge-right-fill": 63581, "sign-merge-right": 63582, "sign-no-left-turn-fill": 63583, "sign-no-left-turn": 63584, "sign-no-parking-fill": 63585, "sign-no-parking": 63586, "sign-no-right-turn-fill": 63587, "sign-no-right-turn": 63588, "sign-railroad-fill": 63589, "sign-railroad": 63590, "building-add": 63591, "building-check": 63592, "building-dash": 63593, "building-down": 63594, "building-exclamation": 63595, "building-fill-add": 63596, "building-fill-check": 63597, "building-fill-dash": 63598, "building-fill-down": 63599, "building-fill-exclamation": 63600, "building-fill-gear": 63601, "building-fill-lock": 63602, "building-fill-slash": 63603, "building-fill-up": 63604, "building-fill-x": 63605, "building-fill": 63606, "building-gear": 63607, "building-lock": 63608, "building-slash": 63609, "building-up": 63610, "building-x": 63611, "buildings-fill": 63612, "buildings": 63613, "bus-front-fill": 63614, "bus-front": 63615, "ev-front-fill": 63616, "ev-front": 63617, "globe-americas": 63618, "globe-asia-australia": 63619, "globe-central-south-asia": 63620, "globe-europe-africa": 63621, "house-add-fill": 63622, "house-add": 63623, "house-check-fill": 63624, "house-check": 63625, "house-dash-fill": 63626, "house-dash": 63627, "house-down-fill": 63628, "house-down": 63629, "house-exclamation-fill": 63630, "house-exclamation": 63631, "house-gear-fill": 63632, "house-gear": 63633, "house-lock-fill": 63634, "house-lock": 63635, "house-slash-fill": 63636, "house-slash": 63637, "house-up-fill": 63638, "house-up": 63639, "house-x-fill": 63640, "house-x": 63641, "person-add": 63642, "person-down": 63643, "person-exclamation": 63644, "person-fill-add": 63645, "person-fill-check": 63646, "person-fill-dash": 63647, "person-fill-down": 63648, "person-fill-exclamation": 63649, "person-fill-gear": 63650, "person-fill-lock": 63651, "person-fill-slash": 63652, "person-fill-up": 63653, "person-fill-x": 63654, "person-gear": 63655, "person-lock": 63656, "person-slash": 63657, "person-up": 63658, "scooter": 63659, "taxi-front-fill": 63660, "taxi-front": 63661, "amd": 63662, "database-add": 63663, "database-check": 63664, "database-dash": 63665, "database-down": 63666, "database-exclamation": 63667, "database-fill-add": 63668, "database-fill-check": 63669, "database-fill-dash": 63670, "database-fill-down": 63671, "database-fill-exclamation": 63672, "database-fill-gear": 63673, "database-fill-lock": 63674, "database-fill-slash": 63675, "database-fill-up": 63676, "database-fill-x": 63677, "database-fill": 63678, "database-gear": 63679, "database-lock": 63680, "database-slash": 63681, "database-up": 63682, "database-x": 63683, "database": 63684, "houses-fill": 63685, "houses": 63686, "nvidia": 63687, "person-vcard-fill": 63688, "person-vcard": 63689, "sina-weibo": 63690, "tencent-qq": 63691, "wikipedia": 63692, "alphabet-uppercase": 62117, "alphabet": 63114, "amazon": 63117, "arrows-collapse-vertical": 63120, "arrows-expand-vertical": 63125, "arrows-vertical": 63128, "arrows": 63138, "ban-fill": 63139, "ban": 63158, "bing": 63170, "cake": 63200, "cake2": 63213, "cookie": 63214, "copy": 63321, "crosshair": 63337, "crosshair2": 63380, "emoji-astonished-fill": 63381, "emoji-astonished": 63386, "emoji-grimace-fill": 63387, "emoji-grimace": 63392, "emoji-grin-fill": 63393, "emoji-grin": 63398, "emoji-surprise-fill": 63399, "emoji-surprise": 63404, "emoji-tear-fill": 63405, "emoji-tear": 63410, "envelope-arrow-down-fill": 63411, "envelope-arrow-down": 63416, "envelope-arrow-up-fill": 63417, "envelope-arrow-up": 63422, "feather": 63423, "feather2": 63428, "floppy-fill": 63429, "floppy": 63448, "floppy2-fill": 63449, "floppy2": 63460, "gitlab": 63461, "highlighter": 63480, "marker-tip": 63490, "nvme-fill": 63491, "nvme": 63500, "opencollective": 63501, "pci-card-network": 63693, "pci-card-sound": 63694, "radar": 63695, "send-arrow-down-fill": 63696, "send-arrow-down": 63697, "send-arrow-up-fill": 63698, "send-arrow-up": 63699, "sim-slash-fill": 63700, "sim-slash": 63701, "sourceforge": 63702, "substack": 63703, "threads-fill": 63704, "threads": 63705, "transparency": 63706, "twitter-x": 63707, "type-h4": 63708, "type-h5": 63709, "type-h6": 63710, "backpack-fill": 63711, "backpack": 63712, "backpack2-fill": 63713, "backpack2": 63714, "backpack3-fill": 63715, "backpack3": 63716, "backpack4-fill": 63717, "backpack4": 63718, "brilliance": 63719, "cake-fill": 63720, "cake2-fill": 63721, "duffle-fill": 63722, "duffle": 63723, "exposure": 63724, "gender-neuter": 63725, "highlights": 63726, "luggage-fill": 63727, "luggage": 63728, "mailbox-flag": 63729, "mailbox2-flag": 63730, "noise-reduction": 63731, "passport-fill": 63732, "passport": 63733, "person-arms-up": 63734, "person-raised-hand": 63735, "person-standing-dress": 63736, "person-standing": 63737, "person-walking": 63738, "person-wheelchair": 63739, "shadows": 63740, "suitcase-fill": 63741, "suitcase-lg-fill": 63742, "suitcase-lg": 63743, "suitcase": 63744, "suitcase2-fill": 63745, "suitcase2": 63746, "vignette": 63747, "bluesky": 63481, "tux": 63748, "beaker-fill": 63749, "beaker": 63750, "flask-fill": 63751, "flask-florence-fill": 63752, "flask-florence": 63753, "flask": 63754, "leaf-fill": 63755, "leaf": 63756, "measuring-cup-fill": 63757, "measuring-cup": 63758, "unlock2-fill": 63759, "unlock2": 63760, "battery-low": 63761, "anthropic": 63762, "apple-music": 63763, "claude": 63764, "openai": 63765, "perplexity": 63766, "css": 63767, "javascript": 63768, "typescript": 63769, "fork-knife": 63770, "globe-americas-fill": 63771, "globe-asia-australia-fill": 63772, "globe-central-south-asia-fill": 63773, "globe-europe-africa-fill": 63774 } ================================================ FILE: font/bootstrap-icons.scss ================================================ /*! * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/) * Copyright 2019-2024 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ $bootstrap-icons-font: "bootstrap-icons" !default; $bootstrap-icons-font-dir: "./fonts" !default; $bootstrap-icons-font-file: "#{$bootstrap-icons-font-dir}/#{$bootstrap-icons-font}" !default; $bootstrap-icons-font-hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default; $bootstrap-icons-font-src: url("#{$bootstrap-icons-font-file}.woff2?#{$bootstrap-icons-font-hash}") format("woff2"), url("#{$bootstrap-icons-font-file}.woff?#{$bootstrap-icons-font-hash}") format("woff") !default; @font-face { font-display: block; font-family: $bootstrap-icons-font; src: $bootstrap-icons-font-src; } .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before { display: inline-block; font-family: $bootstrap-icons-font !important; font-style: normal; font-weight: normal !important; font-variant: normal; text-transform: none; line-height: 1; vertical-align: -.125em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } $bootstrap-icons-map: ( "123": "\f67f", "alarm-fill": "\f101", "alarm": "\f102", "align-bottom": "\f103", "align-center": "\f104", "align-end": "\f105", "align-middle": "\f106", "align-start": "\f107", "align-top": "\f108", "alt": "\f109", "app-indicator": "\f10a", "app": "\f10b", "archive-fill": "\f10c", "archive": "\f10d", "arrow-90deg-down": "\f10e", "arrow-90deg-left": "\f10f", "arrow-90deg-right": "\f110", "arrow-90deg-up": "\f111", "arrow-bar-down": "\f112", "arrow-bar-left": "\f113", "arrow-bar-right": "\f114", "arrow-bar-up": "\f115", "arrow-clockwise": "\f116", "arrow-counterclockwise": "\f117", "arrow-down-circle-fill": "\f118", "arrow-down-circle": "\f119", "arrow-down-left-circle-fill": "\f11a", "arrow-down-left-circle": "\f11b", "arrow-down-left-square-fill": "\f11c", "arrow-down-left-square": "\f11d", "arrow-down-left": "\f11e", "arrow-down-right-circle-fill": "\f11f", "arrow-down-right-circle": "\f120", "arrow-down-right-square-fill": "\f121", "arrow-down-right-square": "\f122", "arrow-down-right": "\f123", "arrow-down-short": "\f124", "arrow-down-square-fill": "\f125", "arrow-down-square": "\f126", "arrow-down-up": "\f127", "arrow-down": "\f128", "arrow-left-circle-fill": "\f129", "arrow-left-circle": "\f12a", "arrow-left-right": "\f12b", "arrow-left-short": "\f12c", "arrow-left-square-fill": "\f12d", "arrow-left-square": "\f12e", "arrow-left": "\f12f", "arrow-repeat": "\f130", "arrow-return-left": "\f131", "arrow-return-right": "\f132", "arrow-right-circle-fill": "\f133", "arrow-right-circle": "\f134", "arrow-right-short": "\f135", "arrow-right-square-fill": "\f136", "arrow-right-square": "\f137", "arrow-right": "\f138", "arrow-up-circle-fill": "\f139", "arrow-up-circle": "\f13a", "arrow-up-left-circle-fill": "\f13b", "arrow-up-left-circle": "\f13c", "arrow-up-left-square-fill": "\f13d", "arrow-up-left-square": "\f13e", "arrow-up-left": "\f13f", "arrow-up-right-circle-fill": "\f140", "arrow-up-right-circle": "\f141", "arrow-up-right-square-fill": "\f142", "arrow-up-right-square": "\f143", "arrow-up-right": "\f144", "arrow-up-short": "\f145", "arrow-up-square-fill": "\f146", "arrow-up-square": "\f147", "arrow-up": "\f148", "arrows-angle-contract": "\f149", "arrows-angle-expand": "\f14a", "arrows-collapse": "\f14b", "arrows-expand": "\f14c", "arrows-fullscreen": "\f14d", "arrows-move": "\f14e", "aspect-ratio-fill": "\f14f", "aspect-ratio": "\f150", "asterisk": "\f151", "at": "\f152", "award-fill": "\f153", "award": "\f154", "back": "\f155", "backspace-fill": "\f156", "backspace-reverse-fill": "\f157", "backspace-reverse": "\f158", "backspace": "\f159", "badge-3d-fill": "\f15a", "badge-3d": "\f15b", "badge-4k-fill": "\f15c", "badge-4k": "\f15d", "badge-8k-fill": "\f15e", "badge-8k": "\f15f", "badge-ad-fill": "\f160", "badge-ad": "\f161", "badge-ar-fill": "\f162", "badge-ar": "\f163", "badge-cc-fill": "\f164", "badge-cc": "\f165", "badge-hd-fill": "\f166", "badge-hd": "\f167", "badge-tm-fill": "\f168", "badge-tm": "\f169", "badge-vo-fill": "\f16a", "badge-vo": "\f16b", "badge-vr-fill": "\f16c", "badge-vr": "\f16d", "badge-wc-fill": "\f16e", "badge-wc": "\f16f", "bag-check-fill": "\f170", "bag-check": "\f171", "bag-dash-fill": "\f172", "bag-dash": "\f173", "bag-fill": "\f174", "bag-plus-fill": "\f175", "bag-plus": "\f176", "bag-x-fill": "\f177", "bag-x": "\f178", "bag": "\f179", "bar-chart-fill": "\f17a", "bar-chart-line-fill": "\f17b", "bar-chart-line": "\f17c", "bar-chart-steps": "\f17d", "bar-chart": "\f17e", "basket-fill": "\f17f", "basket": "\f180", "basket2-fill": "\f181", "basket2": "\f182", "basket3-fill": "\f183", "basket3": "\f184", "battery-charging": "\f185", "battery-full": "\f186", "battery-half": "\f187", "battery": "\f188", "bell-fill": "\f189", "bell": "\f18a", "bezier": "\f18b", "bezier2": "\f18c", "bicycle": "\f18d", "binoculars-fill": "\f18e", "binoculars": "\f18f", "blockquote-left": "\f190", "blockquote-right": "\f191", "book-fill": "\f192", "book-half": "\f193", "book": "\f194", "bookmark-check-fill": "\f195", "bookmark-check": "\f196", "bookmark-dash-fill": "\f197", "bookmark-dash": "\f198", "bookmark-fill": "\f199", "bookmark-heart-fill": "\f19a", "bookmark-heart": "\f19b", "bookmark-plus-fill": "\f19c", "bookmark-plus": "\f19d", "bookmark-star-fill": "\f19e", "bookmark-star": "\f19f", "bookmark-x-fill": "\f1a0", "bookmark-x": "\f1a1", "bookmark": "\f1a2", "bookmarks-fill": "\f1a3", "bookmarks": "\f1a4", "bookshelf": "\f1a5", "bootstrap-fill": "\f1a6", "bootstrap-reboot": "\f1a7", "bootstrap": "\f1a8", "border-all": "\f1a9", "border-bottom": "\f1aa", "border-center": "\f1ab", "border-inner": "\f1ac", "border-left": "\f1ad", "border-middle": "\f1ae", "border-outer": "\f1af", "border-right": "\f1b0", "border-style": "\f1b1", "border-top": "\f1b2", "border-width": "\f1b3", "border": "\f1b4", "bounding-box-circles": "\f1b5", "bounding-box": "\f1b6", "box-arrow-down-left": "\f1b7", "box-arrow-down-right": "\f1b8", "box-arrow-down": "\f1b9", "box-arrow-in-down-left": "\f1ba", "box-arrow-in-down-right": "\f1bb", "box-arrow-in-down": "\f1bc", "box-arrow-in-left": "\f1bd", "box-arrow-in-right": "\f1be", "box-arrow-in-up-left": "\f1bf", "box-arrow-in-up-right": "\f1c0", "box-arrow-in-up": "\f1c1", "box-arrow-left": "\f1c2", "box-arrow-right": "\f1c3", "box-arrow-up-left": "\f1c4", "box-arrow-up-right": "\f1c5", "box-arrow-up": "\f1c6", "box-seam": "\f1c7", "box": "\f1c8", "braces": "\f1c9", "bricks": "\f1ca", "briefcase-fill": "\f1cb", "briefcase": "\f1cc", "brightness-alt-high-fill": "\f1cd", "brightness-alt-high": "\f1ce", "brightness-alt-low-fill": "\f1cf", "brightness-alt-low": "\f1d0", "brightness-high-fill": "\f1d1", "brightness-high": "\f1d2", "brightness-low-fill": "\f1d3", "brightness-low": "\f1d4", "broadcast-pin": "\f1d5", "broadcast": "\f1d6", "brush-fill": "\f1d7", "brush": "\f1d8", "bucket-fill": "\f1d9", "bucket": "\f1da", "bug-fill": "\f1db", "bug": "\f1dc", "building": "\f1dd", "bullseye": "\f1de", "calculator-fill": "\f1df", "calculator": "\f1e0", "calendar-check-fill": "\f1e1", "calendar-check": "\f1e2", "calendar-date-fill": "\f1e3", "calendar-date": "\f1e4", "calendar-day-fill": "\f1e5", "calendar-day": "\f1e6", "calendar-event-fill": "\f1e7", "calendar-event": "\f1e8", "calendar-fill": "\f1e9", "calendar-minus-fill": "\f1ea", "calendar-minus": "\f1eb", "calendar-month-fill": "\f1ec", "calendar-month": "\f1ed", "calendar-plus-fill": "\f1ee", "calendar-plus": "\f1ef", "calendar-range-fill": "\f1f0", "calendar-range": "\f1f1", "calendar-week-fill": "\f1f2", "calendar-week": "\f1f3", "calendar-x-fill": "\f1f4", "calendar-x": "\f1f5", "calendar": "\f1f6", "calendar2-check-fill": "\f1f7", "calendar2-check": "\f1f8", "calendar2-date-fill": "\f1f9", "calendar2-date": "\f1fa", "calendar2-day-fill": "\f1fb", "calendar2-day": "\f1fc", "calendar2-event-fill": "\f1fd", "calendar2-event": "\f1fe", "calendar2-fill": "\f1ff", "calendar2-minus-fill": "\f200", "calendar2-minus": "\f201", "calendar2-month-fill": "\f202", "calendar2-month": "\f203", "calendar2-plus-fill": "\f204", "calendar2-plus": "\f205", "calendar2-range-fill": "\f206", "calendar2-range": "\f207", "calendar2-week-fill": "\f208", "calendar2-week": "\f209", "calendar2-x-fill": "\f20a", "calendar2-x": "\f20b", "calendar2": "\f20c", "calendar3-event-fill": "\f20d", "calendar3-event": "\f20e", "calendar3-fill": "\f20f", "calendar3-range-fill": "\f210", "calendar3-range": "\f211", "calendar3-week-fill": "\f212", "calendar3-week": "\f213", "calendar3": "\f214", "calendar4-event": "\f215", "calendar4-range": "\f216", "calendar4-week": "\f217", "calendar4": "\f218", "camera-fill": "\f219", "camera-reels-fill": "\f21a", "camera-reels": "\f21b", "camera-video-fill": "\f21c", "camera-video-off-fill": "\f21d", "camera-video-off": "\f21e", "camera-video": "\f21f", "camera": "\f220", "camera2": "\f221", "capslock-fill": "\f222", "capslock": "\f223", "card-checklist": "\f224", "card-heading": "\f225", "card-image": "\f226", "card-list": "\f227", "card-text": "\f228", "caret-down-fill": "\f229", "caret-down-square-fill": "\f22a", "caret-down-square": "\f22b", "caret-down": "\f22c", "caret-left-fill": "\f22d", "caret-left-square-fill": "\f22e", "caret-left-square": "\f22f", "caret-left": "\f230", "caret-right-fill": "\f231", "caret-right-square-fill": "\f232", "caret-right-square": "\f233", "caret-right": "\f234", "caret-up-fill": "\f235", "caret-up-square-fill": "\f236", "caret-up-square": "\f237", "caret-up": "\f238", "cart-check-fill": "\f239", "cart-check": "\f23a", "cart-dash-fill": "\f23b", "cart-dash": "\f23c", "cart-fill": "\f23d", "cart-plus-fill": "\f23e", "cart-plus": "\f23f", "cart-x-fill": "\f240", "cart-x": "\f241", "cart": "\f242", "cart2": "\f243", "cart3": "\f244", "cart4": "\f245", "cash-stack": "\f246", "cash": "\f247", "cast": "\f248", "chat-dots-fill": "\f249", "chat-dots": "\f24a", "chat-fill": "\f24b", "chat-left-dots-fill": "\f24c", "chat-left-dots": "\f24d", "chat-left-fill": "\f24e", "chat-left-quote-fill": "\f24f", "chat-left-quote": "\f250", "chat-left-text-fill": "\f251", "chat-left-text": "\f252", "chat-left": "\f253", "chat-quote-fill": "\f254", "chat-quote": "\f255", "chat-right-dots-fill": "\f256", "chat-right-dots": "\f257", "chat-right-fill": "\f258", "chat-right-quote-fill": "\f259", "chat-right-quote": "\f25a", "chat-right-text-fill": "\f25b", "chat-right-text": "\f25c", "chat-right": "\f25d", "chat-square-dots-fill": "\f25e", "chat-square-dots": "\f25f", "chat-square-fill": "\f260", "chat-square-quote-fill": "\f261", "chat-square-quote": "\f262", "chat-square-text-fill": "\f263", "chat-square-text": "\f264", "chat-square": "\f265", "chat-text-fill": "\f266", "chat-text": "\f267", "chat": "\f268", "check-all": "\f269", "check-circle-fill": "\f26a", "check-circle": "\f26b", "check-square-fill": "\f26c", "check-square": "\f26d", "check": "\f26e", "check2-all": "\f26f", "check2-circle": "\f270", "check2-square": "\f271", "check2": "\f272", "chevron-bar-contract": "\f273", "chevron-bar-down": "\f274", "chevron-bar-expand": "\f275", "chevron-bar-left": "\f276", "chevron-bar-right": "\f277", "chevron-bar-up": "\f278", "chevron-compact-down": "\f279", "chevron-compact-left": "\f27a", "chevron-compact-right": "\f27b", "chevron-compact-up": "\f27c", "chevron-contract": "\f27d", "chevron-double-down": "\f27e", "chevron-double-left": "\f27f", "chevron-double-right": "\f280", "chevron-double-up": "\f281", "chevron-down": "\f282", "chevron-expand": "\f283", "chevron-left": "\f284", "chevron-right": "\f285", "chevron-up": "\f286", "circle-fill": "\f287", "circle-half": "\f288", "circle-square": "\f289", "circle": "\f28a", "clipboard-check": "\f28b", "clipboard-data": "\f28c", "clipboard-minus": "\f28d", "clipboard-plus": "\f28e", "clipboard-x": "\f28f", "clipboard": "\f290", "clock-fill": "\f291", "clock-history": "\f292", "clock": "\f293", "cloud-arrow-down-fill": "\f294", "cloud-arrow-down": "\f295", "cloud-arrow-up-fill": "\f296", "cloud-arrow-up": "\f297", "cloud-check-fill": "\f298", "cloud-check": "\f299", "cloud-download-fill": "\f29a", "cloud-download": "\f29b", "cloud-drizzle-fill": "\f29c", "cloud-drizzle": "\f29d", "cloud-fill": "\f29e", "cloud-fog-fill": "\f29f", "cloud-fog": "\f2a0", "cloud-fog2-fill": "\f2a1", "cloud-fog2": "\f2a2", "cloud-hail-fill": "\f2a3", "cloud-hail": "\f2a4", "cloud-haze-fill": "\f2a6", "cloud-haze": "\f2a7", "cloud-haze2-fill": "\f2a8", "cloud-lightning-fill": "\f2a9", "cloud-lightning-rain-fill": "\f2aa", "cloud-lightning-rain": "\f2ab", "cloud-lightning": "\f2ac", "cloud-minus-fill": "\f2ad", "cloud-minus": "\f2ae", "cloud-moon-fill": "\f2af", "cloud-moon": "\f2b0", "cloud-plus-fill": "\f2b1", "cloud-plus": "\f2b2", "cloud-rain-fill": "\f2b3", "cloud-rain-heavy-fill": "\f2b4", "cloud-rain-heavy": "\f2b5", "cloud-rain": "\f2b6", "cloud-slash-fill": "\f2b7", "cloud-slash": "\f2b8", "cloud-sleet-fill": "\f2b9", "cloud-sleet": "\f2ba", "cloud-snow-fill": "\f2bb", "cloud-snow": "\f2bc", "cloud-sun-fill": "\f2bd", "cloud-sun": "\f2be", "cloud-upload-fill": "\f2bf", "cloud-upload": "\f2c0", "cloud": "\f2c1", "clouds-fill": "\f2c2", "clouds": "\f2c3", "cloudy-fill": "\f2c4", "cloudy": "\f2c5", "code-slash": "\f2c6", "code-square": "\f2c7", "code": "\f2c8", "collection-fill": "\f2c9", "collection-play-fill": "\f2ca", "collection-play": "\f2cb", "collection": "\f2cc", "columns-gap": "\f2cd", "columns": "\f2ce", "command": "\f2cf", "compass-fill": "\f2d0", "compass": "\f2d1", "cone-striped": "\f2d2", "cone": "\f2d3", "controller": "\f2d4", "cpu-fill": "\f2d5", "cpu": "\f2d6", "credit-card-2-back-fill": "\f2d7", "credit-card-2-back": "\f2d8", "credit-card-2-front-fill": "\f2d9", "credit-card-2-front": "\f2da", "credit-card-fill": "\f2db", "credit-card": "\f2dc", "crop": "\f2dd", "cup-fill": "\f2de", "cup-straw": "\f2df", "cup": "\f2e0", "cursor-fill": "\f2e1", "cursor-text": "\f2e2", "cursor": "\f2e3", "dash-circle-dotted": "\f2e4", "dash-circle-fill": "\f2e5", "dash-circle": "\f2e6", "dash-square-dotted": "\f2e7", "dash-square-fill": "\f2e8", "dash-square": "\f2e9", "dash": "\f2ea", "diagram-2-fill": "\f2eb", "diagram-2": "\f2ec", "diagram-3-fill": "\f2ed", "diagram-3": "\f2ee", "diamond-fill": "\f2ef", "diamond-half": "\f2f0", "diamond": "\f2f1", "dice-1-fill": "\f2f2", "dice-1": "\f2f3", "dice-2-fill": "\f2f4", "dice-2": "\f2f5", "dice-3-fill": "\f2f6", "dice-3": "\f2f7", "dice-4-fill": "\f2f8", "dice-4": "\f2f9", "dice-5-fill": "\f2fa", "dice-5": "\f2fb", "dice-6-fill": "\f2fc", "dice-6": "\f2fd", "disc-fill": "\f2fe", "disc": "\f2ff", "discord": "\f300", "display-fill": "\f301", "display": "\f302", "distribute-horizontal": "\f303", "distribute-vertical": "\f304", "door-closed-fill": "\f305", "door-closed": "\f306", "door-open-fill": "\f307", "door-open": "\f308", "dot": "\f309", "download": "\f30a", "droplet-fill": "\f30b", "droplet-half": "\f30c", "droplet": "\f30d", "earbuds": "\f30e", "easel-fill": "\f30f", "easel": "\f310", "egg-fill": "\f311", "egg-fried": "\f312", "egg": "\f313", "eject-fill": "\f314", "eject": "\f315", "emoji-angry-fill": "\f316", "emoji-angry": "\f317", "emoji-dizzy-fill": "\f318", "emoji-dizzy": "\f319", "emoji-expressionless-fill": "\f31a", "emoji-expressionless": "\f31b", "emoji-frown-fill": "\f31c", "emoji-frown": "\f31d", "emoji-heart-eyes-fill": "\f31e", "emoji-heart-eyes": "\f31f", "emoji-laughing-fill": "\f320", "emoji-laughing": "\f321", "emoji-neutral-fill": "\f322", "emoji-neutral": "\f323", "emoji-smile-fill": "\f324", "emoji-smile-upside-down-fill": "\f325", "emoji-smile-upside-down": "\f326", "emoji-smile": "\f327", "emoji-sunglasses-fill": "\f328", "emoji-sunglasses": "\f329", "emoji-wink-fill": "\f32a", "emoji-wink": "\f32b", "envelope-fill": "\f32c", "envelope-open-fill": "\f32d", "envelope-open": "\f32e", "envelope": "\f32f", "eraser-fill": "\f330", "eraser": "\f331", "exclamation-circle-fill": "\f332", "exclamation-circle": "\f333", "exclamation-diamond-fill": "\f334", "exclamation-diamond": "\f335", "exclamation-octagon-fill": "\f336", "exclamation-octagon": "\f337", "exclamation-square-fill": "\f338", "exclamation-square": "\f339", "exclamation-triangle-fill": "\f33a", "exclamation-triangle": "\f33b", "exclamation": "\f33c", "exclude": "\f33d", "eye-fill": "\f33e", "eye-slash-fill": "\f33f", "eye-slash": "\f340", "eye": "\f341", "eyedropper": "\f342", "eyeglasses": "\f343", "facebook": "\f344", "file-arrow-down-fill": "\f345", "file-arrow-down": "\f346", "file-arrow-up-fill": "\f347", "file-arrow-up": "\f348", "file-bar-graph-fill": "\f349", "file-bar-graph": "\f34a", "file-binary-fill": "\f34b", "file-binary": "\f34c", "file-break-fill": "\f34d", "file-break": "\f34e", "file-check-fill": "\f34f", "file-check": "\f350", "file-code-fill": "\f351", "file-code": "\f352", "file-diff-fill": "\f353", "file-diff": "\f354", "file-earmark-arrow-down-fill": "\f355", "file-earmark-arrow-down": "\f356", "file-earmark-arrow-up-fill": "\f357", "file-earmark-arrow-up": "\f358", "file-earmark-bar-graph-fill": "\f359", "file-earmark-bar-graph": "\f35a", "file-earmark-binary-fill": "\f35b", "file-earmark-binary": "\f35c", "file-earmark-break-fill": "\f35d", "file-earmark-break": "\f35e", "file-earmark-check-fill": "\f35f", "file-earmark-check": "\f360", "file-earmark-code-fill": "\f361", "file-earmark-code": "\f362", "file-earmark-diff-fill": "\f363", "file-earmark-diff": "\f364", "file-earmark-easel-fill": "\f365", "file-earmark-easel": "\f366", "file-earmark-excel-fill": "\f367", "file-earmark-excel": "\f368", "file-earmark-fill": "\f369", "file-earmark-font-fill": "\f36a", "file-earmark-font": "\f36b", "file-earmark-image-fill": "\f36c", "file-earmark-image": "\f36d", "file-earmark-lock-fill": "\f36e", "file-earmark-lock": "\f36f", "file-earmark-lock2-fill": "\f370", "file-earmark-lock2": "\f371", "file-earmark-medical-fill": "\f372", "file-earmark-medical": "\f373", "file-earmark-minus-fill": "\f374", "file-earmark-minus": "\f375", "file-earmark-music-fill": "\f376", "file-earmark-music": "\f377", "file-earmark-person-fill": "\f378", "file-earmark-person": "\f379", "file-earmark-play-fill": "\f37a", "file-earmark-play": "\f37b", "file-earmark-plus-fill": "\f37c", "file-earmark-plus": "\f37d", "file-earmark-post-fill": "\f37e", "file-earmark-post": "\f37f", "file-earmark-ppt-fill": "\f380", "file-earmark-ppt": "\f381", "file-earmark-richtext-fill": "\f382", "file-earmark-richtext": "\f383", "file-earmark-ruled-fill": "\f384", "file-earmark-ruled": "\f385", "file-earmark-slides-fill": "\f386", "file-earmark-slides": "\f387", "file-earmark-spreadsheet-fill": "\f388", "file-earmark-spreadsheet": "\f389", "file-earmark-text-fill": "\f38a", "file-earmark-text": "\f38b", "file-earmark-word-fill": "\f38c", "file-earmark-word": "\f38d", "file-earmark-x-fill": "\f38e", "file-earmark-x": "\f38f", "file-earmark-zip-fill": "\f390", "file-earmark-zip": "\f391", "file-earmark": "\f392", "file-easel-fill": "\f393", "file-easel": "\f394", "file-excel-fill": "\f395", "file-excel": "\f396", "file-fill": "\f397", "file-font-fill": "\f398", "file-font": "\f399", "file-image-fill": "\f39a", "file-image": "\f39b", "file-lock-fill": "\f39c", "file-lock": "\f39d", "file-lock2-fill": "\f39e", "file-lock2": "\f39f", "file-medical-fill": "\f3a0", "file-medical": "\f3a1", "file-minus-fill": "\f3a2", "file-minus": "\f3a3", "file-music-fill": "\f3a4", "file-music": "\f3a5", "file-person-fill": "\f3a6", "file-person": "\f3a7", "file-play-fill": "\f3a8", "file-play": "\f3a9", "file-plus-fill": "\f3aa", "file-plus": "\f3ab", "file-post-fill": "\f3ac", "file-post": "\f3ad", "file-ppt-fill": "\f3ae", "file-ppt": "\f3af", "file-richtext-fill": "\f3b0", "file-richtext": "\f3b1", "file-ruled-fill": "\f3b2", "file-ruled": "\f3b3", "file-slides-fill": "\f3b4", "file-slides": "\f3b5", "file-spreadsheet-fill": "\f3b6", "file-spreadsheet": "\f3b7", "file-text-fill": "\f3b8", "file-text": "\f3b9", "file-word-fill": "\f3ba", "file-word": "\f3bb", "file-x-fill": "\f3bc", "file-x": "\f3bd", "file-zip-fill": "\f3be", "file-zip": "\f3bf", "file": "\f3c0", "files-alt": "\f3c1", "files": "\f3c2", "film": "\f3c3", "filter-circle-fill": "\f3c4", "filter-circle": "\f3c5", "filter-left": "\f3c6", "filter-right": "\f3c7", "filter-square-fill": "\f3c8", "filter-square": "\f3c9", "filter": "\f3ca", "flag-fill": "\f3cb", "flag": "\f3cc", "flower1": "\f3cd", "flower2": "\f3ce", "flower3": "\f3cf", "folder-check": "\f3d0", "folder-fill": "\f3d1", "folder-minus": "\f3d2", "folder-plus": "\f3d3", "folder-symlink-fill": "\f3d4", "folder-symlink": "\f3d5", "folder-x": "\f3d6", "folder": "\f3d7", "folder2-open": "\f3d8", "folder2": "\f3d9", "fonts": "\f3da", "forward-fill": "\f3db", "forward": "\f3dc", "front": "\f3dd", "fullscreen-exit": "\f3de", "fullscreen": "\f3df", "funnel-fill": "\f3e0", "funnel": "\f3e1", "gear-fill": "\f3e2", "gear-wide-connected": "\f3e3", "gear-wide": "\f3e4", "gear": "\f3e5", "gem": "\f3e6", "geo-alt-fill": "\f3e7", "geo-alt": "\f3e8", "geo-fill": "\f3e9", "geo": "\f3ea", "gift-fill": "\f3eb", "gift": "\f3ec", "github": "\f3ed", "globe": "\f3ee", "globe2": "\f3ef", "google": "\f3f0", "graph-down": "\f3f1", "graph-up": "\f3f2", "grid-1x2-fill": "\f3f3", "grid-1x2": "\f3f4", "grid-3x2-gap-fill": "\f3f5", "grid-3x2-gap": "\f3f6", "grid-3x2": "\f3f7", "grid-3x3-gap-fill": "\f3f8", "grid-3x3-gap": "\f3f9", "grid-3x3": "\f3fa", "grid-fill": "\f3fb", "grid": "\f3fc", "grip-horizontal": "\f3fd", "grip-vertical": "\f3fe", "hammer": "\f3ff", "hand-index-fill": "\f400", "hand-index-thumb-fill": "\f401", "hand-index-thumb": "\f402", "hand-index": "\f403", "hand-thumbs-down-fill": "\f404", "hand-thumbs-down": "\f405", "hand-thumbs-up-fill": "\f406", "hand-thumbs-up": "\f407", "handbag-fill": "\f408", "handbag": "\f409", "hash": "\f40a", "hdd-fill": "\f40b", "hdd-network-fill": "\f40c", "hdd-network": "\f40d", "hdd-rack-fill": "\f40e", "hdd-rack": "\f40f", "hdd-stack-fill": "\f410", "hdd-stack": "\f411", "hdd": "\f412", "headphones": "\f413", "headset": "\f414", "heart-fill": "\f415", "heart-half": "\f416", "heart": "\f417", "heptagon-fill": "\f418", "heptagon-half": "\f419", "heptagon": "\f41a", "hexagon-fill": "\f41b", "hexagon-half": "\f41c", "hexagon": "\f41d", "hourglass-bottom": "\f41e", "hourglass-split": "\f41f", "hourglass-top": "\f420", "hourglass": "\f421", "house-door-fill": "\f422", "house-door": "\f423", "house-fill": "\f424", "house": "\f425", "hr": "\f426", "hurricane": "\f427", "image-alt": "\f428", "image-fill": "\f429", "image": "\f42a", "images": "\f42b", "inbox-fill": "\f42c", "inbox": "\f42d", "inboxes-fill": "\f42e", "inboxes": "\f42f", "info-circle-fill": "\f430", "info-circle": "\f431", "info-square-fill": "\f432", "info-square": "\f433", "info": "\f434", "input-cursor-text": "\f435", "input-cursor": "\f436", "instagram": "\f437", "intersect": "\f438", "journal-album": "\f439", "journal-arrow-down": "\f43a", "journal-arrow-up": "\f43b", "journal-bookmark-fill": "\f43c", "journal-bookmark": "\f43d", "journal-check": "\f43e", "journal-code": "\f43f", "journal-medical": "\f440", "journal-minus": "\f441", "journal-plus": "\f442", "journal-richtext": "\f443", "journal-text": "\f444", "journal-x": "\f445", "journal": "\f446", "journals": "\f447", "joystick": "\f448", "justify-left": "\f449", "justify-right": "\f44a", "justify": "\f44b", "kanban-fill": "\f44c", "kanban": "\f44d", "key-fill": "\f44e", "key": "\f44f", "keyboard-fill": "\f450", "keyboard": "\f451", "ladder": "\f452", "lamp-fill": "\f453", "lamp": "\f454", "laptop-fill": "\f455", "laptop": "\f456", "layer-backward": "\f457", "layer-forward": "\f458", "layers-fill": "\f459", "layers-half": "\f45a", "layers": "\f45b", "layout-sidebar-inset-reverse": "\f45c", "layout-sidebar-inset": "\f45d", "layout-sidebar-reverse": "\f45e", "layout-sidebar": "\f45f", "layout-split": "\f460", "layout-text-sidebar-reverse": "\f461", "layout-text-sidebar": "\f462", "layout-text-window-reverse": "\f463", "layout-text-window": "\f464", "layout-three-columns": "\f465", "layout-wtf": "\f466", "life-preserver": "\f467", "lightbulb-fill": "\f468", "lightbulb-off-fill": "\f469", "lightbulb-off": "\f46a", "lightbulb": "\f46b", "lightning-charge-fill": "\f46c", "lightning-charge": "\f46d", "lightning-fill": "\f46e", "lightning": "\f46f", "link-45deg": "\f470", "link": "\f471", "linkedin": "\f472", "list-check": "\f473", "list-nested": "\f474", "list-ol": "\f475", "list-stars": "\f476", "list-task": "\f477", "list-ul": "\f478", "list": "\f479", "lock-fill": "\f47a", "lock": "\f47b", "mailbox": "\f47c", "mailbox2": "\f47d", "map-fill": "\f47e", "map": "\f47f", "markdown-fill": "\f480", "markdown": "\f481", "mask": "\f482", "megaphone-fill": "\f483", "megaphone": "\f484", "menu-app-fill": "\f485", "menu-app": "\f486", "menu-button-fill": "\f487", "menu-button-wide-fill": "\f488", "menu-button-wide": "\f489", "menu-button": "\f48a", "menu-down": "\f48b", "menu-up": "\f48c", "mic-fill": "\f48d", "mic-mute-fill": "\f48e", "mic-mute": "\f48f", "mic": "\f490", "minecart-loaded": "\f491", "minecart": "\f492", "moisture": "\f493", "moon-fill": "\f494", "moon-stars-fill": "\f495", "moon-stars": "\f496", "moon": "\f497", "mouse-fill": "\f498", "mouse": "\f499", "mouse2-fill": "\f49a", "mouse2": "\f49b", "mouse3-fill": "\f49c", "mouse3": "\f49d", "music-note-beamed": "\f49e", "music-note-list": "\f49f", "music-note": "\f4a0", "music-player-fill": "\f4a1", "music-player": "\f4a2", "newspaper": "\f4a3", "node-minus-fill": "\f4a4", "node-minus": "\f4a5", "node-plus-fill": "\f4a6", "node-plus": "\f4a7", "nut-fill": "\f4a8", "nut": "\f4a9", "octagon-fill": "\f4aa", "octagon-half": "\f4ab", "octagon": "\f4ac", "option": "\f4ad", "outlet": "\f4ae", "paint-bucket": "\f4af", "palette-fill": "\f4b0", "palette": "\f4b1", "palette2": "\f4b2", "paperclip": "\f4b3", "paragraph": "\f4b4", "patch-check-fill": "\f4b5", "patch-check": "\f4b6", "patch-exclamation-fill": "\f4b7", "patch-exclamation": "\f4b8", "patch-minus-fill": "\f4b9", "patch-minus": "\f4ba", "patch-plus-fill": "\f4bb", "patch-plus": "\f4bc", "patch-question-fill": "\f4bd", "patch-question": "\f4be", "pause-btn-fill": "\f4bf", "pause-btn": "\f4c0", "pause-circle-fill": "\f4c1", "pause-circle": "\f4c2", "pause-fill": "\f4c3", "pause": "\f4c4", "peace-fill": "\f4c5", "peace": "\f4c6", "pen-fill": "\f4c7", "pen": "\f4c8", "pencil-fill": "\f4c9", "pencil-square": "\f4ca", "pencil": "\f4cb", "pentagon-fill": "\f4cc", "pentagon-half": "\f4cd", "pentagon": "\f4ce", "people-fill": "\f4cf", "people": "\f4d0", "percent": "\f4d1", "person-badge-fill": "\f4d2", "person-badge": "\f4d3", "person-bounding-box": "\f4d4", "person-check-fill": "\f4d5", "person-check": "\f4d6", "person-circle": "\f4d7", "person-dash-fill": "\f4d8", "person-dash": "\f4d9", "person-fill": "\f4da", "person-lines-fill": "\f4db", "person-plus-fill": "\f4dc", "person-plus": "\f4dd", "person-square": "\f4de", "person-x-fill": "\f4df", "person-x": "\f4e0", "person": "\f4e1", "phone-fill": "\f4e2", "phone-landscape-fill": "\f4e3", "phone-landscape": "\f4e4", "phone-vibrate-fill": "\f4e5", "phone-vibrate": "\f4e6", "phone": "\f4e7", "pie-chart-fill": "\f4e8", "pie-chart": "\f4e9", "pin-angle-fill": "\f4ea", "pin-angle": "\f4eb", "pin-fill": "\f4ec", "pin": "\f4ed", "pip-fill": "\f4ee", "pip": "\f4ef", "play-btn-fill": "\f4f0", "play-btn": "\f4f1", "play-circle-fill": "\f4f2", "play-circle": "\f4f3", "play-fill": "\f4f4", "play": "\f4f5", "plug-fill": "\f4f6", "plug": "\f4f7", "plus-circle-dotted": "\f4f8", "plus-circle-fill": "\f4f9", "plus-circle": "\f4fa", "plus-square-dotted": "\f4fb", "plus-square-fill": "\f4fc", "plus-square": "\f4fd", "plus": "\f4fe", "power": "\f4ff", "printer-fill": "\f500", "printer": "\f501", "puzzle-fill": "\f502", "puzzle": "\f503", "question-circle-fill": "\f504", "question-circle": "\f505", "question-diamond-fill": "\f506", "question-diamond": "\f507", "question-octagon-fill": "\f508", "question-octagon": "\f509", "question-square-fill": "\f50a", "question-square": "\f50b", "question": "\f50c", "rainbow": "\f50d", "receipt-cutoff": "\f50e", "receipt": "\f50f", "reception-0": "\f510", "reception-1": "\f511", "reception-2": "\f512", "reception-3": "\f513", "reception-4": "\f514", "record-btn-fill": "\f515", "record-btn": "\f516", "record-circle-fill": "\f517", "record-circle": "\f518", "record-fill": "\f519", "record": "\f51a", "record2-fill": "\f51b", "record2": "\f51c", "reply-all-fill": "\f51d", "reply-all": "\f51e", "reply-fill": "\f51f", "reply": "\f520", "rss-fill": "\f521", "rss": "\f522", "rulers": "\f523", "save-fill": "\f524", "save": "\f525", "save2-fill": "\f526", "save2": "\f527", "scissors": "\f528", "screwdriver": "\f529", "search": "\f52a", "segmented-nav": "\f52b", "server": "\f52c", "share-fill": "\f52d", "share": "\f52e", "shield-check": "\f52f", "shield-exclamation": "\f530", "shield-fill-check": "\f531", "shield-fill-exclamation": "\f532", "shield-fill-minus": "\f533", "shield-fill-plus": "\f534", "shield-fill-x": "\f535", "shield-fill": "\f536", "shield-lock-fill": "\f537", "shield-lock": "\f538", "shield-minus": "\f539", "shield-plus": "\f53a", "shield-shaded": "\f53b", "shield-slash-fill": "\f53c", "shield-slash": "\f53d", "shield-x": "\f53e", "shield": "\f53f", "shift-fill": "\f540", "shift": "\f541", "shop-window": "\f542", "shop": "\f543", "shuffle": "\f544", "signpost-2-fill": "\f545", "signpost-2": "\f546", "signpost-fill": "\f547", "signpost-split-fill": "\f548", "signpost-split": "\f549", "signpost": "\f54a", "sim-fill": "\f54b", "sim": "\f54c", "skip-backward-btn-fill": "\f54d", "skip-backward-btn": "\f54e", "skip-backward-circle-fill": "\f54f", "skip-backward-circle": "\f550", "skip-backward-fill": "\f551", "skip-backward": "\f552", "skip-end-btn-fill": "\f553", "skip-end-btn": "\f554", "skip-end-circle-fill": "\f555", "skip-end-circle": "\f556", "skip-end-fill": "\f557", "skip-end": "\f558", "skip-forward-btn-fill": "\f559", "skip-forward-btn": "\f55a", "skip-forward-circle-fill": "\f55b", "skip-forward-circle": "\f55c", "skip-forward-fill": "\f55d", "skip-forward": "\f55e", "skip-start-btn-fill": "\f55f", "skip-start-btn": "\f560", "skip-start-circle-fill": "\f561", "skip-start-circle": "\f562", "skip-start-fill": "\f563", "skip-start": "\f564", "slack": "\f565", "slash-circle-fill": "\f566", "slash-circle": "\f567", "slash-square-fill": "\f568", "slash-square": "\f569", "slash": "\f56a", "sliders": "\f56b", "smartwatch": "\f56c", "snow": "\f56d", "snow2": "\f56e", "snow3": "\f56f", "sort-alpha-down-alt": "\f570", "sort-alpha-down": "\f571", "sort-alpha-up-alt": "\f572", "sort-alpha-up": "\f573", "sort-down-alt": "\f574", "sort-down": "\f575", "sort-numeric-down-alt": "\f576", "sort-numeric-down": "\f577", "sort-numeric-up-alt": "\f578", "sort-numeric-up": "\f579", "sort-up-alt": "\f57a", "sort-up": "\f57b", "soundwave": "\f57c", "speaker-fill": "\f57d", "speaker": "\f57e", "speedometer": "\f57f", "speedometer2": "\f580", "spellcheck": "\f581", "square-fill": "\f582", "square-half": "\f583", "square": "\f584", "stack": "\f585", "star-fill": "\f586", "star-half": "\f587", "star": "\f588", "stars": "\f589", "stickies-fill": "\f58a", "stickies": "\f58b", "sticky-fill": "\f58c", "sticky": "\f58d", "stop-btn-fill": "\f58e", "stop-btn": "\f58f", "stop-circle-fill": "\f590", "stop-circle": "\f591", "stop-fill": "\f592", "stop": "\f593", "stoplights-fill": "\f594", "stoplights": "\f595", "stopwatch-fill": "\f596", "stopwatch": "\f597", "subtract": "\f598", "suit-club-fill": "\f599", "suit-club": "\f59a", "suit-diamond-fill": "\f59b", "suit-diamond": "\f59c", "suit-heart-fill": "\f59d", "suit-heart": "\f59e", "suit-spade-fill": "\f59f", "suit-spade": "\f5a0", "sun-fill": "\f5a1", "sun": "\f5a2", "sunglasses": "\f5a3", "sunrise-fill": "\f5a4", "sunrise": "\f5a5", "sunset-fill": "\f5a6", "sunset": "\f5a7", "symmetry-horizontal": "\f5a8", "symmetry-vertical": "\f5a9", "table": "\f5aa", "tablet-fill": "\f5ab", "tablet-landscape-fill": "\f5ac", "tablet-landscape": "\f5ad", "tablet": "\f5ae", "tag-fill": "\f5af", "tag": "\f5b0", "tags-fill": "\f5b1", "tags": "\f5b2", "telegram": "\f5b3", "telephone-fill": "\f5b4", "telephone-forward-fill": "\f5b5", "telephone-forward": "\f5b6", "telephone-inbound-fill": "\f5b7", "telephone-inbound": "\f5b8", "telephone-minus-fill": "\f5b9", "telephone-minus": "\f5ba", "telephone-outbound-fill": "\f5bb", "telephone-outbound": "\f5bc", "telephone-plus-fill": "\f5bd", "telephone-plus": "\f5be", "telephone-x-fill": "\f5bf", "telephone-x": "\f5c0", "telephone": "\f5c1", "terminal-fill": "\f5c2", "terminal": "\f5c3", "text-center": "\f5c4", "text-indent-left": "\f5c5", "text-indent-right": "\f5c6", "text-left": "\f5c7", "text-paragraph": "\f5c8", "text-right": "\f5c9", "textarea-resize": "\f5ca", "textarea-t": "\f5cb", "textarea": "\f5cc", "thermometer-half": "\f5cd", "thermometer-high": "\f5ce", "thermometer-low": "\f5cf", "thermometer-snow": "\f5d0", "thermometer-sun": "\f5d1", "thermometer": "\f5d2", "three-dots-vertical": "\f5d3", "three-dots": "\f5d4", "toggle-off": "\f5d5", "toggle-on": "\f5d6", "toggle2-off": "\f5d7", "toggle2-on": "\f5d8", "toggles": "\f5d9", "toggles2": "\f5da", "tools": "\f5db", "tornado": "\f5dc", "trash-fill": "\f5dd", "trash": "\f5de", "trash2-fill": "\f5df", "trash2": "\f5e0", "tree-fill": "\f5e1", "tree": "\f5e2", "triangle-fill": "\f5e3", "triangle-half": "\f5e4", "triangle": "\f5e5", "trophy-fill": "\f5e6", "trophy": "\f5e7", "tropical-storm": "\f5e8", "truck-flatbed": "\f5e9", "truck": "\f5ea", "tsunami": "\f5eb", "tv-fill": "\f5ec", "tv": "\f5ed", "twitch": "\f5ee", "twitter": "\f5ef", "type-bold": "\f5f0", "type-h1": "\f5f1", "type-h2": "\f5f2", "type-h3": "\f5f3", "type-italic": "\f5f4", "type-strikethrough": "\f5f5", "type-underline": "\f5f6", "type": "\f5f7", "ui-checks-grid": "\f5f8", "ui-checks": "\f5f9", "ui-radios-grid": "\f5fa", "ui-radios": "\f5fb", "umbrella-fill": "\f5fc", "umbrella": "\f5fd", "union": "\f5fe", "unlock-fill": "\f5ff", "unlock": "\f600", "upc-scan": "\f601", "upc": "\f602", "upload": "\f603", "vector-pen": "\f604", "view-list": "\f605", "view-stacked": "\f606", "vinyl-fill": "\f607", "vinyl": "\f608", "voicemail": "\f609", "volume-down-fill": "\f60a", "volume-down": "\f60b", "volume-mute-fill": "\f60c", "volume-mute": "\f60d", "volume-off-fill": "\f60e", "volume-off": "\f60f", "volume-up-fill": "\f610", "volume-up": "\f611", "vr": "\f612", "wallet-fill": "\f613", "wallet": "\f614", "wallet2": "\f615", "watch": "\f616", "water": "\f617", "whatsapp": "\f618", "wifi-1": "\f619", "wifi-2": "\f61a", "wifi-off": "\f61b", "wifi": "\f61c", "wind": "\f61d", "window-dock": "\f61e", "window-sidebar": "\f61f", "window": "\f620", "wrench": "\f621", "x-circle-fill": "\f622", "x-circle": "\f623", "x-diamond-fill": "\f624", "x-diamond": "\f625", "x-octagon-fill": "\f626", "x-octagon": "\f627", "x-square-fill": "\f628", "x-square": "\f629", "x": "\f62a", "youtube": "\f62b", "zoom-in": "\f62c", "zoom-out": "\f62d", "bank": "\f62e", "bank2": "\f62f", "bell-slash-fill": "\f630", "bell-slash": "\f631", "cash-coin": "\f632", "check-lg": "\f633", "coin": "\f634", "currency-bitcoin": "\f635", "currency-dollar": "\f636", "currency-euro": "\f637", "currency-exchange": "\f638", "currency-pound": "\f639", "currency-yen": "\f63a", "dash-lg": "\f63b", "exclamation-lg": "\f63c", "file-earmark-pdf-fill": "\f63d", "file-earmark-pdf": "\f63e", "file-pdf-fill": "\f63f", "file-pdf": "\f640", "gender-ambiguous": "\f641", "gender-female": "\f642", "gender-male": "\f643", "gender-trans": "\f644", "headset-vr": "\f645", "info-lg": "\f646", "mastodon": "\f647", "messenger": "\f648", "piggy-bank-fill": "\f649", "piggy-bank": "\f64a", "pin-map-fill": "\f64b", "pin-map": "\f64c", "plus-lg": "\f64d", "question-lg": "\f64e", "recycle": "\f64f", "reddit": "\f650", "safe-fill": "\f651", "safe2-fill": "\f652", "safe2": "\f653", "sd-card-fill": "\f654", "sd-card": "\f655", "skype": "\f656", "slash-lg": "\f657", "translate": "\f658", "x-lg": "\f659", "safe": "\f65a", "apple": "\f65b", "microsoft": "\f65d", "windows": "\f65e", "behance": "\f65c", "dribbble": "\f65f", "line": "\f660", "medium": "\f661", "paypal": "\f662", "pinterest": "\f663", "signal": "\f664", "snapchat": "\f665", "spotify": "\f666", "stack-overflow": "\f667", "strava": "\f668", "wordpress": "\f669", "vimeo": "\f66a", "activity": "\f66b", "easel2-fill": "\f66c", "easel2": "\f66d", "easel3-fill": "\f66e", "easel3": "\f66f", "fan": "\f670", "fingerprint": "\f671", "graph-down-arrow": "\f672", "graph-up-arrow": "\f673", "hypnotize": "\f674", "magic": "\f675", "person-rolodex": "\f676", "person-video": "\f677", "person-video2": "\f678", "person-video3": "\f679", "person-workspace": "\f67a", "radioactive": "\f67b", "webcam-fill": "\f67c", "webcam": "\f67d", "yin-yang": "\f67e", "bandaid-fill": "\f680", "bandaid": "\f681", "bluetooth": "\f682", "body-text": "\f683", "boombox": "\f684", "boxes": "\f685", "dpad-fill": "\f686", "dpad": "\f687", "ear-fill": "\f688", "ear": "\f689", "envelope-check-fill": "\f68b", "envelope-check": "\f68c", "envelope-dash-fill": "\f68e", "envelope-dash": "\f68f", "envelope-exclamation-fill": "\f691", "envelope-exclamation": "\f692", "envelope-plus-fill": "\f693", "envelope-plus": "\f694", "envelope-slash-fill": "\f696", "envelope-slash": "\f697", "envelope-x-fill": "\f699", "envelope-x": "\f69a", "explicit-fill": "\f69b", "explicit": "\f69c", "git": "\f69d", "infinity": "\f69e", "list-columns-reverse": "\f69f", "list-columns": "\f6a0", "meta": "\f6a1", "nintendo-switch": "\f6a4", "pc-display-horizontal": "\f6a5", "pc-display": "\f6a6", "pc-horizontal": "\f6a7", "pc": "\f6a8", "playstation": "\f6a9", "plus-slash-minus": "\f6aa", "projector-fill": "\f6ab", "projector": "\f6ac", "qr-code-scan": "\f6ad", "qr-code": "\f6ae", "quora": "\f6af", "quote": "\f6b0", "robot": "\f6b1", "send-check-fill": "\f6b2", "send-check": "\f6b3", "send-dash-fill": "\f6b4", "send-dash": "\f6b5", "send-exclamation-fill": "\f6b7", "send-exclamation": "\f6b8", "send-fill": "\f6b9", "send-plus-fill": "\f6ba", "send-plus": "\f6bb", "send-slash-fill": "\f6bc", "send-slash": "\f6bd", "send-x-fill": "\f6be", "send-x": "\f6bf", "send": "\f6c0", "steam": "\f6c1", "terminal-dash": "\f6c3", "terminal-plus": "\f6c4", "terminal-split": "\f6c5", "ticket-detailed-fill": "\f6c6", "ticket-detailed": "\f6c7", "ticket-fill": "\f6c8", "ticket-perforated-fill": "\f6c9", "ticket-perforated": "\f6ca", "ticket": "\f6cb", "tiktok": "\f6cc", "window-dash": "\f6cd", "window-desktop": "\f6ce", "window-fullscreen": "\f6cf", "window-plus": "\f6d0", "window-split": "\f6d1", "window-stack": "\f6d2", "window-x": "\f6d3", "xbox": "\f6d4", "ethernet": "\f6d5", "hdmi-fill": "\f6d6", "hdmi": "\f6d7", "usb-c-fill": "\f6d8", "usb-c": "\f6d9", "usb-fill": "\f6da", "usb-plug-fill": "\f6db", "usb-plug": "\f6dc", "usb-symbol": "\f6dd", "usb": "\f6de", "boombox-fill": "\f6df", "displayport": "\f6e1", "gpu-card": "\f6e2", "memory": "\f6e3", "modem-fill": "\f6e4", "modem": "\f6e5", "motherboard-fill": "\f6e6", "motherboard": "\f6e7", "optical-audio-fill": "\f6e8", "optical-audio": "\f6e9", "pci-card": "\f6ea", "router-fill": "\f6eb", "router": "\f6ec", "thunderbolt-fill": "\f6ef", "thunderbolt": "\f6f0", "usb-drive-fill": "\f6f1", "usb-drive": "\f6f2", "usb-micro-fill": "\f6f3", "usb-micro": "\f6f4", "usb-mini-fill": "\f6f5", "usb-mini": "\f6f6", "cloud-haze2": "\f6f7", "device-hdd-fill": "\f6f8", "device-hdd": "\f6f9", "device-ssd-fill": "\f6fa", "device-ssd": "\f6fb", "displayport-fill": "\f6fc", "mortarboard-fill": "\f6fd", "mortarboard": "\f6fe", "terminal-x": "\f6ff", "arrow-through-heart-fill": "\f700", "arrow-through-heart": "\f701", "badge-sd-fill": "\f702", "badge-sd": "\f703", "bag-heart-fill": "\f704", "bag-heart": "\f705", "balloon-fill": "\f706", "balloon-heart-fill": "\f707", "balloon-heart": "\f708", "balloon": "\f709", "box2-fill": "\f70a", "box2-heart-fill": "\f70b", "box2-heart": "\f70c", "box2": "\f70d", "braces-asterisk": "\f70e", "calendar-heart-fill": "\f70f", "calendar-heart": "\f710", "calendar2-heart-fill": "\f711", "calendar2-heart": "\f712", "chat-heart-fill": "\f713", "chat-heart": "\f714", "chat-left-heart-fill": "\f715", "chat-left-heart": "\f716", "chat-right-heart-fill": "\f717", "chat-right-heart": "\f718", "chat-square-heart-fill": "\f719", "chat-square-heart": "\f71a", "clipboard-check-fill": "\f71b", "clipboard-data-fill": "\f71c", "clipboard-fill": "\f71d", "clipboard-heart-fill": "\f71e", "clipboard-heart": "\f71f", "clipboard-minus-fill": "\f720", "clipboard-plus-fill": "\f721", "clipboard-pulse": "\f722", "clipboard-x-fill": "\f723", "clipboard2-check-fill": "\f724", "clipboard2-check": "\f725", "clipboard2-data-fill": "\f726", "clipboard2-data": "\f727", "clipboard2-fill": "\f728", "clipboard2-heart-fill": "\f729", "clipboard2-heart": "\f72a", "clipboard2-minus-fill": "\f72b", "clipboard2-minus": "\f72c", "clipboard2-plus-fill": "\f72d", "clipboard2-plus": "\f72e", "clipboard2-pulse-fill": "\f72f", "clipboard2-pulse": "\f730", "clipboard2-x-fill": "\f731", "clipboard2-x": "\f732", "clipboard2": "\f733", "emoji-kiss-fill": "\f734", "emoji-kiss": "\f735", "envelope-heart-fill": "\f736", "envelope-heart": "\f737", "envelope-open-heart-fill": "\f738", "envelope-open-heart": "\f739", "envelope-paper-fill": "\f73a", "envelope-paper-heart-fill": "\f73b", "envelope-paper-heart": "\f73c", "envelope-paper": "\f73d", "filetype-aac": "\f73e", "filetype-ai": "\f73f", "filetype-bmp": "\f740", "filetype-cs": "\f741", "filetype-css": "\f742", "filetype-csv": "\f743", "filetype-doc": "\f744", "filetype-docx": "\f745", "filetype-exe": "\f746", "filetype-gif": "\f747", "filetype-heic": "\f748", "filetype-html": "\f749", "filetype-java": "\f74a", "filetype-jpg": "\f74b", "filetype-js": "\f74c", "filetype-jsx": "\f74d", "filetype-key": "\f74e", "filetype-m4p": "\f74f", "filetype-md": "\f750", "filetype-mdx": "\f751", "filetype-mov": "\f752", "filetype-mp3": "\f753", "filetype-mp4": "\f754", "filetype-otf": "\f755", "filetype-pdf": "\f756", "filetype-php": "\f757", "filetype-png": "\f758", "filetype-ppt": "\f75a", "filetype-psd": "\f75b", "filetype-py": "\f75c", "filetype-raw": "\f75d", "filetype-rb": "\f75e", "filetype-sass": "\f75f", "filetype-scss": "\f760", "filetype-sh": "\f761", "filetype-svg": "\f762", "filetype-tiff": "\f763", "filetype-tsx": "\f764", "filetype-ttf": "\f765", "filetype-txt": "\f766", "filetype-wav": "\f767", "filetype-woff": "\f768", "filetype-xls": "\f76a", "filetype-xml": "\f76b", "filetype-yml": "\f76c", "heart-arrow": "\f76d", "heart-pulse-fill": "\f76e", "heart-pulse": "\f76f", "heartbreak-fill": "\f770", "heartbreak": "\f771", "hearts": "\f772", "hospital-fill": "\f773", "hospital": "\f774", "house-heart-fill": "\f775", "house-heart": "\f776", "incognito": "\f777", "magnet-fill": "\f778", "magnet": "\f779", "person-heart": "\f77a", "person-hearts": "\f77b", "phone-flip": "\f77c", "plugin": "\f77d", "postage-fill": "\f77e", "postage-heart-fill": "\f77f", "postage-heart": "\f780", "postage": "\f781", "postcard-fill": "\f782", "postcard-heart-fill": "\f783", "postcard-heart": "\f784", "postcard": "\f785", "search-heart-fill": "\f786", "search-heart": "\f787", "sliders2-vertical": "\f788", "sliders2": "\f789", "trash3-fill": "\f78a", "trash3": "\f78b", "valentine": "\f78c", "valentine2": "\f78d", "wrench-adjustable-circle-fill": "\f78e", "wrench-adjustable-circle": "\f78f", "wrench-adjustable": "\f790", "filetype-json": "\f791", "filetype-pptx": "\f792", "filetype-xlsx": "\f793", "1-circle-fill": "\f796", "1-circle": "\f797", "1-square-fill": "\f798", "1-square": "\f799", "2-circle-fill": "\f79c", "2-circle": "\f79d", "2-square-fill": "\f79e", "2-square": "\f79f", "3-circle-fill": "\f7a2", "3-circle": "\f7a3", "3-square-fill": "\f7a4", "3-square": "\f7a5", "4-circle-fill": "\f7a8", "4-circle": "\f7a9", "4-square-fill": "\f7aa", "4-square": "\f7ab", "5-circle-fill": "\f7ae", "5-circle": "\f7af", "5-square-fill": "\f7b0", "5-square": "\f7b1", "6-circle-fill": "\f7b4", "6-circle": "\f7b5", "6-square-fill": "\f7b6", "6-square": "\f7b7", "7-circle-fill": "\f7ba", "7-circle": "\f7bb", "7-square-fill": "\f7bc", "7-square": "\f7bd", "8-circle-fill": "\f7c0", "8-circle": "\f7c1", "8-square-fill": "\f7c2", "8-square": "\f7c3", "9-circle-fill": "\f7c6", "9-circle": "\f7c7", "9-square-fill": "\f7c8", "9-square": "\f7c9", "airplane-engines-fill": "\f7ca", "airplane-engines": "\f7cb", "airplane-fill": "\f7cc", "airplane": "\f7cd", "alexa": "\f7ce", "alipay": "\f7cf", "android": "\f7d0", "android2": "\f7d1", "box-fill": "\f7d2", "box-seam-fill": "\f7d3", "browser-chrome": "\f7d4", "browser-edge": "\f7d5", "browser-firefox": "\f7d6", "browser-safari": "\f7d7", "c-circle-fill": "\f7da", "c-circle": "\f7db", "c-square-fill": "\f7dc", "c-square": "\f7dd", "capsule-pill": "\f7de", "capsule": "\f7df", "car-front-fill": "\f7e0", "car-front": "\f7e1", "cassette-fill": "\f7e2", "cassette": "\f7e3", "cc-circle-fill": "\f7e6", "cc-circle": "\f7e7", "cc-square-fill": "\f7e8", "cc-square": "\f7e9", "cup-hot-fill": "\f7ea", "cup-hot": "\f7eb", "currency-rupee": "\f7ec", "dropbox": "\f7ed", "escape": "\f7ee", "fast-forward-btn-fill": "\f7ef", "fast-forward-btn": "\f7f0", "fast-forward-circle-fill": "\f7f1", "fast-forward-circle": "\f7f2", "fast-forward-fill": "\f7f3", "fast-forward": "\f7f4", "filetype-sql": "\f7f5", "fire": "\f7f6", "google-play": "\f7f7", "h-circle-fill": "\f7fa", "h-circle": "\f7fb", "h-square-fill": "\f7fc", "h-square": "\f7fd", "indent": "\f7fe", "lungs-fill": "\f7ff", "lungs": "\f800", "microsoft-teams": "\f801", "p-circle-fill": "\f804", "p-circle": "\f805", "p-square-fill": "\f806", "p-square": "\f807", "pass-fill": "\f808", "pass": "\f809", "prescription": "\f80a", "prescription2": "\f80b", "r-circle-fill": "\f80e", "r-circle": "\f80f", "r-square-fill": "\f810", "r-square": "\f811", "repeat-1": "\f812", "repeat": "\f813", "rewind-btn-fill": "\f814", "rewind-btn": "\f815", "rewind-circle-fill": "\f816", "rewind-circle": "\f817", "rewind-fill": "\f818", "rewind": "\f819", "train-freight-front-fill": "\f81a", "train-freight-front": "\f81b", "train-front-fill": "\f81c", "train-front": "\f81d", "train-lightrail-front-fill": "\f81e", "train-lightrail-front": "\f81f", "truck-front-fill": "\f820", "truck-front": "\f821", "ubuntu": "\f822", "unindent": "\f823", "unity": "\f824", "universal-access-circle": "\f825", "universal-access": "\f826", "virus": "\f827", "virus2": "\f828", "wechat": "\f829", "yelp": "\f82a", "sign-stop-fill": "\f82b", "sign-stop-lights-fill": "\f82c", "sign-stop-lights": "\f82d", "sign-stop": "\f82e", "sign-turn-left-fill": "\f82f", "sign-turn-left": "\f830", "sign-turn-right-fill": "\f831", "sign-turn-right": "\f832", "sign-turn-slight-left-fill": "\f833", "sign-turn-slight-left": "\f834", "sign-turn-slight-right-fill": "\f835", "sign-turn-slight-right": "\f836", "sign-yield-fill": "\f837", "sign-yield": "\f838", "ev-station-fill": "\f839", "ev-station": "\f83a", "fuel-pump-diesel-fill": "\f83b", "fuel-pump-diesel": "\f83c", "fuel-pump-fill": "\f83d", "fuel-pump": "\f83e", "0-circle-fill": "\f83f", "0-circle": "\f840", "0-square-fill": "\f841", "0-square": "\f842", "rocket-fill": "\f843", "rocket-takeoff-fill": "\f844", "rocket-takeoff": "\f845", "rocket": "\f846", "stripe": "\f847", "subscript": "\f848", "superscript": "\f849", "trello": "\f84a", "envelope-at-fill": "\f84b", "envelope-at": "\f84c", "regex": "\f84d", "text-wrap": "\f84e", "sign-dead-end-fill": "\f84f", "sign-dead-end": "\f850", "sign-do-not-enter-fill": "\f851", "sign-do-not-enter": "\f852", "sign-intersection-fill": "\f853", "sign-intersection-side-fill": "\f854", "sign-intersection-side": "\f855", "sign-intersection-t-fill": "\f856", "sign-intersection-t": "\f857", "sign-intersection-y-fill": "\f858", "sign-intersection-y": "\f859", "sign-intersection": "\f85a", "sign-merge-left-fill": "\f85b", "sign-merge-left": "\f85c", "sign-merge-right-fill": "\f85d", "sign-merge-right": "\f85e", "sign-no-left-turn-fill": "\f85f", "sign-no-left-turn": "\f860", "sign-no-parking-fill": "\f861", "sign-no-parking": "\f862", "sign-no-right-turn-fill": "\f863", "sign-no-right-turn": "\f864", "sign-railroad-fill": "\f865", "sign-railroad": "\f866", "building-add": "\f867", "building-check": "\f868", "building-dash": "\f869", "building-down": "\f86a", "building-exclamation": "\f86b", "building-fill-add": "\f86c", "building-fill-check": "\f86d", "building-fill-dash": "\f86e", "building-fill-down": "\f86f", "building-fill-exclamation": "\f870", "building-fill-gear": "\f871", "building-fill-lock": "\f872", "building-fill-slash": "\f873", "building-fill-up": "\f874", "building-fill-x": "\f875", "building-fill": "\f876", "building-gear": "\f877", "building-lock": "\f878", "building-slash": "\f879", "building-up": "\f87a", "building-x": "\f87b", "buildings-fill": "\f87c", "buildings": "\f87d", "bus-front-fill": "\f87e", "bus-front": "\f87f", "ev-front-fill": "\f880", "ev-front": "\f881", "globe-americas": "\f882", "globe-asia-australia": "\f883", "globe-central-south-asia": "\f884", "globe-europe-africa": "\f885", "house-add-fill": "\f886", "house-add": "\f887", "house-check-fill": "\f888", "house-check": "\f889", "house-dash-fill": "\f88a", "house-dash": "\f88b", "house-down-fill": "\f88c", "house-down": "\f88d", "house-exclamation-fill": "\f88e", "house-exclamation": "\f88f", "house-gear-fill": "\f890", "house-gear": "\f891", "house-lock-fill": "\f892", "house-lock": "\f893", "house-slash-fill": "\f894", "house-slash": "\f895", "house-up-fill": "\f896", "house-up": "\f897", "house-x-fill": "\f898", "house-x": "\f899", "person-add": "\f89a", "person-down": "\f89b", "person-exclamation": "\f89c", "person-fill-add": "\f89d", "person-fill-check": "\f89e", "person-fill-dash": "\f89f", "person-fill-down": "\f8a0", "person-fill-exclamation": "\f8a1", "person-fill-gear": "\f8a2", "person-fill-lock": "\f8a3", "person-fill-slash": "\f8a4", "person-fill-up": "\f8a5", "person-fill-x": "\f8a6", "person-gear": "\f8a7", "person-lock": "\f8a8", "person-slash": "\f8a9", "person-up": "\f8aa", "scooter": "\f8ab", "taxi-front-fill": "\f8ac", "taxi-front": "\f8ad", "amd": "\f8ae", "database-add": "\f8af", "database-check": "\f8b0", "database-dash": "\f8b1", "database-down": "\f8b2", "database-exclamation": "\f8b3", "database-fill-add": "\f8b4", "database-fill-check": "\f8b5", "database-fill-dash": "\f8b6", "database-fill-down": "\f8b7", "database-fill-exclamation": "\f8b8", "database-fill-gear": "\f8b9", "database-fill-lock": "\f8ba", "database-fill-slash": "\f8bb", "database-fill-up": "\f8bc", "database-fill-x": "\f8bd", "database-fill": "\f8be", "database-gear": "\f8bf", "database-lock": "\f8c0", "database-slash": "\f8c1", "database-up": "\f8c2", "database-x": "\f8c3", "database": "\f8c4", "houses-fill": "\f8c5", "houses": "\f8c6", "nvidia": "\f8c7", "person-vcard-fill": "\f8c8", "person-vcard": "\f8c9", "sina-weibo": "\f8ca", "tencent-qq": "\f8cb", "wikipedia": "\f8cc", "alphabet-uppercase": "\f2a5", "alphabet": "\f68a", "amazon": "\f68d", "arrows-collapse-vertical": "\f690", "arrows-expand-vertical": "\f695", "arrows-vertical": "\f698", "arrows": "\f6a2", "ban-fill": "\f6a3", "ban": "\f6b6", "bing": "\f6c2", "cake": "\f6e0", "cake2": "\f6ed", "cookie": "\f6ee", "copy": "\f759", "crosshair": "\f769", "crosshair2": "\f794", "emoji-astonished-fill": "\f795", "emoji-astonished": "\f79a", "emoji-grimace-fill": "\f79b", "emoji-grimace": "\f7a0", "emoji-grin-fill": "\f7a1", "emoji-grin": "\f7a6", "emoji-surprise-fill": "\f7a7", "emoji-surprise": "\f7ac", "emoji-tear-fill": "\f7ad", "emoji-tear": "\f7b2", "envelope-arrow-down-fill": "\f7b3", "envelope-arrow-down": "\f7b8", "envelope-arrow-up-fill": "\f7b9", "envelope-arrow-up": "\f7be", "feather": "\f7bf", "feather2": "\f7c4", "floppy-fill": "\f7c5", "floppy": "\f7d8", "floppy2-fill": "\f7d9", "floppy2": "\f7e4", "gitlab": "\f7e5", "highlighter": "\f7f8", "marker-tip": "\f802", "nvme-fill": "\f803", "nvme": "\f80c", "opencollective": "\f80d", "pci-card-network": "\f8cd", "pci-card-sound": "\f8ce", "radar": "\f8cf", "send-arrow-down-fill": "\f8d0", "send-arrow-down": "\f8d1", "send-arrow-up-fill": "\f8d2", "send-arrow-up": "\f8d3", "sim-slash-fill": "\f8d4", "sim-slash": "\f8d5", "sourceforge": "\f8d6", "substack": "\f8d7", "threads-fill": "\f8d8", "threads": "\f8d9", "transparency": "\f8da", "twitter-x": "\f8db", "type-h4": "\f8dc", "type-h5": "\f8dd", "type-h6": "\f8de", "backpack-fill": "\f8df", "backpack": "\f8e0", "backpack2-fill": "\f8e1", "backpack2": "\f8e2", "backpack3-fill": "\f8e3", "backpack3": "\f8e4", "backpack4-fill": "\f8e5", "backpack4": "\f8e6", "brilliance": "\f8e7", "cake-fill": "\f8e8", "cake2-fill": "\f8e9", "duffle-fill": "\f8ea", "duffle": "\f8eb", "exposure": "\f8ec", "gender-neuter": "\f8ed", "highlights": "\f8ee", "luggage-fill": "\f8ef", "luggage": "\f8f0", "mailbox-flag": "\f8f1", "mailbox2-flag": "\f8f2", "noise-reduction": "\f8f3", "passport-fill": "\f8f4", "passport": "\f8f5", "person-arms-up": "\f8f6", "person-raised-hand": "\f8f7", "person-standing-dress": "\f8f8", "person-standing": "\f8f9", "person-walking": "\f8fa", "person-wheelchair": "\f8fb", "shadows": "\f8fc", "suitcase-fill": "\f8fd", "suitcase-lg-fill": "\f8fe", "suitcase-lg": "\f8ff", "suitcase": "\f900", "suitcase2-fill": "\f901", "suitcase2": "\f902", "vignette": "\f903", "bluesky": "\f7f9", "tux": "\f904", "beaker-fill": "\f905", "beaker": "\f906", "flask-fill": "\f907", "flask-florence-fill": "\f908", "flask-florence": "\f909", "flask": "\f90a", "leaf-fill": "\f90b", "leaf": "\f90c", "measuring-cup-fill": "\f90d", "measuring-cup": "\f90e", "unlock2-fill": "\f90f", "unlock2": "\f910", "battery-low": "\f911", "anthropic": "\f912", "apple-music": "\f913", "claude": "\f914", "openai": "\f915", "perplexity": "\f916", "css": "\f917", "javascript": "\f918", "typescript": "\f919", "fork-knife": "\f91a", "globe-americas-fill": "\f91b", "globe-asia-australia-fill": "\f91c", "globe-central-south-asia-fill": "\f91d", "globe-europe-africa-fill": "\f91e", ); @each $icon, $codepoint in $bootstrap-icons-map { .bi-#{$icon}::before { content: $codepoint; } } ================================================ FILE: font/bootstrap-icons.ts ================================================ export type BootstrapIconsId = | "123" | "0-circle-fill" | "0-circle" | "0-square-fill" | "0-square" | "1-circle-fill" | "1-circle" | "1-square-fill" | "1-square" | "2-circle-fill" | "2-circle" | "2-square-fill" | "2-square" | "3-circle-fill" | "3-circle" | "3-square-fill" | "3-square" | "4-circle-fill" | "4-circle" | "4-square-fill" | "4-square" | "5-circle-fill" | "5-circle" | "5-square-fill" | "5-square" | "6-circle-fill" | "6-circle" | "6-square-fill" | "6-square" | "7-circle-fill" | "7-circle" | "7-square-fill" | "7-square" | "8-circle-fill" | "8-circle" | "8-square-fill" | "8-square" | "9-circle-fill" | "9-circle" | "9-square-fill" | "9-square" | "activity" | "airplane-engines-fill" | "airplane-engines" | "airplane-fill" | "airplane" | "alarm-fill" | "alarm" | "alexa" | "align-bottom" | "align-center" | "align-end" | "align-middle" | "align-start" | "align-top" | "alipay" | "alphabet-uppercase" | "alphabet" | "alt" | "amazon" | "amd" | "android" | "android2" | "anthropic" | "app-indicator" | "app" | "apple-music" | "apple" | "archive-fill" | "archive" | "arrow-90deg-down" | "arrow-90deg-left" | "arrow-90deg-right" | "arrow-90deg-up" | "arrow-bar-down" | "arrow-bar-left" | "arrow-bar-right" | "arrow-bar-up" | "arrow-clockwise" | "arrow-counterclockwise" | "arrow-down-circle-fill" | "arrow-down-circle" | "arrow-down-left-circle-fill" | "arrow-down-left-circle" | "arrow-down-left-square-fill" | "arrow-down-left-square" | "arrow-down-left" | "arrow-down-right-circle-fill" | "arrow-down-right-circle" | "arrow-down-right-square-fill" | "arrow-down-right-square" | "arrow-down-right" | "arrow-down-short" | "arrow-down-square-fill" | "arrow-down-square" | "arrow-down-up" | "arrow-down" | "arrow-left-circle-fill" | "arrow-left-circle" | "arrow-left-right" | "arrow-left-short" | "arrow-left-square-fill" | "arrow-left-square" | "arrow-left" | "arrow-repeat" | "arrow-return-left" | "arrow-return-right" | "arrow-right-circle-fill" | "arrow-right-circle" | "arrow-right-short" | "arrow-right-square-fill" | "arrow-right-square" | "arrow-right" | "arrow-through-heart-fill" | "arrow-through-heart" | "arrow-up-circle-fill" | "arrow-up-circle" | "arrow-up-left-circle-fill" | "arrow-up-left-circle" | "arrow-up-left-square-fill" | "arrow-up-left-square" | "arrow-up-left" | "arrow-up-right-circle-fill" | "arrow-up-right-circle" | "arrow-up-right-square-fill" | "arrow-up-right-square" | "arrow-up-right" | "arrow-up-short" | "arrow-up-square-fill" | "arrow-up-square" | "arrow-up" | "arrows-angle-contract" | "arrows-angle-expand" | "arrows-collapse-vertical" | "arrows-collapse" | "arrows-expand-vertical" | "arrows-expand" | "arrows-fullscreen" | "arrows-move" | "arrows-vertical" | "arrows" | "aspect-ratio-fill" | "aspect-ratio" | "asterisk" | "at" | "award-fill" | "award" | "back" | "backpack-fill" | "backpack" | "backpack2-fill" | "backpack2" | "backpack3-fill" | "backpack3" | "backpack4-fill" | "backpack4" | "backspace-fill" | "backspace-reverse-fill" | "backspace-reverse" | "backspace" | "badge-3d-fill" | "badge-3d" | "badge-4k-fill" | "badge-4k" | "badge-8k-fill" | "badge-8k" | "badge-ad-fill" | "badge-ad" | "badge-ar-fill" | "badge-ar" | "badge-cc-fill" | "badge-cc" | "badge-hd-fill" | "badge-hd" | "badge-sd-fill" | "badge-sd" | "badge-tm-fill" | "badge-tm" | "badge-vo-fill" | "badge-vo" | "badge-vr-fill" | "badge-vr" | "badge-wc-fill" | "badge-wc" | "bag-check-fill" | "bag-check" | "bag-dash-fill" | "bag-dash" | "bag-fill" | "bag-heart-fill" | "bag-heart" | "bag-plus-fill" | "bag-plus" | "bag-x-fill" | "bag-x" | "bag" | "balloon-fill" | "balloon-heart-fill" | "balloon-heart" | "balloon" | "ban-fill" | "ban" | "bandaid-fill" | "bandaid" | "bank" | "bank2" | "bar-chart-fill" | "bar-chart-line-fill" | "bar-chart-line" | "bar-chart-steps" | "bar-chart" | "basket-fill" | "basket" | "basket2-fill" | "basket2" | "basket3-fill" | "basket3" | "battery-charging" | "battery-full" | "battery-half" | "battery-low" | "battery" | "beaker-fill" | "beaker" | "behance" | "bell-fill" | "bell-slash-fill" | "bell-slash" | "bell" | "bezier" | "bezier2" | "bicycle" | "bing" | "binoculars-fill" | "binoculars" | "blockquote-left" | "blockquote-right" | "bluesky" | "bluetooth" | "body-text" | "book-fill" | "book-half" | "book" | "bookmark-check-fill" | "bookmark-check" | "bookmark-dash-fill" | "bookmark-dash" | "bookmark-fill" | "bookmark-heart-fill" | "bookmark-heart" | "bookmark-plus-fill" | "bookmark-plus" | "bookmark-star-fill" | "bookmark-star" | "bookmark-x-fill" | "bookmark-x" | "bookmark" | "bookmarks-fill" | "bookmarks" | "bookshelf" | "boombox-fill" | "boombox" | "bootstrap-fill" | "bootstrap-reboot" | "bootstrap" | "border-all" | "border-bottom" | "border-center" | "border-inner" | "border-left" | "border-middle" | "border-outer" | "border-right" | "border-style" | "border-top" | "border-width" | "border" | "bounding-box-circles" | "bounding-box" | "box-arrow-down-left" | "box-arrow-down-right" | "box-arrow-down" | "box-arrow-in-down-left" | "box-arrow-in-down-right" | "box-arrow-in-down" | "box-arrow-in-left" | "box-arrow-in-right" | "box-arrow-in-up-left" | "box-arrow-in-up-right" | "box-arrow-in-up" | "box-arrow-left" | "box-arrow-right" | "box-arrow-up-left" | "box-arrow-up-right" | "box-arrow-up" | "box-fill" | "box-seam-fill" | "box-seam" | "box" | "box2-fill" | "box2-heart-fill" | "box2-heart" | "box2" | "boxes" | "braces-asterisk" | "braces" | "bricks" | "briefcase-fill" | "briefcase" | "brightness-alt-high-fill" | "brightness-alt-high" | "brightness-alt-low-fill" | "brightness-alt-low" | "brightness-high-fill" | "brightness-high" | "brightness-low-fill" | "brightness-low" | "brilliance" | "broadcast-pin" | "broadcast" | "browser-chrome" | "browser-edge" | "browser-firefox" | "browser-safari" | "brush-fill" | "brush" | "bucket-fill" | "bucket" | "bug-fill" | "bug" | "building-add" | "building-check" | "building-dash" | "building-down" | "building-exclamation" | "building-fill-add" | "building-fill-check" | "building-fill-dash" | "building-fill-down" | "building-fill-exclamation" | "building-fill-gear" | "building-fill-lock" | "building-fill-slash" | "building-fill-up" | "building-fill-x" | "building-fill" | "building-gear" | "building-lock" | "building-slash" | "building-up" | "building-x" | "building" | "buildings-fill" | "buildings" | "bullseye" | "bus-front-fill" | "bus-front" | "c-circle-fill" | "c-circle" | "c-square-fill" | "c-square" | "cake-fill" | "cake" | "cake2-fill" | "cake2" | "calculator-fill" | "calculator" | "calendar-check-fill" | "calendar-check" | "calendar-date-fill" | "calendar-date" | "calendar-day-fill" | "calendar-day" | "calendar-event-fill" | "calendar-event" | "calendar-fill" | "calendar-heart-fill" | "calendar-heart" | "calendar-minus-fill" | "calendar-minus" | "calendar-month-fill" | "calendar-month" | "calendar-plus-fill" | "calendar-plus" | "calendar-range-fill" | "calendar-range" | "calendar-week-fill" | "calendar-week" | "calendar-x-fill" | "calendar-x" | "calendar" | "calendar2-check-fill" | "calendar2-check" | "calendar2-date-fill" | "calendar2-date" | "calendar2-day-fill" | "calendar2-day" | "calendar2-event-fill" | "calendar2-event" | "calendar2-fill" | "calendar2-heart-fill" | "calendar2-heart" | "calendar2-minus-fill" | "calendar2-minus" | "calendar2-month-fill" | "calendar2-month" | "calendar2-plus-fill" | "calendar2-plus" | "calendar2-range-fill" | "calendar2-range" | "calendar2-week-fill" | "calendar2-week" | "calendar2-x-fill" | "calendar2-x" | "calendar2" | "calendar3-event-fill" | "calendar3-event" | "calendar3-fill" | "calendar3-range-fill" | "calendar3-range" | "calendar3-week-fill" | "calendar3-week" | "calendar3" | "calendar4-event" | "calendar4-range" | "calendar4-week" | "calendar4" | "camera-fill" | "camera-reels-fill" | "camera-reels" | "camera-video-fill" | "camera-video-off-fill" | "camera-video-off" | "camera-video" | "camera" | "camera2" | "capslock-fill" | "capslock" | "capsule-pill" | "capsule" | "car-front-fill" | "car-front" | "card-checklist" | "card-heading" | "card-image" | "card-list" | "card-text" | "caret-down-fill" | "caret-down-square-fill" | "caret-down-square" | "caret-down" | "caret-left-fill" | "caret-left-square-fill" | "caret-left-square" | "caret-left" | "caret-right-fill" | "caret-right-square-fill" | "caret-right-square" | "caret-right" | "caret-up-fill" | "caret-up-square-fill" | "caret-up-square" | "caret-up" | "cart-check-fill" | "cart-check" | "cart-dash-fill" | "cart-dash" | "cart-fill" | "cart-plus-fill" | "cart-plus" | "cart-x-fill" | "cart-x" | "cart" | "cart2" | "cart3" | "cart4" | "cash-coin" | "cash-stack" | "cash" | "cassette-fill" | "cassette" | "cast" | "cc-circle-fill" | "cc-circle" | "cc-square-fill" | "cc-square" | "chat-dots-fill" | "chat-dots" | "chat-fill" | "chat-heart-fill" | "chat-heart" | "chat-left-dots-fill" | "chat-left-dots" | "chat-left-fill" | "chat-left-heart-fill" | "chat-left-heart" | "chat-left-quote-fill" | "chat-left-quote" | "chat-left-text-fill" | "chat-left-text" | "chat-left" | "chat-quote-fill" | "chat-quote" | "chat-right-dots-fill" | "chat-right-dots" | "chat-right-fill" | "chat-right-heart-fill" | "chat-right-heart" | "chat-right-quote-fill" | "chat-right-quote" | "chat-right-text-fill" | "chat-right-text" | "chat-right" | "chat-square-dots-fill" | "chat-square-dots" | "chat-square-fill" | "chat-square-heart-fill" | "chat-square-heart" | "chat-square-quote-fill" | "chat-square-quote" | "chat-square-text-fill" | "chat-square-text" | "chat-square" | "chat-text-fill" | "chat-text" | "chat" | "check-all" | "check-circle-fill" | "check-circle" | "check-lg" | "check-square-fill" | "check-square" | "check" | "check2-all" | "check2-circle" | "check2-square" | "check2" | "chevron-bar-contract" | "chevron-bar-down" | "chevron-bar-expand" | "chevron-bar-left" | "chevron-bar-right" | "chevron-bar-up" | "chevron-compact-down" | "chevron-compact-left" | "chevron-compact-right" | "chevron-compact-up" | "chevron-contract" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-expand" | "chevron-left" | "chevron-right" | "chevron-up" | "circle-fill" | "circle-half" | "circle-square" | "circle" | "claude" | "clipboard-check-fill" | "clipboard-check" | "clipboard-data-fill" | "clipboard-data" | "clipboard-fill" | "clipboard-heart-fill" | "clipboard-heart" | "clipboard-minus-fill" | "clipboard-minus" | "clipboard-plus-fill" | "clipboard-plus" | "clipboard-pulse" | "clipboard-x-fill" | "clipboard-x" | "clipboard" | "clipboard2-check-fill" | "clipboard2-check" | "clipboard2-data-fill" | "clipboard2-data" | "clipboard2-fill" | "clipboard2-heart-fill" | "clipboard2-heart" | "clipboard2-minus-fill" | "clipboard2-minus" | "clipboard2-plus-fill" | "clipboard2-plus" | "clipboard2-pulse-fill" | "clipboard2-pulse" | "clipboard2-x-fill" | "clipboard2-x" | "clipboard2" | "clock-fill" | "clock-history" | "clock" | "cloud-arrow-down-fill" | "cloud-arrow-down" | "cloud-arrow-up-fill" | "cloud-arrow-up" | "cloud-check-fill" | "cloud-check" | "cloud-download-fill" | "cloud-download" | "cloud-drizzle-fill" | "cloud-drizzle" | "cloud-fill" | "cloud-fog-fill" | "cloud-fog" | "cloud-fog2-fill" | "cloud-fog2" | "cloud-hail-fill" | "cloud-hail" | "cloud-haze-fill" | "cloud-haze" | "cloud-haze2-fill" | "cloud-haze2" | "cloud-lightning-fill" | "cloud-lightning-rain-fill" | "cloud-lightning-rain" | "cloud-lightning" | "cloud-minus-fill" | "cloud-minus" | "cloud-moon-fill" | "cloud-moon" | "cloud-plus-fill" | "cloud-plus" | "cloud-rain-fill" | "cloud-rain-heavy-fill" | "cloud-rain-heavy" | "cloud-rain" | "cloud-slash-fill" | "cloud-slash" | "cloud-sleet-fill" | "cloud-sleet" | "cloud-snow-fill" | "cloud-snow" | "cloud-sun-fill" | "cloud-sun" | "cloud-upload-fill" | "cloud-upload" | "cloud" | "clouds-fill" | "clouds" | "cloudy-fill" | "cloudy" | "code-slash" | "code-square" | "code" | "coin" | "collection-fill" | "collection-play-fill" | "collection-play" | "collection" | "columns-gap" | "columns" | "command" | "compass-fill" | "compass" | "cone-striped" | "cone" | "controller" | "cookie" | "copy" | "cpu-fill" | "cpu" | "credit-card-2-back-fill" | "credit-card-2-back" | "credit-card-2-front-fill" | "credit-card-2-front" | "credit-card-fill" | "credit-card" | "crop" | "crosshair" | "crosshair2" | "css" | "cup-fill" | "cup-hot-fill" | "cup-hot" | "cup-straw" | "cup" | "currency-bitcoin" | "currency-dollar" | "currency-euro" | "currency-exchange" | "currency-pound" | "currency-rupee" | "currency-yen" | "cursor-fill" | "cursor-text" | "cursor" | "dash-circle-dotted" | "dash-circle-fill" | "dash-circle" | "dash-lg" | "dash-square-dotted" | "dash-square-fill" | "dash-square" | "dash" | "database-add" | "database-check" | "database-dash" | "database-down" | "database-exclamation" | "database-fill-add" | "database-fill-check" | "database-fill-dash" | "database-fill-down" | "database-fill-exclamation" | "database-fill-gear" | "database-fill-lock" | "database-fill-slash" | "database-fill-up" | "database-fill-x" | "database-fill" | "database-gear" | "database-lock" | "database-slash" | "database-up" | "database-x" | "database" | "device-hdd-fill" | "device-hdd" | "device-ssd-fill" | "device-ssd" | "diagram-2-fill" | "diagram-2" | "diagram-3-fill" | "diagram-3" | "diamond-fill" | "diamond-half" | "diamond" | "dice-1-fill" | "dice-1" | "dice-2-fill" | "dice-2" | "dice-3-fill" | "dice-3" | "dice-4-fill" | "dice-4" | "dice-5-fill" | "dice-5" | "dice-6-fill" | "dice-6" | "disc-fill" | "disc" | "discord" | "display-fill" | "display" | "displayport-fill" | "displayport" | "distribute-horizontal" | "distribute-vertical" | "door-closed-fill" | "door-closed" | "door-open-fill" | "door-open" | "dot" | "download" | "dpad-fill" | "dpad" | "dribbble" | "dropbox" | "droplet-fill" | "droplet-half" | "droplet" | "duffle-fill" | "duffle" | "ear-fill" | "ear" | "earbuds" | "easel-fill" | "easel" | "easel2-fill" | "easel2" | "easel3-fill" | "easel3" | "egg-fill" | "egg-fried" | "egg" | "eject-fill" | "eject" | "emoji-angry-fill" | "emoji-angry" | "emoji-astonished-fill" | "emoji-astonished" | "emoji-dizzy-fill" | "emoji-dizzy" | "emoji-expressionless-fill" | "emoji-expressionless" | "emoji-frown-fill" | "emoji-frown" | "emoji-grimace-fill" | "emoji-grimace" | "emoji-grin-fill" | "emoji-grin" | "emoji-heart-eyes-fill" | "emoji-heart-eyes" | "emoji-kiss-fill" | "emoji-kiss" | "emoji-laughing-fill" | "emoji-laughing" | "emoji-neutral-fill" | "emoji-neutral" | "emoji-smile-fill" | "emoji-smile-upside-down-fill" | "emoji-smile-upside-down" | "emoji-smile" | "emoji-sunglasses-fill" | "emoji-sunglasses" | "emoji-surprise-fill" | "emoji-surprise" | "emoji-tear-fill" | "emoji-tear" | "emoji-wink-fill" | "emoji-wink" | "envelope-arrow-down-fill" | "envelope-arrow-down" | "envelope-arrow-up-fill" | "envelope-arrow-up" | "envelope-at-fill" | "envelope-at" | "envelope-check-fill" | "envelope-check" | "envelope-dash-fill" | "envelope-dash" | "envelope-exclamation-fill" | "envelope-exclamation" | "envelope-fill" | "envelope-heart-fill" | "envelope-heart" | "envelope-open-fill" | "envelope-open-heart-fill" | "envelope-open-heart" | "envelope-open" | "envelope-paper-fill" | "envelope-paper-heart-fill" | "envelope-paper-heart" | "envelope-paper" | "envelope-plus-fill" | "envelope-plus" | "envelope-slash-fill" | "envelope-slash" | "envelope-x-fill" | "envelope-x" | "envelope" | "eraser-fill" | "eraser" | "escape" | "ethernet" | "ev-front-fill" | "ev-front" | "ev-station-fill" | "ev-station" | "exclamation-circle-fill" | "exclamation-circle" | "exclamation-diamond-fill" | "exclamation-diamond" | "exclamation-lg" | "exclamation-octagon-fill" | "exclamation-octagon" | "exclamation-square-fill" | "exclamation-square" | "exclamation-triangle-fill" | "exclamation-triangle" | "exclamation" | "exclude" | "explicit-fill" | "explicit" | "exposure" | "eye-fill" | "eye-slash-fill" | "eye-slash" | "eye" | "eyedropper" | "eyeglasses" | "facebook" | "fan" | "fast-forward-btn-fill" | "fast-forward-btn" | "fast-forward-circle-fill" | "fast-forward-circle" | "fast-forward-fill" | "fast-forward" | "feather" | "feather2" | "file-arrow-down-fill" | "file-arrow-down" | "file-arrow-up-fill" | "file-arrow-up" | "file-bar-graph-fill" | "file-bar-graph" | "file-binary-fill" | "file-binary" | "file-break-fill" | "file-break" | "file-check-fill" | "file-check" | "file-code-fill" | "file-code" | "file-diff-fill" | "file-diff" | "file-earmark-arrow-down-fill" | "file-earmark-arrow-down" | "file-earmark-arrow-up-fill" | "file-earmark-arrow-up" | "file-earmark-bar-graph-fill" | "file-earmark-bar-graph" | "file-earmark-binary-fill" | "file-earmark-binary" | "file-earmark-break-fill" | "file-earmark-break" | "file-earmark-check-fill" | "file-earmark-check" | "file-earmark-code-fill" | "file-earmark-code" | "file-earmark-diff-fill" | "file-earmark-diff" | "file-earmark-easel-fill" | "file-earmark-easel" | "file-earmark-excel-fill" | "file-earmark-excel" | "file-earmark-fill" | "file-earmark-font-fill" | "file-earmark-font" | "file-earmark-image-fill" | "file-earmark-image" | "file-earmark-lock-fill" | "file-earmark-lock" | "file-earmark-lock2-fill" | "file-earmark-lock2" | "file-earmark-medical-fill" | "file-earmark-medical" | "file-earmark-minus-fill" | "file-earmark-minus" | "file-earmark-music-fill" | "file-earmark-music" | "file-earmark-pdf-fill" | "file-earmark-pdf" | "file-earmark-person-fill" | "file-earmark-person" | "file-earmark-play-fill" | "file-earmark-play" | "file-earmark-plus-fill" | "file-earmark-plus" | "file-earmark-post-fill" | "file-earmark-post" | "file-earmark-ppt-fill" | "file-earmark-ppt" | "file-earmark-richtext-fill" | "file-earmark-richtext" | "file-earmark-ruled-fill" | "file-earmark-ruled" | "file-earmark-slides-fill" | "file-earmark-slides" | "file-earmark-spreadsheet-fill" | "file-earmark-spreadsheet" | "file-earmark-text-fill" | "file-earmark-text" | "file-earmark-word-fill" | "file-earmark-word" | "file-earmark-x-fill" | "file-earmark-x" | "file-earmark-zip-fill" | "file-earmark-zip" | "file-earmark" | "file-easel-fill" | "file-easel" | "file-excel-fill" | "file-excel" | "file-fill" | "file-font-fill" | "file-font" | "file-image-fill" | "file-image" | "file-lock-fill" | "file-lock" | "file-lock2-fill" | "file-lock2" | "file-medical-fill" | "file-medical" | "file-minus-fill" | "file-minus" | "file-music-fill" | "file-music" | "file-pdf-fill" | "file-pdf" | "file-person-fill" | "file-person" | "file-play-fill" | "file-play" | "file-plus-fill" | "file-plus" | "file-post-fill" | "file-post" | "file-ppt-fill" | "file-ppt" | "file-richtext-fill" | "file-richtext" | "file-ruled-fill" | "file-ruled" | "file-slides-fill" | "file-slides" | "file-spreadsheet-fill" | "file-spreadsheet" | "file-text-fill" | "file-text" | "file-word-fill" | "file-word" | "file-x-fill" | "file-x" | "file-zip-fill" | "file-zip" | "file" | "files-alt" | "files" | "filetype-aac" | "filetype-ai" | "filetype-bmp" | "filetype-cs" | "filetype-css" | "filetype-csv" | "filetype-doc" | "filetype-docx" | "filetype-exe" | "filetype-gif" | "filetype-heic" | "filetype-html" | "filetype-java" | "filetype-jpg" | "filetype-js" | "filetype-json" | "filetype-jsx" | "filetype-key" | "filetype-m4p" | "filetype-md" | "filetype-mdx" | "filetype-mov" | "filetype-mp3" | "filetype-mp4" | "filetype-otf" | "filetype-pdf" | "filetype-php" | "filetype-png" | "filetype-ppt" | "filetype-pptx" | "filetype-psd" | "filetype-py" | "filetype-raw" | "filetype-rb" | "filetype-sass" | "filetype-scss" | "filetype-sh" | "filetype-sql" | "filetype-svg" | "filetype-tiff" | "filetype-tsx" | "filetype-ttf" | "filetype-txt" | "filetype-wav" | "filetype-woff" | "filetype-xls" | "filetype-xlsx" | "filetype-xml" | "filetype-yml" | "film" | "filter-circle-fill" | "filter-circle" | "filter-left" | "filter-right" | "filter-square-fill" | "filter-square" | "filter" | "fingerprint" | "fire" | "flag-fill" | "flag" | "flask-fill" | "flask-florence-fill" | "flask-florence" | "flask" | "floppy-fill" | "floppy" | "floppy2-fill" | "floppy2" | "flower1" | "flower2" | "flower3" | "folder-check" | "folder-fill" | "folder-minus" | "folder-plus" | "folder-symlink-fill" | "folder-symlink" | "folder-x" | "folder" | "folder2-open" | "folder2" | "fonts" | "fork-knife" | "forward-fill" | "forward" | "front" | "fuel-pump-diesel-fill" | "fuel-pump-diesel" | "fuel-pump-fill" | "fuel-pump" | "fullscreen-exit" | "fullscreen" | "funnel-fill" | "funnel" | "gear-fill" | "gear-wide-connected" | "gear-wide" | "gear" | "gem" | "gender-ambiguous" | "gender-female" | "gender-male" | "gender-neuter" | "gender-trans" | "geo-alt-fill" | "geo-alt" | "geo-fill" | "geo" | "gift-fill" | "gift" | "git" | "github" | "gitlab" | "globe-americas-fill" | "globe-americas" | "globe-asia-australia-fill" | "globe-asia-australia" | "globe-central-south-asia-fill" | "globe-central-south-asia" | "globe-europe-africa-fill" | "globe-europe-africa" | "globe" | "globe2" | "google-play" | "google" | "gpu-card" | "graph-down-arrow" | "graph-down" | "graph-up-arrow" | "graph-up" | "grid-1x2-fill" | "grid-1x2" | "grid-3x2-gap-fill" | "grid-3x2-gap" | "grid-3x2" | "grid-3x3-gap-fill" | "grid-3x3-gap" | "grid-3x3" | "grid-fill" | "grid" | "grip-horizontal" | "grip-vertical" | "h-circle-fill" | "h-circle" | "h-square-fill" | "h-square" | "hammer" | "hand-index-fill" | "hand-index-thumb-fill" | "hand-index-thumb" | "hand-index" | "hand-thumbs-down-fill" | "hand-thumbs-down" | "hand-thumbs-up-fill" | "hand-thumbs-up" | "handbag-fill" | "handbag" | "hash" | "hdd-fill" | "hdd-network-fill" | "hdd-network" | "hdd-rack-fill" | "hdd-rack" | "hdd-stack-fill" | "hdd-stack" | "hdd" | "hdmi-fill" | "hdmi" | "headphones" | "headset-vr" | "headset" | "heart-arrow" | "heart-fill" | "heart-half" | "heart-pulse-fill" | "heart-pulse" | "heart" | "heartbreak-fill" | "heartbreak" | "hearts" | "heptagon-fill" | "heptagon-half" | "heptagon" | "hexagon-fill" | "hexagon-half" | "hexagon" | "highlighter" | "highlights" | "hospital-fill" | "hospital" | "hourglass-bottom" | "hourglass-split" | "hourglass-top" | "hourglass" | "house-add-fill" | "house-add" | "house-check-fill" | "house-check" | "house-dash-fill" | "house-dash" | "house-door-fill" | "house-door" | "house-down-fill" | "house-down" | "house-exclamation-fill" | "house-exclamation" | "house-fill" | "house-gear-fill" | "house-gear" | "house-heart-fill" | "house-heart" | "house-lock-fill" | "house-lock" | "house-slash-fill" | "house-slash" | "house-up-fill" | "house-up" | "house-x-fill" | "house-x" | "house" | "houses-fill" | "houses" | "hr" | "hurricane" | "hypnotize" | "image-alt" | "image-fill" | "image" | "images" | "inbox-fill" | "inbox" | "inboxes-fill" | "inboxes" | "incognito" | "indent" | "infinity" | "info-circle-fill" | "info-circle" | "info-lg" | "info-square-fill" | "info-square" | "info" | "input-cursor-text" | "input-cursor" | "instagram" | "intersect" | "javascript" | "journal-album" | "journal-arrow-down" | "journal-arrow-up" | "journal-bookmark-fill" | "journal-bookmark" | "journal-check" | "journal-code" | "journal-medical" | "journal-minus" | "journal-plus" | "journal-richtext" | "journal-text" | "journal-x" | "journal" | "journals" | "joystick" | "justify-left" | "justify-right" | "justify" | "kanban-fill" | "kanban" | "key-fill" | "key" | "keyboard-fill" | "keyboard" | "ladder" | "lamp-fill" | "lamp" | "laptop-fill" | "laptop" | "layer-backward" | "layer-forward" | "layers-fill" | "layers-half" | "layers" | "layout-sidebar-inset-reverse" | "layout-sidebar-inset" | "layout-sidebar-reverse" | "layout-sidebar" | "layout-split" | "layout-text-sidebar-reverse" | "layout-text-sidebar" | "layout-text-window-reverse" | "layout-text-window" | "layout-three-columns" | "layout-wtf" | "leaf-fill" | "leaf" | "life-preserver" | "lightbulb-fill" | "lightbulb-off-fill" | "lightbulb-off" | "lightbulb" | "lightning-charge-fill" | "lightning-charge" | "lightning-fill" | "lightning" | "line" | "link-45deg" | "link" | "linkedin" | "list-check" | "list-columns-reverse" | "list-columns" | "list-nested" | "list-ol" | "list-stars" | "list-task" | "list-ul" | "list" | "lock-fill" | "lock" | "luggage-fill" | "luggage" | "lungs-fill" | "lungs" | "magic" | "magnet-fill" | "magnet" | "mailbox-flag" | "mailbox" | "mailbox2-flag" | "mailbox2" | "map-fill" | "map" | "markdown-fill" | "markdown" | "marker-tip" | "mask" | "mastodon" | "measuring-cup-fill" | "measuring-cup" | "medium" | "megaphone-fill" | "megaphone" | "memory" | "menu-app-fill" | "menu-app" | "menu-button-fill" | "menu-button-wide-fill" | "menu-button-wide" | "menu-button" | "menu-down" | "menu-up" | "messenger" | "meta" | "mic-fill" | "mic-mute-fill" | "mic-mute" | "mic" | "microsoft-teams" | "microsoft" | "minecart-loaded" | "minecart" | "modem-fill" | "modem" | "moisture" | "moon-fill" | "moon-stars-fill" | "moon-stars" | "moon" | "mortarboard-fill" | "mortarboard" | "motherboard-fill" | "motherboard" | "mouse-fill" | "mouse" | "mouse2-fill" | "mouse2" | "mouse3-fill" | "mouse3" | "music-note-beamed" | "music-note-list" | "music-note" | "music-player-fill" | "music-player" | "newspaper" | "nintendo-switch" | "node-minus-fill" | "node-minus" | "node-plus-fill" | "node-plus" | "noise-reduction" | "nut-fill" | "nut" | "nvidia" | "nvme-fill" | "nvme" | "octagon-fill" | "octagon-half" | "octagon" | "openai" | "opencollective" | "optical-audio-fill" | "optical-audio" | "option" | "outlet" | "p-circle-fill" | "p-circle" | "p-square-fill" | "p-square" | "paint-bucket" | "palette-fill" | "palette" | "palette2" | "paperclip" | "paragraph" | "pass-fill" | "pass" | "passport-fill" | "passport" | "patch-check-fill" | "patch-check" | "patch-exclamation-fill" | "patch-exclamation" | "patch-minus-fill" | "patch-minus" | "patch-plus-fill" | "patch-plus" | "patch-question-fill" | "patch-question" | "pause-btn-fill" | "pause-btn" | "pause-circle-fill" | "pause-circle" | "pause-fill" | "pause" | "paypal" | "pc-display-horizontal" | "pc-display" | "pc-horizontal" | "pc" | "pci-card-network" | "pci-card-sound" | "pci-card" | "peace-fill" | "peace" | "pen-fill" | "pen" | "pencil-fill" | "pencil-square" | "pencil" | "pentagon-fill" | "pentagon-half" | "pentagon" | "people-fill" | "people" | "percent" | "perplexity" | "person-add" | "person-arms-up" | "person-badge-fill" | "person-badge" | "person-bounding-box" | "person-check-fill" | "person-check" | "person-circle" | "person-dash-fill" | "person-dash" | "person-down" | "person-exclamation" | "person-fill-add" | "person-fill-check" | "person-fill-dash" | "person-fill-down" | "person-fill-exclamation" | "person-fill-gear" | "person-fill-lock" | "person-fill-slash" | "person-fill-up" | "person-fill-x" | "person-fill" | "person-gear" | "person-heart" | "person-hearts" | "person-lines-fill" | "person-lock" | "person-plus-fill" | "person-plus" | "person-raised-hand" | "person-rolodex" | "person-slash" | "person-square" | "person-standing-dress" | "person-standing" | "person-up" | "person-vcard-fill" | "person-vcard" | "person-video" | "person-video2" | "person-video3" | "person-walking" | "person-wheelchair" | "person-workspace" | "person-x-fill" | "person-x" | "person" | "phone-fill" | "phone-flip" | "phone-landscape-fill" | "phone-landscape" | "phone-vibrate-fill" | "phone-vibrate" | "phone" | "pie-chart-fill" | "pie-chart" | "piggy-bank-fill" | "piggy-bank" | "pin-angle-fill" | "pin-angle" | "pin-fill" | "pin-map-fill" | "pin-map" | "pin" | "pinterest" | "pip-fill" | "pip" | "play-btn-fill" | "play-btn" | "play-circle-fill" | "play-circle" | "play-fill" | "play" | "playstation" | "plug-fill" | "plug" | "plugin" | "plus-circle-dotted" | "plus-circle-fill" | "plus-circle" | "plus-lg" | "plus-slash-minus" | "plus-square-dotted" | "plus-square-fill" | "plus-square" | "plus" | "postage-fill" | "postage-heart-fill" | "postage-heart" | "postage" | "postcard-fill" | "postcard-heart-fill" | "postcard-heart" | "postcard" | "power" | "prescription" | "prescription2" | "printer-fill" | "printer" | "projector-fill" | "projector" | "puzzle-fill" | "puzzle" | "qr-code-scan" | "qr-code" | "question-circle-fill" | "question-circle" | "question-diamond-fill" | "question-diamond" | "question-lg" | "question-octagon-fill" | "question-octagon" | "question-square-fill" | "question-square" | "question" | "quora" | "quote" | "r-circle-fill" | "r-circle" | "r-square-fill" | "r-square" | "radar" | "radioactive" | "rainbow" | "receipt-cutoff" | "receipt" | "reception-0" | "reception-1" | "reception-2" | "reception-3" | "reception-4" | "record-btn-fill" | "record-btn" | "record-circle-fill" | "record-circle" | "record-fill" | "record" | "record2-fill" | "record2" | "recycle" | "reddit" | "regex" | "repeat-1" | "repeat" | "reply-all-fill" | "reply-all" | "reply-fill" | "reply" | "rewind-btn-fill" | "rewind-btn" | "rewind-circle-fill" | "rewind-circle" | "rewind-fill" | "rewind" | "robot" | "rocket-fill" | "rocket-takeoff-fill" | "rocket-takeoff" | "rocket" | "router-fill" | "router" | "rss-fill" | "rss" | "rulers" | "safe-fill" | "safe" | "safe2-fill" | "safe2" | "save-fill" | "save" | "save2-fill" | "save2" | "scissors" | "scooter" | "screwdriver" | "sd-card-fill" | "sd-card" | "search-heart-fill" | "search-heart" | "search" | "segmented-nav" | "send-arrow-down-fill" | "send-arrow-down" | "send-arrow-up-fill" | "send-arrow-up" | "send-check-fill" | "send-check" | "send-dash-fill" | "send-dash" | "send-exclamation-fill" | "send-exclamation" | "send-fill" | "send-plus-fill" | "send-plus" | "send-slash-fill" | "send-slash" | "send-x-fill" | "send-x" | "send" | "server" | "shadows" | "share-fill" | "share" | "shield-check" | "shield-exclamation" | "shield-fill-check" | "shield-fill-exclamation" | "shield-fill-minus" | "shield-fill-plus" | "shield-fill-x" | "shield-fill" | "shield-lock-fill" | "shield-lock" | "shield-minus" | "shield-plus" | "shield-shaded" | "shield-slash-fill" | "shield-slash" | "shield-x" | "shield" | "shift-fill" | "shift" | "shop-window" | "shop" | "shuffle" | "sign-dead-end-fill" | "sign-dead-end" | "sign-do-not-enter-fill" | "sign-do-not-enter" | "sign-intersection-fill" | "sign-intersection-side-fill" | "sign-intersection-side" | "sign-intersection-t-fill" | "sign-intersection-t" | "sign-intersection-y-fill" | "sign-intersection-y" | "sign-intersection" | "sign-merge-left-fill" | "sign-merge-left" | "sign-merge-right-fill" | "sign-merge-right" | "sign-no-left-turn-fill" | "sign-no-left-turn" | "sign-no-parking-fill" | "sign-no-parking" | "sign-no-right-turn-fill" | "sign-no-right-turn" | "sign-railroad-fill" | "sign-railroad" | "sign-stop-fill" | "sign-stop-lights-fill" | "sign-stop-lights" | "sign-stop" | "sign-turn-left-fill" | "sign-turn-left" | "sign-turn-right-fill" | "sign-turn-right" | "sign-turn-slight-left-fill" | "sign-turn-slight-left" | "sign-turn-slight-right-fill" | "sign-turn-slight-right" | "sign-yield-fill" | "sign-yield" | "signal" | "signpost-2-fill" | "signpost-2" | "signpost-fill" | "signpost-split-fill" | "signpost-split" | "signpost" | "sim-fill" | "sim-slash-fill" | "sim-slash" | "sim" | "sina-weibo" | "skip-backward-btn-fill" | "skip-backward-btn" | "skip-backward-circle-fill" | "skip-backward-circle" | "skip-backward-fill" | "skip-backward" | "skip-end-btn-fill" | "skip-end-btn" | "skip-end-circle-fill" | "skip-end-circle" | "skip-end-fill" | "skip-end" | "skip-forward-btn-fill" | "skip-forward-btn" | "skip-forward-circle-fill" | "skip-forward-circle" | "skip-forward-fill" | "skip-forward" | "skip-start-btn-fill" | "skip-start-btn" | "skip-start-circle-fill" | "skip-start-circle" | "skip-start-fill" | "skip-start" | "skype" | "slack" | "slash-circle-fill" | "slash-circle" | "slash-lg" | "slash-square-fill" | "slash-square" | "slash" | "sliders" | "sliders2-vertical" | "sliders2" | "smartwatch" | "snapchat" | "snow" | "snow2" | "snow3" | "sort-alpha-down-alt" | "sort-alpha-down" | "sort-alpha-up-alt" | "sort-alpha-up" | "sort-down-alt" | "sort-down" | "sort-numeric-down-alt" | "sort-numeric-down" | "sort-numeric-up-alt" | "sort-numeric-up" | "sort-up-alt" | "sort-up" | "soundwave" | "sourceforge" | "speaker-fill" | "speaker" | "speedometer" | "speedometer2" | "spellcheck" | "spotify" | "square-fill" | "square-half" | "square" | "stack-overflow" | "stack" | "star-fill" | "star-half" | "star" | "stars" | "steam" | "stickies-fill" | "stickies" | "sticky-fill" | "sticky" | "stop-btn-fill" | "stop-btn" | "stop-circle-fill" | "stop-circle" | "stop-fill" | "stop" | "stoplights-fill" | "stoplights" | "stopwatch-fill" | "stopwatch" | "strava" | "stripe" | "subscript" | "substack" | "subtract" | "suit-club-fill" | "suit-club" | "suit-diamond-fill" | "suit-diamond" | "suit-heart-fill" | "suit-heart" | "suit-spade-fill" | "suit-spade" | "suitcase-fill" | "suitcase-lg-fill" | "suitcase-lg" | "suitcase" | "suitcase2-fill" | "suitcase2" | "sun-fill" | "sun" | "sunglasses" | "sunrise-fill" | "sunrise" | "sunset-fill" | "sunset" | "superscript" | "symmetry-horizontal" | "symmetry-vertical" | "table" | "tablet-fill" | "tablet-landscape-fill" | "tablet-landscape" | "tablet" | "tag-fill" | "tag" | "tags-fill" | "tags" | "taxi-front-fill" | "taxi-front" | "telegram" | "telephone-fill" | "telephone-forward-fill" | "telephone-forward" | "telephone-inbound-fill" | "telephone-inbound" | "telephone-minus-fill" | "telephone-minus" | "telephone-outbound-fill" | "telephone-outbound" | "telephone-plus-fill" | "telephone-plus" | "telephone-x-fill" | "telephone-x" | "telephone" | "tencent-qq" | "terminal-dash" | "terminal-fill" | "terminal-plus" | "terminal-split" | "terminal-x" | "terminal" | "text-center" | "text-indent-left" | "text-indent-right" | "text-left" | "text-paragraph" | "text-right" | "text-wrap" | "textarea-resize" | "textarea-t" | "textarea" | "thermometer-half" | "thermometer-high" | "thermometer-low" | "thermometer-snow" | "thermometer-sun" | "thermometer" | "threads-fill" | "threads" | "three-dots-vertical" | "three-dots" | "thunderbolt-fill" | "thunderbolt" | "ticket-detailed-fill" | "ticket-detailed" | "ticket-fill" | "ticket-perforated-fill" | "ticket-perforated" | "ticket" | "tiktok" | "toggle-off" | "toggle-on" | "toggle2-off" | "toggle2-on" | "toggles" | "toggles2" | "tools" | "tornado" | "train-freight-front-fill" | "train-freight-front" | "train-front-fill" | "train-front" | "train-lightrail-front-fill" | "train-lightrail-front" | "translate" | "transparency" | "trash-fill" | "trash" | "trash2-fill" | "trash2" | "trash3-fill" | "trash3" | "tree-fill" | "tree" | "trello" | "triangle-fill" | "triangle-half" | "triangle" | "trophy-fill" | "trophy" | "tropical-storm" | "truck-flatbed" | "truck-front-fill" | "truck-front" | "truck" | "tsunami" | "tux" | "tv-fill" | "tv" | "twitch" | "twitter-x" | "twitter" | "type-bold" | "type-h1" | "type-h2" | "type-h3" | "type-h4" | "type-h5" | "type-h6" | "type-italic" | "type-strikethrough" | "type-underline" | "type" | "typescript" | "ubuntu" | "ui-checks-grid" | "ui-checks" | "ui-radios-grid" | "ui-radios" | "umbrella-fill" | "umbrella" | "unindent" | "union" | "unity" | "universal-access-circle" | "universal-access" | "unlock-fill" | "unlock" | "unlock2-fill" | "unlock2" | "upc-scan" | "upc" | "upload" | "usb-c-fill" | "usb-c" | "usb-drive-fill" | "usb-drive" | "usb-fill" | "usb-micro-fill" | "usb-micro" | "usb-mini-fill" | "usb-mini" | "usb-plug-fill" | "usb-plug" | "usb-symbol" | "usb" | "valentine" | "valentine2" | "vector-pen" | "view-list" | "view-stacked" | "vignette" | "vimeo" | "vinyl-fill" | "vinyl" | "virus" | "virus2" | "voicemail" | "volume-down-fill" | "volume-down" | "volume-mute-fill" | "volume-mute" | "volume-off-fill" | "volume-off" | "volume-up-fill" | "volume-up" | "vr" | "wallet-fill" | "wallet" | "wallet2" | "watch" | "water" | "webcam-fill" | "webcam" | "wechat" | "whatsapp" | "wifi-1" | "wifi-2" | "wifi-off" | "wifi" | "wikipedia" | "wind" | "window-dash" | "window-desktop" | "window-dock" | "window-fullscreen" | "window-plus" | "window-sidebar" | "window-split" | "window-stack" | "window-x" | "window" | "windows" | "wordpress" | "wrench-adjustable-circle-fill" | "wrench-adjustable-circle" | "wrench-adjustable" | "wrench" | "x-circle-fill" | "x-circle" | "x-diamond-fill" | "x-diamond" | "x-lg" | "x-octagon-fill" | "x-octagon" | "x-square-fill" | "x-square" | "x" | "xbox" | "yelp" | "yin-yang" | "youtube" | "zoom-in" | "zoom-out"; ================================================ FILE: hugo.yml ================================================ languageCode: "en" title: "Bootstrap Icons" baseURL: "https://icons.getbootstrap.com" enableInlineShortcodes: true enableRobotsTXT: true metaDataFormat: "yaml" disableKinds: ["404", "taxonomy", "term", "RSS"] publishDir: "_site" security: enableInlineShortcodes: true funcs: getenv: - ^HUGO_ - NETLIFY markup: goldmark: renderer: unsafe: true highlight: noClasses: false module: mounts: - source: docs/assets target: assets - source: docs/content target: content - source: docs/data target: data - source: docs/layouts target: layouts - source: docs/static target: static - source: docs/static/assets/img/favicons/apple-touch-icon.png target: static/apple-touch-icon.png - source: docs/static/assets/img/favicons/favicon.ico target: static/favicon.ico - source: bootstrap-icons.svg target: static/bootstrap-icons.svg - source: icons target: static/assets/icons - source: font target: static/assets/font - source: font target: assets/font - source: node_modules/bootstrap/scss target: assets/scss/bootstrap - source: node_modules/bootstrap/dist/js/bootstrap.bundle.min.js target: static/assets/js/vendor/bootstrap.bundle.min.js params: description: "Official open source SVG icon library for Bootstrap" social_image_path: /assets/img/bootstrap-icons-social.png version: "1.13.1" docs_version: "5.3" main: "https://getbootstrap.com" github_org: "https://github.com/twbs" icons_repo: "https://github.com/twbs/icons" repo: "https://github.com/twbs/bootstrap" twitter: "getbootstrap" opencollective: "https://opencollective.com/bootstrap" blog: "https://blog.getbootstrap.com/" themes: "https://themes.getbootstrap.com/" icons: "https://icons.getbootstrap.com/" swag: "https://cottonbureau.com/people/bootstrap" icons_figma: "https://www.figma.com/community/file/1042482994486402696/Bootstrap-Icons" ================================================ FILE: package.json ================================================ { "name": "bootstrap-icons", "version": "1.13.1", "description": "Official open source SVG icon library for Bootstrap", "author": "mdo", "license": "MIT", "homepage": "https://icons.getbootstrap.com/", "repository": { "type": "git", "url": "git+https://github.com/twbs/icons.git" }, "bugs": { "url": "https://github.com/twbs/icons/issues" }, "funding": [ { "type": "github", "url": "https://github.com/sponsors/twbs" }, { "type": "opencollective", "url": "https://opencollective.com/bootstrap" } ], "keywords": [ "bootstrap", "icons", "svg", "font", "sprite", "woff", "woff2" ], "style": "font/bootstrap-icons.css", "sass": "font/bootstrap-icons.scss", "types": "font/bootstrap-icons.ts", "files": [ "icons/*.svg", "bootstrap-icons.svg", "font", "!.DS_Store" ], "hugo-bin": { "buildTags": "extended", "version": "0.134.3" }, "scripts": { "start": "npm run docs-serve", "docs-serve": "hugo server --port 4000 --disableFastRender", "docs-build": "hugo --cleanDestinationDir --printUnusedTemplates", "docs-test": "npm-run-all docs-build docs-test:vnu", "docs-test:vnu": "node build/vnu-jar.mjs", "pages": "node build/build-pages.mjs", "icons": "npm-run-all icons-main --aggregate-output --parallel icons-sprite icons-font", "icons-main": "node build/build-svgs.mjs", "icons-zip": "cross-env-shell \"rm -rf bootstrap-icons-$npm_package_version bootstrap-icons-$npm_package_version.zip && cp -r icons/ bootstrap-icons-$npm_package_version && cp bootstrap-icons.svg bootstrap-icons-$npm_package_version && cp -r font/ bootstrap-icons-$npm_package_version && zip -qr9 bootstrap-icons-$npm_package_version.zip bootstrap-icons-$npm_package_version && rm -rf bootstrap-icons-$npm_package_version\"", "icons-sprite": "svg-sprite --config svg-sprite.json --log=info \"icons/*.svg\"", "icons-font": "npm-run-all icons-font-*", "icons-font-main": "fantasticon", "icons-font-min": "cleancss -O1 --format breakWith=lf --with-rebase --output font/bootstrap-icons.min.css font/bootstrap-icons.css", "release": "npm-run-all icons docs-build icons-zip", "release-version": "node build/bump-version.mjs", "netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all icons docs-build", "test:fusv": "fusv docs/assets/scss/", "test:eslint": "eslint --cache --cache-location .cache/.eslintcache .", "test:stylelint": "stylelint docs/assets/scss/ --cache --cache-location .cache/.stylelintcache", "test:lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json", "test:check-icons": "node build/check-icons.mjs", "test": "npm-run-all --parallel --aggregate-output --continue-on-error test:*" }, "devDependencies": { "@eslint/js": "^10.0.1", "@twbs/fantasticon": "^3.1.0", "autoprefixer": "^10.4.27", "bootstrap": "^5.3.8", "clean-css-cli": "^5.6.3", "clipboard": "^2.0.11", "cross-env": "^10.1.0", "eslint": "^10.0.2", "find-unused-sass-variables": "^6.1.1", "fuse.js": "^7.1.0", "globals": "^17.4.0", "hugo-bin": "^0.149.2", "lockfile-lint": "^5.0.0", "npm-run-all2": "^8.0.4", "picocolors": "^1.1.1", "postcss": "^8.5.8", "postcss-cli": "^11.0.1", "stylelint": "^16.26.1", "stylelint-config-twbs-bootstrap": "^16.1.0", "svg-sprite": "^3.0.0-rc3", "svgo": "^3.3.3", "vnu-jar": "25.11.3" } } ================================================ FILE: svg-sprite.json ================================================ { "mode": { "symbol": { "dest": ".", "sprite": "bootstrap-icons.svg" } }, "svg": { "namespaceClassnames": false, "xmlDeclaration": false }, "shape": { "transform": [ { "svgo": { "multipass": true, "plugins": [ { "name": "preset-default", "params": { "overrides": { "removeUnknownsAndDefaults": { "keepDataAttrs": false, "keepRoleAttr": true }, "removeViewBox": false } } }, "cleanupListOfValues", "removeXMLNS", { "name": "removeAttrs", "params": { "attrs": [ "clip-rule", "fill" ] } } ] } } ] } } ================================================ FILE: svgo.config.mjs ================================================ import path from 'node:path' export default { multipass: true, js2svg: { pretty: true, indent: 2, eol: 'lf' }, plugins: [ { name: 'preset-default', params: { overrides: { removeUnknownsAndDefaults: { keepDataAttrs: false, // remove all `data` attributes keepRoleAttr: true // keep the `role` attribute }, removeViewBox: false // keep the `viewBox` attribute } } }, // The next plugins are included in svgo but are not part of preset-default, // so we need to explicitly enable them 'cleanupListOfValues', { name: 'removeAttrs', params: { attrs: [ 'clip-rule', 'fill' ] } }, // Custom plugin which resets the SVG attributes to explicit values { name: 'explicitAttrs', type: 'visitor', params: { attributes: { xmlns: 'http://www.w3.org/2000/svg', width: '16', height: '16', fill: 'currentColor', class: '', // We replace the class with the correct one based on filename later viewBox: '0 0 16 16' } }, fn(_root, params, info) { if (!params.attributes) { return null } const basename = path.basename(info.path, '.svg') return { element: { enter(node, parentNode) { if (node.name === 'svg' && parentNode.type === 'root') { // We set the `svgAttributes` in the order we want to, // hence why we remove the attributes and add them back node.attributes = {} for (const [key, value] of Object.entries(params.attributes)) { node.attributes[key] = key === 'class' ? `bi bi-${basename}` : value } } } } } } } ] }