aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/color-swatch.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/color-swatch.js')
-rw-r--r--icons-react/icons-js/color-swatch.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/icons-react/icons-js/color-swatch.js b/icons-react/icons-js/color-swatch.js
new file mode 100644
index 0000000..966efa3
--- /dev/null
+++ b/icons-react/icons-js/color-swatch.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconColorSwatch = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-color-swatch" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2" /><path d="M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l 9 9" /><path d="M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12" /><line x1={17} y1={17} x2={17} y2={17.01} /></svg>;
+
+export default IconColorSwatch; \ No newline at end of file