From 66de90d63e5e26d867a4391bd607fd7a3bbe17fd Mon Sep 17 00:00:00 2001 From: Daniel Bayley Date: Sun, 28 May 2023 11:12:43 +0100 Subject: [PATCH] Optimise `monitor` icons/add [`monitor-`]`play`/`dot`/`check` icons (#1282) * Optimise `monitor` icons * Add `monitor-play` icon * Add `monitor-check` icon * Add `monitor-dot` icon * Added monitor-x, monitor-stop & monitor-pause * Update monitor-pause.json * Update icons/monitor-play.svg Co-authored-by: Jakob Guddas * Decrease monitor-x x size. --------- Co-authored-by: Karsa Co-authored-by: Jakob Guddas --- icons/monitor-check.json | 19 +++++++++++++++++++ icons/monitor-check.svg | 16 ++++++++++++++++ icons/monitor-dot.json | 18 ++++++++++++++++++ icons/monitor-dot.svg | 16 ++++++++++++++++ icons/monitor-down.svg | 6 +++--- icons/monitor-pause.json | 23 +++++++++++++++++++++++ icons/monitor-pause.svg | 17 +++++++++++++++++ icons/monitor-play.json | 23 +++++++++++++++++++++++ icons/monitor-play.svg | 16 ++++++++++++++++ icons/monitor-stop.json | 22 ++++++++++++++++++++++ icons/monitor-stop.svg | 16 ++++++++++++++++ icons/monitor-up.svg | 8 ++++---- icons/monitor-x.json | 21 +++++++++++++++++++++ icons/monitor-x.svg | 17 +++++++++++++++++ icons/monitor.json | 7 +++++-- icons/monitor.svg | 2 +- 16 files changed, 237 insertions(+), 10 deletions(-) create mode 100644 icons/monitor-check.json create mode 100644 icons/monitor-check.svg create mode 100644 icons/monitor-dot.json create mode 100644 icons/monitor-dot.svg create mode 100644 icons/monitor-pause.json create mode 100644 icons/monitor-pause.svg create mode 100644 icons/monitor-play.json create mode 100644 icons/monitor-play.svg create mode 100644 icons/monitor-stop.json create mode 100644 icons/monitor-stop.svg create mode 100644 icons/monitor-x.json create mode 100644 icons/monitor-x.svg diff --git a/icons/monitor-check.json b/icons/monitor-check.json new file mode 100644 index 0000000..3e868ac --- /dev/null +++ b/icons/monitor-check.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "tv", + "screen", + "display", + "desktop", + "running", + "active", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} + diff --git a/icons/monitor-check.svg b/icons/monitor-check.svg new file mode 100644 index 0000000..ecbaf7b --- /dev/null +++ b/icons/monitor-check.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/icons/monitor-dot.json b/icons/monitor-dot.json new file mode 100644 index 0000000..116fc6a --- /dev/null +++ b/icons/monitor-dot.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "tv", + "screen", + "display", + "desktop", + "running", + "active", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} \ No newline at end of file diff --git a/icons/monitor-dot.svg b/icons/monitor-dot.svg new file mode 100644 index 0000000..589efad --- /dev/null +++ b/icons/monitor-dot.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/icons/monitor-down.svg b/icons/monitor-down.svg index 7f85d83..1b2a575 100644 --- a/icons/monitor-down.svg +++ b/icons/monitor-down.svg @@ -9,9 +9,9 @@ stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/monitor-pause.json b/icons/monitor-pause.json new file mode 100644 index 0000000..28702cf --- /dev/null +++ b/icons/monitor-pause.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "tv", + "screen", + "display", + "desktop", + "video", + "movie", + "film", + "suspend", + "hibernate", + "boot", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "development" + ] +} diff --git a/icons/monitor-pause.svg b/icons/monitor-pause.svg new file mode 100644 index 0000000..2375014 --- /dev/null +++ b/icons/monitor-pause.svg @@ -0,0 +1,17 @@ + + + + + + + diff --git a/icons/monitor-play.json b/icons/monitor-play.json new file mode 100644 index 0000000..6208390 --- /dev/null +++ b/icons/monitor-play.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "tv", + "screen", + "display", + "desktop", + "video", + "movie", + "film", + "running", + "start", + "boot", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "development" + ] +} diff --git a/icons/monitor-play.svg b/icons/monitor-play.svg new file mode 100644 index 0000000..cd0e0fc --- /dev/null +++ b/icons/monitor-play.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/icons/monitor-stop.json b/icons/monitor-stop.json new file mode 100644 index 0000000..8fe75aa --- /dev/null +++ b/icons/monitor-stop.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "tv", + "screen", + "display", + "desktop", + "video", + "movie", + "film", + "stop", + "shutdown", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "development" + ] +} diff --git a/icons/monitor-stop.svg b/icons/monitor-stop.svg new file mode 100644 index 0000000..b408b38 --- /dev/null +++ b/icons/monitor-stop.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/icons/monitor-up.svg b/icons/monitor-up.svg index b1d688a..d346c6f 100644 --- a/icons/monitor-up.svg +++ b/icons/monitor-up.svg @@ -9,9 +9,9 @@ stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/monitor-x.json b/icons/monitor-x.json new file mode 100644 index 0000000..ec670b0 --- /dev/null +++ b/icons/monitor-x.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "tv", + "screen", + "display", + "desktop", + "virtual machine", + "vm", + "close", + "stop", + "suspend", + "remove", + "delete" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} diff --git a/icons/monitor-x.svg b/icons/monitor-x.svg new file mode 100644 index 0000000..83ffd0f --- /dev/null +++ b/icons/monitor-x.svg @@ -0,0 +1,17 @@ + + + + + + + diff --git a/icons/monitor.json b/icons/monitor.json index 4cb499f..b1676dd 100644 --- a/icons/monitor.json +++ b/icons/monitor.json @@ -3,10 +3,13 @@ "tags": [ "tv", "screen", - "display" + "display", + "virtual machine", + "vm" ], "categories": [ "connectivity", - "devices" + "devices", + "development" ] } \ No newline at end of file diff --git a/icons/monitor.svg b/icons/monitor.svg index c367131..e869f2f 100644 --- a/icons/monitor.svg +++ b/icons/monitor.svg @@ -9,7 +9,7 @@ stroke-linecap="round" stroke-linejoin="round" > - +