diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-06-30 11:34:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 11:34:04 -0500 |
commit | c72e24f841b5771d74e82114e40ed81f15ec97a7 (patch) | |
tree | 9cde253f90c3a22bce0d27fd8991b32213526436 /src/view/index.ts | |
parent | 5fcca171291bbbfc63a0f9eaa153efd5d046c33e (diff) | |
download | voidsky-c72e24f841b5771d74e82114e40ed81f15ec97a7.tar.zst |
[APP-716] Add 'save image' button to the lightbox (#926)
* Add 'save image' button to the lightbox * Fix types * Fix types
Diffstat (limited to 'src/view/index.ts')
-rw-r--r-- | src/view/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/index.ts b/src/view/index.ts index 118a6de22..0ab84fc0d 100644 --- a/src/view/index.ts +++ b/src/view/index.ts @@ -37,6 +37,7 @@ import {faEnvelope} from '@fortawesome/free-solid-svg-icons/faEnvelope' import {faExclamation} from '@fortawesome/free-solid-svg-icons/faExclamation' import {faEye} from '@fortawesome/free-solid-svg-icons/faEye' import {faEyeSlash as farEyeSlash} from '@fortawesome/free-regular-svg-icons/faEyeSlash' +import {faFloppyDisk} from '@fortawesome/free-regular-svg-icons/faFloppyDisk' import {faGear} from '@fortawesome/free-solid-svg-icons/faGear' import {faGlobe} from '@fortawesome/free-solid-svg-icons/faGlobe' import {faHand} from '@fortawesome/free-solid-svg-icons/faHand' @@ -124,6 +125,7 @@ export function setup() { faEye, faExclamation, farEyeSlash, + faFloppyDisk, faGear, faGlobe, faHand, |