mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Add bootstrap icons to change-notetype
This commit is contained in:
parent
c9c93567e9
commit
cb3df5f1be
2 changed files with 11 additions and 0 deletions
|
@ -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",
|
||||
],
|
||||
|
|
9
ts/change-notetype/icons.ts
Normal file
9
ts/change-notetype/icons.ts
Normal 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";
|
Loading…
Reference in a new issue