aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/wave-saw-tool.js
blob: e78ddc99d77f635a87bd1c3b296d03f808d21c36 (plain)
1
2
3
4
5
import * as React from "react";

const IconWaveSawTool = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-wave-saw-tool" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M3 12 h5 l4 8 v-16 l4 8h5" /></svg>;

export default IconWaveSawTool;