aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/sthetoscope.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/sthetoscope.js')
-rw-r--r--icons-react/icons-js/sthetoscope.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/icons-react/icons-js/sthetoscope.js b/icons-react/icons-js/sthetoscope.js
index 2f4ef80d..582f547e 100644
--- a/icons-react/icons-js/sthetoscope.js
+++ b/icons-react/icons-js/sthetoscope.js
@@ -1,5 +1,12 @@
import * as React from "react";
-const IconSthetoscope = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-sthetoscope" 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" /><path d="M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1h0" /><path d="M8 15a6 6 0 1 0 12 0v-3" /><path d="M11 3v2" /><path d="M6 3v2" /><circle cx={20} cy={10} r={2} /></svg>;
+function IconSthetoscope({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sthetoscope" 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" /><path d="M6 4h-1a2 2 0 0 0 -2 2v3.5h0a5.5 5.5 0 0 0 11 0v-3.5a2 2 0 0 0 -2 -2h-1h0" /><path d="M8 15a6 6 0 1 0 12 0v-3" /><path d="M11 3v2" /><path d="M6 3v2" /><circle cx={20} cy={10} r={2} /></svg>;
+}
export default IconSthetoscope; \ No newline at end of file