8edcc54aae
- This way, we can also use their modifier versions with little pluses/minuses
43 lines
825 B
Python
43 lines
825 B
Python
load("//ts:vendor.bzl", "copy_mdi_icons", "copy_bootstrap_icons")
|
|
|
|
copy_mdi_icons(
|
|
name = "mdi-icons",
|
|
icons = [
|
|
# saved searches
|
|
"heart-outline.svg",
|
|
|
|
# today
|
|
"clock-outline.svg",
|
|
|
|
# state
|
|
"circle.svg",
|
|
"circle-outline.svg",
|
|
|
|
# flags
|
|
"flag.svg",
|
|
"flag-outline.svg",
|
|
|
|
# decks
|
|
"book-outline.svg",
|
|
"book-clock-outline.svg",
|
|
"book-cog-outline.svg",
|
|
|
|
# notetypes
|
|
"newspaper.svg",
|
|
# cardtype
|
|
"iframe-braces-outline.svg",
|
|
# fields
|
|
"form-textbox.svg",
|
|
|
|
# tags
|
|
"tag-outline.svg",
|
|
"tag-off-outline.svg",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "icons",
|
|
srcs = ["mdi-icons"] + glob(["*.svg", "*.png"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|