ui/icons: update app icons

This commit is contained in:
Johannes Kirschbauer
2025-08-21 18:59:16 +02:00
parent d86509e97b
commit 9d887805a8
27 changed files with 57 additions and 102 deletions

View File

@@ -1,2 +1,3 @@
icons/
.vscode/
.vscode/
.env.local

View File

@@ -7,13 +7,13 @@ pkgs.writeShellApplication {
runtimeInputs = [ deno ];
runtimeEnv = {
FIGMA_ICON_FILE_ID = "KJgLnsBI9nvUt44qKJXmVm";
FRAME_ID = "709-324";
FIGMA_ICON_FILE_ID = "uyl2qJ78r6ISagQQlT4tr7";
FRAME_ID = "689-1390";
};
text = ''
REPO_ROOT="$(git rev-parse --show-toplevel)"
OUT_DIR="$(realpath "$REPO_ROOT"/pkgs/clan-app/ui/src/icons)"
OUT_DIR="$(realpath "$REPO_ROOT"/pkgs/clan-app/ui/icons)"
export OUT_DIR
deno run --allow-all ${src}/main.ts
'';

View File

@@ -3,7 +3,7 @@ pkgs.mkShell {
name = "clan-icon-update";
packages = with pkgs; [ deno ];
env = {
FIGMA_ICON_FILE_ID = "KJgLnsBI9nvUt44qKJXmVm";
FIGMA_ICON_FILE_ID = "uyl2qJ78r6ISagQQlT4tr7";
FRAME_ID = "709-324";
OUT_DIR = "./icons";
};