about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/check.js
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-23 22:21:58 +0100
committerGitHub <noreply@github.com>2022-02-23 22:21:58 +0100
commite48eaf64cc7cb0cfab388331c4823ee5fb580d59 (patch)
tree18daedde9a2b7087e0b5e160680ed366cdd02546 /app/javascript/flavours/glitch/components/check.js
parent8c9c05d57914236dc7104a67e84743e1ce36f7cc (diff)
parent41ef41b9006e42b4001ebd89a3091fce609359fc (diff)
Merge pull request #1701 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
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;