aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/arrow-top-circle.js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-11-08 13:05:03 +0100
committercodecalm <codecalm@gmail.com>2020-11-08 13:05:03 +0100
commit5acbb4f20ffe393976abe8b367a49848c0e19e82 (patch)
tree9d4e518b8ee6f1167a61610cf6702c23a79824d4 /icons-react/icons-js/arrow-top-circle.js
parent41 new icons: `arrow-bottom-bar`, `arrow-bottom-circle`, `arrow-bottom-square... (diff)
downloadtabler-icons-5acbb4f20ffe393976abe8b367a49848c0e19e82.tar.xz
Release 1.35.0v1.35.0
Diffstat (limited to 'icons-react/icons-js/arrow-top-circle.js')
-rw-r--r--icons-react/icons-js/arrow-top-circle.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/arrow-top-circle.js b/icons-react/icons-js/arrow-top-circle.js
new file mode 100644
index 00000000..eed46a8e
--- /dev/null
+++ b/icons-react/icons-js/arrow-top-circle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowTopCircle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-arrow-top-circle" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><line x1={12} y1={17} x2={12} y2={3} /><path d="M15 6l-3 -3l-3 3" /><circle cx={12} cy={19} r={2} /></svg>;
+}
+
+export default IconArrowTopCircle; \ No newline at end of file