diff options
Diffstat (limited to 'icons-react/icons-js/wave-sine.js')
-rw-r--r-- | icons-react/icons-js/wave-sine.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/icons-react/icons-js/wave-sine.js b/icons-react/icons-js/wave-sine.js new file mode 100644 index 00000000..ad633a1d --- /dev/null +++ b/icons-react/icons-js/wave-sine.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWaveSine = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-wave-sine" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M21 12 h -2 c -0.894 0 -1.662 -0.857 -1.761 -2 c -0.296 -3.45 -0.749 -6 -2.749 -6 s -2.5 3.582 -2.5 8 s -0.5 8 -2.5 8 s -2.452 -2.547 -2.749 -6 c -0.1 -1.147 -0.867 -2 -1.763 -2 h -2" /></svg>; + +export default IconWaveSine;
\ No newline at end of file |