From 091a3eba620a1b87c7f57ede9265ebad59d1bf34 Mon Sep 17 00:00:00 2001 From: Definitely Not Vlad Date: Tue, 9 Jul 2024 10:39:25 +0200 Subject: [PATCH] Add Queue and Wheelchair icons --- components/Icon/assets/index.js | 4 ++++ components/Icon/assets/queue.svg | 1 + components/Icon/assets/wheelchair.svg | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 components/Icon/assets/queue.svg create mode 100644 components/Icon/assets/wheelchair.svg diff --git a/components/Icon/assets/index.js b/components/Icon/assets/index.js index b97511f2..13cb1c00 100644 --- a/components/Icon/assets/index.js +++ b/components/Icon/assets/index.js @@ -83,6 +83,7 @@ import playlistPlay from './playlist-play.svg'; import plusButton from './plus-button.svg'; import podcasts from './podcasts.svg'; import products from './products.svg'; +import queue from './queue.svg'; import radio from './radio.svg'; import radiobuttonOff from './radiobutton-off.svg'; import radiobuttonOn from './radiobutton-on.svg'; @@ -123,6 +124,7 @@ import videoCam from './video-cam.svg'; import videoCamOff from './video-cam-off.svg'; import videoChat from './video-chat.svg'; import web from './web.svg'; +import wheelchair from './wheelchair.svg'; export const defaultConfig = [ { name: 'about', icon: about }, @@ -210,6 +212,7 @@ export const defaultConfig = [ { name: 'plus-button', icon: plusButton }, { name: 'podcasts', icon: podcasts }, { name: 'products', icon: products }, + { name: 'queue', icon: queue }, { name: 'radio', icon: radio }, { name: 'radiobutton-off', icon: radiobuttonOff }, { name: 'radiobutton-on', icon: radiobuttonOn }, @@ -250,4 +253,5 @@ export const defaultConfig = [ { name: 'video-cam-off', icon: videoCamOff }, { name: 'video-chat', icon: videoChat }, { name: 'web', icon: web }, + { name: 'wheelchair', icon: wheelchair }, ]; diff --git a/components/Icon/assets/queue.svg b/components/Icon/assets/queue.svg new file mode 100644 index 00000000..6c2efee7 --- /dev/null +++ b/components/Icon/assets/queue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/components/Icon/assets/wheelchair.svg b/components/Icon/assets/wheelchair.svg new file mode 100644 index 00000000..1bb33bb9 --- /dev/null +++ b/components/Icon/assets/wheelchair.svg @@ -0,0 +1,4 @@ + +wheelchair + + diff --git a/package-lock.json b/package-lock.json index c976e71b..0a7f22a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@shoutem/ui", - "version": "7.0.1", + "version": "7.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@shoutem/ui", - "version": "7.0.1-rc.0", + "version": "7.0.2-rc.0", "hasInstallScript": true, "license": "BSD-3-Clause", "dependencies": { diff --git a/package.json b/package.json index 968395b5..a3776c21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@shoutem/ui", - "version": "7.0.1", + "version": "7.0.2", "description": "Styleable set of components for React Native applications", "scripts": { "lint": "eslint .",