3aebae9f13
+ Replace old tag icon with mdi tag and tag-off icon
16 lines
293 B
Python
16 lines
293 B
Python
load("//ts:vendor.bzl", "copy_mdi_icons")
|
|
|
|
copy_mdi_icons(
|
|
name = "mdi-icons",
|
|
icons = [
|
|
"tag-outline.svg",
|
|
"tag-off-outline.svg",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "icons",
|
|
srcs = ["mdi-icons"] + glob(["*.svg", "*.png"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|