diff --git a/src/svgs/clearSVG.tsx b/src/svgs/clearSVG.tsx
index 6d7c1f8..3edc0c9 100644
--- a/src/svgs/clearSVG.tsx
+++ b/src/svgs/clearSVG.tsx
@@ -15,6 +15,8 @@ export default function ClearSVG({ width, height }: IClearProps) {
fill="currentColor"
className="bi bi-eraser"
viewBox="0 0 16 16"
+ stroke="currentColor"
+ strokeWidth="0.3"
>
diff --git a/src/svgs/polygonSVG.tsx b/src/svgs/polygonSVG.tsx
index 8dd1f70..a3b5aaf 100644
--- a/src/svgs/polygonSVG.tsx
+++ b/src/svgs/polygonSVG.tsx
@@ -15,6 +15,8 @@ export default function PolygonSVG({ width, height }: IPolygonProps) {
fill="currentColor"
className="bi bi-heptagon"
viewBox="0 0 16 16"
+ stroke="currentColor"
+ strokeWidth="0.3"
>
diff --git a/src/svgs/rectangleSVG.tsx b/src/svgs/rectangleSVG.tsx
index 0f80891..29dbb15 100644
--- a/src/svgs/rectangleSVG.tsx
+++ b/src/svgs/rectangleSVG.tsx
@@ -15,6 +15,8 @@ export default function RectangleSVG({ width, height }: IRectangleProps) {
fill="currentColor"
className="bi bi-square"
viewBox="0 0 16 16"
+ stroke="currentColor"
+ strokeWidth="0.3"
>