elementa-icons 1.35.0 → 1.37.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/icons/disaster-crisis/Siren.js +16 -0
- package/dist/icons/disaster-crisis/index.js +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +4 -0
- package/dist/types/icons/communication/ElectricPlug.d.ts +6 -0
- package/dist/types/icons/communication/index.d.ts +2 -0
- package/dist/types/icons/disaster-crisis/Siren.d.ts +6 -0
- package/dist/types/icons/disaster-crisis/index.d.ts +2 -0
- package/dist/types/index.d.ts +4 -0
- package/package.json +2 -2
- package/src/index.ts +4 -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;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders a Siren icon.
|
|
5
|
+
*/
|
|
6
|
+
const Siren = ({ 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 33 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M27.604 29.48c-.639-.02-2.218-.068-4.257-.105a302 302 0 0 0-4.506-.05c-1.786-.006-3.65.007-5.405.02-3.604.026-6.745.07-7.805.086l-.032-2.312a.84.84 0 0 1 .23-.593.85.85 0 0 1 .591-.263l18.48-.457q.016-.001.017-.017c0-.008-.008-.016-.017-.016l-18.484-.155A1.513 1.513 0 0 0 4.9 27.119l-.038 2.625q.001.094.035.18a.5.5 0 0 0 .1.15.456.456 0 0 0 .328.136c.555.005 4.037.06 8.11.089 1.755.013 3.619.029 5.405.021a302 302 0 0 0 4.506-.05c2.376-.043 4.127-.102 4.505-.111a.41.41 0 0 0 .409-.413l-.096-2.76a1.4 1.4 0 0 0-.447-.991 1.4 1.4 0 0 0-.99-.371l-1.45.068a.1.1 0 0 0-.102.1c0 .057.047.102.102.102l1.45.062a1.02 1.02 0 0 1 .706.325.98.98 0 0 1 .257.706zM7.837 25.427s.624-2.101 1.367-4.695c.677-2.366 1.444-5.13 1.985-7.056.137-.508.454-.924.852-1.222.388-.29.872-.44 1.383-.426.935.014 2.043.046 3.15.048 1.108.003 2.217-.024 3.15-.034.503-.017.983.123 1.368.403.399.29.721.694.864 1.195.397 1.308.897 3.01 1.426 4.711 1.097 3.536 2.24 7.04 2.24 7.04.004.02.024.032.044.027a.036.036 0 0 0 .027-.044s-.596-3.638-1.247-7.282c-.314-1.754-.65-3.495-.901-4.838a3.94 3.94 0 0 0-1.34-2.228c-.677-.571-1.549-.894-2.484-.924-.934-.006-2.042-.028-3.15-.022s-2.215.042-3.15.059a4 4 0 0 0-2.483.93 3.93 3.93 0 0 0-1.334 2.24c-.359 1.967-.885 4.789-1.315 7.212a522 522 0 0 0-.834 4.817.196.196 0 1 0 .382.09M26.246 16.715s1.14.004 2.43-.058c1.697-.085 3.643-.272 3.643-.272a.18.18 0 0 0 .179-.179.18.18 0 0 0-.18-.178s-1.945-.187-3.642-.272c-1.29-.063-2.43-.056-2.43-.056a.509.509 0 0 0 0 1.016" }), _jsx("path", { d: "M22.997 23.794s-.187-1.075-.49-2.276c-.4-1.585-.974-3.367-.974-3.367a.238.238 0 1 0-.47.084s.085 1.87.265 3.497c.136 1.23.337 2.301.337 2.301a.677.677 0 1 0 1.332-.239M6.94 15.7s-1.14-.007-2.43.056c-1.697.085-3.642.272-3.642.272-.1 0-.18.08-.18.178 0 .1.08.18.18.18 0 0 1.945.186 3.643.271 1.29.062 2.429.058 2.429.058a.509.509 0 0 0 0-1.015M23.752 9.777s.76-.756 1.571-1.66c1.068-1.191 2.226-2.619 2.226-2.619a.178.178 0 1 0-.253-.252s-1.424 1.164-2.61 2.236c-.901.815-1.653 1.578-1.653 1.578a.507.507 0 1 0 .72.717M17.098 6.636s.005-1.075-.058-2.293c-.083-1.604-.271-3.44-.271-3.44a.179.179 0 0 0-.358 0s-.187 1.835-.27 3.44c-.063 1.218-.058 2.294-.058 2.294a.507.507 0 1 0 1.015 0M10.071 9.06s-.751-.763-1.65-1.578C7.237 6.41 5.817 5.245 5.817 5.245a.18.18 0 0 0-.253 0 .18.18 0 0 0 0 .254s1.155 1.427 2.22 2.617a45 45 0 0 0 1.566 1.66.509.509 0 1 0 .72-.716" }), _jsx("path", { d: "M853.314 300c.477 0 .864.372.864.829 0 .458-.387.829-.864.829s-.864-.371-.864-.829.387-.829.864-.829m0 .836.01.008c.018.019.018.072-.01.075-.065.01-.132.073-.175.032s-.117-.061-.127-.122c-.017-.101-.049-.203.009-.281.074-.099.158-.203.293-.225zm0 0v.08l-.046-.087c-.001-.017.028-.005.046.007", style: {
|
|
13
|
+
fill: 'none'
|
|
14
|
+
}, transform: "matrix(.70959 0 0 .73924 -584.586 -206.178)" }), _jsx("ellipse", { cx: 853.314, cy: 300.829, rx: 0.864, ry: 0.829, transform: "matrix(.70959 0 0 .73924 -584.586 -206.178)" })] }));
|
|
15
|
+
};
|
|
16
|
+
export default Siren;
|