├── src ├── assets │ └── .gitkeep ├── app │ ├── constants.ts │ ├── apis │ │ └── api.model.ts │ ├── app.component.ts │ ├── route-modules │ │ └── icons-module │ │ │ ├── components │ │ │ ├── header │ │ │ │ └── header │ │ │ │ │ ├── header.component.scss │ │ │ │ │ └── header.component.ts │ │ │ ├── bs-image │ │ │ │ ├── bs-image │ │ │ │ │ ├── bs-image.component.ts │ │ │ │ │ └── bs-image.component.html │ │ │ │ └── bs-image.module.ts │ │ │ └── search-bar │ │ │ │ └── search-bar.module.ts │ │ │ ├── icons-module.routes.ts │ │ │ └── icons-module-routing.module.ts │ ├── app.routes.ts │ ├── stores │ │ └── icons-store │ │ │ ├── models.ts │ │ │ ├── store.ts │ │ │ └── helpers.ts │ └── app-routing.module.ts ├── polyfills.ts ├── favicon.ico ├── environments │ └── environment.prod.ts ├── styles.scss ├── main.ts └── manifest.json ├── .npmrc ├── projects └── ngx-bootstrap-icons-lib │ ├── src │ ├── lib │ │ ├── providers │ │ │ └── icon.provider.ts │ │ ├── icons │ │ │ ├── dot.ts │ │ │ ├── circle-fill.ts │ │ │ ├── dash.ts │ │ │ ├── egg-fill.ts │ │ │ ├── circle.ts │ │ │ ├── record.ts │ │ │ ├── slash.ts │ │ │ ├── record-fill.ts │ │ │ ├── amd.ts │ │ │ ├── circle-half.ts │ │ │ ├── dash-lg.ts │ │ │ ├── toggle-on.ts │ │ │ ├── cone.ts │ │ │ ├── plus.ts │ │ │ ├── square-fill.ts │ │ │ ├── person-fill.ts │ │ │ ├── usb-c-fill.ts │ │ │ ├── file-fill.ts │ │ │ ├── magnet-fill.ts │ │ │ ├── mouse-fill.ts │ │ │ ├── union.ts │ │ │ ├── border-all.ts │ │ │ ├── cloudy-fill.ts │ │ │ ├── geo-alt-fill.ts │ │ │ ├── heart-fill.ts │ │ │ ├── pause.ts │ │ │ ├── slash-lg.ts │ │ │ ├── stop-fill.ts │ │ │ ├── tv-fill.ts │ │ │ ├── calendar3-fill.ts │ │ │ ├── microsoft.ts │ │ │ ├── app.ts │ │ │ ├── mask.ts │ │ │ ├── phone-fill.ts │ │ │ ├── plus-lg.ts │ │ │ ├── check2.ts │ │ │ ├── dash-circle-fill.ts │ │ │ ├── file.ts │ │ │ ├── paragraph.ts │ │ │ ├── power.ts │ │ │ ├── record-circle-fill.ts │ │ │ ├── record2.ts │ │ │ ├── strava.ts │ │ │ ├── tablet-fill.ts │ │ │ ├── bookmark-fill.ts │ │ │ ├── h-circle-fill.ts │ │ │ ├── tiktok.ts │ │ │ ├── bag-fill.ts │ │ │ ├── chevron-up.ts │ │ │ ├── clock-fill.ts │ │ │ ├── dice-1-fill.ts │ │ │ ├── exclamation.ts │ │ │ ├── lock-fill.ts │ │ │ ├── magnet.ts │ │ │ ├── mouse.ts │ │ │ ├── play-fill.ts │ │ │ ├── square-half.ts │ │ │ ├── type-h1.ts │ │ │ ├── caret-up-fill.ts │ │ │ ├── check.ts │ │ │ ├── columns.ts │ │ │ ├── exclamation-lg.ts │ │ │ ├── h-circle.ts │ │ │ ├── laptop-fill.ts │ │ │ ├── play.ts │ │ │ ├── rulers.ts │ │ │ ├── square.ts │ │ │ ├── three-dots.ts │ │ │ ├── windows.ts │ │ │ ├── capsule.ts │ │ │ ├── caret-left.ts │ │ │ ├── chat-left-fill.ts │ │ │ ├── icon7-circle-fill.ts │ │ │ ├── key-fill.ts │ │ │ ├── record-btn-fill.ts │ │ │ ├── usb-c.ts │ │ │ ├── align-bottom.ts │ │ │ ├── bag.ts │ │ │ ├── caret-down-fill.ts │ │ │ ├── caret-left-fill.ts │ │ │ ├── caret-up.ts │ │ │ ├── easel3-fill.ts │ │ │ ├── exclude.ts │ │ │ ├── file-minus-fill.ts │ │ │ ├── forward-fill.ts │ │ │ ├── icon1-circle-fill.ts │ │ │ ├── record2-fill.ts │ │ │ ├── slash-circle-fill.ts │ │ │ ├── align-top.ts │ │ │ ├── caret-down.ts │ │ │ ├── caret-right-fill.ts │ │ │ ├── chat-right-fill.ts │ │ │ ├── icon7-circle.ts │ │ │ ├── pause-fill.ts │ │ │ ├── record-circle.ts │ │ │ ├── reply-fill.ts │ │ │ ├── segmented-nav.ts │ │ │ ├── unlock-fill.ts │ │ │ ├── arrow-up-left.ts │ │ │ ├── back.ts │ │ │ ├── caret-right.ts │ │ │ ├── dash-square-fill.ts │ │ │ ├── door-closed-fill.ts │ │ │ ├── eye-fill.ts │ │ │ ├── icon1-circle.ts │ │ │ ├── ladder.ts │ │ │ ├── skip-end-fill.ts │ │ │ ├── x-lg.ts │ │ │ ├── alt.ts │ │ │ ├── arrow-up.ts │ │ │ ├── bell-fill.ts │ │ │ ├── bookshelf.ts │ │ │ ├── bounding-box.ts │ │ │ ├── chevron-down.ts │ │ │ ├── chevron-left.ts │ │ │ ├── clock.ts │ │ │ ├── cursor-fill.ts │ │ │ ├── dash-circle.ts │ │ │ ├── h-square-fill.ts │ │ │ ├── play-circle-fill.ts │ │ │ ├── skip-start-fill.ts │ │ │ ├── stop.ts │ │ │ ├── suit-diamond-fill.ts │ │ │ ├── toggle2-on.ts │ │ │ ├── x.ts │ │ │ ├── arrow-down-left.ts │ │ │ ├── arrow-up-right.ts │ │ │ ├── chevron-right.ts │ │ │ ├── door-closed.ts │ │ │ ├── file-break-fill.ts │ │ │ ├── headphones.ts │ │ │ ├── laptop.ts │ │ │ ├── paperclip.ts │ │ │ ├── pie-chart-fill.ts │ │ │ ├── plus-circle-fill.ts │ │ │ ├── shift-fill.ts │ │ │ ├── skip-end.ts │ │ │ ├── tag-fill.ts │ │ │ ├── toggle-off.ts │ │ │ ├── vinyl-fill.ts │ │ │ ├── arrow-down.ts │ │ │ ├── arrow-left.ts │ │ │ ├── box2.ts │ │ │ ├── calendar-fill.ts │ │ │ ├── chevron-compact-up.ts │ │ │ ├── front.ts │ │ │ ├── mouse2-fill.ts │ │ │ ├── phone-landscape-fill.ts │ │ │ ├── tablet-landscape-fill.ts │ │ │ ├── toggle2-off.ts │ │ │ ├── triangle-fill.ts │ │ │ ├── voicemail.ts │ │ │ ├── volume-off-fill.ts │ │ │ ├── arrow-down-right.ts │ │ │ ├── arrow-right.ts │ │ │ ├── cash.ts │ │ │ ├── dice-1.ts │ │ │ ├── dice-2-fill.ts │ │ │ ├── file-earmark.ts │ │ │ ├── filter.ts │ │ │ ├── gender-male.ts │ │ │ ├── heartbreak-fill.ts │ │ │ ├── icon7-square-fill.ts │ │ │ ├── lock.ts │ │ │ ├── person-heart.ts │ │ │ ├── search.ts │ │ │ ├── skip-start.ts │ │ │ ├── stop-circle-fill.ts │ │ │ ├── subtract.ts │ │ │ ├── align-end.ts │ │ │ ├── box2-fill.ts │ │ │ ├── calendar.ts │ │ │ ├── chat-square-fill.ts │ │ │ ├── compass-fill.ts │ │ │ ├── currency-yen.ts │ │ │ ├── display-fill.ts │ │ │ ├── funnel-fill.ts │ │ │ ├── icon1-square-fill.ts │ │ │ ├── image-alt.ts │ │ │ ├── lightning-fill.ts │ │ │ ├── list.ts │ │ │ ├── option.ts │ │ │ ├── phone.ts │ │ │ ├── pie-chart.ts │ │ │ ├── play-btn-fill.ts │ │ │ ├── share-fill.ts │ │ │ ├── slash-square-fill.ts │ │ │ ├── three-dots-vertical.ts │ │ │ ├── align-center.ts │ │ │ ├── align-middle.ts │ │ │ ├── battery.ts │ │ │ ├── easel3.ts │ │ │ ├── file-earmark-fill.ts │ │ │ ├── hr.ts │ │ │ ├── layout-sidebar.ts │ │ │ ├── layout-split.ts │ │ │ ├── pentagon-fill.ts │ │ │ ├── pip-fill.ts │ │ │ ├── tablet.ts │ │ │ ├── usb-drive-fill.ts │ │ │ ├── align-start.ts │ │ │ ├── arrow-up-short.ts │ │ │ ├── bookmark.ts │ │ │ ├── chat-fill.ts │ │ │ ├── crop.ts │ │ │ ├── diamond-fill.ts │ │ │ ├── file-ruled-fill.ts │ │ │ ├── gender-female.ts │ │ │ ├── slash-circle.ts │ │ │ ├── usb-fill.ts │ │ │ ├── bag-dash-fill.ts │ │ │ ├── calendar3-event-fill.ts │ │ │ ├── credit-card-fill.ts │ │ │ ├── file-plus-fill.ts │ │ │ ├── hexagon-fill.ts │ │ │ ├── hexagon.ts │ │ │ ├── signpost.ts │ │ │ ├── stop-btn-fill.ts │ │ │ ├── suit-heart-fill.ts │ │ │ ├── unlock.ts │ │ │ ├── vinyl.ts │ │ │ ├── arrow-down-short.ts │ │ │ ├── arrow-left-short.ts │ │ │ ├── calendar3-range-fill.ts │ │ │ ├── check-lg.ts │ │ │ ├── chevron-compact-down.ts │ │ │ ├── chevron-compact-left.ts │ │ │ ├── code.ts │ │ │ ├── disc-fill.ts │ │ │ ├── eject-fill.ts │ │ │ ├── explicit-fill.ts │ │ │ ├── file-play-fill.ts │ │ │ ├── filter-left.ts │ │ │ ├── fonts.ts │ │ │ ├── plus-square-fill.ts │ │ │ ├── usb.ts │ │ │ ├── vr.ts │ │ │ ├── arrow-right-short.ts │ │ │ ├── bar-chart-line-fill.ts │ │ │ ├── bucket-fill.ts │ │ │ ├── caret-up-square-fill.ts │ │ │ ├── chat-left.ts │ │ │ ├── chevron-compact-right.ts │ │ │ ├── filter-right.ts │ │ │ ├── hexagon-half.ts │ │ │ ├── hurricane.ts │ │ │ ├── plus-circle.ts │ │ │ ├── record-btn.ts │ │ │ ├── stop-circle.ts │ │ │ ├── asterisk.ts │ │ │ ├── bookmark-dash-fill.ts │ │ │ ├── chat-right.ts │ │ │ ├── files-alt.ts │ │ │ ├── nut-fill.ts │ │ │ ├── pass-fill.ts │ │ │ ├── peace-fill.ts │ │ │ ├── signpost-fill.ts │ │ │ ├── skip-end-circle-fill.ts │ │ │ ├── twitch.ts │ │ │ ├── type-underline.ts │ │ │ ├── camera-video-fill.ts │ │ │ ├── caret-down-square-fill.ts │ │ │ ├── compass.ts │ │ │ ├── cursor.ts │ │ │ ├── dice-3-fill.ts │ │ │ ├── file-check-fill.ts │ │ │ ├── file-person.ts │ │ │ ├── graph-up.ts │ │ │ ├── lightning-charge-fill.ts │ │ │ ├── list-nested.ts │ │ │ ├── mic-fill.ts │ │ │ ├── music-note.ts │ │ │ ├── pc.ts │ │ │ ├── person-dash-fill.ts │ │ │ ├── play-circle.ts │ │ │ ├── save2-fill.ts │ │ │ ├── shift.ts │ │ │ ├── table.ts │ │ │ ├── type-italic.ts │ │ │ ├── usb-drive.ts │ │ │ ├── activity.ts │ │ │ ├── arrow-up-circle-fill.ts │ │ │ ├── caret-left-square-fill.ts │ │ │ ├── film.ts │ │ │ ├── info.ts │ │ │ ├── send.ts │ │ │ ├── skip-start-circle-fill.ts │ │ │ ├── upc.ts │ │ │ ├── arrow-90deg-up.ts │ │ │ ├── arrow-left-circle-fill.ts │ │ │ ├── bar-chart-line.ts │ │ │ ├── bookmark-heart-fill.ts │ │ │ ├── calendar-minus-fill.ts │ │ │ ├── calendar-range-fill.ts │ │ │ ├── calendar4.ts │ │ │ ├── caret-right-square-fill.ts │ │ │ ├── cloud-fill.ts │ │ │ ├── cloudy.ts │ │ │ ├── file-post-fill.ts │ │ │ ├── files.ts │ │ │ ├── graph-down.ts │ │ │ ├── peace.ts │ │ │ ├── person-circle.ts │ │ │ ├── signpost-split-fill.ts │ │ │ ├── thermometer.ts │ │ │ ├── volume-off.ts │ │ │ ├── wallet.ts │ │ │ ├── archive-fill.ts │ │ │ ├── arrow-down-circle-fill.ts │ │ │ ├── bag-heart-fill.ts │ │ │ └── check-circle-fill.ts │ │ ├── types │ │ │ └── color-theme.type.ts │ │ └── enums │ │ │ └── color-theme.enum.ts │ └── public-api.ts │ ├── ng-package.json │ └── tsconfig.spec.json ├── tools └── tmpl │ └── component.ts.tpl ├── e2e ├── tsconfig.json └── src │ └── app.po.ts ├── .editorconfig ├── CONTRIBUTING.md ├── tsconfig.spec.json ├── tsconfig.app.json ├── browserslist └── .github └── dependabot.yml /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | package-lock=true 3 | legacy-peer-deps=true 4 | -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- 1 | import '@angular/localize/init'; 2 | import 'zone.js/dist/zone'; 3 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avmaisak/ngx-bootstrap-icons/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /src/app/apis/api.model.ts: -------------------------------------------------------------------------------- 1 | export interface ISearch { 2 | skip: number, 3 | take: number, 4 | text: string | null, 5 | } 6 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/providers/icon.provider.ts: -------------------------------------------------------------------------------- 1 | export class Icons { 2 | constructor(private _icons: object) { } 3 | } 4 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | template: '', 6 | }) 7 | export class AppComponent { } 8 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/components/header/header/header.component.scss: -------------------------------------------------------------------------------- 1 | @import "~bootstrap/scss/functions"; 2 | @import '~bootstrap/scss/variables'; 3 | 4 | .bg-header { 5 | background: $indigo-500; 6 | } 7 | -------------------------------------------------------------------------------- /tools/tmpl/component.ts.tpl: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * __ICON_NAME__. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/__ICON_NAME__/}. 7 | */ 8 | export const __EXPORT_NAME__ = `__PAYLOAD__`; 9 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/components/bs-image/bs-image/bs-image.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-bs-image', 5 | templateUrl: './bs-image.component.html', 6 | }) 7 | export class BsImageComponent { 8 | } 9 | -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- 1 | import { Routes } from '@angular/router'; 2 | 3 | export const iconRoutes: Routes = [ 4 | { path: '', pathMatch: 'full', redirectTo: 'icons' }, 5 | { path: 'icons', loadChildren: () => import('./route-modules/icons-module/icons.module').then((m) => m.IconsModule) }, 6 | ]; 7 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/ng-package.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", 3 | "dest": "../../dist", 4 | "lib": { 5 | "entryFile": "src/public-api.ts" 6 | }, 7 | "allowedNonPeerDependencies": [ 8 | "bootstrap-icons" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/icons-module.routes.ts: -------------------------------------------------------------------------------- 1 | import { Routes } from '@angular/router'; 2 | 3 | import { IconsSearchPageComponent } from './pages/icons-search-page/icons-search-page.component'; 4 | 5 | export const iconModuleRoutes: Routes = [{ path: '', component: IconsSearchPageComponent }]; 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/components/header/header/header.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-header', 5 | templateUrl: './header.component.html', 6 | styleUrls: ['./header.component.scss'], 7 | }) 8 | export class HeaderComponent { 9 | } 10 | -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- 1 | @import '~bootstrap/scss/bootstrap'; 2 | 3 | .cursor-pointer { 4 | cursor: pointer; 5 | } 6 | 7 | .icon-item { 8 | .btn.btn-light { 9 | opacity: 0; 10 | } 11 | 12 | &:hover { 13 | .btn.btn-light { 14 | opacity: 1; 15 | transition: 0.3s; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/app/stores/icons-store/models.ts: -------------------------------------------------------------------------------- 1 | import { IconNamesEnum } from 'projects/ngx-bootstrap-icons-lib/src/lib/enums/icon-names.enum'; 2 | import { ISearch } from 'src/app/apis/api.model'; 3 | 4 | export interface IStoreModelState { 5 | icons: IconNamesEnum[], 6 | search: ISearch, 7 | selectedIcon?: IconNamesEnum, 8 | } 9 | -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get(browser.baseUrl) as Promise; 6 | } 7 | 8 | getTitleText() { 9 | return element(by.css('app-root .content span')).getText() as Promise; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { RouterModule } from '@angular/router'; 3 | 4 | import { iconRoutes } from './app.routes'; 5 | 6 | @NgModule({ 7 | imports: [RouterModule.forRoot(iconRoutes)], 8 | exports: [RouterModule], 9 | }) 10 | export class AppRoutingModule { } 11 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | When contributing to this repository, please first discuss the change you wish to make via issue, 4 | email, or any other method with the owners of this repository before making a change. 5 | 6 | ## License 7 | 8 | By contributing, you agree that your contributions will be licensed under its MIT License. 9 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/components/bs-image/bs-image/bs-image.component.html: -------------------------------------------------------------------------------- 1 | Bootstrap Icons 5 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../../out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts" 12 | ], 13 | "include": [ 14 | "**/*.spec.ts", 15 | "**/*.d.ts" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts", 12 | "src/polyfills.ts" 13 | ], 14 | "include": [ 15 | "src/**/*.spec.ts", 16 | "src/**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/icons-module-routing.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { RouterModule } from '@angular/router'; 3 | 4 | import { iconModuleRoutes } from './icons-module.routes'; 5 | 6 | @NgModule({ 7 | imports: [RouterModule.forChild(iconModuleRoutes)], 8 | exports: [RouterModule], 9 | }) 10 | export class IconsModuleRoutingModule { } 11 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [ 6 | "node" 7 | ] 8 | }, 9 | "files": [ 10 | "src/main.ts", 11 | "src/polyfills.ts" 12 | ], 13 | "include": [ 14 | "src/**/*.ts" 15 | ], 16 | "exclude": [ 17 | "src/test.ts", 18 | "src/**/*.spec.ts" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dot.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dot. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dot/}. 7 | */ 8 | export const dot = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/components/bs-image/bs-image.module.ts: -------------------------------------------------------------------------------- 1 | import { CommonModule } from '@angular/common'; 2 | import { NgModule } from '@angular/core'; 3 | 4 | import { BsImageComponent } from './bs-image/bs-image.component'; 5 | 6 | @NgModule({ 7 | declarations: [BsImageComponent], 8 | imports: [CommonModule], 9 | exports: [BsImageComponent], 10 | }) 11 | export class BsImageModule { } 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/circle-fill/}. 7 | */ 8 | export const circleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) enableProdMode(); 8 | 9 | platformBrowserDynamic().bootstrapModule(AppModule) 10 | .catch((err) => console.error(err)); 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dash.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dash. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dash/}. 7 | */ 8 | export const dash = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/egg-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * egg-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/egg-fill/}. 7 | */ 8 | export const eggFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/circle/}. 7 | */ 8 | export const circle = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record/}. 7 | */ 8 | export const record = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/slash.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * slash. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/slash/}. 7 | */ 8 | export const slash = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record-fill/}. 7 | */ 8 | export const recordFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/amd.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * amd. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/amd/}. 7 | */ 8 | export const amd = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/circle-half.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * circle-half. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/circle-half/}. 7 | */ 8 | export const circleHalf = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dash-lg.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dash-lg. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dash-lg/}. 7 | */ 8 | export const dashLg = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/toggle-on.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * toggle-on. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/toggle-on/}. 7 | */ 8 | export const toggleOn = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cone.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cone. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cone/}. 7 | */ 8 | export const cone = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/plus.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * plus. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/plus/}. 7 | */ 8 | export const plus = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/square-fill/}. 7 | */ 8 | export const squareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/types/color-theme.type.ts: -------------------------------------------------------------------------------- 1 | /** 2 | Color Themes. 3 | * 4 | * {@link https://getbootstrap.com/docs/5.0/utilities/colors/#color} 5 | */ 6 | export type ColorThemeType = 7 | | 'text-primary' 8 | | 'text-secondary' 9 | | 'text-success' 10 | | 'text-danger' 11 | | 'text-warning' 12 | | 'text-info' 13 | | 'text-dark' 14 | | 'text-body' 15 | | 'text-muted' 16 | | 'text-black-50' 17 | | 'text-white-50'; 18 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/person-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * person-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/person-fill/}. 7 | */ 8 | export const personFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/usb-c-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * usb-c-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/usb-c-fill/}. 7 | */ 8 | export const usbCFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-fill/}. 7 | */ 8 | export const fileFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/magnet-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * magnet-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/magnet-fill/}. 7 | */ 8 | export const magnetFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/mouse-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * mouse-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/mouse-fill/}. 7 | */ 8 | export const mouseFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/union.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * union. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/union/}. 7 | */ 8 | export const union = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- 1 | # This file is used by the build system to adjust CSS and JS output to support the specified browsers below. 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | 5 | # You can see what browsers were selected by your queries by running: 6 | # npx browserslist 7 | 8 | > 0.5% 9 | last 2 versions 10 | Firefox ESR 11 | not dead 12 | not IE 9-11 # For IE 9-11 support, remove 'not'. -------------------------------------------------------------------------------- /src/app/stores/icons-store/store.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@angular/core'; 2 | import { Store, StoreConfig } from '@datorama/akita'; 3 | 4 | import { createInitialState } from './helpers'; 5 | import { IStoreModelState } from './models'; 6 | 7 | @Injectable({ providedIn: 'root' }) 8 | @StoreConfig({ name: 'icons', resettable: true }) 9 | export class IconsStore extends Store { 10 | constructor() { 11 | super(createInitialState()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/border-all.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * border-all. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/border-all/}. 7 | */ 8 | export const borderAll = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cloudy-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cloudy-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cloudy-fill/}. 7 | */ 8 | export const cloudyFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/geo-alt-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * geo-alt-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/geo-alt-fill/}. 7 | */ 8 | export const geoAltFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/heart-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * heart-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/heart-fill/}. 7 | */ 8 | export const heartFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pause.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pause. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pause/}. 7 | */ 8 | export const pause = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/slash-lg.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * slash-lg. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/slash-lg/}. 7 | */ 8 | export const slashLg = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/stop-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * stop-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/stop-fill/}. 7 | */ 8 | export const stopFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/tv-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * tv-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/tv-fill/}. 7 | */ 8 | export const tvFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar3-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar3-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar3-fill/}. 7 | */ 8 | export const calendar3Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/microsoft.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * microsoft. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/microsoft/}. 7 | */ 8 | export const microsoft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/app.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * app. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/app/}. 7 | */ 8 | export const app = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/mask.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * mask. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/mask/}. 7 | */ 8 | export const mask = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/phone-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * phone-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/phone-fill/}. 7 | */ 8 | export const phoneFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/plus-lg.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * plus-lg. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/plus-lg/}. 7 | */ 8 | export const plusLg = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/check2.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * check2. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/check2/}. 7 | */ 8 | export const check2 = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dash-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dash-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dash-circle-fill/}. 7 | */ 8 | export const dashCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file/}. 7 | */ 8 | export const file = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/paragraph.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * paragraph. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/paragraph/}. 7 | */ 8 | export const paragraph = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/power.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * power. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/power/}. 7 | */ 8 | export const power = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record-circle-fill/}. 7 | */ 8 | export const recordCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record2.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record2. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record2/}. 7 | */ 8 | export const record2 = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/strava.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * strava. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/strava/}. 7 | */ 8 | export const strava = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/tablet-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * tablet-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/tablet-fill/}. 7 | */ 8 | export const tabletFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bookmark-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bookmark-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bookmark-fill/}. 7 | */ 8 | export const bookmarkFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/h-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * h-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/h-circle-fill/}. 7 | */ 8 | export const hCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/tiktok.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * tiktok. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/tiktok/}. 7 | */ 8 | export const tiktok = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /src/app/route-modules/icons-module/components/search-bar/search-bar.module.ts: -------------------------------------------------------------------------------- 1 | import { CommonModule } from '@angular/common'; 2 | import { NgModule } from '@angular/core'; 3 | import { ReactiveFormsModule } from '@angular/forms'; 4 | 5 | import { SearchBarComponent } from './search-bar/search-bar.component'; 6 | 7 | @NgModule({ 8 | declarations: [SearchBarComponent], 9 | imports: [CommonModule, ReactiveFormsModule], 10 | exports: [SearchBarComponent], 11 | }) 12 | export class SearchBarModule { } 13 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bag-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bag-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bag-fill/}. 7 | */ 8 | export const bagFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-up.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-up. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-up/}. 7 | */ 8 | export const chevronUp = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/clock-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * clock-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/clock-fill/}. 7 | */ 8 | export const clockFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dice-1-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dice-1-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dice-1-fill/}. 7 | */ 8 | export const dice1Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/exclamation.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * exclamation. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/exclamation/}. 7 | */ 8 | export const exclamation = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/lock-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * lock-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/lock-fill/}. 7 | */ 8 | export const lockFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/magnet.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * magnet. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/magnet/}. 7 | */ 8 | export const magnet = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/mouse.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * mouse. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/mouse/}. 7 | */ 8 | export const mouse = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/play-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * play-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/play-fill/}. 7 | */ 8 | export const playFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/square-half.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * square-half. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/square-half/}. 7 | */ 8 | export const squareHalf = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/type-h1.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * type-h1. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/type-h1/}. 7 | */ 8 | export const typeH1 = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-up-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-up-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-up-fill/}. 7 | */ 8 | export const caretUpFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/check.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * check. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/check/}. 7 | */ 8 | export const check = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/columns.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * columns. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/columns/}. 7 | */ 8 | export const columns = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/exclamation-lg.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * exclamation-lg. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/exclamation-lg/}. 7 | */ 8 | export const exclamationLg = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/h-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * h-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/h-circle/}. 7 | */ 8 | export const hCircle = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/laptop-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * laptop-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/laptop-fill/}. 7 | */ 8 | export const laptopFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/play.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * play. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/play/}. 7 | */ 8 | export const play = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/rulers.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * rulers. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/rulers/}. 7 | */ 8 | export const rulers = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/square.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * square. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/square/}. 7 | */ 8 | export const square = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/three-dots.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * three-dots. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/three-dots/}. 7 | */ 8 | export const threeDots = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/windows.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * windows. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/windows/}. 7 | */ 8 | export const windows = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/capsule.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * capsule. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/capsule/}. 7 | */ 8 | export const capsule = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-left/}. 7 | */ 8 | export const caretLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chat-left-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chat-left-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chat-left-fill/}. 7 | */ 8 | export const chatLeftFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/icon7-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * icon7-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/icon7-circle-fill/}. 7 | */ 8 | export const icon7CircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/key-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * key-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/key-fill/}. 7 | */ 8 | export const keyFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record-btn-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record-btn-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record-btn-fill/}. 7 | */ 8 | export const recordBtnFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/usb-c.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * usb-c. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/usb-c/}. 7 | */ 8 | export const usbC = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/align-bottom.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * align-bottom. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/align-bottom/}. 7 | */ 8 | export const alignBottom = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bag.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bag. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bag/}. 7 | */ 8 | export const bag = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-down-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-down-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-down-fill/}. 7 | */ 8 | export const caretDownFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-left-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-left-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-left-fill/}. 7 | */ 8 | export const caretLeftFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-up.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-up. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-up/}. 7 | */ 8 | export const caretUp = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/easel3-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * easel3-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/easel3-fill/}. 7 | */ 8 | export const easel3Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/exclude.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * exclude. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/exclude/}. 7 | */ 8 | export const exclude = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-minus-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-minus-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-minus-fill/}. 7 | */ 8 | export const fileMinusFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/forward-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * forward-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/forward-fill/}. 7 | */ 8 | export const forwardFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/icon1-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * icon1-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/icon1-circle-fill/}. 7 | */ 8 | export const icon1CircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record2-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record2-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record2-fill/}. 7 | */ 8 | export const record2Fill = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/slash-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * slash-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/slash-circle-fill/}. 7 | */ 8 | export const slashCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/align-top.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * align-top. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/align-top/}. 7 | */ 8 | export const alignTop = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-down.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-down. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-down/}. 7 | */ 8 | export const caretDown = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-right-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-right-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-right-fill/}. 7 | */ 8 | export const caretRightFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chat-right-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chat-right-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chat-right-fill/}. 7 | */ 8 | export const chatRightFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/icon7-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * icon7-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/icon7-circle/}. 7 | */ 8 | export const icon7Circle = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pause-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pause-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pause-fill/}. 7 | */ 8 | export const pauseFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record-circle/}. 7 | */ 8 | export const recordCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/reply-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * reply-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/reply-fill/}. 7 | */ 8 | export const replyFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/segmented-nav.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * segmented-nav. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/segmented-nav/}. 7 | */ 8 | export const segmentedNav = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/unlock-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * unlock-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/unlock-fill/}. 7 | */ 8 | export const unlockFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-up-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-up-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-up-left/}. 7 | */ 8 | export const arrowUpLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/back.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * back. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/back/}. 7 | */ 8 | export const back = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-right/}. 7 | */ 8 | export const caretRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dash-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dash-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dash-square-fill/}. 7 | */ 8 | export const dashSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/door-closed-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * door-closed-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/door-closed-fill/}. 7 | */ 8 | export const doorClosedFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/eye-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * eye-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/eye-fill/}. 7 | */ 8 | export const eyeFill = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/icon1-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * icon1-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/icon1-circle/}. 7 | */ 8 | export const icon1Circle = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/ladder.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * ladder. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/ladder/}. 7 | */ 8 | export const ladder = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/skip-end-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * skip-end-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/skip-end-fill/}. 7 | */ 8 | export const skipEndFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/x-lg.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * x-lg. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/x-lg/}. 7 | */ 8 | export const xLg = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /src/app/stores/icons-store/helpers.ts: -------------------------------------------------------------------------------- 1 | import { IconNamesEnum } from 'projects/ngx-bootstrap-icons-lib/src/public-api'; 2 | import { ITEMS_PER_PAGE } from 'src/app/constants'; 3 | 4 | import { IStoreModelState } from './models'; 5 | 6 | /** 7 | * createInitialState 8 | * 9 | * @returns default state. 10 | */ 11 | export function createInitialState(): IStoreModelState { 12 | return { 13 | icons: [] as IconNamesEnum[], 14 | search: { skip: 0, take: ITEMS_PER_PAGE, text: '' }, 15 | selectedIcon: null, 16 | }; 17 | } 18 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/alt.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * alt. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/alt/}. 7 | */ 8 | export const alt = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-up.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-up. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-up/}. 7 | */ 8 | export const arrowUp = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bell-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bell-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bell-fill/}. 7 | */ 8 | export const bellFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bookshelf.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bookshelf. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bookshelf/}. 7 | */ 8 | export const bookshelf = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bounding-box.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bounding-box. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bounding-box/}. 7 | */ 8 | export const boundingBox = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-down.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-down. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-down/}. 7 | */ 8 | export const chevronDown = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-left/}. 7 | */ 8 | export const chevronLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/clock.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * clock. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/clock/}. 7 | */ 8 | export const clock = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cursor-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cursor-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cursor-fill/}. 7 | */ 8 | export const cursorFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dash-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dash-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dash-circle/}. 7 | */ 8 | export const dashCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/h-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * h-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/h-square-fill/}. 7 | */ 8 | export const hSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/play-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * play-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/play-circle-fill/}. 7 | */ 8 | export const playCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/skip-start-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * skip-start-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/skip-start-fill/}. 7 | */ 8 | export const skipStartFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/stop.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * stop. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/stop/}. 7 | */ 8 | export const stop = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/suit-diamond-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * suit-diamond-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/suit-diamond-fill/}. 7 | */ 8 | export const suitDiamondFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/toggle2-on.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * toggle2-on. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/toggle2-on/}. 7 | */ 8 | export const toggle2On = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/x.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * x. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/x/}. 7 | */ 8 | export const x = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/public-api.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * Public API Surface of ngx-bootstrap-icons-lib 3 | */ 4 | 5 | export * from './lib/components/ngx-bootstrap-icons/ngx-bootstrap-icons.component'; 6 | export * from './lib/config/module.config'; 7 | export * from './lib/enums/color-theme.enum'; 8 | export * from './lib/enums/icon-names.enum'; 9 | export * from './lib/icons'; 10 | export * from './lib/ngx-bootstrap-icons.module'; 11 | export * from './lib/types/color-theme.type'; 12 | export * from './lib/types/icon-names.type'; 13 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-down-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-down-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-down-left/}. 7 | */ 8 | export const arrowDownLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-up-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-up-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-up-right/}. 7 | */ 8 | export const arrowUpRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-right/}. 7 | */ 8 | export const chevronRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/door-closed.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * door-closed. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/door-closed/}. 7 | */ 8 | export const doorClosed = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-break-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-break-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-break-fill/}. 7 | */ 8 | export const fileBreakFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/headphones.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * headphones. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/headphones/}. 7 | */ 8 | export const headphones = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/laptop.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * laptop. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/laptop/}. 7 | */ 8 | export const laptop = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/paperclip.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * paperclip. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/paperclip/}. 7 | */ 8 | export const paperclip = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pie-chart-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pie-chart-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pie-chart-fill/}. 7 | */ 8 | export const pieChartFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/plus-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * plus-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/plus-circle-fill/}. 7 | */ 8 | export const plusCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/shift-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * shift-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/shift-fill/}. 7 | */ 8 | export const shiftFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/skip-end.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * skip-end. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/skip-end/}. 7 | */ 8 | export const skipEnd = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/tag-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * tag-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/tag-fill/}. 7 | */ 8 | export const tagFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/toggle-off.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * toggle-off. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/toggle-off/}. 7 | */ 8 | export const toggleOff = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/vinyl-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * vinyl-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/vinyl-fill/}. 7 | */ 8 | export const vinylFill = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-down.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-down. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-down/}. 7 | */ 8 | export const arrowDown = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-left/}. 7 | */ 8 | export const arrowLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/box2.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * box2. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/box2/}. 7 | */ 8 | export const box2 = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar-fill/}. 7 | */ 8 | export const calendarFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-compact-up.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-compact-up. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-compact-up/}. 7 | */ 8 | export const chevronCompactUp = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/front.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * front. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/front/}. 7 | */ 8 | export const front = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/mouse2-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * mouse2-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/mouse2-fill/}. 7 | */ 8 | export const mouse2Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/phone-landscape-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * phone-landscape-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/phone-landscape-fill/}. 7 | */ 8 | export const phoneLandscapeFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/tablet-landscape-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * tablet-landscape-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/tablet-landscape-fill/}. 7 | */ 8 | export const tabletLandscapeFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/toggle2-off.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * toggle2-off. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/toggle2-off/}. 7 | */ 8 | export const toggle2Off = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/triangle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * triangle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/triangle-fill/}. 7 | */ 8 | export const triangleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/voicemail.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * voicemail. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/voicemail/}. 7 | */ 8 | export const voicemail = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/volume-off-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * volume-off-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/volume-off-fill/}. 7 | */ 8 | export const volumeOffFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/enums/color-theme.enum.ts: -------------------------------------------------------------------------------- 1 | /** 2 | Color Themes. 3 | * 4 | * {@link https://getbootstrap.com/docs/5.0/utilities/colors/#color} 5 | */ 6 | export enum ColorTheme { 7 | Primary = 'text-primary', 8 | Secondary = 'text-secondary', 9 | Success = 'text-success', 10 | Danger = 'text-danger', 11 | Warning = 'text-warning', 12 | Info = 'text-info', 13 | Dark = 'text-dark', 14 | Body = 'text-body', 15 | Muted = 'text-muted', 16 | Black50 = 'text-black-50', 17 | White50 = 'text-white-50', 18 | } 19 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-down-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-down-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-down-right/}. 7 | */ 8 | export const arrowDownRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-right/}. 7 | */ 8 | export const arrowRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cash.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cash. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cash/}. 7 | */ 8 | export const cash = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dice-1.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dice-1. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dice-1/}. 7 | */ 8 | export const dice1 = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dice-2-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dice-2-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dice-2-fill/}. 7 | */ 8 | export const dice2Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-earmark.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-earmark. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-earmark/}. 7 | */ 8 | export const fileEarmark = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/filter.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * filter. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/filter/}. 7 | */ 8 | export const filter = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/gender-male.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * gender-male. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/gender-male/}. 7 | */ 8 | export const genderMale = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/heartbreak-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * heartbreak-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/heartbreak-fill/}. 7 | */ 8 | export const heartbreakFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/icon7-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * icon7-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/icon7-square-fill/}. 7 | */ 8 | export const icon7SquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/lock.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * lock. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/lock/}. 7 | */ 8 | export const lock = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/person-heart.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * person-heart. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/person-heart/}. 7 | */ 8 | export const personHeart = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/search.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * search. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/search/}. 7 | */ 8 | export const search = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/skip-start.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * skip-start. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/skip-start/}. 7 | */ 8 | export const skipStart = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/stop-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * stop-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/stop-circle-fill/}. 7 | */ 8 | export const stopCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/subtract.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * subtract. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/subtract/}. 7 | */ 8 | export const subtract = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/align-end.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * align-end. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/align-end/}. 7 | */ 8 | export const alignEnd = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/box2-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * box2-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/box2-fill/}. 7 | */ 8 | export const box2Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar/}. 7 | */ 8 | export const calendar = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chat-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chat-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chat-square-fill/}. 7 | */ 8 | export const chatSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/compass-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * compass-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/compass-fill/}. 7 | */ 8 | export const compassFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/currency-yen.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * currency-yen. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/currency-yen/}. 7 | */ 8 | export const currencyYen = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/display-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * display-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/display-fill/}. 7 | */ 8 | export const displayFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/funnel-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * funnel-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/funnel-fill/}. 7 | */ 8 | export const funnelFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/icon1-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * icon1-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/icon1-square-fill/}. 7 | */ 8 | export const icon1SquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/image-alt.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * image-alt. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/image-alt/}. 7 | */ 8 | export const imageAlt = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/lightning-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * lightning-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/lightning-fill/}. 7 | */ 8 | export const lightningFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/list.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * list. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/list/}. 7 | */ 8 | export const list = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/option.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * option. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/option/}. 7 | */ 8 | export const option = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/phone.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * phone. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/phone/}. 7 | */ 8 | export const phone = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pie-chart.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pie-chart. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pie-chart/}. 7 | */ 8 | export const pieChart = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/play-btn-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * play-btn-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/play-btn-fill/}. 7 | */ 8 | export const playBtnFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/share-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * share-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/share-fill/}. 7 | */ 8 | export const shareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/slash-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * slash-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/slash-square-fill/}. 7 | */ 8 | export const slashSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/three-dots-vertical.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * three-dots-vertical. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/three-dots-vertical/}. 7 | */ 8 | export const threeDotsVertical = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/align-center.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * align-center. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/align-center/}. 7 | */ 8 | export const alignCenter = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/align-middle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * align-middle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/align-middle/}. 7 | */ 8 | export const alignMiddle = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/battery.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * battery. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/battery/}. 7 | */ 8 | export const battery = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/easel3.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * easel3. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/easel3/}. 7 | */ 8 | export const easel3 = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-earmark-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-earmark-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-earmark-fill/}. 7 | */ 8 | export const fileEarmarkFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/hr.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * hr. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/hr/}. 7 | */ 8 | export const hr = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/layout-sidebar.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * layout-sidebar. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/layout-sidebar/}. 7 | */ 8 | export const layoutSidebar = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/layout-split.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * layout-split. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/layout-split/}. 7 | */ 8 | export const layoutSplit = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pentagon-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pentagon-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pentagon-fill/}. 7 | */ 8 | export const pentagonFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pip-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pip-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pip-fill/}. 7 | */ 8 | export const pipFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/tablet.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * tablet. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/tablet/}. 7 | */ 8 | export const tablet = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/usb-drive-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * usb-drive-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/usb-drive-fill/}. 7 | */ 8 | export const usbDriveFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/align-start.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * align-start. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/align-start/}. 7 | */ 8 | export const alignStart = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-up-short.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-up-short. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-up-short/}. 7 | */ 8 | export const arrowUpShort = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bookmark.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bookmark. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bookmark/}. 7 | */ 8 | export const bookmark = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chat-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chat-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chat-fill/}. 7 | */ 8 | export const chatFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/crop.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * crop. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/crop/}. 7 | */ 8 | export const crop = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/diamond-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * diamond-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/diamond-fill/}. 7 | */ 8 | export const diamondFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-ruled-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-ruled-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-ruled-fill/}. 7 | */ 8 | export const fileRuledFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/gender-female.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * gender-female. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/gender-female/}. 7 | */ 8 | export const genderFemale = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/slash-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * slash-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/slash-circle/}. 7 | */ 8 | export const slashCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/usb-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * usb-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/usb-fill/}. 7 | */ 8 | export const usbFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bag-dash-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bag-dash-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bag-dash-fill/}. 7 | */ 8 | export const bagDashFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar3-event-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar3-event-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar3-event-fill/}. 7 | */ 8 | export const calendar3EventFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/credit-card-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * credit-card-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/credit-card-fill/}. 7 | */ 8 | export const creditCardFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-plus-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-plus-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-plus-fill/}. 7 | */ 8 | export const filePlusFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/hexagon-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * hexagon-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/hexagon-fill/}. 7 | */ 8 | export const hexagonFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/hexagon.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * hexagon. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/hexagon/}. 7 | */ 8 | export const hexagon = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/signpost.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * signpost. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/signpost/}. 7 | */ 8 | export const signpost = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/stop-btn-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * stop-btn-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/stop-btn-fill/}. 7 | */ 8 | export const stopBtnFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/suit-heart-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * suit-heart-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/suit-heart-fill/}. 7 | */ 8 | export const suitHeartFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/unlock.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * unlock. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/unlock/}. 7 | */ 8 | export const unlock = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/vinyl.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * vinyl. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/vinyl/}. 7 | */ 8 | export const vinyl = ` 9 | 10 | 11 | 12 | `; 13 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-down-short.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-down-short. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-down-short/}. 7 | */ 8 | export const arrowDownShort = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-left-short.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-left-short. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-left-short/}. 7 | */ 8 | export const arrowLeftShort = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar3-range-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar3-range-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar3-range-fill/}. 7 | */ 8 | export const calendar3RangeFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/check-lg.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * check-lg. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/check-lg/}. 7 | */ 8 | export const checkLg = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-compact-down.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-compact-down. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-compact-down/}. 7 | */ 8 | export const chevronCompactDown = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-compact-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-compact-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-compact-left/}. 7 | */ 8 | export const chevronCompactLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/code.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * code. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/code/}. 7 | */ 8 | export const code = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/disc-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * disc-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/disc-fill/}. 7 | */ 8 | export const discFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/eject-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * eject-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/eject-fill/}. 7 | */ 8 | export const ejectFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/explicit-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * explicit-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/explicit-fill/}. 7 | */ 8 | export const explicitFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-play-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-play-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-play-fill/}. 7 | */ 8 | export const filePlayFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/filter-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * filter-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/filter-left/}. 7 | */ 8 | export const filterLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/fonts.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * fonts. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/fonts/}. 7 | */ 8 | export const fonts = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/plus-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * plus-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/plus-square-fill/}. 7 | */ 8 | export const plusSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/usb.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * usb. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/usb/}. 7 | */ 8 | export const usb = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/vr.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * vr. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/vr/}. 7 | */ 8 | export const vr = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-right-short.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-right-short. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-right-short/}. 7 | */ 8 | export const arrowRightShort = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bar-chart-line-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bar-chart-line-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bar-chart-line-fill/}. 7 | */ 8 | export const barChartLineFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bucket-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bucket-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bucket-fill/}. 7 | */ 8 | export const bucketFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-up-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-up-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-up-square-fill/}. 7 | */ 8 | export const caretUpSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chat-left.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chat-left. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chat-left/}. 7 | */ 8 | export const chatLeft = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chevron-compact-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chevron-compact-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chevron-compact-right/}. 7 | */ 8 | export const chevronCompactRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/filter-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * filter-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/filter-right/}. 7 | */ 8 | export const filterRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/hexagon-half.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * hexagon-half. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/hexagon-half/}. 7 | */ 8 | export const hexagonHalf = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/hurricane.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * hurricane. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/hurricane/}. 7 | */ 8 | export const hurricane = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/plus-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * plus-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/plus-circle/}. 7 | */ 8 | export const plusCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/record-btn.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * record-btn. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/record-btn/}. 7 | */ 8 | export const recordBtn = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/stop-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * stop-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/stop-circle/}. 7 | */ 8 | export const stopCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/asterisk.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * asterisk. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/asterisk/}. 7 | */ 8 | export const asterisk = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bookmark-dash-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bookmark-dash-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bookmark-dash-fill/}. 7 | */ 8 | export const bookmarkDashFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/chat-right.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * chat-right. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/chat-right/}. 7 | */ 8 | export const chatRight = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/files-alt.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * files-alt. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/files-alt/}. 7 | */ 8 | export const filesAlt = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/nut-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * nut-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/nut-fill/}. 7 | */ 8 | export const nutFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pass-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pass-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pass-fill/}. 7 | */ 8 | export const passFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/peace-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * peace-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/peace-fill/}. 7 | */ 8 | export const peaceFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/signpost-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * signpost-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/signpost-fill/}. 7 | */ 8 | export const signpostFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/skip-end-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * skip-end-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/skip-end-circle-fill/}. 7 | */ 8 | export const skipEndCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/twitch.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * twitch. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/twitch/}. 7 | */ 8 | export const twitch = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/type-underline.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * type-underline. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/type-underline/}. 7 | */ 8 | export const typeUnderline = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | # Maintain dependencies for npm 9 | - package-ecosystem: "npm" 10 | directory: "/" 11 | schedule: 12 | interval: "weekly" 13 | # Add reviewers 14 | reviewers: 15 | - "avmaisak" 16 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/camera-video-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * camera-video-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/camera-video-fill/}. 7 | */ 8 | export const cameraVideoFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-down-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-down-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-down-square-fill/}. 7 | */ 8 | export const caretDownSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/compass.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * compass. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/compass/}. 7 | */ 8 | export const compass = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cursor.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cursor. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cursor/}. 7 | */ 8 | export const cursor = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/dice-3-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * dice-3-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/dice-3-fill/}. 7 | */ 8 | export const dice3Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-check-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-check-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-check-fill/}. 7 | */ 8 | export const fileCheckFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-person.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-person. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-person/}. 7 | */ 8 | export const filePerson = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/graph-up.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * graph-up. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/graph-up/}. 7 | */ 8 | export const graphUp = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/lightning-charge-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * lightning-charge-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/lightning-charge-fill/}. 7 | */ 8 | export const lightningChargeFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/list-nested.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * list-nested. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/list-nested/}. 7 | */ 8 | export const listNested = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/mic-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * mic-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/mic-fill/}. 7 | */ 8 | export const micFill = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/music-note.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * music-note. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/music-note/}. 7 | */ 8 | export const musicNote = ` 9 | 10 | 11 | 12 | `; 13 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/pc.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * pc. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/pc/}. 7 | */ 8 | export const pc = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/person-dash-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * person-dash-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/person-dash-fill/}. 7 | */ 8 | export const personDashFill = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/play-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * play-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/play-circle/}. 7 | */ 8 | export const playCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/save2-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * save2-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/save2-fill/}. 7 | */ 8 | export const save2Fill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/shift.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * shift. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/shift/}. 7 | */ 8 | export const shift = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/table.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * table. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/table/}. 7 | */ 8 | export const table = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/type-italic.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * type-italic. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/type-italic/}. 7 | */ 8 | export const typeItalic = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/usb-drive.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * usb-drive. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/usb-drive/}. 7 | */ 8 | export const usbDrive = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/activity.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * activity. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/activity/}. 7 | */ 8 | export const activity = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-up-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-up-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-up-circle-fill/}. 7 | */ 8 | export const arrowUpCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-left-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-left-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-left-square-fill/}. 7 | */ 8 | export const caretLeftSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/film.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * film. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/film/}. 7 | */ 8 | export const film = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/info.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * info. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/info/}. 7 | */ 8 | export const info = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/send.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * send. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/send/}. 7 | */ 8 | export const send = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/skip-start-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * skip-start-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/skip-start-circle-fill/}. 7 | */ 8 | export const skipStartCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/upc.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * upc. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/upc/}. 7 | */ 8 | export const upc = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-90deg-up.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-90deg-up. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-90deg-up/}. 7 | */ 8 | export const arrow90DegUp = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-left-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-left-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-left-circle-fill/}. 7 | */ 8 | export const arrowLeftCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bar-chart-line.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bar-chart-line. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bar-chart-line/}. 7 | */ 8 | export const barChartLine = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bookmark-heart-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bookmark-heart-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bookmark-heart-fill/}. 7 | */ 8 | export const bookmarkHeartFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar-minus-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar-minus-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar-minus-fill/}. 7 | */ 8 | export const calendarMinusFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar-range-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar-range-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar-range-fill/}. 7 | */ 8 | export const calendarRangeFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/calendar4.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * calendar4. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/calendar4/}. 7 | */ 8 | export const calendar4 = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/caret-right-square-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * caret-right-square-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/caret-right-square-fill/}. 7 | */ 8 | export const caretRightSquareFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cloud-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cloud-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cloud-fill/}. 7 | */ 8 | export const cloudFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/cloudy.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * cloudy. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/cloudy/}. 7 | */ 8 | export const cloudy = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/file-post-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * file-post-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/file-post-fill/}. 7 | */ 8 | export const filePostFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/files.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * files. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/files/}. 7 | */ 8 | export const files = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/graph-down.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * graph-down. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/graph-down/}. 7 | */ 8 | export const graphDown = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/peace.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * peace. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/peace/}. 7 | */ 8 | export const peace = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/person-circle.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * person-circle. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/person-circle/}. 7 | */ 8 | export const personCircle = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/signpost-split-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * signpost-split-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/signpost-split-fill/}. 7 | */ 8 | export const signpostSplitFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/thermometer.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * thermometer. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/thermometer/}. 7 | */ 8 | export const thermometer = ` 9 | 10 | 11 | `; 12 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/volume-off.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * volume-off. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/volume-off/}. 7 | */ 8 | export const volumeOff = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/wallet.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * wallet. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/wallet/}. 7 | */ 8 | export const wallet = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ngx Bootstrap Icons", 3 | "short_name": "Bootstrap Icons", 4 | "icons": [{ 5 | "src": "https://icons.getbootstrap.com/assets/img/favicons/android-chrome-192x192.png", 6 | "sizes": "192x192", 7 | "type": "image/png" 8 | }, 9 | { 10 | "src": "https://icons.getbootstrap.com/assets/img/favicons/android-chrome-512x512.png", 11 | "sizes": "512x512", 12 | "type": "image/png" 13 | } 14 | ], 15 | "start_url": "/", 16 | "theme_color": "#7952b3", 17 | "background_color": "#7952b3", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/archive-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * archive-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/archive-fill/}. 7 | */ 8 | export const archiveFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/arrow-down-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * arrow-down-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/arrow-down-circle-fill/}. 7 | */ 8 | export const arrowDownCircleFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/bag-heart-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * bag-heart-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/bag-heart-fill/}. 7 | */ 8 | export const bagHeartFill = ` 9 | 10 | `; 11 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-icons-lib/src/lib/icons/check-circle-fill.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable max-len */ 2 | 3 | /** 4 | * check-circle-fill. 5 | * 6 | * {@link https://icons.getbootstrap.com/icons/check-circle-fill/}. 7 | */ 8 | export const checkCircleFill = ` 9 | 10 | `; 11 | --------------------------------------------------------------------------------