diff options
Diffstat (limited to 'icons-react/icons-js/code.js')
-rw-r--r-- | icons-react/icons-js/code.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/icons-react/icons-js/code.js b/icons-react/icons-js/code.js new file mode 100644 index 00000000..897ef214 --- /dev/null +++ b/icons-react/icons-js/code.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCode = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-code" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><polyline points="7 8 3 12 7 16" /><polyline points="17 8 21 12 17 16" /><line x1={14} y1={4} x2={10} y2={20} /></svg>; + +export default IconCode;
\ No newline at end of file |