diff options
Diffstat (limited to 'icons-react/icons-js/panorama-horizontal.js')
-rw-r--r-- | icons-react/icons-js/panorama-horizontal.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/icons-react/icons-js/panorama-horizontal.js b/icons-react/icons-js/panorama-horizontal.js index 19d8dd3e..71e0c687 100644 --- a/icons-react/icons-js/panorama-horizontal.js +++ b/icons-react/icons-js/panorama-horizontal.js @@ -1,5 +1,12 @@ import * as React from "react"; -const IconPanoramaHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-panorama-horizontal" 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="M4.338 5.53c5.106 1.932 10.211 1.932 15.317 .002a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z" /></svg>; +function IconPanoramaHorizontal({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-panorama-horizontal" 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="M4.338 5.53c5.106 1.932 10.211 1.932 15.317 .002a1 1 0 0 1 1.345 .934v11c0 .692 -.692 1.2 -1.34 .962c-5.107 -1.932 -10.214 -1.932 -15.321 0c-.648 .246 -1.339 -.242 -1.339 -.935v-11.027a1 1 0 0 1 1.338 -.935z" /></svg>; +} export default IconPanoramaHorizontal;
\ No newline at end of file |