From 9383a2fb09ffb60cfe63683106945bd688affa59 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Wed, 1 Jun 2022 21:13:43 +0200 Subject: feat: Initial commit after clean slate --- src/wwwroot/scripts/icons.js | 58 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/wwwroot/scripts/icons.js (limited to 'src/wwwroot/scripts/icons.js') diff --git a/src/wwwroot/scripts/icons.js b/src/wwwroot/scripts/icons.js new file mode 100644 index 0000000..6fa3559 --- /dev/null +++ b/src/wwwroot/scripts/icons.js @@ -0,0 +1,58 @@ +export function bagDashIcon(height = "1em", width = "1em") { + return ` + + + + +`; +} + +export function bagPlusIcon(height = "1em", width = "1em") { + return ` + + + + +`; +} + +export function trashIcon(height = "1em", width = "1em") { + return ` + + + + +`; +} + +export function plusIcon(height = "1em", width = "1em") { + return ` + + + +`; +} + +export function pencilSquareIcon(height = "1em", width = "1em") { + return ` + + + + +`; +} + +export function threeDotsVerticalIcon(height = "1em", width = "1em") { + return ` + + +`; +} + +export function eyeIcon(height = "1em", width = "1em") { + return ` + + + +`; +} \ No newline at end of file -- cgit v1.3