aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-07-22 11:00:32 +0200
committercodecalm <codecalm@gmail.com>2022-07-22 11:00:32 +0200
commit109f037f98722a0d1d3427993dd609af15fc6b42 (patch)
tree682d9b35ab15ca4273af1ebbe89e5403ebc451f4 /icons-react
parent18 new icons: `circuit-ammeter`, `circuit-battery`, `circuit-bulb`, `circuit-... (diff)
downloadtabler-icons-109f037f98722a0d1d3427993dd609af15fc6b42.tar.xz
Release 1.77.0v1.77.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/circuit-ammeter.js12
-rw-r--r--icons-react/icons-js/circuit-battery.js12
-rw-r--r--icons-react/icons-js/circuit-bulb.js12
-rw-r--r--icons-react/icons-js/circuit-capacitor-polarized.js12
-rw-r--r--icons-react/icons-js/circuit-capacitor.js12
-rw-r--r--icons-react/icons-js/circuit-cell-plus.js12
-rw-r--r--icons-react/icons-js/circuit-cell.js12
-rw-r--r--icons-react/icons-js/circuit-changeover.js12
-rw-r--r--icons-react/icons-js/circuit-diode-zener.js12
-rw-r--r--icons-react/icons-js/circuit-diode.js12
-rw-r--r--icons-react/icons-js/circuit-ground-digital.js12
-rw-r--r--icons-react/icons-js/circuit-ground.js12
-rw-r--r--icons-react/icons-js/circuit-inductor.js12
-rw-r--r--icons-react/icons-js/circuit-motor.js12
-rw-r--r--icons-react/icons-js/circuit-pushbutton.js12
-rw-r--r--icons-react/icons-js/circuit-resistor.js12
-rw-r--r--icons-react/icons-js/circuit-switch-closed.js12
-rw-r--r--icons-react/icons-js/circuit-switch-open.js12
-rw-r--r--icons-react/icons-js/circuit-voltmeter.js12
-rw-r--r--icons-react/index.d.ts20
-rw-r--r--icons-react/index.js20
21 files changed, 266 insertions, 2 deletions
diff --git a/icons-react/icons-js/circuit-ammeter.js b/icons-react/icons-js/circuit-ammeter.js
new file mode 100644
index 00000000..9add375c
--- /dev/null
+++ b/icons-react/icons-js/circuit-ammeter.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitAmmeter({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-ammeter" 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" /><circle cx={12} cy={12} r={7} /><path d="M5 12h-3" /><path d="M19 12h3" /><path d="M10 14v-3c0 -1.036 .895 -2 2 -2s2 .964 2 2v3" /><path d="M14 12h-4" /></svg>;
+}
+
+export default IconCircuitAmmeter; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-battery.js b/icons-react/icons-js/circuit-battery.js
new file mode 100644
index 00000000..941f23ee
--- /dev/null
+++ b/icons-react/icons-js/circuit-battery.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitBattery({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-battery" 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="M2 12h4" /><path d="M18 12h4" /><path d="M18 5v14" /><path d="M14 9v6" /><path d="M10 5v14" /><path d="M6 9v6" /></svg>;
+}
+
+export default IconCircuitBattery; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-bulb.js b/icons-react/icons-js/circuit-bulb.js
new file mode 100644
index 00000000..e8545ea0
--- /dev/null
+++ b/icons-react/icons-js/circuit-bulb.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitBulb({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-bulb" 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="M2 12h5" /><path d="M17 12h5" /><circle cx={12} cy={12} r={5} /><path d="M8.5 8.5l7 7" /><path d="M15.5 8.5l-7 7" /></svg>;
+}
+
+export default IconCircuitBulb; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-capacitor-polarized.js b/icons-react/icons-js/circuit-capacitor-polarized.js
new file mode 100644
index 00000000..06fcf1ac
--- /dev/null
+++ b/icons-react/icons-js/circuit-capacitor-polarized.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitCapacitorPolarized({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-capacitor-polarized" 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="M22 12h-8" /><path d="M2 12h8" /><path d="M10 7v10" /><path d="M14 7v10" /><path d="M17 5h4" /><path d="M19 3v4" /></svg>;
+}
+
+export default IconCircuitCapacitorPolarized; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-capacitor.js b/icons-react/icons-js/circuit-capacitor.js
new file mode 100644
index 00000000..46209f9b
--- /dev/null
+++ b/icons-react/icons-js/circuit-capacitor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitCapacitor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-capacitor" 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="M22 12h-8" /><path d="M2 12h8" /><path d="M10 7v10" /><path d="M14 7v10" /></svg>;
+}
+
+export default IconCircuitCapacitor; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-cell-plus.js b/icons-react/icons-js/circuit-cell-plus.js
new file mode 100644
index 00000000..270992e7
--- /dev/null
+++ b/icons-react/icons-js/circuit-cell-plus.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitCellPlus({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-cell-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" /><path d="M2 12h9" /><path d="M15 12h7" /><path d="M11 5v14" /><path d="M15 9v6" /><path d="M3 5h4" /><path d="M5 3v4" /></svg>;
+}
+
+export default IconCircuitCellPlus; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-cell.js b/icons-react/icons-js/circuit-cell.js
new file mode 100644
index 00000000..d053bc98
--- /dev/null
+++ b/icons-react/icons-js/circuit-cell.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitCell({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-cell" 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="M2 12h8" /><path d="M14 12h8" /><path d="M10 5v14" /><path d="M14 9v6" /></svg>;
+}
+
+export default IconCircuitCell; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-changeover.js b/icons-react/icons-js/circuit-changeover.js
new file mode 100644
index 00000000..a53c5ad2
--- /dev/null
+++ b/icons-react/icons-js/circuit-changeover.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitChangeover({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-changeover" 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="M2 12h2" /><path d="M20 7h2" /><circle cx={6} cy={12} r={2} /><circle cx={18} cy={7} r={2} /><path d="M20 17h2" /><circle cx={18} cy={17} r={2} /><path d="M7.5 10.5l8.5 -3.5" /></svg>;
+}
+
+export default IconCircuitChangeover; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-diode-zener.js b/icons-react/icons-js/circuit-diode-zener.js
new file mode 100644
index 00000000..c63e63ca
--- /dev/null
+++ b/icons-react/icons-js/circuit-diode-zener.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitDiodeZener({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-diode-zener" 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="M22 12h-6" /><path d="M2 12h6" /><path d="M8 7l8 5l-8 5z" /><path d="M14 7h2v10h2" /></svg>;
+}
+
+export default IconCircuitDiodeZener; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-diode.js b/icons-react/icons-js/circuit-diode.js
new file mode 100644
index 00000000..f9846031
--- /dev/null
+++ b/icons-react/icons-js/circuit-diode.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitDiode({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-diode" 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="M22 12h-6" /><path d="M2 12h6" /><path d="M8 7l8 5l-8 5z" /><path d="M16 7v10" /></svg>;
+}
+
+export default IconCircuitDiode; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-ground-digital.js b/icons-react/icons-js/circuit-ground-digital.js
new file mode 100644
index 00000000..6a7667ca
--- /dev/null
+++ b/icons-react/icons-js/circuit-ground-digital.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitGroundDigital({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-ground-digital" 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 13v-10" /><path d="M12 21l-6 -8h12z" /></svg>;
+}
+
+export default IconCircuitGroundDigital; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-ground.js b/icons-react/icons-js/circuit-ground.js
new file mode 100644
index 00000000..ffd8127f
--- /dev/null
+++ b/icons-react/icons-js/circuit-ground.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitGround({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-ground" 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 13v-8" /><path d="M4 13h16" /><path d="M7 16h10" /><path d="M10 19h4" /></svg>;
+}
+
+export default IconCircuitGround; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-inductor.js b/icons-react/icons-js/circuit-inductor.js
new file mode 100644
index 00000000..3e102b84
--- /dev/null
+++ b/icons-react/icons-js/circuit-inductor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitInductor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-inductor" 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="M2 14h3v-2a2 2 0 1 1 4 0v2v-1.5a2.5 2.5 0 1 1 5 0v1.5v-1.5a2.5 2.5 0 1 1 5 0v1.5h3" /></svg>;
+}
+
+export default IconCircuitInductor; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-motor.js b/icons-react/icons-js/circuit-motor.js
new file mode 100644
index 00000000..e210bcd4
--- /dev/null
+++ b/icons-react/icons-js/circuit-motor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitMotor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-motor" 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" /><circle cx={12} cy={12} r={7} /><path d="M5 12h-3" /><path d="M19 12h3" /><path d="M10 14v-4l2 2l2 -2v4" /></svg>;
+}
+
+export default IconCircuitMotor; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-pushbutton.js b/icons-react/icons-js/circuit-pushbutton.js
new file mode 100644
index 00000000..0667ecfc
--- /dev/null
+++ b/icons-react/icons-js/circuit-pushbutton.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitPushbutton({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-pushbutton" 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="M2 17h2" /><path d="M20 17h2" /><circle cx={6} cy={17} r={2} /><circle cx={18} cy={17} r={2} /><path d="M6 11h12" /><path d="M12 11v-6" /></svg>;
+}
+
+export default IconCircuitPushbutton; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-resistor.js b/icons-react/icons-js/circuit-resistor.js
new file mode 100644
index 00000000..a84eda5b
--- /dev/null
+++ b/icons-react/icons-js/circuit-resistor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitResistor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-resistor" 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="M2 12h2l2 -5l3 10l3 -10l3 10l3 -10l1.5 5h2.5" /></svg>;
+}
+
+export default IconCircuitResistor; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-switch-closed.js b/icons-react/icons-js/circuit-switch-closed.js
new file mode 100644
index 00000000..65aed2d2
--- /dev/null
+++ b/icons-react/icons-js/circuit-switch-closed.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitSwitchClosed({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-switch-closed" 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="M2 12h2" /><path d="M20 12h2" /><circle cx={6} cy={12} r={2} /><circle cx={18} cy={12} r={2} /><path d="M8 12h8" /></svg>;
+}
+
+export default IconCircuitSwitchClosed; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-switch-open.js b/icons-react/icons-js/circuit-switch-open.js
new file mode 100644
index 00000000..c66f606c
--- /dev/null
+++ b/icons-react/icons-js/circuit-switch-open.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitSwitchOpen({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-switch-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="M2 12h2" /><path d="M20 12h2" /><circle cx={6} cy={12} r={2} /><circle cx={18} cy={12} r={2} /><path d="M7.5 10.5l7.5 -5.5" /></svg>;
+}
+
+export default IconCircuitSwitchOpen; \ No newline at end of file
diff --git a/icons-react/icons-js/circuit-voltmeter.js b/icons-react/icons-js/circuit-voltmeter.js
new file mode 100644
index 00000000..5bca10c6
--- /dev/null
+++ b/icons-react/icons-js/circuit-voltmeter.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCircuitVoltmeter({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circuit-voltmeter" 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" /><circle cx={12} cy={12} r={7} /><path d="M5 12h-3" /><path d="M19 12h3" /><path d="M10 10l2 4l2 -4" /></svg>;
+}
+
+export default IconCircuitVoltmeter; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 05c80680..6078e5f1 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -686,6 +686,25 @@ export const IconCircleTriangle: TablerIcon;
export const IconCircleX: TablerIcon;
export const IconCircle: TablerIcon;
export const IconCircles: TablerIcon;
+export const IconCircuitAmmeter: TablerIcon;
+export const IconCircuitBattery: TablerIcon;
+export const IconCircuitBulb: TablerIcon;
+export const IconCircuitCapacitorPolarized: TablerIcon;
+export const IconCircuitCapacitor: TablerIcon;
+export const IconCircuitCellPlus: TablerIcon;
+export const IconCircuitCell: TablerIcon;
+export const IconCircuitChangeover: TablerIcon;
+export const IconCircuitDiodeZener: TablerIcon;
+export const IconCircuitDiode: TablerIcon;
+export const IconCircuitGroundDigital: TablerIcon;
+export const IconCircuitGround: TablerIcon;
+export const IconCircuitInductor: TablerIcon;
+export const IconCircuitMotor: TablerIcon;
+export const IconCircuitPushbutton: TablerIcon;
+export const IconCircuitResistor: TablerIcon;
+export const IconCircuitSwitchClosed: TablerIcon;
+export const IconCircuitSwitchOpen: TablerIcon;
+export const IconCircuitVoltmeter: TablerIcon;
export const IconClearAll: TablerIcon;
export const IconClearFormatting: TablerIcon;
export const IconClick: TablerIcon;
@@ -1141,7 +1160,6 @@ export const IconGrillOff: TablerIcon;
export const IconGrill: TablerIcon;
export const IconGripHorizontal: TablerIcon;
export const IconGripVertical: TablerIcon;
-export const IconGround: TablerIcon;
export const IconGrowth: TablerIcon;
export const IconH1: TablerIcon;
export const IconH2: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 11f3a28c..8338e138 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -680,6 +680,25 @@ export { default as IconCircleTriangle } from './icons-js/circle-triangle.js';
export { default as IconCircleX } from './icons-js/circle-x.js';
export { default as IconCircle } from './icons-js/circle.js';
export { default as IconCircles } from './icons-js/circles.js';
+export { default as IconCircuitAmmeter } from './icons-js/circuit-ammeter.js';
+export { default as IconCircuitBattery } from './icons-js/circuit-battery.js';
+export { default as IconCircuitBulb } from './icons-js/circuit-bulb.js';
+export { default as IconCircuitCapacitorPolarized } from './icons-js/circuit-capacitor-polarized.js';
+export { default as IconCircuitCapacitor } from './icons-js/circuit-capacitor.js';
+export { default as IconCircuitCellPlus } from './icons-js/circuit-cell-plus.js';
+export { default as IconCircuitCell } from './icons-js/circuit-cell.js';
+export { default as IconCircuitChangeover } from './icons-js/circuit-changeover.js';
+export { default as IconCircuitDiodeZener } from './icons-js/circuit-diode-zener.js';
+export { default as IconCircuitDiode } from './icons-js/circuit-diode.js';
+export { default as IconCircuitGroundDigital } from './icons-js/circuit-ground-digital.js';
+export { default as IconCircuitGround } from './icons-js/circuit-ground.js';
+export { default as IconCircuitInductor } from './icons-js/circuit-inductor.js';
+export { default as IconCircuitMotor } from './icons-js/circuit-motor.js';
+export { default as IconCircuitPushbutton } from './icons-js/circuit-pushbutton.js';
+export { default as IconCircuitResistor } from './icons-js/circuit-resistor.js';
+export { default as IconCircuitSwitchClosed } from './icons-js/circuit-switch-closed.js';
+export { default as IconCircuitSwitchOpen } from './icons-js/circuit-switch-open.js';
+export { default as IconCircuitVoltmeter } from './icons-js/circuit-voltmeter.js';
export { default as IconClearAll } from './icons-js/clear-all.js';
export { default as IconClearFormatting } from './icons-js/clear-formatting.js';
export { default as IconClick } from './icons-js/click.js';
@@ -1135,7 +1154,6 @@ export { default as IconGrillOff } from './icons-js/grill-off.js';
export { default as IconGrill } from './icons-js/grill.js';
export { default as IconGripHorizontal } from './icons-js/grip-horizontal.js';
export { default as IconGripVertical } from './icons-js/grip-vertical.js';
-export { default as IconGround } from './icons-js/ground.js';
export { default as IconGrowth } from './icons-js/growth.js';
export { default as IconH1 } from './icons-js/h-1.js';
export { default as IconH2 } from './icons-js/h-2.js';