about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/check.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-02-23 20:03:46 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-02-23 20:25:55 +0100
commit470c0a80025f5d52bd66c16d1bfbccb1bfcaf6b0 (patch)
treef3ec37ffc7df005609aa0301013f33bf17e001f3 /app/javascript/flavours/glitch/components/check.js
parent9dd62c95c5f1ba8bb32eb94b7ff07a66f3cd48b5 (diff)
[Glitch] Change report modal to include category selection in web UI
Port a9a43de6d1502a6cbb388a5dbcd0e8532c236e64 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/components/check.js')
-rw-r--r--app/javascript/flavours/glitch/components/check.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/components/check.js b/app/javascript/flavours/glitch/components/check.js
new file mode 100644
index 000000000..ee2ef1595
--- /dev/null
+++ b/app/javascript/flavours/glitch/components/check.js
@@ -0,0 +1,9 @@
+import React from 'react';
+
+const Check = () => (
+  <svg width='14' height='11' viewBox='0 0 14 11'>
+    <path d='M11.264 0L5.26 6.004 2.103 2.847 0 4.95l5.26 5.26 8.108-8.107L11.264 0' fill='currentColor' fillRule='evenodd' />
+  </svg>
+);
+
+export default Check;