elementa-icons 1.35.0 → 1.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/communication/ElectricPlug.js +14 -0
- package/dist/icons/communication/index.js +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/types/icons/communication/ElectricPlug.d.ts +6 -0
- package/dist/types/icons/communication/index.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon.
|
|
5
|
+
*/
|
|
6
|
+
const ElectricPlug = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
7
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
8
|
+
fillRule: 'evenodd',
|
|
9
|
+
clipRule: 'evenodd',
|
|
10
|
+
strokeLinejoin: 'round',
|
|
11
|
+
strokeMiterlimit: 2
|
|
12
|
+
}, viewBox: "0 0 29 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M16.581 5.77s-1.893 2.304-3.494 4.361c-1.217 1.563-2.242 2.965-2.242 2.965a1.05 1.05 0 0 0 .881 1.624s1.494.097 2.99.096c.432 0 .862-.009 1.257-.02-.346.7-.76 1.548-1.166 2.404-.98 2.063-1.891 4.13-1.891 4.13a.225.225 0 1 0 .388.229s1.371-1.796 2.707-3.647c1.329-1.842 2.6-3.71 2.6-3.71a1.05 1.05 0 0 0-.904-1.583s-1.493-.099-2.99-.099c-.395 0-.789.007-1.156.017.256-.467.545-.998.84-1.553 1.226-2.3 2.56-4.97 2.56-4.97a.226.226 0 0 0-.38-.244M13.309 28.318l-1.22.127a.35.35 0 0 0 0 .7l1.218.132a.48.48 0 0 0 .002-.96M13.309 25.37l-1.22.128a.35.35 0 0 0 0 .7l1.218.132a.48.48 0 0 0 .002-.96" }), _jsx("path", { d: "m13.932 30.23 1.956.061a3.03 3.03 0 0 0 2.182-.85 3.07 3.07 0 0 0 .936-2.183v-.002a3.1 3.1 0 0 0-.232-1.195 3.1 3.1 0 0 0-.68-1.012 3.05 3.05 0 0 0-1.02-.66 3 3 0 0 0-1.186-.2l-2.134.098a.34.34 0 0 0-.34.341l.28 4.704a.06.06 0 0 0 .12 0l.26-4.349 1.814.083c.288.01.566.085.824.2.255.114.488.276.686.48.2.201.353.438.46.694.107.257.166.533.168.816v.002c.003.285-.048.564-.151.823a2.189 2.189 0 0 1-1.147 1.204 2.2 2.2 0 0 1-.84.196l-1.956.061a.344.344 0 0 0 0 .689" }), _jsx("path", { d: "M19.699 27.4c2.284-.65 4.827-2.294 6.64-4.92 1.413-2.048 2.374-4.694 2.428-7.925v-.027c-.082-4.603-1.688-7.899-3.91-10.14C21.881 1.383 17.781.28 14.67.423c-2.666.072-6.759 1.243-9.77 4.24-2.21 2.2-3.854 5.368-3.902 9.76-.076 3.371.927 5.943 2.31 7.846 2.435 3.355 6.014 4.606 6.622 4.591a.12.12 0 1 0 .001-.24c-.58-.02-3.898-1.428-6.035-4.752-1.18-1.837-1.988-4.268-1.745-7.396v-.009c.23-3.944 1.819-6.719 3.88-8.617 2.752-2.534 6.356-3.49 8.692-3.473l.035-.001c2.661-.118 6.147.85 8.712 3.401 1.946 1.937 3.36 4.784 3.497 8.783.018 2.85-.77 5.195-1.964 7.028-1.531 2.349-3.711 3.868-5.7 4.497A.689.689 0 0 0 19.7 27.4" })] }));
|
|
13
|
+
};
|
|
14
|
+
export default ElectricPlug;
|