aboutsummaryrefslogtreecommitdiff
path: root/src/components/svg/Change.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/svg/Change.tsx')
-rw-r--r--src/components/svg/Change.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/svg/Change.tsx b/src/components/svg/Change.tsx
new file mode 100644
index 0000000..935a2f7
--- /dev/null
+++ b/src/components/svg/Change.tsx
@@ -0,0 +1,13 @@
+import type { SVGProps } from 'react';
+
+const SvgChange = (props: SVGProps<SVGSVGElement>) => (
+ <svg
+ xmlns="http://www.w3.org/2000/svg"
+ xmlSpace="preserve"
+ viewBox="0 0 512.013 512.013"
+ {...props}
+ >
+ <path d="m372.653 244.726 22.56 22.56 112-112c6.204-6.241 6.204-16.319 0-22.56l-112-112-22.56 22.72 84.8 84.64H.013v32h457.44zm139.36 107.36H54.573l84.8-84.64-22.72-22.72-112 112c-6.204 6.241-6.204 16.319 0 22.56l112 112 22.56-22.56-84.64-84.64h457.44z" />
+ </svg>
+);
+export default SvgChange;