Add bootstrap icons to change-notetype

This commit is contained in:
Matthias M 2021-11-15 11:38:10 +01:00
parent c9c93567e9
commit cb3df5f1be
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@ load("//ts:prettier.bzl", "prettier_test")
load("//ts:eslint.bzl", "eslint_test")
load("//ts/svelte:svelte.bzl", "compile_svelte", "svelte_check")
load("//ts:esbuild.bzl", "esbuild")
load("//ts:vendor.bzl", "copy_bootstrap_icons")
load("//ts:compile_sass.bzl", "compile_sass")
load("//ts:typescript.bzl", "typescript")
load("//ts:jest.bzl", "jest_test")
@ -48,6 +49,7 @@ esbuild(
visibility = ["//visibility:public"],
deps = [
":base_css",
"@npm//bootstrap-icons",
":index",
":svelte",
],

View file

@ -0,0 +1,9 @@
// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
/// <reference types="../lib/image-import" />
export { default as arrowRightIcon } from "bootstrap-icons/icons/arrow-right.svg";
export { default as exclamationIcon } from "bootstrap-icons/icons/exclamation-circle.svg";
export { default as plusIcon } from "bootstrap-icons/icons/plus-lg.svg";
export { default as minusIcon } from "bootstrap-icons/icons/dash-lg.svg";