summaryrefslogtreecommitdiff
path: root/public/assets/js/util/icons.js
diff options
context:
space:
mode:
authorjulian laplace <julescarbon@gmail.com>2022-10-30 21:03:16 +0100
committerjulian laplace <julescarbon@gmail.com>2022-10-30 21:03:16 +0100
commitbc8e849ad0033f8385c0ff7052a3c44cf1e729b5 (patch)
treefc4dd2920f394b9b02dd1089a8625b6bc1871f27 /public/assets/js/util/icons.js
parentd2481245a88f189ea0d1b69cc91a684f3e2bb46b (diff)
expand/post icons
Diffstat (limited to 'public/assets/js/util/icons.js')
-rw-r--r--public/assets/js/util/icons.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/public/assets/js/util/icons.js b/public/assets/js/util/icons.js
new file mode 100644
index 0000000..27afb90
--- /dev/null
+++ b/public/assets/js/util/icons.js
@@ -0,0 +1,6 @@
+const ICONS = {
+ edit: '<svg class="icon" focusable="false" aria-hidden="true" viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"></path></svg>',
+ play: '<svg class="icon" focusable="false" aria-hidden="true" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"></path></svg>',
+ expand:
+ '<svg class="icon" focusable="false" aria-hidden="true" viewBox="0 0 24 24"><path d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"></path></svg>',
+};