From 925976ad4537e6f5932d3881e787741d0e36da90 Mon Sep 17 00:00:00 2001 From: Josh <83074763+joshuajames-smith@users.noreply.github.com> Date: Mon, 14 Feb 2022 15:03:18 +0000 Subject: [PATCH] feat: Add `Shortcuts` Icons (#94) * feat: add shift-key.svg * feat: add `backspace-key.svg` * feat: add `enter-key.svg` * feat: add `enter-key.svg` * feat: add `up-arrow.svg` * feat: add `down-arrow.svg` * feat: add `left-arrow.svg` * feat: add `right-arrow.svg` * feat: add `help-center.svg` * feat: add `keyboard-shortcut.svg` * feat: update icons.ts Co-authored-by: Christian Baidoo <37402968+ChrisBaidoo@users.noreply.github.com> --- src/assets/icons/backspace-key.svg | 1 + src/assets/icons/down-arrow.svg | 1 + src/assets/icons/enter-key.svg | 1 + src/assets/icons/help-center.svg | 1 + src/assets/icons/keyboard-shortcut.svg | 1 + src/assets/icons/left-arrow.svg | 1 + src/assets/icons/right-arrow.svg | 1 + src/assets/icons/shift-key.svg | 1 + src/assets/icons/up-arrow.svg | 1 + src/icons.ts | 9 +++++++++ 10 files changed, 18 insertions(+) create mode 100644 src/assets/icons/backspace-key.svg create mode 100644 src/assets/icons/down-arrow.svg create mode 100644 src/assets/icons/enter-key.svg create mode 100644 src/assets/icons/help-center.svg create mode 100644 src/assets/icons/keyboard-shortcut.svg create mode 100644 src/assets/icons/left-arrow.svg create mode 100644 src/assets/icons/right-arrow.svg create mode 100644 src/assets/icons/shift-key.svg create mode 100644 src/assets/icons/up-arrow.svg diff --git a/src/assets/icons/backspace-key.svg b/src/assets/icons/backspace-key.svg new file mode 100644 index 0000000..caa61eb --- /dev/null +++ b/src/assets/icons/backspace-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/down-arrow.svg b/src/assets/icons/down-arrow.svg new file mode 100644 index 0000000..0b4c917 --- /dev/null +++ b/src/assets/icons/down-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/enter-key.svg b/src/assets/icons/enter-key.svg new file mode 100644 index 0000000..4e7c5e9 --- /dev/null +++ b/src/assets/icons/enter-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/help-center.svg b/src/assets/icons/help-center.svg new file mode 100644 index 0000000..79f64f5 --- /dev/null +++ b/src/assets/icons/help-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/keyboard-shortcut.svg b/src/assets/icons/keyboard-shortcut.svg new file mode 100644 index 0000000..89d2d13 --- /dev/null +++ b/src/assets/icons/keyboard-shortcut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/left-arrow.svg b/src/assets/icons/left-arrow.svg new file mode 100644 index 0000000..3fe1681 --- /dev/null +++ b/src/assets/icons/left-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/right-arrow.svg b/src/assets/icons/right-arrow.svg new file mode 100644 index 0000000..7b49bf4 --- /dev/null +++ b/src/assets/icons/right-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/shift-key.svg b/src/assets/icons/shift-key.svg new file mode 100644 index 0000000..8de2718 --- /dev/null +++ b/src/assets/icons/shift-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/up-arrow.svg b/src/assets/icons/up-arrow.svg new file mode 100644 index 0000000..b94210f --- /dev/null +++ b/src/assets/icons/up-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons.ts b/src/icons.ts index 3713bdb..4c48e5a 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -11,7 +11,12 @@ const icons = { annotationTransparency: imgSrc("annotation-transparency-icon"), autoAssign: imgSrc("auto-assign-assignees"), audit: imgSrc("audit"), + arrowDown: imgSrc("down-arrow"), + arrowLeft: imgSrc("left-arrow"), + arrowRight: imgSrc("right-arrow"), + arrowUp: imgSrc("up-arrow"), backspace: imgSrc("backspace-icon"), + backspaceKey: imgSrc("backspace-key"), backgroundSettings: imgSrc("background-settings"), betaStatus: imgSrc("beta-status"), boundingBox: imgSrc("bounding-box-icon"), @@ -36,9 +41,12 @@ const icons = { download: imgSrc("download-icon"), edit: imgSrc("open-in-annotate"), eraser: imgSrc("eraser-icon"), + enterKey: imgSrc("enter-key"), fill: imgSrc("fill-icon"), fitToPage: imgSrc("fit-to-page-icon"), + helpCenter: imgSrc("help-center"), imageViewer: imgSrc("image-viewer"), + keyboardShortcut: imgSrc("keyboard-shortcut"), largeImageGrid: imgSrc("large-image-grid"), lassoSpline: imgSrc("lasso-spline-icon"), magicSpline: imgSrc("magic-spline-icon"), @@ -69,6 +77,7 @@ const icons = { select: imgSrc("select-icon"), selectedChip: imgSrc("active-annotation-label-search-filter"), notSelectedChip: imgSrc("non-active-annotation-label-search-filter"), + shiftKey: imgSrc("shift-key"), showHidePassword: imgSrc("show-hide-password"), showStrokeAsPixels: imgSrc("show-strokes-as-pixels"), smallImageGrid: imgSrc("small-image-grid"),