diff options
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r-- | icons-react/icons-js/asterisk-simple.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/asterisk.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/browser-check.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/browser-plus.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/browser-x.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/butterfly.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/cloud-lock-open.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/cloud-lock.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/cone-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/cone.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/drop-circle.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/elevator.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/file-dollar.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/file-euro.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/ladder.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/pentagon.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/picture-in-picture-top.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/rotate-dot.js | 12 |
18 files changed, 216 insertions, 0 deletions
diff --git a/icons-react/icons-js/asterisk-simple.js b/icons-react/icons-js/asterisk-simple.js new file mode 100644 index 00000000..38d0e71a --- /dev/null +++ b/icons-react/icons-js/asterisk-simple.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAsteriskSimple({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-asterisk-simple" 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="M12 12v-9" /><path d="M12 12l-9 -2.5" /><path d="M12 12l9 -2.5" /><path d="M12 12l6 8.5" /><path d="M12 12l-6 8.5" /></svg>; +} + +export default IconAsteriskSimple;
\ No newline at end of file diff --git a/icons-react/icons-js/asterisk.js b/icons-react/icons-js/asterisk.js new file mode 100644 index 00000000..43923ce1 --- /dev/null +++ b/icons-react/icons-js/asterisk.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAsterisk({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-asterisk" 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="M12 12l8 -4.5" /><path d="M12 12v9" /><path d="M12 12l-8 -4.5" /><path d="M12 12l8 4.5" /><path d="M12 3v9" /><path d="M12 12l-8 4.5" /></svg>; +} + +export default IconAsterisk;
\ No newline at end of file diff --git a/icons-react/icons-js/browser-check.js b/icons-react/icons-js/browser-check.js new file mode 100644 index 00000000..079f327d --- /dev/null +++ b/icons-react/icons-js/browser-check.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrowserCheck({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-browser-check" 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" /><rect x={4} y={4} width={16} height={16} rx={1} /><path d="M4 8h16" /><path d="M8 4v4" /><path d="M9.5 14.5l1.5 1.5l3 -3" /></svg>; +} + +export default IconBrowserCheck;
\ No newline at end of file diff --git a/icons-react/icons-js/browser-plus.js b/icons-react/icons-js/browser-plus.js new file mode 100644 index 00000000..8c5b723c --- /dev/null +++ b/icons-react/icons-js/browser-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrowserPlus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-browser-plus" 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" /><rect x={4} y={4} width={16} height={16} rx={1} /><path d="M4 8h16" /><path d="M8 4v4" /><path d="M10 14h4" /><path d="M12 12v4" /></svg>; +} + +export default IconBrowserPlus;
\ No newline at end of file diff --git a/icons-react/icons-js/browser-x.js b/icons-react/icons-js/browser-x.js new file mode 100644 index 00000000..28526a07 --- /dev/null +++ b/icons-react/icons-js/browser-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrowserX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-browser-x" 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" /><rect x={4} y={4} width={16} height={16} rx={1} /><path d="M4 8h16" /><path d="M8 4v4" /><path d="M10 16l4 -4" /><path d="M14 16l-4 -4" /></svg>; +} + +export default IconBrowserX;
\ No newline at end of file diff --git a/icons-react/icons-js/butterfly.js b/icons-react/icons-js/butterfly.js new file mode 100644 index 00000000..6316021c --- /dev/null +++ b/icons-react/icons-js/butterfly.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconButterfly({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-butterfly" 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="M11.995 18.176a3 3 0 1 1 -4.953 -2.449l-.025 .023a4.502 4.502 0 0 1 1.483 -8.75c1.414 0 2.675 .652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079a3 3 0 1 1 -4.983 2.25z" /><path d="M12 19v-10" /><path d="M9 3l3 2l3 -2" /></svg>; +} + +export default IconButterfly;
\ No newline at end of file diff --git a/icons-react/icons-js/cloud-lock-open.js b/icons-react/icons-js/cloud-lock-open.js new file mode 100644 index 00000000..28647dba --- /dev/null +++ b/icons-react/icons-js/cloud-lock-open.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCloudLockOpen({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cloud-lock-open" 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="M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027" /><rect x={8} y={15} width={8} height={5} rx={1} /><path d="M10 15v-2a2 2 0 0 1 3.736 -.994" /></svg>; +} + +export default IconCloudLockOpen;
\ No newline at end of file diff --git a/icons-react/icons-js/cloud-lock.js b/icons-react/icons-js/cloud-lock.js new file mode 100644 index 00000000..605e6082 --- /dev/null +++ b/icons-react/icons-js/cloud-lock.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCloudLock({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cloud-lock" 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="M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027" /><rect x={8} y={15} width={8} height={5} rx={1} /><path d="M10 15v-2a2 2 0 1 1 4 0v2" /></svg>; +} + +export default IconCloudLock;
\ No newline at end of file diff --git a/icons-react/icons-js/cone-2.js b/icons-react/icons-js/cone-2.js new file mode 100644 index 00000000..e2448d50 --- /dev/null +++ b/icons-react/icons-js/cone-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCone2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cone-2" 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" /><ellipse cx={12} cy={7} rx={7} ry={3} /><path d="M19 7v.5l-7 12.5l-7 -12.5v-.5" /></svg>; +} + +export default IconCone2;
\ No newline at end of file diff --git a/icons-react/icons-js/cone.js b/icons-react/icons-js/cone.js new file mode 100644 index 00000000..b09712f4 --- /dev/null +++ b/icons-react/icons-js/cone.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCone({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cone" 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" /><ellipse transform="matrix(1 0 0 -1 0 34)" cx={12} cy={17} rx={7} ry={3} /><path d="M19 17v-.5l-7 -12.5l-7 12.5v.5" /></svg>; +} + +export default IconCone;
\ No newline at end of file diff --git a/icons-react/icons-js/drop-circle.js b/icons-react/icons-js/drop-circle.js new file mode 100644 index 00000000..accc3a35 --- /dev/null +++ b/icons-react/icons-js/drop-circle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDropCircle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-drop-circle" 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="M10.07 15.34c1.115 .88 2.74 .88 3.855 0c1.115 -.88 1.398 -2.388 .671 -3.575l-2.596 -3.765l-2.602 3.765c-.726 1.187 -.443 2.694 .672 3.575z" /><circle cx={12} cy={12} r={9} /></svg>; +} + +export default IconDropCircle;
\ No newline at end of file diff --git a/icons-react/icons-js/elevator.js b/icons-react/icons-js/elevator.js new file mode 100644 index 00000000..27e8bb17 --- /dev/null +++ b/icons-react/icons-js/elevator.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconElevator({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-elevator" 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" /><rect x={5} y={4} width={14} height={16} rx={1} /><path d="M10 10l2 -2l2 2" /><path d="M10 14l2 2l2 -2" /></svg>; +} + +export default IconElevator;
\ No newline at end of file diff --git a/icons-react/icons-js/file-dollar.js b/icons-react/icons-js/file-dollar.js new file mode 100644 index 00000000..2563acc0 --- /dev/null +++ b/icons-react/icons-js/file-dollar.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileDollar({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-dollar" 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="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><path d="M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5" /><path d="M12 17v1m0 -8v1" /></svg>; +} + +export default IconFileDollar;
\ No newline at end of file diff --git a/icons-react/icons-js/file-euro.js b/icons-react/icons-js/file-euro.js new file mode 100644 index 00000000..e94c77c3 --- /dev/null +++ b/icons-react/icons-js/file-euro.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileEuro({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-euro" 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="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><path d="M12 14h-3" /><path d="M14.004 11.172a3 3 0 1 0 -.001 5.656" /></svg>; +} + +export default IconFileEuro;
\ No newline at end of file diff --git a/icons-react/icons-js/ladder.js b/icons-react/icons-js/ladder.js new file mode 100644 index 00000000..d92ba011 --- /dev/null +++ b/icons-react/icons-js/ladder.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLadder({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ladder" 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="M8 3v18" /><path d="M16 3v18" /><path d="M8 14h8" /><path d="M8 10h8" /><path d="M8 6h8" /><path d="M8 18h8" /></svg>; +} + +export default IconLadder;
\ No newline at end of file diff --git a/icons-react/icons-js/pentagon.js b/icons-react/icons-js/pentagon.js new file mode 100644 index 00000000..56f51610 --- /dev/null +++ b/icons-react/icons-js/pentagon.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPentagon({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-pentagon" 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="M13.2 3.394l7.033 5.237a2 2 0 0 1 .7 2.247l-2.973 8.764a2 2 0 0 1 -1.894 1.358h-8.12a2 2 0 0 1 -1.9 -1.373l-2.896 -8.765a2 2 0 0 1 .696 -2.225l6.958 -5.237a2 2 0 0 1 2.397 -.006z" /></svg>; +} + +export default IconPentagon;
\ No newline at end of file diff --git a/icons-react/icons-js/picture-in-picture-top.js b/icons-react/icons-js/picture-in-picture-top.js new file mode 100644 index 00000000..95c229ad --- /dev/null +++ b/icons-react/icons-js/picture-in-picture-top.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPictureInPictureTop({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-picture-in-picture-top" 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="M11 5h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-4" /><rect transform="matrix(1 0 0 -1 0 15)" x={14} y={5} width={7} height={5} rx={1} /></svg>; +} + +export default IconPictureInPictureTop;
\ No newline at end of file diff --git a/icons-react/icons-js/rotate-dot.js b/icons-react/icons-js/rotate-dot.js new file mode 100644 index 00000000..9d4525ee --- /dev/null +++ b/icons-react/icons-js/rotate-dot.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRotateDot({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rotate-dot" 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="M19.95 11a8 8 0 1 0 -.5 4m.5 5v-5h-5" /><circle cx={12} cy={12} r={1} /></svg>; +} + +export default IconRotateDot;
\ No newline at end of file |